Skip to content

Commit

Permalink
Release 0.10.0 (2023-05-04)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
Privacy Sandbox Team authored and Phil Lee committed May 10, 2023
1 parent d65103e commit 94d9e42
Show file tree
Hide file tree
Showing 415 changed files with 5,926 additions and 3,799 deletions.
14 changes: 8 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,13 @@ repos:
rev: 3.0.0
hooks:
- id: script-must-not-have-extension
exclude: '^google_internal/.*/kokoro_(presubmit|continuous).sh$'
- id: script-must-have-extension
- id: require-ascii
- id: shellcheck
exclude: '^(production|tools|google_internal|builders/images)/.*$'
exclude: '^(google_internal|builders/images)/.*$'

- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v14.0.6
rev: v16.0.2
hooks:
- id: clang-format
types_or:
Expand Down Expand Up @@ -100,10 +99,13 @@ repos:
types_or:
- markdown
- json
exclude: '^testing/functionaltest/test_cases/.*$'
exclude: (?x)^(
testing/functionaltest/.*/test_cases/.*|
production/packaging/aws/data_server/nitro-pcr0/.*
)$

- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.6.0
rev: v0.7.1
hooks:
- id: markdownlint-cli2
name: lint markdown
Expand Down Expand Up @@ -138,7 +140,7 @@ repos:
- --quiet

- repo: https://github.com/psf/black
rev: 23.1.0
rev: 23.3.0
hooks:
- id: black
name: black python formatter
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ genrule(
name = "collect-logs",
outs = ["collect_logs.bin"],
cmd_bash = """cat << EOF > '$@'
tools/collect-logs
tools/collect-logs "\\$$@"
EOF""",
executable = True,
local = True,
Expand Down
Loading

0 comments on commit 94d9e42

Please sign in to comment.