Compare commits

...

2 Commits

Author SHA1 Message Date
83f46f6ff1 release: 2022.10.3 2022-12-02 23:01:17 +02:00
0e7cc6da4c web: bump API version
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
2022-12-02 22:51:09 +02:00
9 changed files with 16 additions and 16 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 2022.10.2
current_version = 2022.10.3
tag = True
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)

View File

@ -2,7 +2,7 @@
from os import environ
from typing import Optional
__version__ = "2022.10.2"
__version__ = "2022.10.3"
ENV_GIT_HASH_KEY = "GIT_BUILD_HASH"

View File

@ -32,7 +32,7 @@ services:
volumes:
- redis:/data
server:
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2022.10.2}
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2022.10.3}
restart: unless-stopped
command: server
environment:
@ -52,7 +52,7 @@ services:
- "0.0.0.0:${AUTHENTIK_PORT_HTTP:-9000}:9000"
- "0.0.0.0:${AUTHENTIK_PORT_HTTPS:-9443}:9443"
worker:
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2022.10.2}
image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2022.10.3}
restart: unless-stopped
command: worker
environment:

View File

@ -29,4 +29,4 @@ func UserAgent() string {
return fmt.Sprintf("authentik@%s", FullVersion())
}
const VERSION = "2022.10.2"
const VERSION = "2022.10.3"

View File

@ -100,7 +100,7 @@ addopts = "-p no:celery --junitxml=unittest.xml"
[tool.poetry]
name = "authentik"
version = "2022.10.2"
version = "2022.10.3"
description = ""
authors = ["authentik Team <hello@goauthentik.io>"]

View File

@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: authentik
version: 2022.10.2
version: 2022.10.3
description: Making authentication simple.
contact:
email: hello@goauthentik.io

14
web/package-lock.json generated
View File

@ -21,7 +21,7 @@
"@codemirror/legacy-modes": "^6.2.0",
"@formatjs/intl-listformat": "^7.1.3",
"@fortawesome/fontawesome-free": "^6.2.0",
"@goauthentik/api": "^2022.10.0-1666383274",
"@goauthentik/api": "^2022.11.2-1669997585",
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@lingui/cli": "^3.14.0",
"@lingui/core": "^3.14.0",
@ -1941,9 +1941,9 @@
}
},
"node_modules/@goauthentik/api": {
"version": "2022.10.0-1666383274",
"resolved": "https://registry.npmjs.org/@goauthentik/api/-/api-2022.10.0-1666383274.tgz",
"integrity": "sha512-mwBT/bTpX4cSDxy6tQgaoHIzzWqpwIXSuv16knNqjk5emquckFOI1QhurB1D2MxbvrMETX8jfJWaE+LrE/cACA=="
"version": "2022.11.2-1669997585",
"resolved": "https://registry.npmjs.org/@goauthentik/api/-/api-2022.11.2-1669997585.tgz",
"integrity": "sha512-muW3STOZgeuFUGX1Ojl6HSJcQFopESDXg4BdOvw8ltgt5eytwj/XQV3uQA5RB/m9aeZ+o6IAt/G6MWqNke8oUQ=="
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.11.6",
@ -11620,9 +11620,9 @@
"integrity": "sha512-CNR7qRIfCwWHNN7FnKUniva94edPdyQzil/zCwk3v6k4R6rR2Fr8i4s3PM7n/lyfPA6Zfko9z5WDzFxG9SW1uQ=="
},
"@goauthentik/api": {
"version": "2022.10.0-1666383274",
"resolved": "https://registry.npmjs.org/@goauthentik/api/-/api-2022.10.0-1666383274.tgz",
"integrity": "sha512-mwBT/bTpX4cSDxy6tQgaoHIzzWqpwIXSuv16knNqjk5emquckFOI1QhurB1D2MxbvrMETX8jfJWaE+LrE/cACA=="
"version": "2022.11.2-1669997585",
"resolved": "https://registry.npmjs.org/@goauthentik/api/-/api-2022.11.2-1669997585.tgz",
"integrity": "sha512-muW3STOZgeuFUGX1Ojl6HSJcQFopESDXg4BdOvw8ltgt5eytwj/XQV3uQA5RB/m9aeZ+o6IAt/G6MWqNke8oUQ=="
},
"@humanwhocodes/config-array": {
"version": "0.11.6",

View File

@ -64,7 +64,7 @@
"@codemirror/legacy-modes": "^6.2.0",
"@formatjs/intl-listformat": "^7.1.3",
"@fortawesome/fontawesome-free": "^6.2.0",
"@goauthentik/api": "^2022.10.0-1666383274",
"@goauthentik/api": "^2022.11.2-1669997585",
"@jackfranklin/rollup-plugin-markdown": "^0.4.0",
"@lingui/cli": "^3.14.0",
"@lingui/core": "^3.14.0",

View File

@ -3,7 +3,7 @@ export const SUCCESS_CLASS = "pf-m-success";
export const ERROR_CLASS = "pf-m-danger";
export const PROGRESS_CLASS = "pf-m-in-progress";
export const CURRENT_CLASS = "pf-m-current";
export const VERSION = "2022.10.2";
export const VERSION = "2022.10.3";
export const TITLE_DEFAULT = "authentik";
export const ROUTE_SEPARATOR = ";";