Skip to content

Commit bcfd6fe

Browse files
authored
release: 2025.2.3 (#13705)
* release: 2025.2.3 * fix uv lock not being bumped Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
1 parent eae18d0 commit bcfd6fe

11 files changed

Lines changed: 14 additions & 12 deletions

File tree

.bumpversion.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2025.2.2
2+
current_version = 2025.2.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*))?
@@ -17,6 +17,8 @@ optional_value = final
1717

1818
[bumpversion:file:pyproject.toml]
1919

20+
[bumpversion:file:uv.lock]
21+
2022
[bumpversion:file:package.json]
2123

2224
[bumpversion:file:docker-compose.yml]

authentik/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from os import environ
44

5-
__version__ = "2025.2.2"
5+
__version__ = "2025.2.3"
66
ENV_GIT_HASH_KEY = "GIT_BUILD_HASH"
77

88

blueprints/schema.json

Lines changed: 1 addition & 1 deletion
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.2 Blueprint schema",
5+
"title": "authentik 2025.2.3 Blueprint schema",
66
"required": [
77
"version",
88
"entries"

docker-compose.yml

Lines changed: 2 additions & 2 deletions
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.2}
34+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.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:-2025.2.2}
57+
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.2.3}
5858
restart: unless-stopped
5959
command: worker
6060
environment:

internal/constants/constants.go

Lines changed: 1 addition & 1 deletion
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.2"
32+
const VERSION = "2025.2.3"

lifecycle/aws/template.yaml

Lines changed: 1 addition & 1 deletion
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.2
29+
Default: 2025.2.3
3030
Description: authentik Docker image tag
3131
AuthentikServerCPU:
3232
Type: Number

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@goauthentik/authentik",
3-
"version": "2025.2.2",
3+
"version": "2025.2.3",
44
"private": true
55
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "authentik"
3-
version = "2025.2.2"
3+
version = "2025.2.3"
44
description = ""
55
authors = [{ name = "authentik Team", email = "hello@goauthentik.io" }]
66
requires-python = "==3.12.*"

schema.yml

Lines changed: 1 addition & 1 deletion
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.2
4+
version: 2025.2.3
55
description: Making authentication simple.
66
contact:
77
email: hello@goauthentik.io

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)