Skip to content

Commit 2cc2627

Browse files
Merging up to main
2 parents 7bfd915 + 6b4b6ab commit 2cc2627

File tree

12 files changed

+24
-23
lines changed

12 files changed

+24
-23
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [pull_request, push, workflow_dispatch]
33

44
jobs:
55
build:
6-
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-build-and-test.yaml@v2
6+
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-build-and-test.yaml@v3
77
with:
88
java_version: "21"
99
secrets: inherit

.github/workflows/check-stable-dependency.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ on: [pull_request, workflow_dispatch]
33

44
jobs:
55
check_dependency:
6-
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-check-stable-dependency.yaml@v2
6+
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-check-stable-dependency.yaml@v3
77
secrets: inherit

.github/workflows/validate-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
jobs:
2121
build-publish-docker-default:
22-
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-validate-image.yaml@v2
22+
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-validate-image.yaml@v3
2323
with:
2424
failure_severity: ${{ inputs.failure_severity || 'CRITICAL,HIGH' }}
2525
fail_on_error: ${{ inputs.fail_on_error || true }}

.trivyignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,9 @@
22
# See https://aquasecurity.github.io/trivy/v0.35/docs/vulnerability/examples/filter/
33
# for more details
44
# e.g.
5-
# CVE-2022-3996
5+
6+
# https://thetradedesk.atlassian.net/browse/UID2-4460
7+
CVE-2024-47535
8+
9+
# https://thetradedesk.atlassian.net/browse/UID2-4461
10+
CVE-2024-7254

conf/default-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"att_token_enc_key": null,
1818
"att_token_enc_salt": null,
1919
"enforceJwt": false,
20-
"s3_keys_metadata_path": null,
20+
"cloud_encryption_keys_metadata_path": null,
2121
"encryption_support_version": "5"
2222
}

conf/integ-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"keyset_keys_metadata_path": "uid2/keyset_keys/metadata.json",
1919
"salts_metadata_path": "uid2/salts/metadata.json",
2020
"enforceJwt": false,
21-
"s3_keys_metadata_path": "uid2/s3encryption_keys/metadata.json",
21+
"cloud_encryption_keys_metadata_path": "uid2/cloud_encryption_keys/metadata.json",
2222
"encryption_support_version": "5"
2323
}

conf/local-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"att_token_enc_salt": "<salt-for-attestation-token>",
2020
"provide_private_site_data": true,
2121
"enforceJwt": false,
22-
"s3_keys_metadata_path": "/com.uid2.core/test/s3encryption_keys/metadata.json",
22+
"cloud_encryption_keys_metadata_path": "/com.uid2.core/test/cloud_encryption_keys/metadata.json",
2323
"encryption_support_version": "5"
2424
}

conf/local-e2e-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@
3434
"core_public_url": "http://localhost:8088",
3535
"optout_url": "http://localhost:8081",
3636
"s3_keys_metadata_path": "s3encryption_keys/metadata.json",
37+
"cloud_keys_metadata_path": "cloud_encryption_keys/metadata.json",
3738
"encryption_support_version": "5"
3839
}

conf/local-e2e-docker-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
"aws_kms_jwt_signing_public_keys": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmvwB41qI5Fe41PDbXqcX5uOvSvfKh8l9QV0O3M+NsB4lKqQEP0t1hfoiXTpOgKz1ArYxHsQ2LeXifX4uwEbYJFlpVM+tyQkTWQjBOw6fsLYK2Xk4X2ylNXUUf7x3SDiOVxyvTh3OZW9kqrDBN9JxSoraNLyfw0hhW0SHpfs699SehgbQ7QWep/gVlKRLIz0XAXaZNw24s79ORcQlrCE6YD0PgQmpI/dK5xMML82n6y3qcTlywlGaU7OGIMdD+CTXA3BcOkgXeqZTXNaX1u6jCTa1lvAczun6avp5VZ4TFiuPo+y4rJ3GU+14cyT5NckEcaTKSvd86UdwK5Id9tl3bQIDAQAB",
3333
"core_public_url": "http://core:8088",
3434
"optout_url": "http://optout:8081",
35-
"s3_keys_metadata_path": "s3encryption_keys/metadata.json",
35+
"cloud_encryption_keys_metadata_path": "cloud_encryption_keys/metadata.json",
3636
"encryption_support_version": "5"
3737
}

pom.xml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.uid2</groupId>
88
<artifactId>uid2-core</artifactId>
9-
<version>2.20.8</version>
9+
<version>2.21.0</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -24,9 +24,9 @@
2424
<vertx.verticle>com.uid2.core.vertx.CoreVerticle</vertx.verticle>
2525
<launcher.class>io.vertx.core.Launcher</launcher.class>
2626

27-
<uid2-shared.version>7.21.8-alpha-159-SNAPSHOT</uid2-shared.version>
28-
<image.version>${project.version}</image.version>
29-
</properties>
27+
<uid2-shared.version>8.0.0</uid2-shared.version>
28+
<image.version>${project.version}</image.version>
29+
</properties>
3030

3131
<repositories>
3232
<repository>
@@ -97,11 +97,6 @@
9797
<artifactId>vertx-web-client</artifactId>
9898
<version>${vertx.version}</version>
9999
</dependency>
100-
<dependency>
101-
<groupId>com.google.auth</groupId>
102-
<artifactId>google-auth-library-oauth2-http</artifactId>
103-
<version>1.23.0</version>
104-
</dependency>
105100
<dependency>
106101
<groupId>io.vertx</groupId>
107102
<artifactId>vertx-micrometer-metrics</artifactId>

0 commit comments

Comments
 (0)