From a4c7e7ba2e1caf65658bf30128af0400cca9e999 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Tue, 12 Aug 2025 17:24:23 +0200 Subject: [PATCH] root: bump version to 2025.8.0-rc1 (#16135) --- Makefile | 7 ++++--- authentik/__init__.py | 4 ++-- blueprints/schema.json | 2 +- docker-compose.yml | 4 ++-- internal/constants/VERSION | 2 +- lifecycle/aws/template.yaml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- pyproject.toml | 2 +- schema.yml | 2 +- uv.lock | 4 ++-- web/package-lock.json | 4 ++-- web/package.json | 2 +- 13 files changed, 21 insertions(+), 20 deletions(-) diff --git a/Makefile b/Makefile index 21bdea841f..91a6c428bb 100644 --- a/Makefile +++ b/Makefile @@ -95,10 +95,11 @@ update-test-mmdb: ## Update test GeoIP and ASN Databases curl -L https://raw.githubusercontent.com/maxmind/MaxMind-DB/refs/heads/main/test-data/GeoLite2-City-Test.mmdb -o ${PWD}/tests/GeoLite2-City-Test.mmdb bump: ## Bump authentik version. Usage: make bump version=20xx.xx.xx - ifndef version +ifndef version $(error Usage: make bump version=20xx.xx.xx ) - endif - uv version $(version) +endif + sed -i 's/^version = ".*"/version = "$(version)"/' pyproject.toml + sed -i 's/^VERSION = ".*"/VERSION = "$(version)"/' authentik/__init__.py $(MAKE) gen-build gen-compose aws-cfn npm version --no-git-tag-version --allow-same-version $(version) cd ${PWD}/web && npm version --no-git-tag-version --allow-same-version $(version) diff --git a/authentik/__init__.py b/authentik/__init__.py index cd5b4224e0..99c35f188a 100644 --- a/authentik/__init__.py +++ b/authentik/__init__.py @@ -1,15 +1,15 @@ """authentik root module""" from functools import lru_cache -from importlib.metadata import version from os import environ +VERSION = "2025.8.0-rc1" ENV_GIT_HASH_KEY = "GIT_BUILD_HASH" @lru_cache def authentik_version() -> str: - return version("authentik") + return VERSION @lru_cache diff --git a/blueprints/schema.json b/blueprints/schema.json index af1f49c23a..51e4d8588d 100644 --- a/blueprints/schema.json +++ b/blueprints/schema.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://goauthentik.io/blueprints/schema.json", "type": "object", - "title": "authentik 2025.6.4 Blueprint schema", + "title": "authentik 2025.8.0-rc1 Blueprint schema", "required": [ "version", "entries" diff --git a/docker-compose.yml b/docker-compose.yml index 09d36eef1d..8b6040319e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -48,7 +48,7 @@ services: AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik} AUTHENTIK_REDIS__HOST: redis AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY:?secret key required} - image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.6.4} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.8.0-rc1} ports: - ${COMPOSE_PORT_HTTP:-9000}:9000 - ${COMPOSE_PORT_HTTPS:-9443}:9443 @@ -72,7 +72,7 @@ services: AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik} AUTHENTIK_REDIS__HOST: redis AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY:?secret key required} - image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.6.4} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2025.8.0-rc1} restart: unless-stopped user: root volumes: diff --git a/internal/constants/VERSION b/internal/constants/VERSION index f1a89f3a05..4c7740c6b9 100644 --- a/internal/constants/VERSION +++ b/internal/constants/VERSION @@ -1 +1 @@ -2025.6.4 \ No newline at end of file +2025.8.0-rc1 \ No newline at end of file diff --git a/lifecycle/aws/template.yaml b/lifecycle/aws/template.yaml index 9f46acef74..7af1015ce1 100644 --- a/lifecycle/aws/template.yaml +++ b/lifecycle/aws/template.yaml @@ -26,7 +26,7 @@ Parameters: Description: authentik Docker image AuthentikVersion: Type: String - Default: 2025.6.4 + Default: 2025.8.0-rc1 Description: authentik Docker image tag AuthentikServerCPU: Type: Number diff --git a/package-lock.json b/package-lock.json index 8cd0b63e53..e5c51f2f82 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@goauthentik/authentik", - "version": "2025.6.4", + "version": "2025.8.0-rc1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@goauthentik/authentik", - "version": "2025.6.4", + "version": "2025.8.0-rc1", "dependencies": { "@eslint/js": "^9.31.0", "@typescript-eslint/eslint-plugin": "^8.38.0", diff --git a/package.json b/package.json index a190a35e6a..34ebc71b83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@goauthentik/authentik", - "version": "2025.6.4", + "version": "2025.8.0-rc1", "private": true, "type": "module", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index d20a0713ae..c42390d588 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "authentik" -version = "2025.6.4" +version = "2025.8.0-rc1" description = "" authors = [{ name = "authentik Team", email = "hello@goauthentik.io" }] requires-python = "==3.13.*" diff --git a/schema.yml b/schema.yml index dc04788728..24bcbb5b02 100644 --- a/schema.yml +++ b/schema.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: authentik - version: 2025.6.4 + version: 2025.8.0-rc1 description: Making authentication simple. contact: email: hello@goauthentik.io diff --git a/uv.lock b/uv.lock index e3c0cab611..9de21f813e 100644 --- a/uv.lock +++ b/uv.lock @@ -1,5 +1,5 @@ version = 1 -revision = 3 +revision = 2 requires-python = "==3.13.*" [manifest] @@ -159,7 +159,7 @@ wheels = [ [[package]] name = "authentik" -version = "2025.6.4" +version = "2025.8.0rc1" source = { editable = "." } dependencies = [ { name = "argon2-cffi" }, diff --git a/web/package-lock.json b/web/package-lock.json index 876e699562..2622e6615f 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "@goauthentik/web", - "version": "2025.6.4", + "version": "2025.8.0-rc1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@goauthentik/web", - "version": "2025.6.4", + "version": "2025.8.0-rc1", "license": "MIT", "workspaces": [ "./packages/*" diff --git a/web/package.json b/web/package.json index 62c66b63bd..72e2d1fa67 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "@goauthentik/web", - "version": "2025.6.4", + "version": "2025.8.0-rc1", "license": "MIT", "private": true, "scripts": {