Skip to content

Commit e87a17f

Browse files
committed
release: 2024.12.1
1 parent bb1bcb2 commit e87a17f

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-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.0
2+
current_version = 2024.12.1
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*))?

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.0"
5+
__version__ = "2024.12.1"
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.0 Blueprint schema",
5+
"title": "authentik 2024.12.1 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.0}
34+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.1}
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.0}
57+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.1}
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.0"
32+
const VERSION = "2024.12.1"

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.0",
3+
"version": "2024.12.1",
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.0"
3+
version = "2024.12.1"
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.0
4+
version: 2024.12.1
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.0";
6+
export const VERSION = "2024.12.1";
77
export const TITLE_DEFAULT = "authentik";
88
export const ROUTE_SEPARATOR = ";";
99

website/docs/install-config/install/aws/template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Parameters:
2424
Description: authentik server memory in MiB
2525
Type: Number
2626
AuthentikVersion:
27-
Default: 2024.12.0
27+
Default: 2024.12.1
2828
Description: authentik Docker image tag
2929
Type: String
3030
AuthentikWorkerCPU:

0 commit comments

Comments
 (0)