File tree 11 files changed +19
-11
lines changed
11 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2024.12.2
2
+ current_version = 2024.12.3
3
3
tag = True
4
4
commit = True
5
5
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<rc_t>[a-zA-Z-]+)(?P<rc_n>[1-9]\\d*))?
Original file line number Diff line number Diff line change 9
9
build-server :
10
10
uses : ./.github/workflows/_reusable-docker-build.yaml
11
11
secrets : inherit
12
+ permissions :
13
+ # Needed to upload container images to ghcr.io
14
+ packages : write
15
+ # Needed for attestation
16
+ id-token : write
17
+ attestations : write
12
18
with :
13
19
image_name : ghcr.io/goauthentik/server,beryju/authentik
14
20
release : true
21
+ registry_dockerhub : true
22
+ registry_ghcr : true
15
23
build-outpost :
16
24
runs-on : ubuntu-latest
17
25
permissions :
Original file line number Diff line number Diff line change 2
2
3
3
from os import environ
4
4
5
- __version__ = "2024.12.2 "
5
+ __version__ = "2024.12.3 "
6
6
ENV_GIT_HASH_KEY = "GIT_BUILD_HASH"
7
7
8
8
Original file line number Diff line number Diff line change 2
2
"$schema": "http://json-schema.org/draft-07/schema",
3
3
"$id": "https://goauthentik.io/blueprints/schema.json",
4
4
"type": "object",
5
- "title": "authentik 2024.12.2 Blueprint schema",
5
+ "title": "authentik 2024.12.3 Blueprint schema",
6
6
"required": [
7
7
"version",
8
8
"entries"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ services:
31
31
volumes :
32
32
- redis:/data
33
33
server :
34
- image : ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.2 }
34
+ image : ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.3 }
35
35
restart : unless-stopped
36
36
command : server
37
37
environment :
@@ -54,7 +54,7 @@ services:
54
54
redis :
55
55
condition : service_healthy
56
56
worker :
57
- image : ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.2 }
57
+ image : ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2024.12.3 }
58
58
restart : unless-stopped
59
59
command : worker
60
60
environment :
Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ func UserAgent() string {
29
29
return fmt .Sprintf ("authentik@%s" , FullVersion ())
30
30
}
31
31
32
- const VERSION = "2024.12.2 "
32
+ const VERSION = "2024.12.3 "
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Parameters:
26
26
Description : authentik Docker image
27
27
AuthentikVersion :
28
28
Type : String
29
- Default : 2024.12.2
29
+ Default : 2024.12.3
30
30
Description : authentik Docker image tag
31
31
AuthentikServerCPU :
32
32
Type : Number
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goauthentik/authentik" ,
3
- "version" : " 2024.12.2 " ,
3
+ "version" : " 2024.12.3 " ,
4
4
"private" : true
5
5
}
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " authentik"
3
- version = " 2024.12.2 "
3
+ version = " 2024.12.3 "
4
4
description = " "
5
5
authors = [
" authentik Team <[email protected] >" ]
6
6
Original file line number Diff line number Diff line change 1
1
openapi: 3.0.3
2
2
info:
3
3
title: authentik
4
- version: 2024.12.2
4
+ version: 2024.12.3
5
5
description: Making authentication simple.
6
6
contact:
7
7
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export const SUCCESS_CLASS = "pf-m-success";
3
3
export const ERROR_CLASS = "pf-m-danger" ;
4
4
export const PROGRESS_CLASS = "pf-m-in-progress" ;
5
5
export const CURRENT_CLASS = "pf-m-current" ;
6
- export const VERSION = "2024.12.2 " ;
6
+ export const VERSION = "2024.12.3 " ;
7
7
export const TITLE_DEFAULT = "authentik" ;
8
8
export const ROUTE_SEPARATOR = ";" ;
9
9
You can’t perform that action at this time.
0 commit comments