e0dcade9ad
start moveing stuff to package. Check previous commit for changes to forwardport
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 18:37:50 +02:00
1a6ab7f24b
broker improvements
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 18:37:31 +02:00
769844314c
stop celery from being imported
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 16:02:07 +02:00
e211604860
implement send_on_startup
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 16:00:56 +02:00
7ed711e8f0
pause schedules by default if needed
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 15:44:42 +02:00
196b276345
lint
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 15:42:15 +02:00
3c62c80ff1
no hardcode in web
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 15:34:50 +02:00
a031f1107a
wip
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 14:28:49 +02:00
8f399bba3f
Merge branch 'main' into celery-2-dramatiq
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 14:22:40 +02:00
e354e877ea
wip
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 14:18:33 +02:00
3b913ac5ef
translate: Updates for file web/xliff/en.xlf in zh-Hans ( #15019 )
...
Translate web/xliff/en.xlf in zh-Hans
100% translated source file: 'web/xliff/en.xlf'
on 'zh-Hans'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-06-12 14:03:15 +02:00
f254b8cf8c
fully fix scim tests
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 13:00:17 +02:00
814b06322a
fix todo
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 12:29:48 +02:00
217063ef7b
fix db connection middleware
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 12:29:13 +02:00
c2f7883a5c
start work on moving to a package
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 12:12:31 +02:00
bd64c34787
init django-dramatiq-postgres package
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 10:36:21 +02:00
7518d4391f
timelimit ms everywhere
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-12 10:15:55 +02:00
fed094b317
website/docs: correct minor version in release notes ( #15012 )
...
Signed-off-by: Zeik0s <35345686+Zeik0s@users.noreply.github.com >
2025-06-11 22:13:53 +00:00
88d83c10a4
root: test label handling and error reporting in PytestTestRunner ( #14000 )
...
* root: test label handling and error reporting in PytestTestRunner
- Added a check for empty test labels and return a clear error instead of failing silently.
- Improved handling of dotted module paths + included support for single-module names.
- Replaced a RuntimeError with a printed error message when a test label can't be resolved.
- Wrapped the pytest.main call in a try/except to catch unexpected errors and print them nicely.
* Fix handling for test file without extension and lint
* oops
* little improvments too
2025-06-11 19:14:38 +02:00
5af2378738
outposts/ldap: Handle comma-separated attributes in LDAP search requests ( #15000 )
...
Closes https://github.com/goauthentik/authentik/issues/13539
When LDAP clients like Jira submit search requests with comma-separated attributes
(e.g., ["uid,cn,sn"] instead of ["uid", "cn", "sn"]), the LDAP outpost would return
an "Operations Error". Ths fix adds attribute normalization to properly handle
both formats by splitting comma separated attributes into individual entries.
Tests pass:
```
=== RUN TestNormalizeAttributes
=== RUN TestNormalizeAttributes/Empty_input
=== RUN TestNormalizeAttributes/No_commas
=== RUN TestNormalizeAttributes/Single_comma-separated_string
=== RUN TestNormalizeAttributes/Mixed_input
=== RUN TestNormalizeAttributes/With_spaces
=== RUN TestNormalizeAttributes/Empty_parts
=== RUN TestNormalizeAttributes/Single_element
=== RUN TestNormalizeAttributes/Only_commas
=== RUN TestNormalizeAttributes/Multiple_comma-separated_attributes
=== RUN TestNormalizeAttributes/Case_preservation
=== RUN TestNormalizeAttributes/Leading_and_trailing_spaces
=== RUN TestNormalizeAttributes/Real-world_LDAP_attribute_examples
=== RUN TestNormalizeAttributes/Jira-style_attribute_format
=== RUN TestNormalizeAttributes/Single_string_with_single_attribute
=== RUN TestNormalizeAttributes/Mix_of_standard_and_operational_attributes
--- PASS: TestNormalizeAttributes (0.00s)
--- PASS: TestNormalizeAttributes/Empty_input (0.00s)
--- PASS: TestNormalizeAttributes/No_commas (0.00s)
--- PASS: TestNormalizeAttributes/Single_comma-separated_string (0.00s)
--- PASS: TestNormalizeAttributes/Mixed_input (0.00s)
--- PASS: TestNormalizeAttributes/With_spaces (0.00s)
--- PASS: TestNormalizeAttributes/Empty_parts (0.00s)
--- PASS: TestNormalizeAttributes/Single_element (0.00s)
--- PASS: TestNormalizeAttributes/Only_commas (0.00s)
--- PASS: TestNormalizeAttributes/Multiple_comma-separated_attributes (0.00s)
--- PASS: TestNormalizeAttributes/Case_preservation (0.00s)
--- PASS: TestNormalizeAttributes/Leading_and_trailing_spaces (0.00s)
--- PASS: TestNormalizeAttributes/Real-world_LDAP_attribute_examples (0.00s)
--- PASS: TestNormalizeAttributes/Jira-style_attribute_format (0.00s)
--- PASS: TestNormalizeAttributes/Single_string_with_single_attribute (0.00s)
--- PASS: TestNormalizeAttributes/Mix_of_standard_and_operational_attributes (0.00s)
PASS
ok goauthentik.io/internal/outpost/ldap/search 0.194s
```
2025-06-11 18:16:40 +02:00
e67bd79c66
Merge branch 'main' into celery-2-dramatiq
2025-06-11 18:10:37 +02:00
2fc6da53c1
lint
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 18:10:01 +02:00
250a98cf98
fix view_systemtask
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 18:03:37 +02:00
6ec745ddc0
website/integrations: standardize application slug placeholder in docs ( #15007 )
...
Standardizes application slug placeholder in docs
2025-06-11 16:52:21 +01:00
f2926fa1eb
lint fix
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 17:45:05 +02:00
5e2af4a740
better finding of scheduled models
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 17:39:45 +02:00
41f2ca42cc
remove duplicated inheritance model
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 17:32:25 +02:00
a44375a9d8
core: bump django from 5.1.10 to 5.1.11 ( #14997 )
2025-06-11 17:26:52 +02:00
7ef547b357
restart front
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 17:25:23 +02:00
3bf9cf681a
web/elements: Add light mode custom css handling ( #14944 )
...
* fix(ui): Add light mode custom css handling
Signed-off-by: CodeMax IT Solutions Pvt. Ltd. <137166088+cdmx1@users.noreply.github.com >
* Update Base.ts
Signed-off-by: CodeMax IT Solutions Pvt. Ltd. <137166088+cdmx1@users.noreply.github.com >
---------
Signed-off-by: CodeMax IT Solutions Pvt. Ltd. <137166088+cdmx1@users.noreply.github.com >
2025-06-11 15:03:05 +02:00
b8cf0e5dc4
website/docs: add host header dynamic property mapping ( #15006 )
...
* Adds the property mapping and updates some language in the doc
* Typos
2025-06-11 13:50:18 +01:00
1a9c529e92
prevent further mis-registered actors from happening
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 14:40:21 +02:00
2180bdf7c2
core, web: update translations ( #14999 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-06-11 12:35:18 +00:00
75d19bfe76
fix 'circular' import
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-11 14:28:04 +02:00
8af2d189d9
website/docs: fixes misplaced sentence ( #14998 )
...
fixes misplaced sentence
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-06-11 07:17:03 -05:00
66f96a280e
website/docs: note usage of is_restored
by source stage ( #13422 )
2025-06-11 13:52:26 +02:00
09d5c6fa43
website: bump the build group in /website with 6 updates ( #15001 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.11.31` | `1.12.0` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.11.31` | `1.12.0` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.11.31` | `1.12.0` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.11.31` | `1.12.0` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.11.31` | `1.12.0` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.11.31` | `1.12.0` |
Updates `@swc/core-darwin-arm64` from 1.11.31 to 1.12.0
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/compare/v1.11.31...v1.12.0 )
Updates `@swc/core-linux-arm64-gnu` from 1.11.31 to 1.12.0
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/compare/v1.11.31...v1.12.0 )
Updates `@swc/core-linux-x64-gnu` from 1.11.31 to 1.12.0
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/compare/v1.11.31...v1.12.0 )
Updates `@swc/html-darwin-arm64` from 1.11.31 to 1.12.0
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/compare/v1.11.31...v1.12.0 )
Updates `@swc/html-linux-arm64-gnu` from 1.11.31 to 1.12.0
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/compare/v1.11.31...v1.12.0 )
Updates `@swc/html-linux-x64-gnu` from 1.11.31 to 1.12.0
- [Release notes](https://github.com/swc-project/swc/releases )
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md )
- [Commits](https://github.com/swc-project/swc/compare/v1.11.31...v1.12.0 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.12.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-11 12:23:47 +02:00
6eb4e78b22
web: bump @sentry/browser from 9.27.0 to 9.28.0 in /web in the sentry group across 1 directory ( #15002 )
...
web: bump @sentry/browser in /web in the sentry group across 1 directory
Bumps the sentry group with 1 update in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ).
Updates `@sentry/browser` from 9.27.0 to 9.28.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/9.27.0...9.28.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.28.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-11 12:23:36 +02:00
c3eada8d33
core: bump msgraph-sdk from 1.32.0 to 1.33.0 ( #15003 )
...
Bumps [msgraph-sdk](https://github.com/microsoftgraph/msgraph-sdk-python ) from 1.32.0 to 1.33.0.
- [Release notes](https://github.com/microsoftgraph/msgraph-sdk-python/releases )
- [Changelog](https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/CHANGELOG.md )
- [Commits](https://github.com/microsoftgraph/msgraph-sdk-python/compare/v1.32.0...v1.33.0 )
---
updated-dependencies:
- dependency-name: msgraph-sdk
dependency-version: 1.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-11 12:22:53 +02:00
48130a7463
core: bump google-api-python-client from 2.171.0 to 2.172.0 ( #15004 )
...
Bumps [google-api-python-client](https://github.com/googleapis/google-api-python-client ) from 2.171.0 to 2.172.0.
- [Release notes](https://github.com/googleapis/google-api-python-client/releases )
- [Commits](https://github.com/googleapis/google-api-python-client/compare/v2.171.0...v2.172.0 )
---
updated-dependencies:
- dependency-name: google-api-python-client
dependency-version: 2.172.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-11 12:22:44 +02:00
9ffb2443f6
web/admin: fix language in certificate import ( #14953 )
...
* web: Add InvalidationFlow to Radius Provider dialogues
## What
- Bugfix: adds the InvalidationFlow to the Radius Provider dialogues
- Repairs: `{"invalidation_flow":["This field is required."]}` message, which was *not* propagated
to the Notification.
- Nitpick: Pretties `?foo=${true}` expressions: `s/\?([^=]+)=\$\{true\}/\1/`
## Note
Yes, I know I'm going to have to do more magic when we harmonize the forms, and no, I didn't add the
Property Mappings to the wizard, and yes, I know I'm going to have pain with the *new* version of
the wizard. But this is a serious bug; you can't make Radius servers with *either* of the current
dialogues at the moment.
* This (temporary) change is needed to prevent the unit tests from failing.
\# What
\# Why
\# How
\# Designs
\# Test Steps
\# Other Notes
* Revert "This (temporary) change is needed to prevent the unit tests from failing."
This reverts commit dddde09be5
.
* web/admin: fix language in certificate import modal
There are two buttons on the CertificateKeyPairList: "Create" and "Generate". This language is confusing, as it is unclear what the difference between those two options could be. The
second generates and stores a new key pair; the first only creates an entry in our database for an existing pair generated externally. After a short conversation, changing it to
"Import" seemed like a safe option.
\# What
\# Why
\# How
\# Designs
\# Test Steps
\# Other Notes
---------
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-06-10 18:49:15 +02:00
0b4aed7a3d
website/integrations: add new categories and update sidebar info ( #14995 )
...
* Added categories and moved docs
* Moved more docs
* move a couple more things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* auto-sort categories
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Updated sidebar info
* Add path to integrations file
* Moves meshcentral to device management. Moves cloudflare access and globalprotect to networking
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-06-10 17:18:09 +01:00
86dd1a96f6
brands: fix custom_css being escaped ( #14994 )
...
* brands: fix custom_css being escaped
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* escape adequately
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-10 17:19:38 +02:00
7f8f7376e0
wip
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-10 16:55:56 +02:00
0ce017b77e
web/admin: show selected policy engine mode on bindings pages, allow setting it on sources ( #12963 )
...
* web/admin: show select policy engine mode on bindings pages, allow setting it in sources
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* slight cleanup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-06-10 16:17:31 +02:00
7c49de9cba
wip
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-10 16:16:12 +02:00
00ac9b6367
reset migrations
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-10 15:46:44 +02:00
0e786f7040
wip
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-10 15:42:40 +02:00
03d363ba84
wip
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-10 15:38:52 +02:00
e22e79f310
website/integrations: add bitwarden ( #14922 )
...
* Add doc and update sidebar
* WIP
* WIP
* SAML configuration complete
* Capitalisation
* Added OIDC instructions
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied Dominic's suggestions
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestion from Dominic
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/services/bitwarden/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied Tana's suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-06-10 08:35:13 -05:00