Skip to content

Commit 94d9e42

Browse files
Privacy Sandbox TeamPhil Lee
Privacy Sandbox Team
authored and
Phil Lee
committed
Release 0.10.0 (2023-05-04)
### Features * Add --fast option for running functional tests * Add a multi-KV SUT * Add baseline for SSP * Add bazel macro to generate OpenSSL certificates * Add brotli compression support * Add envoy for KV server in baseline SUT * Add envoy frontend in baseline SUT * Add optional filename arg to tools/collect-logs * Add SUT without UDF * Add terraform support for sharding * Drop data meant for other shards * Include tink_cc repository * Set timestamp for generated delta files for SUTs * Support selection of single SUT for testing * Upgrade gRPC to v1.52.1 * Upgrade to functionaltest-system 0.5.1 * Use 443 for http1.1 and 8443 for http2. * Use scp deps exposed by data-plane-shared-libraries repo * Use shared control plane skylark functions for transitive dependencies ### Bug Fixes * Address linter issues in production dir * Address linter issues in tools * Avoid running prettier on PCR0 files * Capture test logs into zip archive * Collect logs from functional testing * Configure docker compose to pull images quietly * Correct container deps in multiple-kv-servers * Defer to data-plane-shared cpp deps * Remove exposed ports as not needed within docker network * Remove unused code in tools/get_workspace_status * Remove workspace parent dirs from logs archive * Upgrade pre-commit hooks ### Documentation * Add Protected Audience API rename banner Bug: 280464254 Change-Id: I3577b3dd6124c8cad66717b1c43b774e3d445fe5 GitOrigin-RevId: e8331cb873bd61ed708ee1e62fcf108c684e53af
1 parent d65103e commit 94d9e42

File tree

415 files changed

+5926
-3799
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

415 files changed

+5926
-3799
lines changed

.pre-commit-config.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,13 @@ repos:
4646
rev: 3.0.0
4747
hooks:
4848
- id: script-must-not-have-extension
49-
exclude: '^google_internal/.*/kokoro_(presubmit|continuous).sh$'
5049
- id: script-must-have-extension
5150
- id: require-ascii
5251
- id: shellcheck
53-
exclude: '^(production|tools|google_internal|builders/images)/.*$'
52+
exclude: '^(google_internal|builders/images)/.*$'
5453

5554
- repo: https://github.com/pre-commit/mirrors-clang-format
56-
rev: v14.0.6
55+
rev: v16.0.2
5756
hooks:
5857
- id: clang-format
5958
types_or:
@@ -100,10 +99,13 @@ repos:
10099
types_or:
101100
- markdown
102101
- json
103-
exclude: '^testing/functionaltest/test_cases/.*$'
102+
exclude: (?x)^(
103+
testing/functionaltest/.*/test_cases/.*|
104+
production/packaging/aws/data_server/nitro-pcr0/.*
105+
)$
104106

105107
- repo: https://github.com/DavidAnson/markdownlint-cli2
106-
rev: v0.6.0
108+
rev: v0.7.1
107109
hooks:
108110
- id: markdownlint-cli2
109111
name: lint markdown
@@ -138,7 +140,7 @@ repos:
138140
- --quiet
139141

140142
- repo: https://github.com/psf/black
141-
rev: 23.1.0
143+
rev: 23.3.0
142144
hooks:
143145
- id: black
144146
name: black python formatter

BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ genrule(
107107
name = "collect-logs",
108108
outs = ["collect_logs.bin"],
109109
cmd_bash = """cat << EOF > '$@'
110-
tools/collect-logs
110+
tools/collect-logs "\\$$@"
111111
EOF""",
112112
executable = True,
113113
local = True,

0 commit comments

Comments
 (0)