Skip to content

Commit

Permalink
Merge branch 'q1-2024' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanwire committed Feb 13, 2024
2 parents 70f4081 + 36f3ed5 commit 079e77a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.d/0-release-notes/WPB-4657
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The settings `setDisabledAPIVersions` (brig) and `disabledAPIVersions` (in cannon, cargohold, galley, gundeck, proxy, and spar) are now required.
The default defined in `charts/<service>/values.yaml` is set to `[ development ]` and disables all development API versions.
For more information see <https://docs.wire.com/developer/reference/config-options.html#disabling-api-versions>
1 change: 1 addition & 0 deletions changelog.d/1-api-changes/WPB-6189
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Block changes of userDisplayName, userHandle in mlsE2EI-enabled teams on the backend without SCIM; report `"managed_by" == "scim"` in `GET /self`, but only there
1 change: 1 addition & 0 deletions changelog.d/3-bug-fixes/WPB-6351
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Intra-service calls from brig to galley's public API are now aware of disabled API versions
1 change: 1 addition & 0 deletions changelog.d/3-bug-fixes/WPB-6428
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix Helm pretty-printer for disabledAPIVersions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update the build instructions for wire-server
1 change: 1 addition & 0 deletions changelog.d/5-internal/WPB-4657
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The development API version is now disabled by default
2 changes: 2 additions & 0 deletions changelog.d/5-internal/integration-cleanup-sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix integration-cleanup.sh, now only cleans up releases with `test-` prefixes in
their names.
2 changes: 1 addition & 1 deletion hack/bin/integration-cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -euo pipefail

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

releases=$(helm list -A -f 'test-' -o json |
releases=$(helm list -A -f '^test-' -o json |
jq -r -f "$DIR/filter-old-releases.jq")

if [ -n "$releases" ]; then
Expand Down

0 comments on commit 079e77a

Please sign in to comment.