Skip to content

Commit 8cad665

Browse files
risssonBeryJu
andauthored
release: 2024.12.3 (#12883)
* release: 2024.12.3 * ci: fix permissions for release-publish pipeline Signed-off-by: Jens Langhammer <[email protected]> * ci: fix missing dockerhub login Signed-off-by: Jens Langhammer <[email protected]> --------- Signed-off-by: Jens Langhammer <[email protected]> Co-authored-by: Jens Langhammer <[email protected]>
1 parent 220e79e commit 8cad665

File tree

11 files changed

+19
-11
lines changed

11 files changed

+19
-11
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2024.12.2
2+
current_version = 2024.12.3
33
tag = True
44
commit = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<rc_t>[a-zA-Z-]+)(?P<rc_n>[1-9]\\d*))?

.github/workflows/release-publish.yml

+8
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,17 @@ jobs:
99
build-server:
1010
uses: ./.github/workflows/_reusable-docker-build.yaml
1111
secrets: inherit
12+
permissions:
13+
# Needed to upload container images to ghcr.io
14+
packages: write
15+
# Needed for attestation
16+
id-token: write
17+
attestations: write
1218
with:
1319
image_name: ghcr.io/goauthentik/server,beryju/authentik
1420
release: true
21+
registry_dockerhub: true
22+
registry_ghcr: true
1523
build-outpost:
1624
runs-on: ubuntu-latest
1725
permissions:

authentik/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from os import environ
44

5-
__version__ = "2024.12.2"
5+
__version__ = "2024.12.3"
66
ENV_GIT_HASH_KEY = "GIT_BUILD_HASH"
77

88

blueprints/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://goauthentik.io/blueprints/schema.json",
44
"type": "object",
5-
"title": "authentik 2024.12.2 Blueprint schema",
5+
"title": "authentik 2024.12.3 Blueprint schema",
66
"required": [
77
"version",
88
"entries"

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
volumes:
3232
- redis:/data
3333
server:
34-
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.2}
34+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.3}
3535
restart: unless-stopped
3636
command: server
3737
environment:
@@ -54,7 +54,7 @@ services:
5454
redis:
5555
condition: service_healthy
5656
worker:
57-
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.2}
57+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.3}
5858
restart: unless-stopped
5959
command: worker
6060
environment:

internal/constants/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ func UserAgent() string {
2929
return fmt.Sprintf("authentik@%s", FullVersion())
3030
}
3131

32-
const VERSION = "2024.12.2"
32+
const VERSION = "2024.12.3"

lifecycle/aws/template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Parameters:
2626
Description: authentik Docker image
2727
AuthentikVersion:
2828
Type: String
29-
Default: 2024.12.2
29+
Default: 2024.12.3
3030
Description: authentik Docker image tag
3131
AuthentikServerCPU:
3232
Type: Number

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@goauthentik/authentik",
3-
"version": "2024.12.2",
3+
"version": "2024.12.3",
44
"private": true
55
}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "authentik"
3-
version = "2024.12.2"
3+
version = "2024.12.3"
44
description = ""
55
authors = ["authentik Team <[email protected]>"]
66

schema.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: authentik
4-
version: 2024.12.2
4+
version: 2024.12.3
55
description: Making authentication simple.
66
contact:
77

web/src/common/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const SUCCESS_CLASS = "pf-m-success";
33
export const ERROR_CLASS = "pf-m-danger";
44
export const PROGRESS_CLASS = "pf-m-in-progress";
55
export const CURRENT_CLASS = "pf-m-current";
6-
export const VERSION = "2024.12.2";
6+
export const VERSION = "2024.12.3";
77
export const TITLE_DEFAULT = "authentik";
88
export const ROUTE_SEPARATOR = ";";
99

0 commit comments

Comments
 (0)