Skip to content

Commit 2b39748

Browse files
authored
root: Backport version 2025.2 (#13225)
* release: 2025.2.0-rc1 * release: 2025.2.0-rc2 * release: 2025.2.0-rc3 * release: 2025.2.0
1 parent 93b9351 commit 2b39748

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

.bumpversion.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[bumpversion]
2-
current_version = 2024.12.3
2+
current_version = 2025.2.0
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*))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}-{rc_t}{rc_n}
88
{major}.{minor}.{patch}
99
message = release: {new_version}
1010
tag_name = version/{new_version}
1111

1212
[bumpversion:part:rc_t]
13-
values =
13+
values =
1414
rc
1515
final
1616
optional_value = final

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

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

0 commit comments

Comments
 (0)