Skip to content

Commit 2e3624e

Browse files
authored
release: 2025.2.2 (#13554)
1 parent 4e52fb7 commit 2e3624e

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

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

0 commit comments

Comments
 (0)