ilot/authentik: upgrade to 2024.8.2
This commit is contained in:
parent
fda327f5dd
commit
594c2b833e
2 changed files with 117 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
pkgname=authentik
|
||||
pkgver=2024.6.4
|
||||
pkgver=2024.8.2
|
||||
pkgrel=0
|
||||
pkgdesc="An open-source Identity Provider focused on flexibility and versatility"
|
||||
url="https://github.com/goauthentik/authentik"
|
||||
|
@ -54,6 +54,7 @@ depends="
|
|||
py3-deprecated
|
||||
py3-dnspython
|
||||
py3-django
|
||||
py3-django-countries
|
||||
py3-django-cte
|
||||
py3-django-filter
|
||||
py3-django-guardian
|
||||
|
@ -70,6 +71,7 @@ depends="
|
|||
py3-dotenv
|
||||
py3-dumb-init
|
||||
py3-duo_client
|
||||
py3-drf-orjson-renderer
|
||||
py3-drf-spectacular
|
||||
py3-email-validator
|
||||
py3-fido2
|
||||
|
@ -110,6 +112,7 @@ depends="
|
|||
py3-pydantic-scim
|
||||
py3-pynacl
|
||||
py3-pyrsistent
|
||||
py3-pyrad
|
||||
py3-python-jwt
|
||||
py3-redis
|
||||
py3-requests
|
||||
|
@ -127,7 +130,6 @@ depends="
|
|||
py3-swagger-spec-validator
|
||||
py3-tornado
|
||||
py3-twilio
|
||||
py3-twisted
|
||||
py3-txaio
|
||||
py3-tenant-schemas-celery
|
||||
py3-typing-extensions
|
||||
|
@ -168,6 +170,7 @@ source="
|
|||
authentik-manage.sh
|
||||
fix-ak-bash.patch
|
||||
root-settings-csrf_trusted_origins.patch
|
||||
go-downgrade-1.22.patch
|
||||
"
|
||||
builddir="$srcdir/"authentik-version-$pkgver
|
||||
subpackages="$pkgname-openrc $pkgname-doc"
|
||||
|
@ -250,7 +253,7 @@ package() {
|
|||
}
|
||||
|
||||
sha512sums="
|
||||
8939dd22097a0ac17d3d974788d1e4c2d363706ff07179a73c5bc03f42c4d45e92e562521212a5908b806fee103a8dcd613852cf36952f14e36f82e434e013ce authentik-2024.6.4.tar.gz
|
||||
02e54183fa35e7a06780f68239db7b3b5e2ccd3c6e1fcaf97690d9b596077c7a5345dbb5b005f39ff67a0dae83bd9b71d1c6d18ba8fae9cc7174d5d856360bff authentik-2024.8.2.tar.gz
|
||||
4defb4fe3a4230f4aa517fbecd5e5b8bcef2a64e1b40615660ae9eec33597310a09df5e126f4d39ce7764bd1716c0a7040637699135c103cbc1879593c6c06f1 authentik.openrc
|
||||
6cb03b9b69df39bb4539fe05c966536314d766b2e9307a92d87070ba5f5b7e7ab70f1b5ee1ab3c0c50c23454f9c5a4caec29e63fdf411bbb7a124ad687569b89 authentik-worker.openrc
|
||||
351e6920d987861f8bf0d7ab2f942db716a8dbdad1f690ac662a6ef29ac0fd46cf817cf557de08f1c024703503d36bc8b46f0d9eb1ecaeb399dce4c3bb527d17 authentik-ldap.openrc
|
||||
|
@ -258,4 +261,5 @@ sha512sums="
|
|||
f1a3cb215b6210fa7d857a452a9f2bc4dc0520e49b9fa7027547cff093d740a7e2548f1bf1f8831f7d5ccb80c8e523ee0c8bafcc4dc42d2788725f2137d21bee authentik-manage.sh
|
||||
3e47db684a3f353dcecdb7bab8836b9d5198766735d77f676a51d952141a0cf9903fcb92e6306c48d2522d7a1f3028b37247fdc1dc74d4d6e043da7eb4f36d49 fix-ak-bash.patch
|
||||
5c60e54b6a7829d611af66f5cb8184a002b5ae927efbd024c054a7c176fcb9efcfbe5685279ffcf0390b0f0abb3bb03e02782c6867c2b38d1ad2d508aae83fa0 root-settings-csrf_trusted_origins.patch
|
||||
2664fcdb4193a6159852cc1f93a33b97f6bbc63fe371e8877a8f5ffd7f6f9e90ea4d84f743f45fa7c7d18193edb25842b1db9d5a872b3f26405dd1f5534aa9e7 go-downgrade-1.22.patch
|
||||
"
|
||||
|
|
110
ilot/authentik/go-downgrade-1.22.patch
Normal file
110
ilot/authentik/go-downgrade-1.22.patch
Normal file
|
@ -0,0 +1,110 @@
|
|||
diff --git a/go.mod b/go.mod
|
||||
index 65490a258..ba583840a 100644
|
||||
--- a/go.mod
|
||||
+++ b/go.mod
|
||||
@@ -1,38 +1,37 @@
|
||||
module goauthentik.io
|
||||
|
||||
-go 1.23
|
||||
-
|
||||
-toolchain go1.23.0
|
||||
+go 1.22.2
|
||||
|
||||
require (
|
||||
beryju.io/ldap v0.1.0
|
||||
- github.com/coreos/go-oidc/v3 v3.11.0
|
||||
+ github.com/coreos/go-oidc v2.2.1+incompatible
|
||||
github.com/getsentry/sentry-go v0.28.1
|
||||
github.com/go-http-utils/etag v0.0.0-20161124023236-513ea8f21eb1
|
||||
github.com/go-ldap/ldap/v3 v3.4.8
|
||||
github.com/go-openapi/runtime v0.28.0
|
||||
+ github.com/go-openapi/strfmt v0.23.0
|
||||
github.com/golang-jwt/jwt/v5 v5.2.1
|
||||
github.com/google/uuid v1.6.0
|
||||
github.com/gorilla/handlers v1.5.2
|
||||
github.com/gorilla/mux v1.8.1
|
||||
github.com/gorilla/securecookie v1.1.2
|
||||
- github.com/gorilla/sessions v1.4.0
|
||||
+ github.com/gorilla/sessions v1.2.2
|
||||
github.com/gorilla/websocket v1.5.3
|
||||
- github.com/jellydator/ttlcache/v3 v3.2.1
|
||||
+ github.com/jellydator/ttlcache/v3 v3.2.0
|
||||
github.com/mitchellh/mapstructure v1.5.0
|
||||
github.com/nmcclain/asn1-ber v0.0.0-20170104154839-2661553a0484
|
||||
github.com/pires/go-proxyproto v0.7.0
|
||||
- github.com/prometheus/client_golang v1.20.2
|
||||
- github.com/redis/go-redis/v9 v9.6.1
|
||||
- github.com/sethvargo/go-envconfig v1.1.0
|
||||
+ github.com/prometheus/client_golang v1.19.1
|
||||
+ github.com/redis/go-redis/v9 v9.5.3
|
||||
+ github.com/sethvargo/go-envconfig v1.0.3
|
||||
github.com/sirupsen/logrus v1.9.3
|
||||
- github.com/spf13/cobra v1.8.1
|
||||
+ github.com/spf13/cobra v1.8.0
|
||||
github.com/stretchr/testify v1.9.0
|
||||
github.com/wwt/guac v1.3.2
|
||||
- goauthentik.io/api/v3 v3.2024064.1
|
||||
+ goauthentik.io/api/v3 v3.2024060.5
|
||||
golang.org/x/exp v0.0.0-20230210204819-062eb4c674ab
|
||||
- golang.org/x/oauth2 v0.22.0
|
||||
- golang.org/x/sync v0.8.0
|
||||
+ golang.org/x/oauth2 v0.21.0
|
||||
+ golang.org/x/sync v0.7.0
|
||||
gopkg.in/yaml.v2 v2.4.0
|
||||
layeh.com/radius v0.0.0-20210819152912-ad72663a72ab
|
||||
)
|
||||
@@ -41,14 +40,13 @@ require (
|
||||
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
||||
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
|
||||
github.com/beorn7/perks v1.0.1 // indirect
|
||||
- github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
||||
+ github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
||||
github.com/felixge/httpsnoop v1.0.3 // indirect
|
||||
github.com/go-asn1-ber/asn1-ber v1.5.5 // indirect
|
||||
github.com/go-http-utils/fresh v0.0.0-20161124030543-7231e26a4b27 // indirect
|
||||
github.com/go-http-utils/headers v0.0.0-20181008091004-fed159eddc2a // indirect
|
||||
- github.com/go-jose/go-jose/v4 v4.0.2 // indirect
|
||||
github.com/go-logr/logr v1.4.1 // indirect
|
||||
github.com/go-logr/stdr v1.2.2 // indirect
|
||||
github.com/go-openapi/analysis v0.23.0 // indirect
|
||||
@@ -57,28 +55,28 @@ require (
|
||||
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
||||
github.com/go-openapi/loads v0.22.0 // indirect
|
||||
github.com/go-openapi/spec v0.21.0 // indirect
|
||||
- github.com/go-openapi/strfmt v0.23.0 // indirect
|
||||
github.com/go-openapi/swag v0.23.0 // indirect
|
||||
github.com/go-openapi/validate v0.24.0 // indirect
|
||||
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
||||
github.com/josharian/intern v1.0.0 // indirect
|
||||
- github.com/klauspost/compress v1.17.9 // indirect
|
||||
github.com/mailru/easyjson v0.7.7 // indirect
|
||||
- github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
||||
github.com/oklog/ulid v1.3.1 // indirect
|
||||
github.com/opentracing/opentracing-go v1.2.0 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
- github.com/prometheus/client_model v0.6.1 // indirect
|
||||
- github.com/prometheus/common v0.55.0 // indirect
|
||||
- github.com/prometheus/procfs v0.15.1 // indirect
|
||||
+ github.com/pquerna/cachecontrol v0.0.0-20201205024021-ac21108117ac // indirect
|
||||
+ github.com/prometheus/client_model v0.5.0 // indirect
|
||||
+ github.com/prometheus/common v0.48.0 // indirect
|
||||
+ github.com/prometheus/procfs v0.12.0 // indirect
|
||||
github.com/spf13/pflag v1.0.5 // indirect
|
||||
go.mongodb.org/mongo-driver v1.14.0 // indirect
|
||||
go.opentelemetry.io/otel v1.24.0 // indirect
|
||||
go.opentelemetry.io/otel/metric v1.24.0 // indirect
|
||||
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
||||
- golang.org/x/crypto v0.25.0 // indirect
|
||||
- golang.org/x/sys v0.22.0 // indirect
|
||||
- golang.org/x/text v0.16.0 // indirect
|
||||
- google.golang.org/protobuf v1.34.2 // indirect
|
||||
+ golang.org/x/crypto v0.21.0 // indirect
|
||||
+ golang.org/x/net v0.23.0 // indirect
|
||||
+ golang.org/x/sys v0.18.0 // indirect
|
||||
+ golang.org/x/text v0.14.0 // indirect
|
||||
+ google.golang.org/protobuf v1.33.0 // indirect
|
||||
+ gopkg.in/square/go-jose.v2 v2.5.1 // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
)
|
Loading…
Add table
Reference in a new issue