Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only

{% import "common/sub_schema_values.yaml.j2" as sub_schema_values %}
enabled: true
{{- sub_schema_values.image(registry='ghcr.io', repository='element-hq/matrix-authentication-service', tag='1.1.0') }}
{{- sub_schema_values.image(registry='ghcr.io', repository='element-hq/matrix-authentication-service', tag='1.2.0') }}

replicas: 1

Expand Down Expand Up @@ -59,7 +59,7 @@ syn2mas:
enabled: false

# Syn2Mas relies on the debug image to copy mas-cli to the matrix-tools container
{{- sub_schema_values.image(registry='ghcr.io', repository='element-hq/matrix-authentication-service', tag='1.1.0-debug') | indent(2) }}
{{- sub_schema_values.image(registry='ghcr.io', repository='element-hq/matrix-authentication-service', tag='1.2.0-debug') | indent(2) }}
{{- sub_schema_values.labels() | indent(2) -}}
{{- sub_schema_values.workloadAnnotations() | indent(2) -}}
{{- sub_schema_values.containersSecurityContext() | indent(2) -}}
Expand Down
4 changes: 2 additions & 2 deletions charts/matrix-stack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ matrixAuthenticationService:

## The tag of the container image to use.
## One of tag or digest must be provided.
tag: "1.1.0"
tag: "1.2.0"

## Container digest to use. Used to pull the image instead of the image tag if set
## The tag will still be set as the app.kubernetes.io/version label
Expand Down Expand Up @@ -1772,7 +1772,7 @@ matrixAuthenticationService:

## The tag of the container image to use.
## One of tag or digest must be provided.
tag: "1.1.0-debug"
tag: "1.2.0-debug"

## Container digest to use. Used to pull the image instead of the image tag if set
## The tag will still be set as the app.kubernetes.io/version label
Expand Down
7 changes: 7 additions & 0 deletions newsfragments/718.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Update Matrix Authentication Service to v1.2.0.

Highlights:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if the only feature "Automatically derive the kid from the key fingerprint if missing" would be worth mentioning instead of translation updates, it feels more significant, without fully knowing how significant? 😁

Not a blocker anyway.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We explicitly specify the kid for all keys we provide and we don't want to unset that given the kid must be stable across restarts. I'm unclear whether there can be more than 1 key of a given type so I didn't want to mention this at all

* Translation updates

Full Changelogs:
* [v1.2.0](https://github.com/element-hq/matrix-authentication-service/releases/tag/v1.2.0)
Loading