forked from InteractiveAdvertisingBureau/iabtcf-es
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: improve encoding and add param for perf in TCString decode
- Loading branch information
1 parent
8933e72
commit c0d7167
Showing
9 changed files
with
45 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
ROOT=$(git rev-parse --show-toplevel) | ||
npm_package_version=2.7.1 | ||
npm_package_version=2.8.0 | ||
|
||
cd $ROOT | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@pubtech-ai/cli", | ||
"version": "2.7.1", | ||
"version": "2.8.0", | ||
"description": "Decode a iab TCF (Transparency and Consent Framework) TC String via the command line", | ||
"author": "Mayank Mishra <[email protected]>", | ||
"homepage": "https://iabtcf.com/", | ||
|
@@ -27,7 +27,7 @@ | |
"lint": "eslint `find src -name '*.ts'`" | ||
}, | ||
"dependencies": { | ||
"@pubtech-ai/core": "2.7.1" | ||
"@pubtech-ai/core": "2.8.0" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "18.17.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@pubtech-ai/cmpapi", | ||
"version": "2.7.1", | ||
"version": "2.8.0", | ||
"description": "Ensures other in-page digital marketing technologies have access to CMP transparency and consent information for the iab. Transparency and Consent Framework (TCF).", | ||
"author": "Mayank Mishra <[email protected]>", | ||
"homepage": "https://iabtcf.com/", | ||
|
@@ -31,8 +31,8 @@ | |
"@pubtech-ai/core": ">=1.0.0" | ||
}, | ||
"devDependencies": { | ||
"@pubtech-ai/stub": "2.7.1", | ||
"@pubtech-ai/testing": "2.7.1", | ||
"@pubtech-ai/stub": "2.8.0", | ||
"@pubtech-ai/testing": "2.8.0", | ||
"@istanbuljs/nyc-config-typescript": "^0.1.3", | ||
"@types/mocha": "^9.1.0", | ||
"@types/sinon": "10.0.11", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@pubtech-ai/core", | ||
"version": "2.7.1", | ||
"version": "2.8.0", | ||
"description": "Ensures consistent encoding and decoding of TC Signals for the iab. Transparency and Consent Framework (TCF).", | ||
"author": "Mayank Mishra <[email protected]>", | ||
"homepage": "https://iabtcf.com/", | ||
|
@@ -28,7 +28,7 @@ | |
"test-cov": "rm -rf coverage; nyc --reporter=html mocha" | ||
}, | ||
"devDependencies": { | ||
"@pubtech-ai/testing": "2.7.1", | ||
"@pubtech-ai/testing": "2.8.0", | ||
"@istanbuljs/nyc-config-typescript": "^0.1.3", | ||
"@types/sinon": "^10.0.11", | ||
"@types/sinon-chai": "3.2.8", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@pubtech-ai/stub", | ||
"version": "2.7.1", | ||
"version": "2.8.0", | ||
"description": "CMP API Stub code", | ||
"author": "Mayank Mishra <[email protected]>", | ||
"homepage": "https://iabtcf.com/", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@pubtech-ai/testing", | ||
"version": "2.7.1", | ||
"version": "2.8.0", | ||
"description": "Shared testing utilities", | ||
"author": "Mayank Mishra <[email protected]>", | ||
"homepage": "https://iabtcf.com/", | ||
|