authentik-automation[bot]
f6f2f6ceab
release: 2025.12.2
2026-01-30 17:44:27 +00:00
authentik-automation[bot]
6585bdad4d
web: Enforce challenge nullish types. (cherry-pick #19768 to version-2025.12) ( #19777 )
...
* Cherry-pick #19768 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19768
Original commit: f080a82f35
* Fix type.
---------
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-30 13:56:27 -03:00
authentik-automation[bot]
adfab8e322
website/docs: endpoint devices: add version command (cherry-pick #19767 to version-2025.12) ( #19877 )
...
website/docs: endpoint devices: add version command (#19767 )
* Add version command
* Add version command to install docs
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-30 16:31:10 +00:00
authentik-automation[bot]
644e8e6915
web: Session UI Config Lifecycle (cherry-pick #19788 to version-2025.12) ( #19821 )
...
web: Session UI Config Lifecycle (#19788 )
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-30 03:29:48 -03:00
authentik-automation[bot]
f4848883fe
web/admin: fix captcha stage provider selector not showing saved value (cherry-pick #19555 to version-2025.12) ( #19656 )
...
Cherry-pick #19555 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19555
Original commit: 1fa2cc075b
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-30 05:52:21 +00:00
authentik-automation[bot]
29e23ce08c
web/admin: fix file upload not preserving extension for custom names with dots (cherry-pick #19548 to version-2025.12) ( #19685 )
...
Cherry-pick #19548 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19548
Original commit: c67447d4db
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-30 03:06:24 +00:00
authentik-automation[bot]
0c95d5bbe3
web/table: align row action icons and tooltip color (cherry-pick #19736 to version-2025.12) ( #19773 )
...
web/table: align row action icons and tooltip color (#19736 )
Overview:
Normalize row-action icon padding and inherit icon color through
tooltips to avoid misalignment and false "active" styling on the Tokens
page.
Testing:
Replicate linked issue
Motivation:
Fix minor visual inconsistencies in action icons.
Closes https://github.com/goauthentik/authentik/issues/19315
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-30 02:34:31 +00:00
authentik-automation[bot]
15c4de7c5b
admin/files: add centralized theme variable support for file URLs (cherry-pick #19657 to version-2025.12) ( #19793 )
...
* Cherry-pick #19657 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19657
Original commit: 33594c9cb4
* fix conflict
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2026-01-30 01:10:25 +00:00
authentik-automation[bot]
a4187baa10
website/docs: add tip for recovering from accidental main branch work (cherry-pick #19865 to version-2025.12) ( #19866 )
...
website/docs: add tip for recovering from accidental main branch work (#19865 )
Overview:
Add a tip to the contributing guide explaining how to recover if you accidentally started making changes on `main` instead of a feature branch.
Testing:
n/a
Motivation:
Closes: https://github.com/goauthentik/authentik/issues/18740
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-29 22:41:21 +00:00
authentik-automation[bot]
ff42054d9d
website/docs: add more info to entra id scim doc (cherry-pick #19849 to version-2025.12) ( #19855 )
...
website/docs: add more info to entra id scim doc (#19849 )
* Add info
* Spelling
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-29 21:48:19 +00:00
authentik-automation[bot]
7b0a6b4282
sources/oauth: Fix an issue where wechat may crash duing login. (cherry-pick #18973 to version-2025.12) ( #19854 )
...
sources/oauth: Fix an issue where wechat may crash duing login. (#18973 )
* Fix an issue where wechat may crash duing login.
The WeChatOAuth2Client.get_access_token method was defined with a signature that required redirect_uri and code arguments, but the generic OAuth callback handler calls this method without any arguments (expecting the client to retrieve them from the request context).
I have fixed
authentik/sources/oauth/types/wechat.py
by:
Updating
get_access_token
signature: It now accepts **request_kwargs instead of mandatory positional arguments, matching the base
OAuth2Client
.
Retrieving code correctly: It now looks for code in the request parameters using self.get_request_arg, just like standard OAuth clients.
Adding State Validation: I added self.check_application_state() to ensure the
state
parameter matches, preventing CSRF attacks.
Improving Error Handling: Both
get_access_token
and
get_profile_info
now return None (or error dicts) instead of raising exceptions when API calls fail. This prevents the "Server Error" (500) crashes you were seeing and allows Authentik to handle login failures gracefully.
* Update wechat.py
* Update wechat.py
* Remove unnecessary blank lines in wechat.py
* Fix linting issues in wechat.py
---------
Signed-off-by: Anduin Xue <anduin@aiursoft.com >
Co-authored-by: Anduin Xue <anduin@aiursoft.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-29 20:37:47 +00:00
authentik-automation[bot]
8a55050da5
sources/saml: properly catch InvalidSignature exception (cherry-pick #19641 to version-2025.12) ( #19650 )
...
sources/saml: properly catch InvalidSignature exception (#19641 )
Fix error catching
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-29 20:24:11 +01:00
authentik-automation[bot]
87d7ebcfdf
providers/scim: fix email validation mismatch (cherry-pick #19848 to version-2025.12) ( #19853 )
...
providers/scim: fix email validation mismatch (#19848 )
* providers/scim: fix email validation mismatch
* fix wrong type of email
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-29 18:13:52 +01:00
authentik-automation[bot]
6ad4bbefcf
Fix authenticator sms docs (cherry-pick #19797 to version-2025.12) ( #19816 )
...
Fix authenticator sms docs (#19797 )
* website/docs: fix syntax errors in authenticator sms
* website/docs: format json
Co-authored-by: macmoritz <49832924+macmoritz@users.noreply.github.com >
2026-01-28 10:26:21 +00:00
authentik-automation[bot]
1538e42f3d
website/docs: endpoint devices: fix local device login (cherry-pick #19698 to version-2025.12) ( #19790 )
...
website/docs: endpoint devices: fix local device login (#19698 )
* Start PR
* WIP
* Spelling and link fix
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-27 17:33:04 +00:00
authentik-automation[bot]
73ac3f6336
website/docs: fix Transifex link in translation guide (cherry-pick #19735 to version-2025.12) ( #19771 )
...
website/docs: fix Transifex link in translation guide (#19735 )
Closes https://github.com/goauthentik/authentik/issues/19730
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-27 17:45:56 +01:00
authentik-automation[bot]
eb127fd39d
web/elements: stabilize dual-select status height (cherry-pick #19734 to version-2025.12) ( #19776 )
...
web/elements: stabilize dual-select status height (#19734 )
* web/elements: stabilize dual-select status height
Overview:
Reserve a stable two-line height for the selected-status row to minimize layout shifts on small screens, and use proper singular/plural wording for status messages.
Testing:
Behavior shown in linked issue
Motivation:
Avoid accidental removals caused by status text reflow/jumping on narrow
viewports.
Closes: https://github.com/goauthentik/authentik/issues/19732
* web: Comment to explain first suggestion
Ref: https://authentiksecurity.slack.com/archives/C08C0SCU2JV/p1769471926609429
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-27 16:54:51 +01:00
authentik-automation[bot]
12978bd87d
web/elements: reduce spacing between collapsible form groups (cherry-pick #19627 to version-2025.12) ( #19640 )
...
web/elements: reduce spacing between collapsible form groups (#19627 )
Overview:
Reduce vertical padding on ak-form-group sections to create tighter spacing between collapsible form sections.
- Reduce summary padding-block from 1rem to 0.5rem when open
- Reduce summary padding-block to 0.25rem when closed
- Reduce content bottom padding from 1rem to 0.5rem
- Remove debug red outline on marker hover
Testing:
Visiting the UI
Screenshots:
Before:
<!-- TODO -->
After:
<!-- TODO -->
Motivation:
Tooooo muchhhh spaceeeeee wasssstedddd
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-27 16:44:16 +01:00
authentik-automation[bot]
4d8ba745b0
root: update client-go generation (cherry-pick #19762 to version-2025.12) ( #19791 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-27 16:22:18 +01:00
authentik-automation[bot]
90f2a01451
web/sfe: downgrade bootstrap, add access denied test (cherry-pick #19763 to version-2025.12) ( #19765 )
...
Cherry-pick #19763 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19763
Original commit: cdd3fb7827
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-27 01:06:01 +01:00
authentik-automation[bot]
177ebe06b2
web/admin: fix impersonation form requesting data without being opened (cherry-pick #19673 to version-2025.12) ( #19712 )
...
web/admin: fix impersonation form requesting data without being opened (#19673 )
* reverse bubble events
* rework impersonation form to not use firstUpdated
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-23 21:47:08 +01:00
authentik-automation[bot]
f6a5ddd367
core: return bad request when user is authenticated and not active (cherry-pick #19706 to version-2025.12) ( #19710 )
...
core: return bad request when user is authenticated and not active (#19706 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-23 21:18:30 +01:00
authentik-automation[bot]
dbec7ead5d
sources/oauth: add fallback for id_token when profile URL is not available (cherry-pick #19311 to version-2025.12) ( #19704 )
...
* sources/oauth: add fallback for id_token when profile URL is not available (#19311 )
* sources/oauth: add fallback for id_token when profile URL is not available
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix syntax
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-23 20:48:12 +01:00
authentik-automation[bot]
a1e2a50037
internal: fix incorrect metric calculation (cherry-pick #19701 to version-2025.12) ( #19703 )
...
internal: fix incorrect metric calculation (#19701 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-23 17:17:53 +01:00
authentik-automation[bot]
f06d36e48f
web/admin: fix brand form sending "undefined" string for blank default application (cherry-pick #19658 to version-2025.12) ( #19682 )
...
Cherry-pick #19658 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19658
Original commit: 7550b85495
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-23 01:08:56 +00:00
authentik-automation[bot]
dd2ad94971
web/forms: fix forms not resetting state when modal closes (cherry-pick #19562 to version-2025.12) ( #19635 )
...
web/forms: fix forms not resetting state when modal closes (#19562 )
* web/forms: fix forms not resetting state when modal closes
Overview:
Forms were not properly resetting their state when closing modals, which caused stale values to persist when reopening forms. This affected all forms with @state() decorated properties.
Testing:
1. Create any item (user, token, application, etc.), close modal
2. Click Create again, form should show default/empty values
3. Edit an item, cancel, click Create - form should be empty
4. Edit an item, cancel, edit same item - should show correct data
Motivation:
Form inputs retained values from previous create/edit operations.
* Fix linter errors, types.
* Add property accessors, types.
---------
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-22 18:41:23 +00:00
authentik-automation[bot]
bfcdc9ea2f
sources/saml: Set AuthnRequest ProtocolBinding to HTTP-POST instead of HTTP-Redirect (cherry-pick #17378 to version-2025.12) ( #19649 )
...
sources/saml: Set AuthnRequest ProtocolBinding to HTTP-POST instead of HTTP-Redirect (#17378 )
* Use HTTP-POST instead of HTTP-Redirect for ProtocolBinding attribute in AuthnRequest
* Fix nits
---------
Signed-off-by: Katsushi Kobayashi <ikob@acm.org >
Co-authored-by: Katsushi Kobayashi <ikob@acm.org >
2026-01-22 15:33:35 +01:00
authentik-automation[bot]
b4beb1de9c
web/maintenance/no unknown attributes (part 1) (cherry-pick #18970 to version-2025.12) ( #19639 )
...
Cherry-pick #18970 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #18970
Original commit: 8b21392aa3
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2026-01-22 15:25:46 +01:00
authentik-automation[bot]
22d09744e0
web/maintenance: no missing element type definitions (cherry-pick #18950 to version-2025.12) ( #19638 )
...
web/maintenance: no missing element type definitions (#18950 )
* 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 .
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
* web/maintenance: lint pass to add missing HTMLElementTagNameMap entries
# What
This code mechanically adds HTMLElementTagNameMap entries to those files that were missing it.
Every entry in the report is in this format:
./src/elements/ak-table/stories/ak-select-table.stories.ts
'ak-select-table-test-sort' has not been registered on HTMLElementTagNameMap
84: export class SimpleTableSortTest extends LitElem
no-missing-element-type-definition
It was trivial to create a Perl script that extracted the file name, the tag name, and the class name, and turn that into a “Open this file and append the HTMLElementTagNameMap definition to the end,” then run `prettier` and `build` to validate that nothing broke.
I also had to hand-edit the JSDoc for `Form`. It is not, by itself, an element. It is an abstract class from which you can derive elements. The `@element` tag there confused lit-analyze, and lit-analyze was correct to call it out.
# Why
These entries help Typescript & Lit-Analyze lint our product, validating that each element is being used correctly and that the types being passed to it are correct.
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2026-01-22 15:25:31 +01:00
authentik-automation[bot]
e7d09e820f
providers/oauth2: add logout+jwt token type for oidc logout token. (cherry-pick #19554 to version-2025.12) ( #19675 )
...
providers/oauth2: add `logout+jwt` token type for oidc logout token. (#19554 )
* providers/oauth2: add `logout+jwt` token type for oidc logout token.
The oidc back-channel logout spec recommends using explicitly typed JWTs using the `typ` parameter in the JWT's header.
[spec](https://openid.net/specs/openid-connect-backchannel-1_0.html#CrossJWT )
This may be a breaking change for some implementations if they were already checking the type of the token to be `JWT` (the default value).
* Apply suggestion from @BeryJu
---------
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Jeroen <jeroen@velzen.cc >
Co-authored-by: Jens L. <jens@beryju.org >
2026-01-22 15:23:42 +01:00
authentik-automation[bot]
f47749ab60
web/maintenance: no unknown tag names (cherry-pick #18944 to version-2025.12) ( #19637 )
...
Cherry-pick #18944 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #18944
Original commit: 1143de97d0
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2026-01-22 15:23:09 +01:00
authentik-automation[bot]
b4f7455f21
website/docs: update LDAP search permission instructions (cherry-pick #19676 to version-2025.12) ( #19678 )
...
website/docs: update LDAP search permission instructions (#19676 )
Updates LDAP permissions
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-22 14:08:06 +00:00
authentik-automation[bot]
3beef73f82
web/a11y: Locale selector select styles, contrast. (cherry-pick #19634 to version-2025.12) ( #19651 )
...
web/a11y: Locale selector select styles, contrast. (#19634 )
web: Fix issues surrounding select styles, alignment, contrast.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-22 01:31:15 +01:00
authentik-automation[bot]
7ee1fbf267
website/docs: update endpoint agent windows log location (cherry-pick #19645 to version-2025.12) ( #19646 )
...
website/docs: update endpoint agent windows log location (#19645 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-21 16:57:27 +01:00
authentik-automation[bot]
ac0501fb06
website/docs: Update saml google workspace guide (cherry-pick #19624 to version-2025.12) ( #19642 )
...
website/docs: Update saml google workspace guide (#19624 )
* website/docs: Update saml google workspace guide
* Update website/docs/users-sources/sources/social-logins/google/workspace/index.md
* Update website/docs/users-sources/sources/social-logins/google/workspace/index.md
* Update website/docs/users-sources/sources/social-logins/google/workspace/index.md
* Update website/docs/users-sources/sources/social-logins/google/workspace/index.md
* Update website/docs/users-sources/sources/social-logins/google/workspace/index.md
* fix assertion signature typo
* add feedback
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-21 12:15:34 +00:00
authentik-automation[bot]
2b1bfbbb54
web/maintenance: fix missing custom web component imports (cherry-pick #18942 to version-2025.12) ( #19636 )
...
web/maintenance: fix missing custom web component imports (#18942 )
* 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 .
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
* web: lint pass to add all missing custom component imports
# What
The latest version of lit-analyze found 53(!) places in the codebase where we referenced a custom web component but not guarantee that it had been registered with the browser. Most of these are so commonplace that they had already been pulled in and registered elsewhere, but it’s still bad practice to leave these out.
* web/maintenance: lint pass to fix broken or unrecognized tag names
# What
This code removes two places in the code that referenced obsolete tag names.
In AkWizardFormPage, the case was a tag that was defined but never used. It, in turn, referenced a tag that did not exist.
In AkApplicationWizard’s ProviderChoices, we referenced eight custom components that did not exist and were never defined anywhere in the code. The references to `renderers` were obsolete; despite being defined they were never used. (This lack of use was covered up by lots of `export`s discarding Typescript’s check against unused field.)
- [x] The code has been formatted
# Why
- WizardFormPage references ‘ak-wizard-form’, which does not exist
- No other component imports, inherits, or extends WizardFormPage. It only exists by itself.
``` shell
$ rg 'WizardFormPage'
src/elements/wizard/WizardFormPage.ts
39:export class WizardFormPage extends WizardPage {
```
- The objects referenced here in these renderers do not exist.
- Without them, the priority ordering code becomes much simpler
- No LocalTypeCreate calls are needed; just use the default API TypeCreate types now
<!-- -->
./src/admin/applications/wizard/steps/ProviderChoices.ts
Unknown tag <ak-application-wizard-authentication-by-oauth>. Did you mean <ak-application-wizard-application-step>?
19: html`<ak-application-wizard-authentication-by-oauth></ak-appl
no-unknown-tag-name
Unknown tag <ak-application-wizard-authentication-by-saml-configuration>. Did you mean <ak-application-wizard-application-step>?
24: html`<ak-application-wizard-authentication-by-saml-configuration></ak-appl
no-unknown-tag-name
* Revert "web/maintenance: lint pass to fix broken or unrecognized tag names"
This reverts commit e9e073fbcc .
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2026-01-21 07:10:03 +00:00
authentik-automation[bot]
e9719cf7d5
web/user: fix Firefox for Android infinite render loop in user library (cherry-pick #19379 to version-2025.12) ( #19626 )
...
web/user: fix Firefox for Android infinite render loop in user library (#19379 )
web: Add ARIA fixes, live region reporting.
Co-authored-by: Julian van der Horst <45941668+Gulianrdgd@users.noreply.github.com >
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2026-01-21 03:51:39 +00:00
authentik-automation[bot]
e924a37985
website/docs: endpoints devices: typo fix (cherry-pick #19621 to version-2025.12) ( #19622 )
...
website/docs: endpoints devices: typo fix (#19621 )
docs typo fix
Signed-off-by: Fletcher Heisler <fheisler@users.noreply.github.com >
Co-authored-by: Fletcher Heisler <fheisler@users.noreply.github.com >
2026-01-20 20:48:12 +00:00
authentik-automation[bot]
3f9ca19d35
lib/sync/outgoing: handle deletions even if object does not exist in database (cherry-pick #18968 to version-2025.12) ( #19617 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-20 18:34:01 +01:00
authentik-automation[bot]
50e55eea08
tests: improve e2e/integration test reliability (cherry-pick #19540 to version-2025.12) ( #19611 )
...
* Cherry-pick #19540 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19540
Original commit: 083b61ca7f
* resolve conflicts
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-20 17:38:49 +01:00
authentik-automation[bot]
383d3b89f2
sources/saml: Fix signature verification order to accommodate encrypted assertions (cherry-pick #19593 to version-2025.12) ( #19614 )
...
sources/saml: Fix signature verification order to accommodate encrypted assertions (#19593 )
* sources/saml: Fix signature verificaiton order on encrypted responses
* type hints
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2026-01-20 16:50:49 +01:00
authentik-automation[bot]
8cc768f973
providers/saml: allow encryption certificates without private keys (cherry-pick #19526 to version-2025.12) ( #19612 )
...
providers/saml: allow encryption certificates without private keys (#19526 )
* providers/saml: allow selection of certificates without private keys for saml encryption
* fix back-end to support cert only
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
2026-01-20 16:50:26 +01:00
authentik-automation[bot]
03d21be201
providers/saml: fix structure of encrypted saml assertion (cherry-pick #19592 to version-2025.12) ( #19613 )
...
providers/saml: fix structure of encrypted saml assertion (#19592 )
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
2026-01-20 16:50:17 +01:00
authentik-automation[bot]
7d8465bdb5
policies: fix Providers authentication_flow not used when set (cherry-pick #19609 to version-2025.12) ( #19615 )
...
policies: fix Provider's authentication_flow not used when set (#19609 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-20 16:49:16 +01:00
authentik-automation[bot]
a9b46a4943
endpoints: fix endpoints stage marked as enterprise (cherry-pick #19607 to version-2025.12) ( #19610 )
...
endpoints: fix endpoints stage marked as enterprise (#19607 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-20 14:56:21 +01:00
authentik-automation[bot]
d3c052559d
web/forms: fix invalid date error for empty datetime-local inputs (cherry-pick #19561 to version-2025.12) ( #19582 )
...
web/forms: fix invalid date error for empty datetime-local inputs (#19561 )
* web/forms: fix invalid date error for empty datetime-local inputs
Overview:
When a datetime-local input is empty, `valueAsNumber` returns `NaN` and `new Date("")` creates an Invalid Date. Previously, form serialization passed these invalid dates to the API, which caused "RangeError: Invalid time value" when `toISOString()` was called. Now empty datetime inputs correctly serialize to `null`.
Testing:
1. Go to Directory > Tokens and App passwords
2. Create or edit a token
3. Uncheck the "Expiring" checkbox
4. Save the token
5. Verify no error occurs and token is saved without expiry
Motivation:
Closes: https://github.com/goauthentik/authentik/issues/19558
* web: lint
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-20 14:56:09 +01:00
authentik-automation[bot]
b73b6dcdd3
web: update @goauthentik/api (cherry-pick #19542 to version-2025.12) ( #19589 )
...
web: update @goauthentik/api (#19542 )
Otherwise, e.g. the edit modal of Applications hangs infinitely on a
loading spinner because `AdminFileListUsageEnum` is undefined and not an
object.
Co-authored-by: Maximilian Bosch <maximilian@mbosch.me >
2026-01-20 02:15:50 +01:00
authentik-automation[bot]
e37bdc6a1d
website/docs: add s3 perms (cherry-pick #19579 to version-2025.12) ( #19581 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-19 16:43:46 +01:00
authentik-automation[bot]
b3f1c4736d
core: Update supported versions in SECURITY.md (cherry-pick #19385 to version-2025.12) ( #19578 )
...
core: Update supported versions in SECURITY.md (#19385 )
* core: Update supported versions in SECURITY.md
Added support for version 2025.12.x in the security policy.
* Apply suggestion from @BeryJu
---------
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-19 14:32:24 +01:00
authentik-automation[bot]
5fd5f3d6ff
admin/files: fix duplicate bucket name in presigned URLs with custom domain (cherry-pick #19537 to version-2025.12) ( #19575 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
fix duplicate bucket name in presigned URLs with custom domain (#19537 )
2026-01-19 13:31:10 +01:00
authentik-automation[bot]
5dbcf6c484
admin/files: fix manageable check blocking file creation on fresh installs (cherry-pick #19547 to version-2025.12) ( #19553 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
fix manageable check blocking file creation on fresh installs (#19547 )
2026-01-19 13:06:09 +01:00
authentik-automation[bot]
056e2c8571
website/docs: endpoint devices: update device code flow instructions (cherry-pick #19528 to version-2025.12) ( #19534 )
...
website/docs: endpoint devices: update device code flow instructions (#19528 )
Update instructions
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-17 01:33:23 +00:00
authentik-automation[bot]
0f58a567ce
tests/e2e: Add delay and serialized rollback to saml e2e test (cherry-pick #18840 to version-2025.12) ( #19532 )
...
tests/e2e: Add delay and serialized rollback to saml e2e test (#18840 )
* Add delay and serialized rollback to saml e2e test
* Apply suggestion from @BeryJu
* trigger build
---------
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-16 20:44:46 +00:00
authentik-automation[bot]
502e037d04
sources/kerberos: update to new python-kadmin-rs (cherry-pick #19491 to version-2025.12) ( #19523 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-16 13:50:46 +01:00
authentik-automation[bot]
9b6fae0749
website/docs: release notes: Update release notes for version 2025.12.1 (cherry-pick #19502 to version-2025.12) ( #19503 )
...
website/docs: release notes: Update release notes for version 2025.12.1 (#19502 )
website/release notes: Update release notes for version 2025.12.1
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-15 23:43:43 -03:00
authentik-automation[bot]
dc2332a316
release: 2025.12.1
2026-01-16 00:59:39 +00:00
authentik-automation[bot]
c39414f558
web/admin: fix switches (cherry-pick #19493 to version-2025.12) ( #19496 )
...
web/admin: fix switches (#19493 )
* web/admin: fix switches
* update all forms
* Apply suggestions from code review
* fix lint
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-15 21:01:06 -03:00
authentik-automation[bot]
aac1acfebd
web: Z-Index Fixes, Mobile Sidebar Behavior. (cherry-pick #19460 to version-2025.12) ( #19492 )
...
web: Z-Index Fixes, Mobile Sidebar Behavior. (#19460 )
web: Fix Z-Index issues, mobile sidebar behavior.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-16 00:00:32 +00:00
authentik-automation[bot]
4d881bb3d2
endpoints/connectors/agent: add tests for IA endpoint stage (cherry-pick #19487 to version-2025.12) ( #19490 )
...
* Cherry-pick #19487 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19487
Original commit: 2c29698415
* Apply suggestion from @BeryJu
Signed-off-by: Jens L. <jens@beryju.org >
---------
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-15 20:25:19 +00:00
authentik-automation[bot]
852d392158
website/docs: limiting permissions of AD service account (cherry-pick #19483 to version-2025.12) ( #19489 )
...
website/docs: limiting permissions of AD service account (#19483 )
* Add info about limiting permissions
* Simplified instructions
* OU > organizational unit
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-15 19:20:01 +00:00
authentik-automation[bot]
76b26ea288
endpoints/connectors/agent: Skip Endpoint stage on device IA & fix confusing identification subtext (cherry-pick #19482 to version-2025.12) ( #19486 )
...
endpoints/connectors/agent: Skip Endpoint stage on device IA & fix confusing identification subtext (#19482 )
* when doing device interactive auth, let the endpoint stage continue as we already know the device based on the DTH header
* only show "continuing to device xyz" when using device IA flow, not when using an endpoint stage with browser extension
* format
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-15 17:10:57 +01:00
authentik-automation[bot]
a1f1378814
core: bump aiohttp from 3.13.2 to v3.13.3 (cherry-pick #19257 to version-2025.12) ( #19484 )
...
core: bump aiohttp from 3.13.2 to v3.13.3 (#19257 )
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-15 16:24:40 +01:00
authentik-automation[bot]
afc2be6b68
providers/oauth2: allow property mappings to override scope claim in access tokens (cherry-pick #19226 to version-2025.12) ( #19480 )
...
providers/oauth2: allow property mappings to override scope claim in access tokens (#19226 )
* test(oauth2): add failing test for scope claim override via property mapping
Reproduces issue #19224 where property mappings cannot override the scope claim.
* fix(oauth2): allow property mappings to override scope claim in access tokens
Previously, the scope claim in access tokens was unconditionally set to
the requested scopes, ignoring any custom scope value returned by
property mappings.
This change uses setdefault() instead of direct assignment, so the
default scope is only set if no custom scope was provided by property
mappings.
Fixes #19224
Co-authored-by: Jean-Marc Le Roux <jeanmarc.leroux@aerys.in >
2026-01-15 15:41:24 +01:00
Jens L.
c45985e9d0
ci: fix checkout stable (for 2025.12) ( #19448 ) ( #19481 )
...
* ci: fix checkout stable (again)
Fixes the fix at https://github.com/goauthentik/authentik/pull/18303
This fails on version branches that already have releases, because the
version tag is named `version/${numbers}`, not just `${numbers}`.
* lint by human
Thank you <3
---------
Signed-off-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
2026-01-15 15:09:33 +01:00
authentik-automation[bot]
7221ed1ce6
web/startup: deprecated theme names break theming (cherry-pick #19431 to version-2025.12) ( #19433 )
...
web/startup: deprecated theme names break theming (#19431 )
* 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 .
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
* web: fix early theme identification
# What
Upon initial load of the HTML, even before the Javascript VM has started loading the admin interface, check if the user has a theme name in localstorage and validate it before proceeding.
# Issue
[Leftover localStorage.theme breaks UI after update to 2025.12.0](https://github.com/goauthentik/authentik/issues/19387 )
Reported: 2025-01-13 By: Github user @WIPocket
# Why
We’ve changed our theme names to the more customary “light” and “dark”; older installs may have our earlier keys, “light-theme” or “dark-theme”, and those can break the read, resulting in the theme not being loaded at all.
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2026-01-14 23:28:09 +01:00
authentik-automation[bot]
123fd3dfb8
website/docs: update gws provider docs (cherry-pick #18286 to version-2025.12) ( #19400 )
...
website/docs: update gws provider docs (#18286 )
* Update filenames, sidebar and redirect. Rework overview doc
* WIP
* Spelling
* Move info box
* WIP
* Update create-gws-provider.md
* Small tweaks
* Add note about key creation
* Update website/docs/add-secure-apps/providers/gws/configure-gws.md
* Add delegated user permissions
* Update configure-gws.md
* Fix link and section naming
* Apply suggestions from code review
* Update configure-gws.md
* Update website/docs/add-secure-apps/providers/gws/index.md
* Update website/docs/add-secure-apps/providers/gws/index.md
* Headers
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2026-01-14 14:47:34 +01:00
authentik-automation[bot]
59c292ca21
website/docs: mention dynamic overrides in redirect stage documentation (cherry-pick #19368 to version-2025.12) ( #19402 )
...
website/docs: mention dynamic overrides in redirect stage documentation (#19368 )
Signed-off-by: Severin Schoepke <severin@users.noreply.github.com >
Co-authored-by: Severin Schoepke <severin@users.noreply.github.com >
2026-01-14 14:45:00 +01:00
authentik-automation[bot]
2b247b60cf
website/docs: add import to discord policy (cherry-pick #19397 to version-2025.12) ( #19406 )
...
website/docs: add import to discord policy (#19397 )
Add import line
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-14 14:44:36 +01:00
Jens L.
359a3b9768
outposts/ldap: fix build ( #19403 )
...
* outposts/ldap: fix build
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix correctly
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* build api for release
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2026-01-14 14:26:04 +01:00
authentik-automation[bot]
2c84d73353
website/docs: remove "beta" tag from 2025.12 (cherry-pick #19404 to version-2025.12) ( #19407 )
...
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
2026-01-14 14:25:20 +01:00
authentik-automation[bot]
56ba055857
release: 2025.12.0
2026-01-13 21:43:40 +00:00
authentik-automation[bot]
4b9775d9fe
web: UI Locale Fixes (cherry-pick #19235 to version-2025.12) ( #19384 )
...
Cherry-pick #19235 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19235
Original commit: c2db63a60f
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-13 18:25:19 +00:00
authentik-automation[bot]
d06091e226
internal: rework liveness probe and proxy (cherry-pick #19312 to version-2025.12) ( #19382 )
...
internal: rework liveness probe and proxy (#19312 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-13 18:52:00 +01:00
authentik-automation[bot]
f715e7a537
stages/authenticator_validate: decrease reputation on failed MFA attempt (cherry-pick #19378 to version-2025.12) ( #19381 )
...
stages/authenticator_validate: decrease reputation on failed MFA attempt (#19378 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-13 18:07:07 +01:00
authentik-automation[bot]
1068dfcc28
web: Flow info, localization, back button. (cherry-pick #19234 to version-2025.12) ( #19346 )
...
web: Flow info, localization, back button. (#19234 )
* Localize email sent message.
* Add back button to denied stage.
* Clean up flow user details.
* Fix linter warnings.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-13 17:38:20 +01:00
authentik-automation[bot]
9a6f66b23c
internal/outpost: improve PostgreSQL connection options parsing (cherry-pick #19118 to version-2025.12) ( #19372 )
...
internal/outpost: improve PostgreSQL connection options parsing (#19118 )
* internal: Outpost's conn options should be base64 json
* correctly parse target_session_attrs + tests
* fix port handling to use env provided port
* add multiple port handling abilities to mirror the python config parser
---------
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Duncan Tasker <tasatree@gmail.com >
2026-01-13 17:37:52 +01:00
authentik-automation[bot]
853a367325
website/docs: update location for logs on windows (cherry-pick #19371 to version-2025.12) ( #19373 )
...
website/docs: update location for logs on windows (#19371 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-13 17:37:38 +01:00
authentik-automation[bot]
09cdcd1892
outpost/proxyv2: fix stale session cookie causing 400 error in createState (cherry-pick #19026 to version-2025.12) ( #19375 )
...
outpost/proxyv2: fix stale session cookie causing 400 error in createState (#19026 )
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-13 17:37:23 +01:00
authentik-automation[bot]
bed6407b52
web/elements: hidden secrets not propagating (cherry-pick #19029 to version-2025.12) ( #19377 )
...
web/elements: hidden secrets not propagating (#19029 )
* 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 .
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
* web/bug/hidden-secrets-not-propagating
# What
This commit updates ak-secret-text-input, adding the `name` attribute to all valid input fields and updating the value writer to match those of known-working components, to ensure that either variety of the display is fully and correctly updated with the content of the hidden secret.
# Why
The hidden input field is the one that HorizontalFormElement was expecting to read its value from, but that field never received a `name` because it wasn’t present when the field was first updated.
HorizontalFormElement writes the `name` field to the first `<input>` it finds. That was the “dummy” input field, which has no working value.
Form ignored the input element because the value it read came with an undefined name.
Object-oriented state management sometimes bites.
---------
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2026-01-13 17:37:06 +01:00
authentik-automation[bot]
3936a4e09a
web/admin: always retrieve selected provider when editing the application (cherry-pick #19341 to version-2025.12) ( #19370 )
...
web/admin: always retrieve selected provider when editing the application (#19341 )
* 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 .
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
* web/admin: always retrieve selected provider when editing the application
# What
Re-writes the `fetch` function for ak-provider-search-input so that, if there’s an assigned value and it does not appear in the currently retrieved list of providers, prepend it to the list so that it is always present and always selectable.
# Why
Our pagination windows can restrict the list of objects retrieved from the server, and when we’re chasing composite objects we have to retrieve the displayable elements of that object from their respective tables. This combination means that a paginated retrieval may not have the object indicated by the parent object’s PK for that object collection. We have to retrieve it separately if it’s not in the current collection.
This problem is probably endemic to some of our design decisions.
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2026-01-13 16:55:41 +01:00
authentik-automation[bot]
ad818a2880
packages/django-dramatiq-postgres: broker: empty message after task completed successfully (cherry-pick #19340 to version-2025.12) ( #19356 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-13 13:57:40 +01:00
authentik-automation[bot]
f8f049f080
website/docs: update LDAP provider docs (cherry-pick #18272 to version-2025.12) ( #19345 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-13 13:47:24 +01:00
authentik-automation[bot]
434e8203de
web: Images styles, theming (cherry-pick #19233 to version-2025.12) ( #19342 )
...
web: Images styles, theming (#19233 )
* Fix referencing of theme directly from element, rather than the root.
* Fix low-resolution icon scaling.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-13 05:03:21 +00:00
authentik-automation[bot]
7715ce1a90
website/docs: update unique email policy (cherry-pick #19305 to version-2025.12) ( #19339 )
...
website/docs: update unique email policy (#19305 )
* Update doc
* Update unique_email.md
* rewrite policy
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2026-01-12 17:41:57 +01:00
authentik-automation[bot]
c735dd67a2
website/docs: update github social login script example (cherry-pick #19246 to version-2025.12) ( #19250 )
...
website/docs: update github social login script example (#19246 )
Co-authored-by: rain capsule <29630035+busybox11@users.noreply.github.com >
2026-01-12 16:35:48 +00:00
authentik-automation[bot]
1b5962be60
web: Fix flow inspector advancement event. (cherry-pick #19309 to version-2025.12) ( #19310 )
...
web: Fix flow inspector advancement event. (#19309 )
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-12 14:38:10 +01:00
authentik-automation[bot]
796d130ea4
website/docs: Fix typo in GitHub OAuth Source instructions (cherry-pick #18936 to version-2025.12) ( #19322 )
...
website/docs: Fix typo in GitHub OAuth Source instructions (#18936 )
Co-authored-by: Tom Crasset <25140344+tcrasset@users.noreply.github.com >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-12 09:22:37 +00:00
authentik-automation[bot]
6c8b502a5b
website/docs: add flow import warnings (cherry-pick #19307 to version-2025.12) ( #19327 )
...
website/docs: add flow import warnings (#19307 )
Add warnigns
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-11 23:12:28 +00:00
authentik-automation[bot]
674d681f98
website/docs: Fix documentation example for app_entitlements_attributes. (cherry-pick #19316 to version-2025.12) ( #19326 )
...
website/docs: Fix documentation example for `app_entitlements_attributes`. (#19316 )
Fix example for `app_entitlements_attributes`.
Fix example Python code for `app_entitlements_attributes`.
Signed-off-by: Sebastian Wiesinger <sebastian@karotte.org >
Co-authored-by: Sebastian Wiesinger <sebastian@karotte.org >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-11 22:50:28 +00:00
authentik-automation[bot]
8c6d3e131d
website/docs: update m2m doc (cherry-pick #18963 to version-2025.12) ( #19324 )
...
website/docs: update m2m doc (#18963 )
* Updates m2m doc, add mention to proxy provider about finding logs, updates filename/links/redirects
* Apply suggestions from code review
* Prettier
* wip
* Removed section and changed some wording
* Add section
* Update website/docs/add-secure-apps/providers/proxy/index.md
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-11 22:06:21 +00:00
authentik-automation[bot]
b689debfed
website/docs: deprecate GCDT auth stage (cherry-pick #19306 to version-2025.12) ( #19319 )
...
website/docs: deprecate GCDT auth stage (#19306 )
Update stage doc
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-01-11 21:11:01 +00:00
authentik-automation[bot]
03e4297824
website/docs: update entra id provider docs (cherry-pick #18366 to version-2025.12) ( #19256 )
...
website/docs: update entra id provider docs (#18366 )
* Updates doc filenames, sidebar, redirects and doc content
* Apply suggestions
* Apply suggestions
* Apply suggestions
* Update index.md
* Apply suggestions
* Apply suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-08 20:03:05 +00:00
authentik-automation[bot]
c4e0a02837
core: bump django from v5.2.9 to 5.2.10 (cherry-pick #19290 to version-2025.12) ( #19294 )
...
core: bump django from v5.2.9 to 5.2.10 (#19290 )
bump django from v5.2.9 to 5.2.10
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-08 20:18:53 +01:00
authentik-automation[bot]
4586ed0735
core: bump urllib3 from 2.5.0 to v2.6.3 (cherry-pick #19287 to version-2025.12) ( #19296 )
...
core: bump urllib3 from 2.5.0 to v2.6.3 (#19287 )
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-08 20:18:31 +01:00
authentik-automation[bot]
59ef6bb6ea
web/admin: add banner to flow import form (cherry-pick #19288 to version-2025.12) ( #19293 )
...
web/admin: add banner to flow import form (#19288 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-08 19:52:39 +01:00
authentik-automation[bot]
6ce812b01f
stages/password: replace session-based retries with reputation (cherry-pick #18643 to version-2025.12) ( #19289 )
...
stages/password: replace session-based retries with reputation (#18643 )
* stages/password: replace session-based retries with reputation
* relative score
* fix tests
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-08 19:21:22 +01:00
authentik-automation[bot]
87d08dc164
stages/prompt: optimize API endpoints (cherry-pick #19251 to version-2025.12) ( #19254 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-08 16:16:10 +00:00
authentik-automation[bot]
c41883b8ea
website: Fix typos. (cherry-pick #19243 to version-2025.12) ( #19248 )
...
website: Fix typos. (#19243 )
* website: Fix typos.
* wip
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-08 14:14:46 +00:00
authentik-automation[bot]
6e9d510c9e
stages/authenticator_static: set max token length to 100 chars (cherry-pick #19162 to version-2025.12) ( #19231 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-08 13:20:51 +01:00
authentik-automation[bot]
d09ed8e8f0
core: fix read replica routing during transactions (cherry-pick #19086 to version-2025.12) ( #19241 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
fix read replica routing during transactions (#19086 )
2026-01-08 13:18:14 +01:00
authentik-automation[bot]
8fe8b1e803
website/glossary: improve (cherry-pick #18969 to version-2025.12) ( #19238 )
...
website/glossary: improve (#18969 )
* website/glossary: Fix eslint errors
* wip
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-08 00:44:10 +00:00
authentik-automation[bot]
66438f3780
website/docs: revisit endpoint docs the nth (cherry-pick #19116 to version-2025.12) ( #19223 )
...
website/docs: revisit endpoint docs the nth (#19116 )
* website/docs: revisit endpoint docs the nth
* more edits & examples
* WIP
* Apply suggestions from code review
* Update index.mdx
* Apply suggestions from code review
* Add edge browser extension
* Update website/docs/endpoint-devices/device-compliance/browser-extension.mdx
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-07 22:16:44 +00:00
authentik-automation[bot]
46f446fd0e
endpoints: include license status in agent config (cherry-pick #19227 to version-2025.12) ( #19228 )
...
endpoints: include license status in agent config (#19227 )
* web/admin: consistent OS display
* include license status with agent config
* slightly rework
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-07 17:31:02 +01:00
authentik-automation[bot]
f83d3a19d0
release: 2025.12.0-rc3
2026-01-06 19:51:06 +00:00
authentik-automation[bot]
ef59ff1856
web: Fix user library colors, modal z-indexes, table progress bars (cherry-pick #19152 to version-2025.12) ( #19174 )
...
Cherry-pick #19152 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19152
Original commit: 3838150
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2026-01-06 19:15:39 +00:00
authentik-automation[bot]
4966225282
outpost/proxyv2: reduce max number of postgres connections (cherry-pick #19211 to version-2025.12) ( #19214 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-06 19:20:39 +01:00
authentik-automation[bot]
2b8765d0aa
web: fix promoted source button hover losing blue color (cherry-pick #19048 to version-2025.12) ( #19100 )
...
web: fix promoted source button hover losing blue color (#19048 )
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-06 18:10:50 +00:00
authentik-automation[bot]
d60d06f958
core: handle deserialization errors from FileField migration (cherry-pick #19067 to version-2025.12) ( #19168 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-06 18:48:35 +01:00
authentik-automation[bot]
1a3f268476
admin/files: support %(theme)s variable in media file paths (cherry-pick #19108 to version-2025.12) ( #19213 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-01-06 14:32:12 +01:00
authentik-automation[bot]
515a855c40
web/admin: adjust sync threshold, add tooltip (cherry-pick #19131 to version-2025.12) ( #19175 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-06 13:48:37 +01:00
authentik-automation[bot]
16d65b8d12
rbac: Add show all to roles tab, add role tab to groups (cherry-pick #19097 to version-2025.12) ( #19199 )
...
rbac: Add show all to roles tab, add role tab to groups (#19097 )
* improve sort order and inherit visual
* Update web/src/admin/groups/GroupViewPage.ts
* Update web/src/admin/users/UserViewPage.ts
* Update web/src/admin/roles/RelatedRoleList.ts
* Update web/src/admin/roles/RelatedRoleList.ts
* Update web/src/admin/roles/RelatedRoleList.ts
* Update web/src/admin/roles/RelatedRoleList.ts
* setup include inherited roles and fix returning nothing
* update api calls
* fix rendering error
* do not use set
* change from exception handling
* go off query param
* fix wording
* fix linting error for new group api structure
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2026-01-06 04:01:06 +00:00
authentik-automation[bot]
bfe928df18
web: Defer table refresh, visibility checks. (cherry-pick #19194 to version-2025.12) ( #19198 )
...
* web: Fix user library colors, modal z-indexes, table progress bars (#19152 )
* Fix progress bar fade out, positioning, labels.
* Export parts. Fix z-index, colors.
* Fix clickable area.
* Ignore clickable icons.
* web: Defer table refresh, visibility checks. (#19194 )
Fix types, args.
---------
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-05 23:38:47 +00:00
authentik-automation[bot]
c447bbe6c8
web: Merge branch -- Stale notifications, synchronized context objects, rendering fixes (cherry-pick #19141 to version-2025.12) ( #19197 )
...
Cherry-pick #19141 to version-2025.12 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #19141
Original commit: 2c813cbe03
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-05 23:13:08 +00:00
authentik-automation[bot]
1c0a3f95df
core: add prettier failure on duplicate group names (cherry-pick #18941 to version-2025.12) ( #19193 )
...
core: add prettier failure on duplicate group names (#18941 )
* core: add prettier failure on duplicate group names
* add db_alias
* lint
* migrate to system migration
* fix error on empty database
* returning a count of 0 still takes 1 row :P
---------
Signed-off-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-05 18:44:03 +01:00
authentik-automation[bot]
8a6116ab79
lifecycle: fix migration conn_options for psycopg connection (cherry-pick #19134 to version-2025.12) ( #19186 )
...
Co-authored-by: Duncan Tasker <72562945+D-Tasker207@users.noreply.github.com >
fix migration conn_options for psycopg connection (#19134 )
2026-01-05 15:21:49 +01:00
authentik-automation[bot]
430010fbea
website/docs: remove duplicates in slo docs (cherry-pick #19170 to version-2025.12) ( #19177 )
...
website/docs: remove duplicates in slo docs (#19170 )
remove duplicated points in the iframe mode points in slo docs
Co-authored-by: Adithya S Narasinghe <adithyasnarasinghe@gmail.com >
2026-01-04 21:41:54 +00:00
authentik-automation[bot]
079b575a45
web: fix slug auto-updating when editing existing applications (cherry-pick #19169 to version-2025.12) ( #19173 )
...
web: fix slug auto-updating when editing existing applications (#19169 )
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-04 04:23:21 +00:00
authentik-automation[bot]
b2ca887d59
website/docs: endpoint agent release notes (cherry-pick #19042 to version-2025.12) ( #19146 )
...
website/docs: endpoint agent release notes (#19042 )
* website/docs: endpoint agent release notes
* Apply suggestion from @dominic-r
* rename, update
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-01-03 21:35:39 +01:00
authentik-automation[bot]
d7b30ad0d7
web: Token Form Fixes (cherry-pick #19121 to version-2025.12) ( #19153 )
...
web: Token Form Fixes (#19121 )
* Fix autofocus attribute.
* web: Fix label alignment, focus handlers, edit states.
* Tidy date functions.
* Use Dates over strings.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2026-01-03 02:20:12 +00:00
authentik-automation[bot]
b084ace1dd
web/user: fix consent delete form missing details (cherry-pick #19147 to version-2025.12) ( #19156 )
...
web/user: fix consent delete form missing details (#19147 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2026-01-02 12:27:56 +01:00
authentik-automation[bot]
b3e45cdf1a
website/docs: fix build (cherry-pick #19148 to version-2025.12) ( #19151 )
...
website/docs: fix build (#19148 )
* ensure we never throw errors in the browser
* cleaner
* rework
* fix misleading variable
* Tidy behavior.
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2026-01-01 18:53:33 +00:00
authentik-automation[bot]
8132e1f7d9
web: Capitalize language display names, code owner fix (cherry-pick #19119 to version-2025.12) ( #19122 )
...
web: Capitalize language display names, code owner fix (#19119 )
* web: Capitalize locale display names.
* Fix broad code owner.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-12-30 20:50:42 -05:00
authentik-automation[bot]
149dccf244
web: fix file search input not resetting results properly (cherry-pick #19034 to version-2025.12) ( #19075 )
...
web: fix file search input not resetting results properly (#19034 )
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-30 20:18:23 +00:00
authentik-automation[bot]
b5e4797761
web: Fix stale flow background (cherry-pick #19015 to version-2025.12) ( #19101 )
...
web: Fix stale flow background (#19015 )
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-30 19:31:58 +00:00
authentik-automation[bot]
be670d6253
web: Fix Impersonation, Lit Reactive Controller Contexts (cherry-pick #19114 to version-2025.12) ( #19117 )
...
web: Fix Impersonation, Lit Reactive Controller Contexts (#19114 )
* web: Fix issue where impersonation does not trigger updates.
* web: Fix issues surrounding abort controller types, lifecycle.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-12-30 17:06:25 +00:00
authentik-automation[bot]
71060ea4e7
website/docs: release notes: Add more integrations (cherry-pick #19109 to version-2025.12) ( #19115 )
...
website/docs: release notes: Add more integrations (#19109 )
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-30 08:50:05 +00:00
authentik-automation[bot]
f60f38280c
website/docs: endpoints: mention connector key required for stage to work (cherry-pick #19084 to version-2025.12) ( #19095 )
...
website/docs: endpoints: mention connector key required for stage to work (#19084 )
keypair = CertificateKeyPair.objects.filter(pk=stage.connector.challenge_key_id).first()
if not keypair:
return self.executor.stage_ok() # < --- skips the stage
took me a bit of time to find this and yea
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-29 20:59:38 +01:00
authentik-automation[bot]
418deeb332
website/docs: endpoint devices: add path to macos setup (cherry-pick #19093 to version-2025.12) ( #19099 )
...
website/docs: endpoint devices: add path to macos setup (#19093 )
* Add path
* Update macos.md
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-12-29 20:59:18 +01:00
authentik-automation[bot]
619c77c27e
web/admin: use consistent icon for inactive user status (cherry-pick #19032 to version-2025.12) ( #19035 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-29 08:26:45 -08:00
authentik-automation[bot]
ddfddb49da
website/docs: endpoint devices: update features table (cherry-pick #19094 to version-2025.12) ( #19098 )
...
website/docs: endpoint devices: update features table (#19094 )
* Update table
* Remove wording
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-12-29 13:35:29 +00:00
authentik-automation[bot]
dbbb1870b7
website/docs: rel notes .12: add wallos (cherry-pick #19063 to version-2025.12) ( #19096 )
...
website/docs: rel notes .12: add wallos (#19063 )
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-29 12:43:03 +00:00
authentik-automation[bot]
5b43301206
docs/release notes: update 2025.12 release notes (cherry-pick #19043 to version-2025.12) ( #19046 )
...
docs/release notes: update 2025.12 release notes (#19043 )
* Add links and tags
* Update website/docs/releases/2025/v2025.12.md
---------
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-29 05:09:34 +00:00
authentik-automation[bot]
d915d1a94a
web/admin: fix button alignment on user view page (cherry-pick #19079 to version-2025.12) ( #19081 )
...
web/admin: fix button alignment on user view page (#19079 )
* web/admin: fix button alignment on user view page
* fix width
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-28 19:58:29 +01:00
authentik-automation[bot]
786497790a
internal: update TLS Suite (cherry-pick #19076 to version-2025.12) ( #19078 )
...
internal: update TLS Suite (#19076 )
* internal: update TLS Suite
* disable chacha20 due to fips
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-28 15:19:46 +01:00
authentik-automation[bot]
56c899cf21
blueprints: set enrollment token key (cherry-pick #19061 to version-2025.12) ( #19062 )
...
blueprints: set enrollment token key (#19061 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-26 23:42:27 +01:00
authentik-automation[bot]
943f22e5a9
blueprints: fix deadlock and task context error in MetaApplyBlueprint (cherry-pick #19033 to version-2025.12) ( #19068 )
...
blueprints: fix deadlock and task context error in MetaApplyBlueprint (#19033 )
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-12-26 23:41:22 +01:00
authentik-automation[bot]
11b45689f4
blueprints: fix flaky tests (cherry-pick #19002 to version-2025.12) ( #19059 )
...
blueprints: fix flaky tests (#19002 )
* blueprints: attempt to fix tests
* fix postgres debug logging
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-26 16:11:21 +01:00
authentik-automation[bot]
87f443532f
endpoints/devices: cleanup (cherry-pick #19047 to version-2025.12) ( #19057 )
...
* endpoints/devices: cleanup (#19047 )
* endpoints: make device token internally managed
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix text and defaults for agent
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* re-org some code
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-26 15:53:23 +01:00
authentik-automation[bot]
0c672a0c37
lib/sync: fix sync_dispatch (cherry-pick #19053 to version-2025.12) ( #19056 )
...
lib/sync: fix sync_dispatch (#19053 )
* fix: add missing call to all on self.schedules
Fixes #19051
* fix: change the name of syncOutgoingTriggerMode ak-radio-input
Fixes #19052
Co-authored-by: Amélie Lilith Krejčí <krejcar25@blep.cz >
2025-12-26 14:20:34 +01:00
authentik-automation[bot]
dfd11ceb57
events: notifications live update (cherry-pick #18980 to version-2025.12) ( #18990 )
...
events: notifications live update (#18980 )
* this has been broken for a while but no one noticed...? cc @rissson
* send WS broadcast for new notifications
* add tests
* better layout
* fix e2e tests
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-24 14:29:14 +01:00
authentik-automation[bot]
d865b7fd87
core: use chunked_queryset for expired message deletion (cherry-pick #19028 to version-2025.12) ( #19031 )
...
core: use chunked_queryset for expired message deletion (#19028 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-24 01:56:23 +01:00
authentik-automation[bot]
aa8a6b9c43
web: Locale selector UI fixes (cherry-pick #18972 to version-2025.12) ( #19027 )
...
web: Locale selector UI fixes (#18972 )
* Fix alignment, focus.
* Clean up.
* Tidy click area.
* Fix compatibility mode.
* Fix alignment.
* Fix issues surrounding labels, alignment, consistency.
* Update web/src/common/ui/locale/format.ts
* Tidy hover states.
* Tidy.
* Clean up parsing.
* Tidy comments, usage.
* Always use script naming over region.
* Remove unused.
* Spacing.
---------
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-12-23 16:22:32 -05:00
Jens L.
fe5313f42e
ci: ensure disk space is available ( #19025 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-23 17:57:03 +01:00
authentik-automation[bot]
499f739e2b
website/docs: Prioritize "Release Candidate" over "Current Release" (cherry-pick #18975 to version-2025.12) ( #19022 )
...
website/docs: Prioritize "Release Candidate" over "Current Release" (#18975 )
Normalize labels.
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-12-23 16:28:23 +00:00
authentik-automation[bot]
4e0e738823
web/admin: prevent file upload attempt when backend not managed (cherry-pick #18646 to version-2025.12) ( #19021 )
...
web/admin: prevent file upload attempt when backend not managed (#18646 )
* web/admin: prevent file upload attempt when backend not managed
* wip
* fixup
* rework
* format
* add check for reports
* fix delete table for data exports missing details
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-23 14:47:24 +01:00
authentik-automation[bot]
24360bf306
web: fix Open button selecting row instead of navigating (cherry-pick #18992 to version-2025.12) ( #19003 )
...
web: fix Open button selecting row instead of navigating (#18992 )
the `isEventTargetingListener()` function only checked the click target and the immediate parent for interactive elements (like links, buttons and more). when clicking the icon inside the Open button, the DOM structure is:
<a href=...> <--- 2 levels up, never checked
<pf-tooltip> <--- immediate parent, not interactive
<i> <---- click target, not interactive
Because <i> and <pf-tooltip> did not match the interactive elements query, the function returned false which caused the table rowClickListener to continue with row selection isntead of allowing the click.
The fix is to update the function to to traverse (up) the entire dom tree from the click target to the listener element (the table cell) and check for each ancestor for the interactive elements.
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-22 23:48:07 +01:00
authentik-automation[bot]
6fad3c2bbd
enterprise/search: add static autocomplete structure (cherry-pick #19008 to version-2025.12) ( #19011 )
...
enterprise/search: add static autocomplete structure (#19008 )
* enterprise/search: add static autocomplete structure
* add recursive structured for context
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-22 23:47:44 +01:00
authentik-automation[bot]
2cf20de7ec
website/docs: improve endpoint devices docs (cherry-pick #19007 to version-2025.12) ( #19012 )
...
website/docs: improve endpoint devices docs (#19007 )
* Remove sudo auth sections
* Add firefox extension link
* Add chrome extension
* Update release notes
* Remove link
* Fix link
* Fix release note wording
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-12-22 20:50:05 +00:00
authentik-automation[bot]
3d8d3bb8ce
enterprise/reports: improve export list, confirmation (cherry-pick #18981 to version-2025.12) ( #19010 )
...
enterprise/reports: improve export list, confirmation (#18981 )
* enterprise/reports: use verbose name for model label
* add confirmation for export
* update docs
* remove duplicated api
* fix duplicate
* fix search query not updated
* exclude page & page size
* improve query display
* fix user display
* exclude unset params
* Apply suggestions from code review
* more code style
* format
* fix types
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-12-22 20:53:51 +01:00
authentik-automation[bot]
80bcbe4885
web/admin: Fix haveibeenpwned link in PasswordPolicyForm (cherry-pick #18984 to version-2025.12) ( #18989 )
...
web/admin: Fix haveibeenpwned link in PasswordPolicyForm (#18984 )
web: Fix haveibeenpwned link in PasswordPolicyForm
Co-authored-by: Henry Skrtich <1214484+hskrtich@users.noreply.github.com >
2025-12-21 15:46:52 +01:00
authentik-automation[bot]
32e4782ed8
web/admin: fix dark theme on map (cherry-pick #18985 to version-2025.12) ( #18987 )
...
web/admin: fix dark theme on map (#18985 )
web/admin: fix dark theme on map broken
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-21 15:44:39 +01:00
authentik-automation[bot]
613a51bdbb
web/admin: fix endpoints user binding (cherry-pick #18935 to version-2025.12) ( #18952 )
...
web/admin: fix endpoints user binding (#18935 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-19 17:53:22 +01:00
Teffen Ellis
1c6de43701
website/docs: Backport version picker updates. ( #18964 )
...
Fix import path.
Show unlisted entries if release.
Fix sidebar rendering.
Fix positioning of pre-release note. Tidy phrasing.
Clarify pre-release vs draft.
website/docs: Fix version parsing.
2025-12-19 17:07:56 +01:00
authentik-automation[bot]
6771530025
web/admin: add UI copy to RBAC modal (cherry-pick #18917 to version-2025.12) ( #18962 )
...
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-12-19 16:49:32 +01:00
authentik-automation[bot]
5876f367bc
website/docs: add note to active directory source doc (cherry-pick #18787 to version-2025.12) ( #18966 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-19 16:48:20 +01:00
authentik-automation[bot]
e263af2dd9
web/elements: progress-bar and table loading header (cherry-pick #18934 to version-2025.12) ( #18939 )
...
web/elements: progress-bar and table loading header (#18934 )
* add ak-progress-bar
* make intermediate smaller
* add table
* hide table overflow
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-19 00:06:02 +01:00
authentik-automation[bot]
3a59911a2b
website/docs: release notes: add endpoint device links to 2025.12 notes (cherry-pick #18940 to version-2025.12) ( #18947 )
...
website/docs: release notes: add endpoint device links to 2025.12 notes (#18940 )
Add links to release notes
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-12-18 21:59:53 +00:00
authentik-automation[bot]
bbf31e99c3
website/docs: endpoint devices (cherry-pick #18634 to version-2025.12) ( #18946 )
...
website/docs: endpoint devices (#18634 )
* Initial
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* Apply suggestions from code review
* Apply suggestions from code review
* Apply suggestions
* Apply suggestions
* Apply suggestions from code review
* Apply suggestions from code review
* WIP
* Apply suggestions from code review
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* fixes
* WIP
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Fix anchor
* Update website/docs/endpoint-devices/index.mdx
* WIP
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-18 19:40:56 +00:00
authentik-automation[bot]
9d5bd42f3e
stages/identification: replace sleep with make_password (cherry-pick #18883 to version-2025.12) ( #18943 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-18 19:10:01 +01:00
authentik-automation[bot]
e721dae6da
web/flow: Fix spurious double submit on ak-stage-autosubmit (cherry-pick #18727 to version-2025.12) ( #18933 )
...
web/flow: Fix spurious double submit on ak-stage-autosubmit (#18727 )
* Fix double submission on ak-stage-autosubmit
* use updated correctly
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Victor Nawothnig <dminuoso@icloud.com >
Co-authored-by: Victor Nawothnig <Victor.Nawothnig+git@icloud.com >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-12-18 16:25:19 +01:00
authentik-automation[bot]
af3106b144
packages/ak-guardian: cast safely (cherry-pick #18929 to version-2025.12) ( #18931 )
...
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-18 16:24:59 +01:00
authentik-automation[bot]
5b55103575
tests/e2e: handle StaleElementReferenceException in parse_json_content (cherry-pick #18842 to version-2025.12) ( #18919 )
...
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-18 14:08:49 +01:00
authentik-automation[bot]
ee4ecf929f
release: 2025.12.0-rc2
2025-12-17 22:03:04 +00:00
authentik-automation[bot]
8336556a6f
root: fix docker-compose data mount (cherry-pick #18903 to version-2025.12) ( #18918 )
...
root: fix docker-compose data mount (#18903 )
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-17 19:53:44 +00:00
authentik-automation[bot]
709aad1d3b
core/groups: optimize prefetch queries to fetch only required fields (cherry-pick #18448 to version-2025.12) ( #18914 )
...
core/groups: optimize prefetch queries to fetch only required fields (#18448 )
Co-authored-by: João C. Fernandes <joaocfernandes@gmail.com >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-17 17:50:44 +00:00
authentik-automation[bot]
fb7ab4937c
web/admin: reword some things on the device view page (cherry-pick #18785 to version-2025.12) ( #18913 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-17 17:55:14 +01:00
authentik-automation[bot]
5df1726d80
website/docs: 2025.12: remove superfluous changes (cherry-pick #18910 to version-2025.12) ( #18912 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-17 17:25:13 +01:00
authentik-automation[bot]
9fdb568843
ci/release-tag: checkout correct branch for make test-docker (cherry-pick #18880 to version-2025.12) ( #18911 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-17 16:24:56 +01:00
authentik-automation[bot]
8e76f56f89
api: fix latest version for public schema (cherry-pick #18902 to version-2025.12) ( #18909 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
fix latest version for public schema (#18902 )
2025-12-17 16:14:16 +01:00
authentik-automation[bot]
05d3791577
website/docs: added list of Int Guide contributors (also edited frontmatter) (cherry-pick #18888 to version-2025.12) ( #18907 )
...
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-17 16:10:50 +01:00
authentik-automation[bot]
d00dd7eb90
api: fix page_size with invalid query param (cherry-pick #18879 to version-2025.12) ( #18908 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
fix page_size with invalid query param (#18879 )
2025-12-17 16:10:07 +01:00
authentik-automation[bot]
8d2e404017
stages/authenticator_*: fix code input field not string (cherry-pick #18875 to version-2025.12) ( #18906 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
fix code input field not string (#18875 )
2025-12-17 16:04:32 +01:00
authentik-automation[bot]
95eb2af25e
tasks/middleware: close connections on worker status update database error (cherry-pick #18881 to version-2025.12) ( #18905 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
close connections on worker status update database error (#18881 )
2025-12-17 15:46:53 +01:00
authentik-automation[bot]
cbc00a501b
web: fix file upload form (cherry-pick #18808 to version-2025.12) ( #18884 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
fix file upload form (#18808 )
2025-12-17 14:02:31 +01:00
authentik-automation[bot]
480645d897
website/docs: add icon info to style guide (cherry-pick #18832 to version-2025.12) ( #18837 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-17 14:02:12 +01:00
authentik-automation[bot]
997c767c95
web/admin: endpoint: change wording and add helper text (cherry-pick #18871 to version-2025.12) ( #18890 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Teffen Ellis <teffen@sister.software >
2025-12-17 14:00:02 +01:00
authentik-automation[bot]
5a54e1dc9a
web: fix notification counter (cherry-pick #18781 to version-2025.12) ( #18882 )
...
Co-authored-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
fix notification counter (#18781 )
2025-12-16 18:44:22 +01:00
authentik-automation[bot]
49b1952566
website/docs: Add docs for passkey autofill (WebauthN Conditional UI) (cherry-pick #18805 to version-2025.12) ( #18870 )
...
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-16 18:11:02 +01:00
authentik-automation[bot]
e73edc2fce
web/admin: fix read-only provider selection for application form (cherry-pick #18768 to version-2025.12) ( #18803 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
fix read-only provider selection for application form (#18768 )
2025-12-16 18:10:49 +01:00
authentik-automation[bot]
409652e874
web: add custom message with links for empty data export list (cherry-pick #18830 to version-2025.12) ( #18876 )
...
Co-authored-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
2025-12-16 18:09:52 +01:00
authentik-automation[bot]
1d3fb6431f
website/docs: 2025.10.3 release notes (cherry-pick #18868 to version-2025.12) ( #18873 )
...
website/docs: 2025.10.3 release notes (#18868 )
* website/docs: 2025.10.3 release notes
* format
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-12-16 17:06:16 +01:00
authentik-automation[bot]
76cfada60f
website/docs: adjust RBAC-related details in 2025.12 release notes (cherry-pick #18863 to version-2025.12) ( #18869 )
...
website/docs: adjust RBAC-related details in 2025.12 release notes (#18863 )
* website/docs: adjust RBAC-related details in 2025.12 release notes
* adjust wording
---------
Signed-off-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-12-16 10:39:50 -05:00
authentik-automation[bot]
ac45f80551
outposts: fix permission errors for related certificates (cherry-pick #18861 to version-2025.12) ( #18866 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
fix permission errors for related certificates (#18861 )
2025-12-16 15:23:49 +01:00
authentik-automation[bot]
5ea85f086a
web/admin/rbac: misc object permission fixes (cherry-pick #18859 to version-2025.12) ( #18865 )
...
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
fixes (#18859 )
2025-12-16 14:54:31 +01:00
authentik-automation[bot]
e3f657746c
rbac: alter migrated direct permission roles (cherry-pick #18860 to version-2025.12) ( #18864 )
...
Co-authored-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
2025-12-16 13:56:35 +01:00
authentik-automation[bot]
001b56e2cc
release: 2025.12.0-rc1
2025-12-16 04:59:24 +00:00
Marcelo Elizeche Landó
ecbfd2f0de
add skip s3_test_server_available to TestResolveFileUrlS3Backend
2025-12-16 01:29:40 -03:00
authentik-automation[bot]
45753397e1
admin/files: fix get_objects_for_user queryset argument in FileUsedByView (cherry-pick #18845 to version-2025.12) ( #18847 )
...
admin/files: fix get_objects_for_user queryset argument in FileUsedByView (#18845 )
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-16 01:15:30 +00:00
Marcelo Elizeche Landó
dc6fe1dafe
core: skip s3 tests if endpoint isn't available ( #18841 )
...
skip s3 tests if endpoint isn't available
2025-12-15 20:38:01 -03:00
authentik-automation[bot]
d5e8f2f416
admin/files: revert add check for /media existence ( #18636 ) (cherry-pick #18829 to version-2025.12) ( #18838 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-15 16:45:43 +01:00
authentik-automation[bot]
d73af5a2b4
packages/django-dramatiq-postgres: broker: close django connections on consumer close (cherry-pick #18833 to version-2025.12) ( #18836 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Norman Ziebal <norman.ziebal@mail.schwarz >
close django connections on consumer close (#18833 )
2025-12-15 15:01:08 +01:00
authentik-automation[bot]
7042f2bba8
core: list applications fix (cherry-pick #18798 to version-2025.12) ( #18828 )
...
Co-authored-by: Ryan Pesek <44002516+ryanpesek@users.noreply.github.com >
fix (#18798 )
2025-12-15 12:47:20 +00:00
authentik-automation[bot]
efeb260fa8
tests/e2e: retry detached shadow roots (cherry-pick #18796 to version-2025.12) ( #18799 )
...
tests/e2e: retry detached shadow roots (#18796 )
tests(e2e): retry detached shadow roots
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-14 00:50:23 +01:00
authentik-automation[bot]
29e90092ea
website/release notes: Update v2025.12 release notes (cherry-pick #18797 to version-2025.12) ( #18800 )
...
website/release notes: Update v2025.12 release notes (#18797 )
* website/release notes: Update v2025.12 release notes
* fix linting
---------
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-13 00:03:26 +00:00
Marcelo Elizeche Landó
0abe865023
Revert "Update docker compose command to start postgresql with s3"
...
This reverts commit 220c65a41a .
2025-12-12 20:59:44 -03:00
Marcelo Elizeche Landó
220c65a41a
Update docker compose command to start postgresql with s3
...
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-12 19:47:24 -03:00
Marcelo Elizeche Landó
c0eff71873
website/release notes: Release notes for v2025.12 ( #18595 )
...
* First draft of release notes for v2025.12
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* add many words
* fix linting
* add content to highlights
* glossary
* tweak
* Add passkey autofill details
* fix linting
* improve descriptions for CSV Data Exports, Files, UI improvements, Promoted Source and localization
* minor fixes
* remove links
---------
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-12-12 16:56:58 -03:00
authentik-automation[bot]
7b9c44b004
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #18793 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-12 19:41:48 +00:00
Ken Sternberg
62f1de5993
web/admin: make empty table message configurable ( #18763 )
...
* 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 .
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
* admin: make empty table message configurable
# What
This commit provides a new field at the Table level for the empty state message. The field defaults to the original message, “No objects found.”
# Why
The icon has long been configurable, but not the message. It makes sense to customize this message and let people know if they’re looking at files, properties, applications, and other objects.
2025-12-12 19:33:42 +00:00
Teffen Ellis
17489fa695
web: Fix background refreshing too frequently. ( #18764 )
2025-12-12 13:34:20 -05:00
Teffen Ellis
94ae8b7b80
web: Fix switch labels ( #18741 )
...
* Fix switch alignment:
* Fix ARIA.
2025-12-12 18:25:17 +01:00
Ryan Pesek
69b98fcbac
core: optimize list applications ( #18330 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-12 17:35:24 +01:00
authentik-automation[bot]
d09c7098de
core, web: update translations ( #18766 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-12 16:22:04 +00:00
Marc 'risson' Schmitt
bba0aed68f
web/admin: fix typo in PolicyAccessView ( #18789 )
2025-12-12 16:08:57 +00:00
transifex-integration[bot]
3ae5d717cd
translate: Updates for project authentik and language fr_FR ( #18788 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-12 15:14:35 +00:00
dependabot[bot]
c5d69ec020
core: bump goauthentik/fips-debian from dea09c4 to 07f41ce ( #18778 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 15:13:32 +00:00
Marc 'risson' Schmitt
ae019ebe04
admin/files: cache expensive generated URLs ( #18784 )
2025-12-12 13:41:42 +00:00
dependabot[bot]
7484b153ac
ci: bump actions/cache from 4.3.0 to 5.0.0 ( #18779 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 13:30:11 +00:00
dependabot[bot]
acc7c02105
ci: bump tj-actions/changed-files from 47.0.0 to 47.0.1 ( #18780 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 13:28:58 +00:00
dependabot[bot]
80ed53000d
core: bump goauthentik.io/api/v3 from 3.2025120.25 to 3.2025120.26 ( #18770 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 13:28:09 +00:00
dependabot[bot]
d90a41a186
core: bump selenium/standalone-chromium from 142.0 to 143.0 in /tests/e2e ( #18772 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 13:27:55 +00:00
dependabot[bot]
55ab2f13d6
web: bump types (merge branch) ( #18735 )
...
* web: bump @types/node from 24.10.3 to 25.0.0 in /web/packages/core
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.10.3 to 25.0.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 25.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
* Bump packages.
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Teffen Ellis <teffen@sister.software >
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-12-12 08:22:34 -05:00
Marc 'risson' Schmitt
7f9961981f
ci: generate typescript api client for release too ( #18761 )
2025-12-12 14:04:28 +01:00
Sirofwalls
cafe9e3808
website/integrations: wazuh: Change exchange key generation to 64 bytes ( #18769 )
...
Change exchange key generation to 64 bytes
Updated the command to generate an exchange key from 32 to 64 bytes. as of wazuh 4.9 the exchange key needs to be 64 characters long
Signed-off-by: Sirofwalls <58705178+sirofwalls@users.noreply.github.com >
2025-12-12 09:39:08 +00:00
Alexander Tereshkin
3d9632c8a5
website/docs: fix incorrect menu reference in data exports doc ( #18752 )
...
enterprise/reports: fix incorrect menu reference in data exports doc
2025-12-11 18:04:46 +00:00
transifex-integration[bot]
895a2fdd4a
translate: Updates for project authentik and language zh-Hans ( #18756 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 18:03:30 +00:00
transifex-integration[bot]
a94035ddd6
translate: Updates for project authentik and language tr_TR ( #18758 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:53:42 +00:00
transifex-integration[bot]
f042056c5c
translate: Updates for project authentik and language fi_FI ( #18759 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:52:29 +00:00
transifex-integration[bot]
91965146b5
translate: Updates for project authentik and language pl_PL ( #18754 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:42:38 +00:00
transifex-integration[bot]
25a45e0f9f
translate: Updates for project authentik and language ru_RU ( #18745 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:42:03 +00:00
transifex-integration[bot]
e0ec797f58
translate: Updates for project authentik and language ko_KR ( #18760 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:40:59 +00:00
transifex-integration[bot]
61377e9b13
translate: Updates for project authentik and language ja_JP ( #18755 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:40:20 +00:00
transifex-integration[bot]
a225d68f52
translate: Updates for project authentik and language de_DE ( #18749 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:39:43 +00:00
transifex-integration[bot]
0afe14a52f
translate: Updates for project authentik and language nl_NL ( #18751 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:38:07 +00:00
transifex-integration[bot]
2442759fc2
translate: Updates for project authentik and language pt_BR ( #18746 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:35:04 +00:00
transifex-integration[bot]
0c19d1ec61
translate: Updates for project authentik and language es_ES ( #18748 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:31:13 +00:00
transifex-integration[bot]
1bda55de9f
translate: Updates for project authentik and language it_IT ( #18750 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:26:30 +00:00
transifex-integration[bot]
da975c3086
translate: Updates for project authentik and language cs_CZ ( #18753 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:14:54 +00:00
transifex-integration[bot]
37937422ce
translate: Updates for project authentik and language fr_FR ( #18747 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-11 17:13:15 +00:00
Marcelo Elizeche Landó
15b93a5e9d
stages/identification: Add WebAuthn conditional UI (passkey autofill) support ( #18377 )
...
* add passkey_login to identification stage
* handle passkey auth in identification stage
* Add passkey settings in identification stage in the admin UI
* Add UI changes for basic passkey conditional login
* Fix linting
* rework
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update tests
* update admin form
* allow passing stage to validate_challenge_webauthn
* update flows/tests/test_inspector.py
* update for new field
* Fix linting
* update go solvers for identification challenge
* Refactor tests
* Skip mfa validation if user already authenticated via passkey at identification stage
* Add skip_if_passkey_authenticated option to authenticator validate stage and UI
* Add e2e test for passkey login conditional ui
* add policy
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Remove skip_if_passkey_authenticated
* fix blueprint
* Set backend so password stage policy knows user is already authenticated
* Set backend so password stage policy knows user is already authenticated
* fix linting
* slight tweaks
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* simplify e2e test
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-12-11 11:49:05 -03:00
Nuno Alves
196bce348f
api: allow configuring default page_size and max_page_size ( #18165 )
...
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-11 14:45:50 +00:00
Marc 'risson' Schmitt
a0c33233d5
root: do not require backend approval for npm workspace dependencies ( #18738 )
2025-12-11 14:45:34 +00:00
Dominic R
3353db0d7f
outpost/proxyv2: more tests, fix pg password with spaces, and existing session on restart ( #18211 )
...
* outpost/proxyv2: handle PostgreSQL passwords with spaces and special characters
And modify / add some more tests and a bit of refactoring
* Potential fix for code scanning alert no. 268: Disabled TLS certificate check
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Dominic R <dominic@sdko.org >
* Revert "Potential fix for code scanning alert no. 268: Disabled TLS certificate check"
This reverts commit ead227a272 .
* wip
* fix incorrect status code in error response
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-12-11 14:25:41 +00:00
dependabot[bot]
d1a3f76188
web: bump @types/guacamole-common-js from 1.5.4 to 1.5.5 in /web ( #18717 )
...
Bumps [@types/guacamole-common-js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/guacamole-common-js ) from 1.5.4 to 1.5.5.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/guacamole-common-js )
---
updated-dependencies:
- dependency-name: "@types/guacamole-common-js"
dependency-version: 1.5.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 14:42:36 +01:00
Hosh
224eb938c2
lib: do not strip and re-add curly braces from raw JSON config ( #13769 )
...
* Do not strip and re-add curly braces from JSON
Signed-off-by: Hosh <hoshsadiq@users.noreply.github.com >
* Fix tests
---------
Signed-off-by: Hosh <hoshsadiq@users.noreply.github.com >
Co-authored-by: Hosh <hoshsadiq@users.noreply.github.com >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-11 13:29:48 +01:00
dependabot[bot]
49fafa1e7c
core: bump library/nginx from 325b00a to fb01117 in /website ( #18737 )
...
Bumps library/nginx from `325b00a` to `fb01117`.
---
updated-dependencies:
- dependency-name: library/nginx
dependency-version: 1.29-trixie
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 12:51:18 +01:00
dependabot[bot]
6f1c486dca
core: bump goauthentik.io/api/v3 from 3.2025120.21 to 3.2025120.25 ( #18732 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.21 to 3.2025120.25.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.21...v3.2025120.25 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.25
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 12:50:10 +01:00
dependabot[bot]
15c56aa47f
web: bump the storybook group across 1 directory with 5 updates ( #18715 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 10.1.4 to 10.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.5/code/addons/docs )
Updates `@storybook/addon-links` from 10.1.4 to 10.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.5/code/addons/links )
Updates `@storybook/web-components` from 10.1.4 to 10.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.5/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 10.1.4 to 10.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.5/code/frameworks/web-components-vite )
Updates `storybook` from 10.1.4 to 10.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.1.5/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 10.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 10.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 10.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 10.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 10.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 12:37:56 +01:00
dependabot[bot]
b7502d0485
web: bump knip from 5.72.0 to 5.73.1 in /web ( #18734 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.72.0 to 5.73.1.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Commits](https://github.com/webpro-nl/knip/commits/5.73.1/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.73.1
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-12-11 12:37:36 +01:00
dependabot[bot]
882fd0966c
core: bump goauthentik/fips-debian from e72277d to dea09c4 ( #18736 )
...
Bumps goauthentik/fips-debian from `e72277d` to `dea09c4`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-11 12:34:15 +01:00
Tyler
ef6a64076c
website/integrations: m365: fix string match ( #18731 )
...
Minor doc error: M365 SAML w/o AD Source
This needs to just be a simple string match, and earlier in the docs the custom property mapping is created that simply returns "user.email"
Signed-off-by: Tyler <tyler@fenby.tech >
2025-12-10 23:57:21 -05:00
authentik-automation[bot]
a1e6b086cd
core, web: update translations ( #18730 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-10 23:33:53 +00:00
Teffen Ellis
2a2da34eab
web: Locale selector ( #18560 )
...
* web: Locale selector
* Fix label, hover state.
* Persist locale to session. Fix stale render. Update middleware.
* Fix background color.
2025-12-10 15:51:17 -05:00
Alexander Tereshkin
572d965084
sources/telegram: implement connecting existing user to a Telegram account ( #18517 )
2025-12-10 18:20:40 +01:00
Marc 'risson' Schmitt
92c5efbac1
sources/sync: configuration for outgoing sync trigger mode ( #17669 )
...
* sources/sync: configuration for outgoing sync trigger mode
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* lint
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* api and frontend
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix tests
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* update migrations
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* Wrap `msg` calls in function to fix translation. Update props to accept
callbacks.
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-12-10 12:40:32 -03:00
Dominic R
b4b89e9633
website/integrations: add KitchenOwl ( #18687 )
...
* website/integrations: add KitchenOwl OIDC integration documentation
* wip
* Small changes
---------
Co-authored-by: Victor Löfgren <victor.lofgren99@pm.me >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-12-10 15:27:10 +00:00
Marc 'risson' Schmitt
54be51862a
admin/files: add check for /media existence ( #18636 )
2025-12-10 11:56:45 -03:00
Marc 'risson' Schmitt
03a2212657
lifecycle/migrate: remove tenant_files migration ( #18729 )
2025-12-10 14:03:17 +00:00
dependabot[bot]
a50936f2e7
core: bump goauthentik.io/api/v3 from 3.2025120.19 to 3.2025120.21 ( #18714 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 13:31:14 +00:00
dependabot[bot]
ae44cb0ca2
core: bump library/golang from b669435 to 5d35fb8 ( #18718 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 13:29:13 +00:00
dependabot[bot]
f0132570ca
ci: bump codecov/codecov-action from 5.5.1 to 5.5.2 in /.github/actions/test-results ( #18722 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 13:28:09 +00:00
dependabot[bot]
6a922a63d8
ci: bump peter-evans/create-pull-request from 7.0.11 to 8.0.0 ( #18721 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 13:27:45 +00:00
authentik-automation[bot]
efa35ba94b
core, web: update translations ( #18713 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-10 14:10:18 +01:00
dependabot[bot]
6763636242
core: bump goauthentik/fips-debian from cb2d1f8 to e72277d ( #18720 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 14:09:00 +01:00
dependabot[bot]
d78ae5c55e
core: bump library/nginx from e21f8d0 to 325b00a in /website ( #18724 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 14:07:54 +01:00
dependabot[bot]
ca714d819c
core: bump library/node from 7942b33 to ccfd9da in /website ( #18725 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 14:07:46 +01:00
Connor Peshek
efdc11e413
web/admin: Add SAML metadata form to wizard ( #17690 )
...
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-12-10 13:58:13 +01:00
Anduin Xue
cd09bff247
sources/oauth: add WeChat type ( #18086 )
...
* Add wechat.
* Refactor comments and formatting in wechat.py
Signed-off-by: Anduin Xue <anduin@aiursoft.com >
* Fix lint.
Signed-off-by: Anduin Xue <anduin@aiursoft.com >
* Fix lint.
* fix: Rename `WeChat` enum member to `Wechat` for consistency
* docs: Add WeChat social login integration guide.
* Docs updates
* Revise WeChat integration instructions
Updated instructions for creating a WeChat Website Application and added details about scopes and user attribute mappings.
Signed-off-by: Anduin Xue <anduin@aiursoft.com >
* Prettier
* Update wechat.py
Signed-off-by: Anduin Xue <anduin@aiursoft.com >
---------
Signed-off-by: Anduin Xue <anduin@aiursoft.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-10 12:48:12 +00:00
Simonyi Gergő
4c07b7ae81
blueprints: remove pk from recovery example ( #18712 )
2025-12-10 13:15:09 +01:00
dependabot[bot]
320a6ce137
core: bump astral-sh/uv from 0.9.16 to 0.9.17 ( #18723 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.16 to 0.9.17.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.16...0.9.17 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.17
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-10 12:32:53 +01:00
Teffen Ellis
1f21d2e8e6
web: 2025.12 UI tidy ( #18650 )
...
* Fix box shadow, scrollbars.
* Fix contrast.
* Fix field alignment.
* Fix class ordering.
* Fix button colors while in nested table.
* Fix background color on light mode.
* Fix chip colors, spacing.
* Fix overlap of switch during transition.
2025-12-10 02:15:14 +01:00
Marcelo Elizeche Landó
d113204872
packages/ak-guardian: bump python requirement to 3.14 ( #18711 )
...
packages/ak-guardian: bump python to 3.14
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-12-09 23:21:04 +00:00
Dominic R
d1c2c1c565
contributing: don't use main branch ( #18688 )
...
* contributing: don't use main branch
* lint
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-12-09 23:12:17 +00:00
Jens L.
379a9d09f1
endpoints: fix device access group missing from blueprint ( #18703 )
...
* endpoints: fix device access group missing from blueprint
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also fix flow_set not being read_only
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix general blueprint schema issue of incorrect related PK fields having the wrong type some places
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix web format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-09 19:46:49 +01:00
Marc 'risson' Schmitt
68d0b02e00
tenants: remove extra query for each request ( #18705 )
2025-12-09 17:52:52 +00:00
dependabot[bot]
4d289ecb75
web: bump dompurify from 3.3.0 to 3.3.1 in /web ( #18694 )
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.3.0...3.3.1 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-version: 3.3.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 12:51:27 -05:00
dependabot[bot]
e6f345dcab
web: bump knip from 5.71.0 to 5.72.0 in /web ( #18695 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.71.0 to 5.72.0.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Commits](https://github.com/webpro-nl/knip/commits/5.72.0/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.72.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-12-09 12:25:01 -05:00
Marc 'risson' Schmitt
a19a124352
core/sessions: remove django groups prefetch ( #18704 )
2025-12-09 17:16:08 +00:00
Jens L.
61be5d7c29
lib: add ak_create_jwt_raw ( #18676 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-09 18:15:06 +01:00
dependabot[bot]
d728b74825
core: bump library/nginx from 553f64a to e21f8d0 in /website ( #18698 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 16:16:43 +00:00
Simonyi Gergő
41050bb846
core: propagate ModuleNotFoundError in import_relative ( #18683 )
...
propagate `ModuleNotFoundError` in `import_relative`
Imagine adding a `signals.py` to some managed app and typing
```
import nonexistent_module
```
to it. Previously, this would silently fail and you'd try to debug your
signals instead of the import path. Now the error is noisy and explicit.
2025-12-09 16:58:03 +01:00
dependabot[bot]
01ed831663
core: bump goauthentik/fips-debian from 10c8086 to cb2d1f8 ( #18696 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 16:55:27 +01:00
dependabot[bot]
a0bcb14a2f
core: bump golang.org/x/sync from 0.18.0 to 0.19.0 ( #18690 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 15:07:20 +00:00
dependabot[bot]
f8c3ccb32f
core: bump golang.org/x/oauth2 from 0.33.0 to 0.34.0 ( #18691 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 14:42:45 +00:00
Alexander Tereshkin
7e9e0a87f7
enterprise/reports: add users and events export ( #18088 )
...
* enterprise: add users and events export (reports app)
* enterprise/reports: replace assert with AsertionError so that the assumption check is not lost when compiling to optimised byte code
* enterprise/reports: use ConditionalInheritance with ExportMixin to make reduce coupling of enterprise with the rest of authentik
* enterprise/reports: use custom iterative File to save data export instead of accessing default_storage directly, so all the FileField.save logic can run correctly (e.g. creating directories)
* enterprise/reports: change app label to simply "authentik_reports"
* wip
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* update for new file api
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* lint
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* Apply suggestions from code review
Signed-off-by: Dominic R <dominic@sdko.org >
* wip
* sources/oauth: save returned oauth refresh tokens and add slack provider (#18501 )
* sources/oauth: save returned oauth refresh tokens
* Update authentik/sources/oauth/models.py
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* lint
* add tests
* fix proper id setting
* update id test
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor peshek <connorpeshek@unknown1641287c8f5d.attlocal.net >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
* core: custom avatar url improvements (#10525 )
Co-authored-by: Dominic R <dominic@sdko.org >
* website/integrations: add salesforce (#18516 )
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
* endpoints: implement endpoint stage (#18468 )
* endpoints: implement endpoint stage
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix mismatched label
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix url in mdm config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rephrase
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* and API & UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add deprecated support and deprecate gdtc
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add stage mode
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fixup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework stage slightly, add frontend
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include jwks, add iat and exp
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* set kid
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include device details in event list
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* implement device summary
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add remaining tables
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* revert sanitize
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix uuid format issues
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web/flows: update default background image (#18540 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* website/integrations: add hoop.dev (#17868 )
Co-authored-by: iops <iops@syneforge.com >
Co-authored-by: Dominic R <dominic@sdko.org >
* website: Docusaurus 3.9.2 (#18506 )
* endpoints/stage: v2, better error handling, more settings (#18545 )
* add options, idle fallback
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* delete other device tokens during enroll
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better error handling
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* website: Glossary (#16007 )
* website: Glossary
fix minor issues
wip
Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
anchor to param
wip
wip
at least the lockfile changes now
sure
a-z first as tana asked
idk why i switched in the first place
wip
wip
lock
lockfiles are hard
wip
please work
no have?
Revert "no have?"
This reverts commit 743dbc1bc2900eedcc2c93af248e6afdec3688a3.
* changed to sentence-case capitalization
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
* web/i18n: Locale Context Merge Branch (#18426 )
* web: Update fonts to Patternfly 5 variants.
* Fix order of heading override.
* web: Flesh out locale context.
* Fix Han pattern.
* Remove comment.
* Add additional regional codes.
* Clarify comment.
* Fix typos.
* web/i18n: Add locale-specific font overrides.
* Fix stale session in locale lifecycle.
* core, web: Fix Han language codes.
* Fix warnings about invalid BCP language code.
* Build translations.
* Add locale relative labels.
* Add locale translations for Finnish and Portuguese.
* Fix XLIFF errors.
* Clean up labels.
* Tidy regions.
* Match region comment.
* Update extracted values.
* Fix locale switch not triggering on source language.
* Split labels.
* Clean up labels.
* providers/scim: cache ServiceProviderConfig (#18047 )
* Update authentik/enterprise/reports/api/reports.py
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* enterprise/reports: got rid of unnecessary method-level import
* enterprise/reports: celan up code duplication in data export generation (invoke viewset.filter_queryset directly instead of replicating it)
* enterprise/reports: add check for app label when switching on content types
* enterprise/reports: make hyperlink field on Notification larger so it can fit the security token in the export file URL
* enterprise/reports: add is_superuser back in users export
* enterprise/reports: split tests into multiple files
* Apply suggestions from code review
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Fixed prettier issue
* Update web/src/admin/events/DataExportListPage.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/admin/events/DataExportListPage.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/admin/events/EventListPage.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/admin/reports/ExportButton.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/admin/reports/ExportButton.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/admin/users/UserListPage.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/elements/notifications/NotificationDrawer.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update web/src/elements/sidebar/SidebarItem.css
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* enterprise/reports: resolve code review merge errors
* enterprise/reports: remove the export button from the dom flow (by settings display:none) when there's no license
* enterprise/reports: improve docs
* include notification link in email
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* enterprise/reports: remove assignment assertion in ExportButton.ts
* cleanup tests after perm update
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor peshek <connorpeshek@unknown1641287c8f5d.attlocal.net >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Konrad Mösch <konrad@moesch.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: shcherbak <ju.shcherbak@gmail.com >
Co-authored-by: iops <iops@syneforge.com >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Jens L. <jens@beryju.org >
2025-12-09 09:35:41 -05:00
dependabot[bot]
ea513f2ec0
core: bump library/golang from 4f9d98e to b669435 ( #18697 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 15:25:39 +01:00
authentik-automation[bot]
9093f5939b
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #18458 )
...
* stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
# Conflicts:
# web/package-lock.json
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-12-09 13:24:32 +01:00
dependabot[bot]
7b691d56a8
core: bump goauthentik.io/api/v3 from 3.2025120.18 to 3.2025120.19 ( #18689 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.18 to 3.2025120.19.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.18...v3.2025120.19 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.19
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-09 07:04:04 +01:00
authentik-automation[bot]
7bfe14c975
core, web: update translations ( #18640 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-09 03:00:36 +01:00
Teffen Ellis
27f89ffad6
web: Improved table selection behavior ( #18622 )
...
* Fix caching issues when selecting a row.
* Adjust scroll alignment.
* Fix typo.
2025-12-08 17:20:48 -05:00
Dominic R
d5c743b4ee
website/integrations: homarr: fix capitalization of redirect uri ( #18679 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-12-08 21:46:33 +00:00
Teffen Ellis
9b1f53766b
web: Improved Timestamps ( #18300 )
...
* web: Fix issues which prevent timestamps from refreshing.
Clean up constants.
* web: Tidy types. Add timestamps.
* Fix `useDefault` with truthy value.
2025-12-08 16:42:36 -05:00
Teffen Ellis
4df1345c01
web: Hide device picker when challenges are not present. ( #18611 )
2025-12-08 19:18:47 +00:00
authentik-automation[bot]
08551f1b46
*: Auto compress images ( #18673 )
...
* *: compress images
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* ci trigger
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: gergosimonyi <28359278+gergosimonyi@users.noreply.github.com >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-08 14:18:31 +00:00
Dewi Roberts
6663cacfb4
website/integrations: update kimai doc ( #18629 )
...
* Update doc
* NameID
2025-12-08 14:06:02 +00:00
Jens L.
ff91edd70d
root: skip current tab when refreshing others ( #18674 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-08 14:57:36 +01:00
Simonyi Gergő
f7e23295ed
core: add digraph group hierarchy ( #17050 )
...
* move imports
* core: add digraph group hierarchy
* move to permissions from Group or User to Role
* set group parents on frontend
* do not serialize `GroupParentageNode` directly
* core: enforce unique group name on database level
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* use group parents in LDAP provider
* add user-role relationship control to frontend
* move materialized view to be more discoverable
* add guardian to mypy exceptions
* make `Role` a `ManagedModel`
* fixup! make `Role` a `ManagedModel`
* simplify `get_objects_for_user`
* fix flaky unit test
* rename `django-guardian` fork to `ak-guardian`
* add tests around users/groups/roles
* remove unused guardian config variable
* simplify guardian file structure
* clean up frontend
* initial docs
* remove `mode` from `InitialPermissions`
This is no longer needed, since users no longer directly have permissions.
* fixup! Merge branch 'main' into core/add-digraph-group-hierarchy
* clean up docs for managing permissions
* addendums from docs review
* fixup! Merge branch 'main' into core/add-digraph-group-hierarchy
* tweaks
* dewi and tana edits to docs
* tweak
* truly final tweaks, for now
* relabel Role Permissions table
* clarify button label
* fixup! Merge branch 'main' into core/add-digraph-group-hierarchy
* fixup! Merge branch 'main' into core/add-digraph-group-hierarchy
* merge migrations
* fixup! Merge branch 'main' into core/add-digraph-group-hierarchy
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-12-08 12:04:04 +01:00
dependabot[bot]
d54409c5dd
core: bump astral-sh/uv from 0.9.15 to 0.9.16 ( #18668 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.15 to 0.9.16.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.15...0.9.16 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.16
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:13:40 +01:00
dependabot[bot]
bebd725d25
core: bump goauthentik.io/api/v3 from 3.2025120.16 to 3.2025120.18 ( #18661 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.16 to 3.2025120.18.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.16...v3.2025120.18 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.18
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:13:16 +01:00
dependabot[bot]
a1ded8a837
web: bump type-fest from 5.3.0 to 5.3.1 in /web ( #18663 )
...
Bumps [type-fest](https://github.com/sindresorhus/type-fest ) from 5.3.0 to 5.3.1.
- [Release notes](https://github.com/sindresorhus/type-fest/releases )
- [Commits](https://github.com/sindresorhus/type-fest/compare/v5.3.0...v5.3.1 )
---
updated-dependencies:
- dependency-name: type-fest
dependency-version: 5.3.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:11:39 +01:00
dependabot[bot]
7ea083f16c
ci: bump peter-evans/create-pull-request from 7.0.9 to 7.0.11 ( #18666 )
...
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request ) from 7.0.9 to 7.0.11.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases )
- [Commits](84ae59a2cd...22a9089034 )
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-version: 7.0.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:11:24 +01:00
dependabot[bot]
306921ac8a
web: bump vite from 7.2.6 to 7.2.7 in /web ( #18662 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.2.6 to 7.2.7.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.2.7/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.2.7/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.2.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:11:09 +01:00
dependabot[bot]
c255b086da
core: bump goauthentik/fips-debian from a80dbbd to 10c8086 ( #18665 )
...
Bumps goauthentik/fips-debian from `a80dbbd` to `10c8086`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:10:48 +01:00
dependabot[bot]
35f6c9204c
ci: bump actions/create-github-app-token from 2.2.0 to 2.2.1 ( #18664 )
...
Bumps [actions/create-github-app-token](https://github.com/actions/create-github-app-token ) from 2.2.0 to 2.2.1.
- [Release notes](https://github.com/actions/create-github-app-token/releases )
- [Commits](7e473efe3c...29824e69f5 )
---
updated-dependencies:
- dependency-name: actions/create-github-app-token
dependency-version: 2.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:10:32 +01:00
dependabot[bot]
a627396dcb
ci: bump astral-sh/setup-uv from 7.1.4 to 7.1.5 in /.github/actions/setup ( #18667 )
...
ci: bump astral-sh/setup-uv in /.github/actions/setup
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv ) from 7.1.4 to 7.1.5.
- [Release notes](https://github.com/astral-sh/setup-uv/releases )
- [Commits](1e862dfacb...ed21f2f24f )
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: 7.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 11:09:40 +01:00
Dominic R
888733a32c
website/docs: background tasks: add more detail about "next run" ( #18660 )
2025-12-08 09:07:32 +00:00
Dominic R
fa579c2ba5
website/docs: install-config: fix dump_config command ( #18659 )
2025-12-08 09:06:28 +00:00
Dominic R
8a200fd715
website/integrations: wordpress: fix redirect uri ( #18658 )
2025-12-08 09:06:10 +00:00
Jens L.
37ca47312d
stages/mtls: always include cert in flow plan ( #18657 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-08 01:58:21 +01:00
Jens L.
475ab76a5e
endpoints: fix UI bugs, add user binding, etc ( #18609 )
...
* fix serializer for device user binding
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix missing import
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* don't expire enrollment tokens by default
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* slightly better config modal error handling
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add ability to bind to device
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add text when authenticating to device
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* prevent error when no authz flow is set
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add device to token log
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* address comments
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix expiring default
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* don't require page refresh for enrollment token to show up
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* make config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-08 01:13:29 +01:00
Jens L.
a0fe677efd
sources/ldap: make server info optional ( #18648 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-07 16:57:49 +01:00
Jens L.
3548d5e30d
web/admin: fix event volume chart not updating with query ( #18649 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-07 14:34:40 +01:00
dependabot[bot]
8e87585fce
web: Bump types, fix ESLint errors ( #17546 )
...
* Fix config.
* Fix linter.
* Fix ts ignore comments.
* Fix empty functions
* Fix unnamed functions.
* Fix unused parameters.
* Fix define before use.
* Remove unused.
* Replace esbuild-copy-plugin with `fs` module.
---------
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-12-06 20:21:29 +00:00
Teffen Ellis
31b0e73329
web: Fix row expansion on modal trigger buttons. ( #18412 )
...
web: Fix row expansion on modal triggers.
2025-12-06 12:10:17 -05:00
Connor Peshek
859a753e24
docs/integrations: add salesforce oauth source and SCIM steps ( #18627 )
2025-12-06 04:11:52 -06:00
Jens L.
dbbfb3cf19
root: fix missing authentik_device cookie causing error ( #18642 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-06 03:00:56 +01:00
Jens L.
6d7249ea56
enterprise/stages/mtls: fix traefik certificate parsing ( #18607 )
...
* enterprise/stages/mtls: fix traefik certificate parsing
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add links for relevant docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-05 19:06:20 +01:00
Dewi Roberts
a07e820bce
wed/admin: change s to S in "Stage" ( #18632 )
...
change s to S in "Stage"
2025-12-05 16:11:52 +00:00
Jens L.
31186baf25
flows: refresh unauthenticated tabs ( #18621 )
...
* flows: implement signaling
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add flag
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better flag configuration
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update web/src/flow/FlowExecutor.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Jens L. <jens@beryju.org >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-12-05 16:03:16 +01:00
Jens L.
024e6c1961
flows: keep ?next url when using cancel ( #18619 )
...
keep ?next url when using cancel
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-05 15:35:15 +01:00
authentik-automation[bot]
1244a40ffb
core, web: update translations ( #18620 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-05 15:18:42 +01:00
dependabot[bot]
dcfe722f5c
ci: bump actions/setup-node from 6.0.0 to 6.1.0 ( #18552 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](2028fbc5c2...395ad32622 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: 6.1.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-12-05 14:37:31 +01:00
dependabot[bot]
6b1171aac8
core: bump goauthentik/fips-debian from cf233be to a80dbbd ( #18594 )
...
Bumps goauthentik/fips-debian from `cf233be` to `a80dbbd`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-05 14:37:12 +01:00
dependabot[bot]
b2d5519611
web: bump @sentry/browser from 10.28.0 to 10.29.0 in /web in the sentry group across 1 directory ( #18623 )
...
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 10.28.0 to 10.29.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/10.28.0...10.29.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.29.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-12-05 14:36:55 +01:00
Dewi Roberts
1620a96cd4
website/docs: adds note about ak_create_jwt function ( #18614 )
...
* Adds note
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-12-05 09:35:53 +00:00
Jens L.
a42fc4b741
api: fix IPC auth ( #18612 )
...
* api: fix IPC auth
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-04 22:50:50 +01:00
dependabot[bot]
9b822ce0fd
web: bump mermaid from 11.12.1 to 11.12.2 in /web ( #18602 )
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.12.1 to 11.12.2.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.12.1...mermaid@11.12.2 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.12.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 14:27:27 -05:00
Teffen Ellis
05c30af790
web: Codemirror fixes ( #18610 )
...
* web: Dynamic Loading of Codemirror
* Clarify error.
* Fix labels, links
* Fix key maps, tabbing
* Remove dupe.
* Update web/src/elements/codemirror/editor.ts
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
* Fix inversion of opacity.
* Format.
* Fix import.
* Fix imports.
* Fix static styles using getters.
- Seems to be a merge conflict from long ago.
* Fix typo.
* Fix capitalization.
---------
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2025-12-04 19:15:43 +00:00
dependabot[bot]
6683d9943c
web: bump packages in /web ( #18604 )
...
* web: bump playwright from 1.56.1 to 1.57.0 in /web
Bumps [playwright](https://github.com/microsoft/playwright ) from 1.56.1 to 1.57.0.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.56.1...v1.57.0 )
---
updated-dependencies:
- dependency-name: playwright
dependency-version: 1.57.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Bump Playwright related.
* Fix package upgrade log jam.
* Format.
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-12-04 19:15:14 +00:00
Dominic R
17ef75c19f
website/docs: expressions: fix markdown ( #18613 )
2025-12-04 18:19:42 +00:00
Dewi Roberts
d8428bf59a
website/docs: add missing API sidebar entry ( #18586 )
...
Adds missing sidebar entry
2025-12-04 11:53:51 -05:00
dependabot[bot]
3ef06094b5
web: bump yaml from 2.8.1 to 2.8.2 in /web ( #18605 )
...
Bumps [yaml](https://github.com/eemeli/yaml ) from 2.8.1 to 2.8.2.
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v2.8.1...v2.8.2 )
---
updated-dependencies:
- dependency-name: yaml
dependency-version: 2.8.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 11:33:44 -05:00
Marc 'risson' Schmitt
6b22487406
web/elements: update AppIcon story with files change ( #18608 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-04 16:28:57 +00:00
Jens L.
0fa412e782
api: test action decorator ( #18583 )
...
* api: validate usage of action decorator
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework auth
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
# Conflicts:
# authentik/enterprise/endpoints/connectors/agent/auth.py
* refactor auth
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fixup things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix outpost token
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-04 16:44:04 +01:00
Jens L.
334c0175f9
crypto: separate permissions for certificate and private keydownload ( #18588 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-04 16:31:52 +01:00
dependabot[bot]
3c2f39559f
core: bump github.com/spf13/cobra from 1.10.1 to 1.10.2 ( #18592 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 15:31:18 +00:00
dependabot[bot]
d05ad4403b
core: bump goauthentik.io/api/v3 from 3.2025120.15 to 3.2025120.16 ( #18591 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-04 15:55:19 +01:00
authentik-automation[bot]
10866f9dfc
core, web: update translations ( #18587 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-04 15:54:09 +01:00
Marcelo Elizeche Landó
97f0c6475d
core: bump boto3 from 1.40.75 to v1.42.1 ( #18571 )
2025-12-04 15:47:59 +01:00
Marcelo Elizeche Landó
0f6cb9183e
core: bump asgiref from 3.10.0 to v3.11.0 ( #18568 )
2025-12-04 15:47:40 +01:00
Marcelo Elizeche Landó
499c1b6fab
core: bump autobahn from 25.10.2 to v25.11.1 ( #18569 )
2025-12-04 15:47:21 +01:00
Marcelo Elizeche Landó
362d67ca6e
core: bump blessed from 1.24.0 to v1.25.0 ( #18570 )
2025-12-04 15:47:09 +01:00
Marcelo Elizeche Landó
abe944b8c9
core: bump cron-converter from 1.2.2 to v1.3.1 ( #18572 )
2025-12-04 15:47:05 +01:00
Marcelo Elizeche Landó
bba9643864
core: bump django-stubs-ext from 5.2.7 to v5.2.8 ( #18574 )
2025-12-04 15:46:30 +01:00
Marcelo Elizeche Landó
467af902f1
core: bump django-pgactivity from 1.7.1 to v1.8.0 ( #18573 )
2025-12-04 15:45:59 +01:00
Marcelo Elizeche Landó
e28a8aacc7
core: bump rpds-py from 0.29.0 to v0.30.0 ( #18579 )
2025-12-04 15:45:43 +01:00
Marcelo Elizeche Landó
af0444b0dd
core: bump opentelemetry-api from 1.38.0 to v1.39.0 ( #18577 )
2025-12-04 15:45:33 +01:00
Marcelo Elizeche Landó
8fcf60ecce
core: bump incremental from 24.7.2 to v24.11.0 ( #18575 )
2025-12-04 15:45:21 +01:00
Marcelo Elizeche Landó
10ebbcfd61
core: bump jsii from 1.119.0 to v1.120.0 ( #18576 )
2025-12-04 15:45:07 +01:00
Marcelo Elizeche Landó
6a1bde1fd8
core: bump psycopg-pool from 3.2.7 to v3.3.0 ( #18578 )
2025-12-04 15:45:03 +01:00
Marcelo Elizeche Landó
6d5092a394
core: bump sqlparse from 0.5.3 to v0.5.4 ( #18580 )
2025-12-04 15:44:52 +01:00
Marcelo Elizeche Landó
0a3763b82b
core: bump stevedore from 5.5.0 to v5.6.0 ( #18581 )
2025-12-04 15:44:47 +01:00
Marcelo Elizeche Landó
6a80490fdb
core: bump django from v5.2.8 to 5.2.9 ( #18582 )
...
bump django from v5.2.8 to 5.2.9
2025-12-04 15:44:34 +01:00
Teffen Ellis
74266a1e3d
web: bump base package ( #18509 )
...
* web: bump base package.
* Fix dependabot groups.
* Add root package files to code owners.
* Format.
* Update packages.
* Add dev engines.
2025-12-04 14:30:32 +01:00
Dominic R
29a9e31143
stages/captcha: Make stage more managed with provider-specific defaults ( #16129 )
2025-12-03 23:18:45 +00:00
Jens L.
e2df658d88
endpoints/stage: v2.1, fix asymmetric token exchange and missing form input ( #18547 )
...
* fix oauth federated providers not configurable
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix federated auth not working with asymmetric keys
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-04 00:09:07 +01:00
dependabot[bot]
302898a00a
build(deps): bump django from 5.2.8 to 5.2.9 ( #18566 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-03 16:31:16 +00:00
Teffen Ellis
18663bffa5
web: Adjust colors ( #18427 )
...
* Fix contrast in dark mode.
* Fix hover color.
* web: Fix danger button hover background color.
* web: Adjust colors, padding.
* web: Fix sidebar colors, padding.
* Normalize colors.
2025-12-03 16:27:56 +00:00
Marc 'risson' Schmitt
f46159bb3a
admin/files: delete applications cache on migration ( #18565 )
2025-12-03 16:22:44 +00:00
dependabot[bot]
ea19094c46
core: bump astral-sh/uv from 0.9.14 to 0.9.15 ( #18555 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 13:59:30 +00:00
dependabot[bot]
cc3ebb29ad
core: bump goauthentik.io/api/v3 from 3.2025120.11 to 3.2025120.15 ( #18551 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:42:52 +01:00
dependabot[bot]
bbc9943bb3
core: bump goauthentik/fips-debian from c718f60 to cf233be ( #18553 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:42:04 +01:00
dependabot[bot]
f9d3e91106
ci: bump actions/checkout from 6.0.0 to 6.0.1 ( #18554 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:41:48 +01:00
dependabot[bot]
7a6f1f3165
ci: bump actions/stale from 10.1.0 to 10.1.1 ( #18556 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:40:56 +01:00
dependabot[bot]
c78b5c36bb
ci: bump golangci/golangci-lint-action from 9.1.0 to 9.2.0 ( #18557 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:40:48 +01:00
dependabot[bot]
4ac6825e9f
ci: bump actions/setup-node from 6.0.0 to 6.1.0 in /.github/actions/setup ( #18559 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:40:41 +01:00
dependabot[bot]
41162d3ad2
core: bump library/golang from 1.25.4-trixie to 1.25.5-trixie ( #18558 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-03 14:40:33 +01:00
Dominic R
c1cfeaf4b5
providers/scim: cache ServiceProviderConfig ( #18047 )
2025-12-03 08:07:00 -05:00
Teffen Ellis
fe7a8894d3
web/i18n: Locale Context Merge Branch ( #18426 )
...
* web: Update fonts to Patternfly 5 variants.
* Fix order of heading override.
* web: Flesh out locale context.
* Fix Han pattern.
* Remove comment.
* Add additional regional codes.
* Clarify comment.
* Fix typos.
* web/i18n: Add locale-specific font overrides.
* Fix stale session in locale lifecycle.
* core, web: Fix Han language codes.
* Fix warnings about invalid BCP language code.
* Build translations.
* Add locale relative labels.
* Add locale translations for Finnish and Portuguese.
* Fix XLIFF errors.
* Clean up labels.
* Tidy regions.
* Match region comment.
* Update extracted values.
* Fix locale switch not triggering on source language.
* Split labels.
* Clean up labels.
2025-12-03 06:30:07 +00:00
Dominic R
96eb8dda0f
website: Glossary ( #16007 )
...
* website: Glossary
fix minor issues
wip
Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
anchor to param
wip
wip
at least the lockfile changes now
sure
a-z first as tana asked
idk why i switched in the first place
wip
wip
lock
lockfiles are hard
wip
please work
no have?
Revert "no have?"
This reverts commit 743dbc1bc2900eedcc2c93af248e6afdec3688a3.
* changed to sentence-case capitalization
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-12-02 21:36:51 -05:00
Jens L.
d0ef8a8b8e
endpoints/stage: v2, better error handling, more settings ( #18545 )
...
* add options, idle fallback
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* delete other device tokens during enroll
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better error handling
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-02 22:25:47 +01:00
Teffen Ellis
1474c65e11
website: Docusaurus 3.9.2 ( #18506 )
2025-12-02 19:17:52 +00:00
shcherbak
324a6de47c
website/integrations: add hoop.dev ( #17868 )
...
Co-authored-by: iops <iops@syneforge.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-02 18:59:28 +00:00
Jens L.
bee733b484
web/flows: update default background image ( #18540 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-02 19:25:15 +01:00
Jens L.
5ccd66ddca
endpoints: implement endpoint stage ( #18468 )
...
* endpoints: implement endpoint stage
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix mismatched label
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix url in mdm config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rephrase
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* and API & UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add deprecated support and deprecate gdtc
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add stage mode
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fixup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework stage slightly, add frontend
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include jwks, add iat and exp
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* set kid
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include device details in event list
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* implement device summary
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add remaining tables
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* revert sanitize
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix uuid format issues
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-02 19:19:14 +01:00
Connor Peshek
b8e15ad0d0
website/integrations: add salesforce ( #18516 )
...
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-02 18:02:25 +00:00
Konrad Mösch
39f8969f51
core: custom avatar url improvements ( #10525 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-02 12:49:54 -05:00
Connor Peshek
45ee4af451
sources/oauth: save returned oauth refresh tokens and add slack provider ( #18501 )
...
* sources/oauth: save returned oauth refresh tokens
* Update authentik/sources/oauth/models.py
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* lint
* add tests
* fix proper id setting
* update id test
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor peshek <connorpeshek@unknown1641287c8f5d.attlocal.net >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-12-02 11:49:40 -06:00
Marc 'risson' Schmitt
c30d1a478d
files: rework ( #17535 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-12-02 18:01:51 +01:00
Marcin Koziuk
f914af70f1
web/admin: fix brands default switch label ( #18518 )
2025-12-02 15:21:10 +00:00
dependabot[bot]
a46c5e5d89
web: bump express from 4.21.2 to 4.22.1 in /packages/docusaurus-config ( #18520 )
...
Bumps [express](https://github.com/expressjs/express ) from 4.21.2 to 4.22.1.
- [Release notes](https://github.com/expressjs/express/releases )
- [Changelog](https://github.com/expressjs/express/blob/v4.22.1/History.md )
- [Commits](https://github.com/expressjs/express/compare/4.21.2...v4.22.1 )
---
updated-dependencies:
- dependency-name: express
dependency-version: 4.22.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 15:43:19 +01:00
dependabot[bot]
1ebd7cf0f4
website: bump the goauthentik group in /website with 2 updates ( #18513 )
...
Bumps the goauthentik group in /website with 2 updates: [@goauthentik/eslint-config](https://github.com/goauthentik/authentik/tree/HEAD/packages/eslint-config ) and [@goauthentik/docusaurus-config](https://github.com/goauthentik/authentik/tree/HEAD/packages/docusaurus-config ).
Updates `@goauthentik/eslint-config` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/eslint-config )
Updates `@goauthentik/docusaurus-config` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/docusaurus-config )
---
updated-dependencies:
- dependency-name: "@goauthentik/eslint-config"
dependency-version: 1.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
- dependency-name: "@goauthentik/docusaurus-config"
dependency-version: 2.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 15:28:58 +01:00
authentik-automation[bot]
5a7a76f9b3
core, web: update translations ( #18510 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-02 14:34:49 +01:00
dependabot[bot]
f607378487
ci: bump softprops/action-gh-release from 2.4.2 to 2.5.0 ( #18512 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 14:32:47 +01:00
dependabot[bot]
e114a68505
core: bump astral-sh/uv from 0.9.13 to 0.9.14 ( #18514 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 14:32:13 +01:00
dependabot[bot]
ebe028f3c9
core: bump goauthentik/fips-debian from de70579 to c718f60 ( #18515 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-02 14:31:59 +01:00
Connor Peshek
eb60276846
integrations/slack: Add SCIM tutorial ( #18508 )
...
* integrations/slack: Add SCIM tutorial
* Update wording
* Update index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Small changes
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-12-02 04:28:26 -06:00
Teffen Ellis
952a0f796d
translate: fix source locale not matching transifex ( #18503 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-12-01 19:08:58 +00:00
Teffen Ellis
b7205ff167
web: Fixes for Docusaurus & ESlint Upgrade ( #18452 )
...
* Fix style regressions in Docusaurus 3.9
* Fix ignore file regression.
* Bump package versions.
* Update packages/docusaurus-config/css/navbar.css
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
---------
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Ken Sternberg <133134217+kensternberg-authentik@users.noreply.github.com >
2025-12-01 13:57:32 -05:00
Marc 'risson' Schmitt
5379c509d6
translate: fix config ( #18504 )
...
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-12-01 18:20:14 +00:00
Marc 'risson' Schmitt
63119df516
core, web: unified locales ( #18502 )
...
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-12-01 18:47:44 +01:00
transifex-integration[bot]
cd53ab5eba
translate: Updates for project authentik and language ko ( #18488 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:56:30 +00:00
transifex-integration[bot]
5aa7a1c62d
translate: Updates for project authentik and language es ( #18485 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:54:55 +00:00
transifex-integration[bot]
092c8a3db4
translate: Updates for project authentik and language zh_TW ( #18499 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:50:40 +00:00
transifex-integration[bot]
9d8427b1b4
translate: Updates for project authentik and language ru ( #18500 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:49:31 +00:00
transifex-integration[bot]
92556ca783
translate: Updates for project authentik and language pt ( #18498 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:46:20 +00:00
transifex-integration[bot]
d5c2aedc8e
translate: Updates for project authentik and language fr ( #18496 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:46:08 +00:00
transifex-integration[bot]
02304081ed
translate: Updates for project authentik and language de ( #18487 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:45:48 +00:00
transifex-integration[bot]
d60b6faa61
translate: Updates for project authentik and language nl ( #18497 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:45:29 +00:00
transifex-integration[bot]
b12d1ed410
translate: Updates for project authentik and language fi ( #18490 )
...
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-12-01 16:44:45 +00:00
authentik-automation[bot]
1276d87d69
core, web: update translations ( #18380 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-12-01 17:01:05 +01:00
Marc 'risson' Schmitt
0ba097ad95
web: re-add en.xlf locale ( #18469 )
2025-12-01 15:54:11 +01:00
Sebastian Knackstedt
3ff7332742
stages/user_write: Fix user attributes are not sanitized under certains conditions ( #17890 )
...
* stages/user_write: Fix user attributes are not sanitized under certain conditions
* add test and forbid attributes replacement
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-12-01 15:12:13 +01:00
Jens L.
72f0f98706
providers/scim: compare users/groups before sending update request ( #18456 )
...
* implement user
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add compare for groups
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-01 13:50:41 +01:00
Jens L.
873a47f9a2
enterprise/endpoints/connectors/agent: fix Apple JWE encryption when FIPS is enabled ( #18464 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-01 13:31:03 +01:00
dependabot[bot]
382bd324c2
website: bump @types/react from 19.2.6 to 19.2.7 in /website ( #18357 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.6 to 19.2.7.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 13:30:23 +01:00
dependabot[bot]
71e57611d0
core: bump goauthentik/fips-debian from ac4c80b to de70579 ( #18419 )
...
Bumps goauthentik/fips-debian from `ac4c80b` to `de70579`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 13:30:02 +01:00
dependabot[bot]
04a8f02b2a
core: bump github.com/getsentry/sentry-go from 0.39.0 to 0.40.0 ( #18416 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.39.0 to 0.40.0.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.39.0...v0.40.0 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.40.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-12-01 13:29:28 +01:00
dependabot[bot]
2250cea934
website: bump prettier-plugin-packagejson from 2.5.19 to 2.5.20 in /website ( #18460 )
...
website: bump prettier-plugin-packagejson in /website
Bumps [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson ) from 2.5.19 to 2.5.20.
- [Release notes](https://github.com/matzkoh/prettier-plugin-packagejson/releases )
- [Commits](https://github.com/matzkoh/prettier-plugin-packagejson/compare/v2.5.19...v2.5.20 )
---
updated-dependencies:
- dependency-name: prettier-plugin-packagejson
dependency-version: 2.5.20
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 13:28:52 +01:00
dependabot[bot]
b6d21bad71
core: bump goauthentik.io/api/v3 from 3.2025120.7 to 3.2025120.11 ( #18461 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.7 to 3.2025120.11.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.7...v3.2025120.11 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 13:28:43 +01:00
lame
2bb86f6f12
website/integrations: add GLPI ( #17937 )
...
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-12-01 05:24:31 +00:00
Dewi Roberts
c75ff13770
website/integrations: small fixes ( #18423 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-30 23:59:21 -05:00
Jens L.
874a20b908
enterprise: Apple Platform SSO ( #15318 )
...
* init
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* snap
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* it works
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* give session
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix session
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better endpoint
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add api
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* attempt endpoint
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* refactor into endpoints system
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start reworking
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* make it work more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* re-add user data
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add jwks
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add rest of the endpoints
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix lookup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix device group selection
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix incorrect device id
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix register
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* implement the thing
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix a bunch of things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix issuer
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix fully
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add test for apple JWE
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add more tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add token tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* make auth session duration configurable, merge migrations
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update api & ui
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix enterprise
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include platform sso in generated mdm config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-12-01 00:28:09 +01:00
Jens L.
ea7cbafefb
crypto: only generate managed keypair if non-existent ( #18457 )
...
* crypto: only generate managed keypair if non-existent
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix translation
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-30 20:49:55 +01:00
Marc 'risson' Schmitt
46b889eab1
ci: remove translation-rename ( #18444 )
2025-11-28 20:38:01 +00:00
transifex-integration[bot]
c0744d6cf3
translate: Updates for project authentik and language tr ( #18438 )
...
translate: Translate django.po in tr
73% of minimum 60% translated source file: 'django.po'
on 'tr'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:20:25 +00:00
transifex-integration[bot]
9bae5caee4
translate: Updates for project authentik and language fr ( #18431 )
...
translate: Translate django.po in fr
98% of minimum 60% translated source file: 'django.po'
on 'fr'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:20:06 +00:00
transifex-integration[bot]
5756b189bb
translate: Updates for project authentik and language ru ( #18442 )
...
translate: Translate django.po in ru
72% of minimum 60% translated source file: 'django.po'
on 'ru'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:19:48 +00:00
transifex-integration[bot]
af2f86e030
translate: Updates for project authentik and language cs_CZ ( #18443 )
...
translate: Translate django.po in cs_CZ
88% of minimum 60% translated source file: 'django.po'
on 'cs_CZ'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:19:27 +00:00
transifex-integration[bot]
be90f63f43
translate: Updates for project authentik and language pt ( #18437 )
...
translate: Translate django.po in pt
91% of minimum 60% translated source file: 'django.po'
on 'pt'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:18:58 +00:00
transifex-integration[bot]
7357b9cc58
translate: Updates for project authentik and language zh-Hans ( #18439 )
...
translate: Translate django.po in zh-Hans
83% of minimum 60% translated source file: 'django.po'
on 'zh-Hans'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:18:32 +00:00
transifex-integration[bot]
ec467bc2d1
translate: Updates for project authentik and language zh_CN ( #18441 )
...
translate: Translate django.po in zh_CN
97% of minimum 60% translated source file: 'django.po'
on 'zh_CN'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:17:00 +00:00
Dewi Roberts
d140e4fdd3
website/integrations: add local browser setting to seafile ( #18428 )
2025-11-28 18:16:33 +00:00
transifex-integration[bot]
75ead31448
translate: Updates for project authentik and language pl ( #18430 )
...
translate: Translate django.po in pl
69% of minimum 60% translated source file: 'django.po'
on 'pl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:16:07 +00:00
transifex-integration[bot]
713bb04c21
translate: Updates for project authentik and language pt_BR ( #18436 )
...
translate: Translate django.po in pt_BR
98% of minimum 60% translated source file: 'django.po'
on 'pt_BR'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:15:47 +00:00
transifex-integration[bot]
c14a029b23
translate: Updates for project authentik and language nl ( #18434 )
...
translate: Translate django.po in nl
64% of minimum 60% translated source file: 'django.po'
on 'nl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:15:17 +00:00
transifex-integration[bot]
6092a26450
translate: Updates for project authentik and language es ( #18433 )
...
translate: Translate django.po in es
90% of minimum 60% translated source file: 'django.po'
on 'es'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:14:41 +00:00
transifex-integration[bot]
6fba028404
translate: Updates for project authentik and language de ( #18435 )
...
translate: Translate django.po in de
93% of minimum 60% translated source file: 'django.po'
on 'de'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:13:49 +00:00
transifex-integration[bot]
678e1d87ba
translate: Updates for project authentik and language fi ( #18429 )
...
translate: Translate django.po in fi
99% of minimum 60% translated source file: 'django.po'
on 'fi'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-28 18:13:15 +00:00
Jens L.
f1a1f327cd
endpoints: rework perms ( #18422 )
...
* fix api being incorrect
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more lenient facts
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix authz flow not returning slug
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* different auth header for multi-auth
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-28 17:26:11 +01:00
NiceDevil
d94117a8e3
website/integrations: Amazon Business ( #17894 )
...
* New Integration Guide Amazon Business
* WIP - Remove non metadata steps and standardize formatting
* Finished tidying up different sections, changed verification section, added resource.
* SSO Login Buttons not available
This Button isn't available, at least to me in germany.
I just open amazon and click on the normal login button where amazon is asking the user to enter the email address.
If you enter your businessemail here you get redirected to authentik. No separate button, I will post a screenshot :)
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* Spelling
* Update website/integrations/miscellaneous/amazon-business/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* as suggested
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestions from code review
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestions from code review
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
Signed-off-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: nicedevil007 <nicedevil007@users.noreply.github.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-28 07:44:52 -05:00
Timo Reusch
fa32567230
website/integrations: add Placetel ( #18399 )
...
* website/integrations: Add configuration guide for Placetel
* Small updates
* Suggestions
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Minor changes
* Improve clarity
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-27 20:33:56 +00:00
Jens L.
59da20e81c
endpoints: include device ID in agent config ( #18414 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-27 19:23:56 +01:00
Jens L.
1fb71371cb
endpoints: AuthN and AuthZ ( #18350 )
...
* start agent auth
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also check windows system disk (hardcode C: for now)
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add process table
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include jwks
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* nonce
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* snap
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* missing exp and username (temp values)
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix missing meta
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework auth and migrations
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* include system config in agent config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix a bunch of broken stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update ui
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add device to login event
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add ssh
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start adding tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* policies
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove domain name
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix leftover
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add device to flow context
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dont allow access without policies
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* some ui changes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* re-invent the wheel again
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start updating tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* t
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Revert "t"
This reverts commit b74db5f5d4 .
* Revert "start updating tests"
This reverts commit b2524c00b2 .
* Revert "re-invent the wheel again"
This reverts commit c7cdf4c018 .
* fixup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix ui
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* re-migrate
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix web build
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* f
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add device users and device groups
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* expand users
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-27 19:05:57 +01:00
Jens L.
a7b42499b5
api: add decorator to validate serializer in @action endpoints ( #17435 )
...
* api: add decorator to validate serializer in @action endpoints
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework to support query params
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* migrate more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* aaand some more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix again
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-27 18:02:07 +01:00
Simonyi Gergő
7e8d2ad591
ci: remove unused local env ( #18410 )
...
remove unused local env
this is overwritten by the Generate config step of actions/setup
2025-11-27 17:48:23 +01:00
NiceDevil
dfa00cd1f8
website/integrations: Microsoft365 Federation ( #17891 )
...
* New Integration Guide Microsoft365
* Move Microsoft integration documentation to platforms
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* wip
* Added headers, changed language, moved some information around
* Add AuthnContextClassRef and change headers
* Update website/integrations/platforms/microsoft/index.md
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* workflow
* typo
* added missing period
* omg moved period ughh
* sorry dewimake integrations
* I aggree
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* Minor changes
---------
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
Co-authored-by: nicedevil007 <nicedevil007@users.noreply.github.com >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Jens L. <jens@beryju.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-11-27 14:18:08 +00:00
Dewi Roberts
c93872cb93
website/docs: improve creds recovery docs ( #18385 )
...
* Updates doc
* Fix links
* Typo
* Email link update
* Update website/docs/users-sources/user/user_basic_operations.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-27 14:09:04 +00:00
NiceDevil
1137f945f4
website/integrations: ChatGPT ( #17893 )
...
* New Integration Guide ChatGPT
* wip
* Minor changes
---------
Co-authored-by: nicedevil007 <nicedevil007@users.noreply.github.com >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-11-27 14:08:21 +00:00
Marc 'risson' Schmitt
08ccd3c25c
providers/oauth2: optimize JWKS endpoint queries ( #18405 )
2025-11-27 14:29:48 +01:00
Marc 'risson' Schmitt
d6bf2131ee
packages/django-channels-postgres: fix notify size check ( #18347 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-27 13:28:55 +00:00
dependabot[bot]
997da339a0
web: bump node-forge from 1.3.1 to 1.3.2 in /packages/docusaurus-config ( #18398 )
...
Bumps [node-forge](https://github.com/digitalbazaar/forge ) from 1.3.1 to 1.3.2.
- [Changelog](https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md )
- [Commits](https://github.com/digitalbazaar/forge/compare/v1.3.1...v1.3.2 )
---
updated-dependencies:
- dependency-name: node-forge
dependency-version: 1.3.2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-27 14:15:09 +01:00
Jens L.
d5f730a0d0
stages/prompt: set allow_blank for _read_only fields ( #18297 )
...
* stages/prompt: set allow_blank for _read_only fields
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-27 14:06:08 +01:00
dependabot[bot]
ce0d60bc83
core: bump openapitools/openapi-diff from 2.1.5 to 2.1.6 in /scripts/api ( #18400 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-27 12:56:20 +00:00
Jens L.
3f53e41236
flows: remove SESSION_KEY_APPLICATION_PRE ( #18388 )
...
* flows: remove SESSION_KEY_APPLICATION_PRE
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-27 13:43:59 +01:00
dependabot[bot]
d7cf0179f5
core: bump axllent/mailpit from v1.27.11 to v1.28.0 in /tests/e2e ( #18401 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-27 13:42:14 +01:00
dependabot[bot]
3717df1a72
core: bump astral-sh/uv from 0.9.12 to 0.9.13 ( #18402 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-27 13:42:06 +01:00
Jens L.
0f972f2dc6
stages/captcha: allow dynamic public/private key ( #18346 )
...
* stages/captcha: allow dynamic public/private key
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove todo (oops)
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* t
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix version tag in docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-27 13:00:01 +01:00
NiceDevil
698c1ce817
website/integrations: KnowBe4 ( #17899 )
...
* New Integration Guide KnowBe4
* Update formatting and language
* removed values that are not present at this step
as @dominic-r already wrote.
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* Applied suggestions from review
* not different section on knowbe4 page
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* Change wording
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/security/knowbe4/index.md
perfect, thats how I did it prior to my guide :)
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* Update
---------
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: nicedevil007 <nicedevil007@users.noreply.github.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-27 11:23:51 +00:00
dependabot[bot]
04d7f6cec8
core: bump goauthentik/fips-debian from 8c4ec98 to ac4c80b ( #18403 )
...
Bumps goauthentik/fips-debian from `8c4ec98` to `ac4c80b`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-27 12:16:46 +01:00
Tana M Berry
1f3fdbb7e3
website/docs: add some more info and tweak the full dev Docs ( #18374 )
...
* tweaks to steps
* huh?
* tweak
* more tweaks
* ken's edits
* typo
* more tweaks
* remove option B
2025-11-26 14:30:07 -06:00
Marc 'risson' Schmitt
0490f53eaa
lib/sync/outgoing: check if there is a provider before creating tasks ( #18394 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-26 17:33:33 +00:00
Dewi Roberts
46ef933d33
web/admin: fix wording in password stage ( #18393 )
...
Remove word
2025-11-26 18:14:49 +01:00
dependabot[bot]
d211ea1560
core: bump goauthentik.io/api/v3 from 3.2025120.5 to 3.2025120.7 ( #18381 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 13:51:16 +00:00
Jens L.
88dd0e84c0
web/admin: add entitlement search ( #18291 )
...
* web/admin: add entitlement search
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Apply suggestion from @GirlBossRush
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-11-26 14:29:51 +01:00
dependabot[bot]
fa300d5d10
core: bump goauthentik/fips-debian from 8b7e8d0 to 8c4ec98 ( #18361 )
...
Bumps goauthentik/fips-debian from `8b7e8d0` to `8c4ec98`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 14:16:18 +01:00
dependabot[bot]
08039b8249
website: bump the build group in /website with 3 updates ( #18382 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.6.4 to 1.6.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.5/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.6.4 to 1.6.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.5/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.6.4 to 1.6.5
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.5/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.6.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.6.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.6.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 14:01:06 +01:00
dependabot[bot]
e786e8a17d
core: bump astral-sh/uv from 0.9.11 to 0.9.12 ( #18383 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.11 to 0.9.12.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.11...0.9.12 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.12
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 14:00:53 +01:00
Jens L.
02b8b52e09
root: improve testing helpers ( #18379 )
...
* *: improve test utils to generate request with session
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* the rest of the owl
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-26 13:39:24 +01:00
dependabot[bot]
2cae8160c3
website: bump the goauthentik group across 1 directory with 4 updates ( #18378 )
...
Bumps the goauthentik group with 4 updates in the /website directory: [@goauthentik/eslint-config](https://github.com/goauthentik/authentik/tree/HEAD/packages/eslint-config ), [@goauthentik/prettier-config](https://github.com/goauthentik/authentik/tree/HEAD/packages/prettier-config ), [@goauthentik/tsconfig](https://github.com/goauthentik/authentik/tree/HEAD/packages/tsconfig ) and [@goauthentik/docusaurus-config](https://github.com/goauthentik/authentik/tree/HEAD/packages/docusaurus-config ).
Updates `@goauthentik/eslint-config` from 1.0.5 to 1.1.0
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/eslint-config )
Updates `@goauthentik/prettier-config` from 3.1.0 to 3.2.1
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/prettier-config )
Updates `@goauthentik/tsconfig` from 1.0.4 to 1.0.5
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/tsconfig )
Updates `@goauthentik/docusaurus-config` from 2.1.2 to 2.2.1
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/packages/docusaurus-config )
---
updated-dependencies:
- dependency-name: "@goauthentik/eslint-config"
dependency-version: 1.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: goauthentik
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.2.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: goauthentik
- dependency-name: "@goauthentik/tsconfig"
dependency-version: 1.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
- dependency-name: "@goauthentik/docusaurus-config"
dependency-version: 2.2.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 01:58:32 +01:00
dependabot[bot]
f6dc7acfdb
website: bump the eslint group in /website with 3 updates ( #18356 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.47.0 to 8.48.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.47.0 to 8.48.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/parser )
Updates `typescript-eslint` from 8.47.0 to 8.48.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.48.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.48.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.48.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-26 00:39:35 +01:00
Jens L.
5739d26bbb
policies: use flow planner directly in PolicyAccessView to directly set flow context ( #18372 )
...
* policies: use flow planner directly in PolicyAccessView to directly set flow context
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix oauth tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix call to get default flow
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix more tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix handling of ?next
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* slightly more tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix issue in random test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-26 00:20:35 +01:00
Pavel Pavel
2145d9221a
providers/scim: fix PATCH for AWS ( #18230 )
...
* Fix SCIM for AWS
* Batch AWS PATCH requests
---------
Co-authored-by: Pavel Sinkevych <pavelsinkevych@gmail.com >
2025-11-26 00:12:34 +01:00
Connor Peshek
8bcdf162a1
enterprise/providers/scim: fix OAuth ( #18358 )
...
* fix logging error
* fix provider deletion on oauth to token change
---------
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-11-25 16:40:22 -06:00
Teffen Ellis
171305ca47
web: Fix stale table rows ( #17940 )
...
web: Fix issues surrounding stale table rows.
2025-11-25 21:38:56 +00:00
Teffen Ellis
928e5b1a90
web: Bump packages. ( #18371 )
2025-11-25 15:35:30 -05:00
Marc 'risson' Schmitt
9621082f06
*: convert slugfields to textfields ( #17411 )
...
* *: convert slugfields to textfields
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* update migrations
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-25 17:56:36 +00:00
Jens L.
40b6f4a115
outposts: set container healthcheck inline ( #18298 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-25 17:07:00 +00:00
Teffen Ellis
6f9db3fccf
web: ESLint Typing Fixes ( #18362 )
...
* Bump engine.
* Fix ESLint types.
2025-11-25 12:02:09 -05:00
dependabot[bot]
7e3c57a98c
core: bump golang.org/x/crypto from 0.43.0 to 0.45.0 ( #18275 )
...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto ) from 0.43.0 to 0.45.0.
- [Commits](https://github.com/golang/crypto/compare/v0.43.0...v0.45.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/crypto
dependency-version: 0.45.0
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-25 18:01:08 +01:00
dependabot[bot]
2b135805a1
lifecycle/aws: bump aws-cdk from 2.1032.0 to 2.1033.0 in /lifecycle/aws ( #18278 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1032.0 to 2.1033.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1033.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1033.0
dependency-type: direct:development
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-11-25 16:52:01 +00:00
dependabot[bot]
3dd0857a64
core: bump github.com/getsentry/sentry-go from 0.38.0 to 0.39.0 ( #18353 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.38.0 to 0.39.0.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.38.0...v0.39.0 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.39.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-11-25 16:51:21 +00:00
dependabot[bot]
cb6cbcc412
ci: bump actions/setup-python from 6.0.0 to 6.1.0 in /.github/actions/setup ( #18360 )
...
ci: bump actions/setup-python in /.github/actions/setup
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](e797f83bcb...83679a892e )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: 6.1.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-11-25 16:46:25 +00:00
Teffen Ellis
12c8bca8bf
website: Unlisted & Draft Release Notes ( #18210 )
...
* website: Unlisted Release Notes
* Swizzle unlisted component. Revise copy for pre-release.
2025-11-25 11:36:53 -05:00
dependabot[bot]
a37162aebd
core: bump goauthentik.io/api/v3 from 3.2025120.4 to 3.2025120.5 ( #18354 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.4 to 3.2025120.5.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.4...v3.2025120.5 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-25 17:29:24 +01:00
dependabot[bot]
a6e7d2c02f
ci: bump aws-actions/configure-aws-credentials from 5.1.0 to 5.1.1 ( #18359 )
...
Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials ) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases )
- [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md )
- [Commits](00943011d9...61815dcd50 )
---
updated-dependencies:
- dependency-name: aws-actions/configure-aws-credentials
dependency-version: 5.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-25 17:28:27 +01:00
Dominic R
b8dee0c0c3
web/sources: Add promoted source ( #18334 )
...
* web/sources: Add promoted source
* fix some css
* fix test
2025-11-25 10:54:07 -05:00
Dewi Roberts
5b9f97deb4
website/docs: update info about docker socket mount ( #18344 )
...
* Update info about docker socket mounting
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/install-config/install/docker-compose.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-11-25 12:10:27 +00:00
dependabot[bot]
1c1e9af22b
web: bump knip from 5.70.0 to 5.70.1 in /web ( #18310 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.70.0 to 5.70.1.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.70.1/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.70.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-25 02:45:52 +01:00
authentik-automation[bot]
3d5f975fbb
core, web: update translations ( #18304 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-25 00:39:11 +00:00
adns44
3dbecdbd30
website/integrations: harbor: fix slashes in URLs and group claim name ( #18332 )
...
Update index.md
Fixes:
- Authentik redirect URI fix
- Harbor OIDC URI fix
- Group Claim Name fix to fetch groups from Authentik
Signed-off-by: adns44 <52037190+adns44@users.noreply.github.com >
2025-11-24 20:39:30 +00:00
Teffen Ellis
a8e765257e
web: Update Deprecated NPM Packages ( #18335 )
...
* core: Bump packages.
* Bump Live Reload dependencies.
* Bump tsconfig.
* Bum ESLint config deps. Fix formatting.
* Bump Prettier deps. Fix ESlint config.
* Bump live reload deps. Fix linter.
* Bump website deps.
* web: Update dependencies. Fix Playwright issues.
* Fix deprecations.
* Fix linter warnings.
* Fix override, run audit.
* Fix import path.
* Tidy types.
* Format.
* Update ignore patterns.
* Fix import path.
* Update deps. Clean up workspace linting.
* Update deps, options.
* Hide icons in navbar.
* Format.
* Remove deprecated option.
* Use relative packages.
* Add scripts. Tidy.
* Bump engines.
* Clarify order.
* Clarify order. Install base deps.
* Format.
* Fix stale user during tests.
* Fix runtime errors.
* Fix redirect during tests, UI change.
* web: Fix danger button hover background color.
* web: Adjust colors, padding.
* web: Fix sidebar colors, padding.
* Fix alignment.
* Fix background contrast.
2025-11-24 13:31:42 -05:00
Dominic R
e002243a8a
web: Improve user display in modals by falling back to username ( #18243 )
...
* web: Improve user display in modals by falling back to username
Fixes UX issues in user-related modals where users without a display name would show empty text.
Previously:
* "Are you sure you want to update User ""?" (empty display name)
* "Successfully updated User undefined"
Now:
* "Are you sure you want to update User john_doe?" (falls back to username)
* "Successfully updated User john_doe"
Topics of discussion:
* Wether the object label should be lowercased to keep the sentence flowing (In this case, lowercasing User)
* oops it did have quotes actually
* pls
2025-11-24 08:36:35 -05:00
Dominic R
c18f6d2f21
root: regen schema ( #18327 )
2025-11-24 14:31:41 +01:00
dependabot[bot]
7d41e4c797
core: bump goauthentik.io/api/v3 from 3.2025120.3 to 3.2025120.4 ( #18307 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 13:27:34 +00:00
dependabot[bot]
0b0a030e35
web: bump the rollup group across 1 directory with 4 updates ( #18277 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.53.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.53.2...v4.53.3 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.53.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.53.2...v4.53.3 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.53.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.53.2...v4.53.3 )
Updates `rollup` from 4.53.2 to 4.53.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.53.2...v4.53.3 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.53.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.53.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.53.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.53.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 14:01:15 +01:00
dependabot[bot]
18891b72e1
ci: bump actions/checkout from 5.0.1 to 6.0.0 ( #18313 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 5.0.1 to 6.0.0.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](93cb6efe18...1af3b93b68 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 13:44:24 +01:00
dependabot[bot]
9a25fd4a3f
ci: bump actions/setup-go from 6.0.0 to 6.1.0 ( #18282 )
...
Bumps [actions/setup-go](https://github.com/actions/setup-go ) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/actions/setup-go/releases )
- [Commits](4469467582...4dc6199c7b )
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: 6.1.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-11-24 12:46:56 +01:00
dependabot[bot]
d666019cd6
website: bump the build group in /website with 6 updates ( #18308 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.15.2` | `1.15.3` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.15.2` | `1.15.3` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.15.2` | `1.15.3` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.15.2` | `1.15.3` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.15.2` | `1.15.3` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.15.2` | `1.15.3` |
Updates `@swc/core-darwin-arm64` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-arm64-gnu` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-x64-gnu` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/html-darwin-arm64` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/html-linux-arm64-gnu` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/html-linux-x64-gnu` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 12:18:26 +01:00
dependabot[bot]
06ed7a428c
web: bump the swc group across 1 directory with 11 updates ( #18309 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-darwin-arm64` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-darwin-x64` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-arm64-gnu` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-arm64-musl` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-x64-gnu` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-linux-x64-musl` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-win32-arm64-msvc` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-win32-ia32-msvc` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
Updates `@swc/core-win32-x64-msvc` from 1.15.2 to 1.15.3
- [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.15.2...v1.15.3 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.15.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 12:11:51 +01:00
dependabot[bot]
d7beceb2c0
core: bump github.com/coreos/go-oidc/v3 from 3.16.0 to 3.17.0 ( #18306 )
...
Bumps [github.com/coreos/go-oidc/v3](https://github.com/coreos/go-oidc ) from 3.16.0 to 3.17.0.
- [Release notes](https://github.com/coreos/go-oidc/releases )
- [Commits](https://github.com/coreos/go-oidc/compare/v3.16.0...v3.17.0 )
---
updated-dependencies:
- dependency-name: github.com/coreos/go-oidc/v3
dependency-version: 3.17.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-11-24 11:50:33 +01:00
dependabot[bot]
a804f7013b
ci: bump svenstaro/upload-release-action from 2.11.2 to 2.11.3 ( #18311 )
...
Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action ) from 2.11.2 to 2.11.3.
- [Release notes](https://github.com/svenstaro/upload-release-action/releases )
- [Changelog](https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md )
- [Commits](81c65b7cd4...6b7fa9f267 )
---
updated-dependencies:
- dependency-name: svenstaro/upload-release-action
dependency-version: 2.11.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 11:49:55 +01:00
dependabot[bot]
1939ed8610
core: bump astral-sh/uv from 0.9.10 to 0.9.11 ( #18312 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.10 to 0.9.11.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.10...0.9.11 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 11:49:18 +01:00
dependabot[bot]
70e275d24b
ci: bump golangci/golangci-lint-action from 9.0.0 to 9.1.0 ( #18336 )
...
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action ) from 9.0.0 to 9.1.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases )
- [Commits](0a35821d5c...e7fa5ac41e )
---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
dependency-version: 9.1.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-11-24 11:47:19 +01:00
dependabot[bot]
6a671ac5b0
ci: bump astral-sh/setup-uv from 7.1.3 to 7.1.4 in /.github/actions/setup ( #18339 )
...
ci: bump astral-sh/setup-uv in /.github/actions/setup
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv ) from 7.1.3 to 7.1.4.
- [Release notes](https://github.com/astral-sh/setup-uv/releases )
- [Commits](5a7eac68fb...1e862dfacb )
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: 7.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 11:45:26 +01:00
dependabot[bot]
9e1ca6def5
ci: bump actions/create-github-app-token from 2.1.4 to 2.2.0 ( #18338 )
...
Bumps [actions/create-github-app-token](https://github.com/actions/create-github-app-token ) from 2.1.4 to 2.2.0.
- [Release notes](https://github.com/actions/create-github-app-token/releases )
- [Commits](6701853927...7e473efe3c )
---
updated-dependencies:
- dependency-name: actions/create-github-app-token
dependency-version: 2.2.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-11-24 11:45:13 +01:00
dependabot[bot]
91b75a2c47
ci: bump peter-evans/create-pull-request from 7.0.8 to 7.0.9 ( #18337 )
...
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request ) from 7.0.8 to 7.0.9.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases )
- [Commits](271a8d0340...84ae59a2cd )
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-version: 7.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 11:44:56 +01:00
dependabot[bot]
f61445a342
core: bump goauthentik/fips-debian from 55c1514 to 8b7e8d0 ( #18283 )
...
Bumps goauthentik/fips-debian from `55c1514` to `8b7e8d0`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 11:44:38 +01:00
dependabot[bot]
eccc786eb2
ci: bump actions/setup-go from 6.0.0 to 6.1.0 in /.github/actions/setup ( #18284 )
...
Bumps [actions/setup-go](https://github.com/actions/setup-go ) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/actions/setup-go/releases )
- [Commits](4469467582...4dc6199c7b )
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: 6.1.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-11-24 11:43:21 +01:00
dependabot[bot]
dbf90c49a7
core: bump library/golang from 728cbef to a02d35e ( #18340 )
...
Bumps library/golang from `728cbef` to `a02d35e`.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.4-trixie
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-24 11:39:03 +01:00
Dewi Roberts
e9469faf89
website/docs: update certificate doc ( #18295 )
...
* Update line
* Add expiry information
* Apply suggestion from @dominic-r
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Improve language
* Apply suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-21 19:15:19 +00:00
Dewi Roberts
2a6592737b
website/docs: add high availability doc ( #18182 )
...
* Create document and intro
* Add high availability document and update sidebar
* Spelling and header
* Add mermaid diagram
* Applied suggestions
* More suggestions
* Fix links
* Update website/docs/install-config/high-availability.mdx
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/install-config/high-availability.mdx
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Add monitoring link
* Apply Ken's suggestion
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestions
* Few wording changes
* Wording improvements
* Apply suggestions from code review
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestion
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-11-21 19:14:33 +00:00
Tana M Berry
3cf18020bc
website/docs: added missed edits on Blueprints docs ( #18321 )
...
added missed edits
2025-11-21 11:28:50 -06:00
Teffen Ellis
90d4555935
web: Prettier Config 3.2 ( #18305 )
...
* Update deps.
* Add types to sub-exports.
* Add keep unused check.
2025-11-21 17:04:25 +01:00
Dewi Roberts
a0278a6818
website/docs: further improvments to source switch doc ( #18320 )
...
Moves section and improves language
2025-11-21 14:25:35 +00:00
Dewi Roberts
ee9d12052e
website/docs: fix broken link in source switching doc ( #18317 )
...
Fix link and policy example
2025-11-21 13:21:46 +00:00
dependabot[bot]
28ac595716
web: bump country-flag-icons from 1.5.21 to 1.6.1 in /web ( #18280 )
...
Bumps [country-flag-icons](https://gitlab.com/catamphetamine/country-flag-icons ) from 1.5.21 to 1.6.1.
- [Changelog](https://gitlab.com/catamphetamine/country-flag-icons/blob/master/CHANGELOG.md )
- [Commits](https://gitlab.com/catamphetamine/country-flag-icons/compare/v1.5.21...v1.6.1 )
---
updated-dependencies:
- dependency-name: country-flag-icons
dependency-version: 1.6.1
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-11-20 19:53:48 -05:00
Simonyi Gergő
fc9d534cc5
ci: fix checkout stable ( #18303 )
...
If you don't happen to read the logs of this step, everything seems
fine and `git checkout $(prev_stable)` is just interpreted as the
no-op `git checkout`. That's because `$()` spawns a subshell and
subshell errors don't stop execution on `set -eo pipefail`. In fact, a
quick search didn't reveal any way to catch this typo with `set`.
I wonder how long this could have stayed hidden if I wasn't specifically
looking at this workflow for a completely different reason.
2025-11-21 00:45:45 +01:00
dependabot[bot]
74bb0904b4
web: bump js-yaml from 4.1.0 to 4.1.1 in /packages/eslint-config ( #18301 )
...
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 4.1.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-21 00:25:28 +01:00
Jens L.
e9c2e10828
endpoints: initial data structure + agent ( #11499 )
...
* endpoints: initial data structure
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* some moving
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework models a bit
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* small QOL
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix API
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more structure, early UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start agent connector
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix IDs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix schema
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* init fleet
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* t
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add more pages
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* stage
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start challenge
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* t
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* I had an idea
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more stuf
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more frontend plumbing
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* keep original gdtc for now
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* move agent to non enterprise
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* small stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add last_update
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework common facts
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add processes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add last_update
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* very basic UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add path
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* capacity in int64
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add support for multiple versions of data
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* expiring snapshots
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update API
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better structure and query and fleet
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add more metrics
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more device data
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* correct task schedule
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* ignore device snapshot
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix more things, agent connector form
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* connector edit
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix some api stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix build
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add preview banner
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add percentage
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start agent view page
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add enrollment token api
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start agent connector view page
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* small fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* ephemeral devices
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* less hardcoded
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add refresh interval
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix fleet os family, os family label
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix some things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start writing tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rework auth to be more rest-framework like
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* move enterprise parts to enterprise
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove chrome from this PR
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove fleet from this PR
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* optimise API to use cached facts on list
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rename some things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* use hostname
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* re-migrate
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* cleanup unused things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove stage for now
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* save connector related to user binding of device
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* device attributes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add device group selector
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix expandable
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix missing device group obj
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* purge through cache if we get a snapshot from a new connection
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dont log devicetoken
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* make device deletable
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* handle no facts
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add device form
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix device group not assigned
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add tests for facts merging
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix lint
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start setup, generate mdm config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* connector -> controller to avoid duplicate names
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add full how to
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* enable search
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add support on type create page for above form text
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix enrollment token expiry (list and form)
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add token copy
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* annotate mdm config correctly
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix config download
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* decent design
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove placeholders
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* pre-add fields for apple platform sso
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-20 22:31:30 +01:00
Tana M Berry
d4d6c466a9
website/docs: enhance blueprint docs ( #15984 )
...
* draft of note about bp behviour when modified
* Update website/docs/customize/blueprints/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* clarify title
* more tweaks
* tweaks
* more content, rearranged headings
* tweak
* more content about creating a bp instance
* create new page for procedures
* tweaks
* add to sidebar, tweaks
* fixed conflict
* add link to procedurals
* typo
* more content
* more links, more tips
* wip
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* final tweaks
* jens and dewi edits
* tweaks
* more Dewi and Jens edits yay
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-20 13:00:57 -06:00
Connor Peshek
64965e3750
Makefile: Fix kerberos tests for brew users ( #17223 )
...
Makefile: Fix kerberos tests for brew users
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-11-19 09:52:26 -08:00
Jens L.
cd1693be28
website/docs: add 2025.8.5 and 2025.10.2 release notes ( #18268 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-19 15:24:06 +01:00
authentik-automation[bot]
4d0abe30f1
internal: Automated internal backport: 5000-sidebar.sec.patch to authentik-main ( #18266 )
...
Automated internal backport of patch 5000-sidebar.sec.patch to authentik-main
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-19 15:21:16 +01:00
authentik-automation[bot]
9dbdfc3f1b
internal: Automated internal backport: 1498-oauth2-cc-user-active.sec.patch to authentik-main ( #18265 )
...
Automated internal backport of patch 1498-oauth2-cc-user-active.sec.patch to authentik-main
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-19 15:01:06 +01:00
authentik-automation[bot]
6672e6aaa4
internal: Automated internal backport: 1487-invitation-expiry.sec.patch to authentik-main ( #18264 )
...
Automated internal backport of patch 1487-invitation-expiry.sec.patch to authentik-main
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-19 14:54:24 +01:00
authentik-automation[bot]
545d42572f
core, web: update translations ( #18241 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-19 12:33:22 +00:00
dependabot[bot]
29b010b86b
web: bump ts-pattern from 5.8.0 to 5.9.0 in /web ( #18247 )
...
Bumps [ts-pattern](https://github.com/gvergnaud/ts-pattern ) from 5.8.0 to 5.9.0.
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases )
- [Commits](https://github.com/gvergnaud/ts-pattern/compare/v5.8.0...v5.9.0 )
---
updated-dependencies:
- dependency-name: ts-pattern
dependency-version: 5.9.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-11-19 11:26:52 +01:00
dependabot[bot]
cf692d635a
web: bump the react group across 2 directories with 1 update ( #18244 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Bumps the react group with 1 update in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Updates `@types/react` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react` from 19.2.4 to 19.2.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.6
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 11:26:04 +01:00
dependabot[bot]
eebc92552f
web: bump knip from 5.66.2 to 5.70.0 in /web ( #18245 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.66.2 to 5.70.0.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.70.0/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.70.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-11-19 11:25:39 +01:00
dependabot[bot]
31b7bada88
core: bump library/nginx from b5b9e01 to 553f64a in /website ( #18253 )
...
Bumps library/nginx from `b5b9e01` to `553f64a`.
---
updated-dependencies:
- dependency-name: library/nginx
dependency-version: 1.29-trixie
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 11:25:31 +01:00
dependabot[bot]
2f1bf7824c
core: bump library/golang from 27e1c92 to 728cbef ( #18252 )
...
Bumps library/golang from `27e1c92` to `728cbef`.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.4-trixie
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 11:25:22 +01:00
dependabot[bot]
0c1ec687c5
core: bump goauthentik/fips-debian from 65a9f1f to 55c1514 ( #18251 )
...
Bumps goauthentik/fips-debian from `65a9f1f` to `55c1514`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-19 11:25:12 +01:00
Teffen Ellis
e8f8785e2f
web: Bump Vitest, TypeScript config ( #18238 )
...
Upgrade deps. Fix imports.
2025-11-19 00:11:21 +01:00
dependabot[bot]
f4bad6a564
web: bump js-yaml from 4.1.0 to 4.1.1 in /packages/esbuild-plugin-live-reload ( #18237 )
...
web: bump js-yaml in /packages/esbuild-plugin-live-reload
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 4.1.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 23:45:06 +01:00
Teffen Ellis
b4b0142421
web/i18n: Remove English Locale ( #18164 )
2025-11-18 22:19:22 +01:00
dependabot[bot]
78b91fed5d
web: bump js-yaml from 3.14.1 to 3.14.2 in /packages/docusaurus-config ( #18239 )
...
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 3.14.1 to 3.14.2.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 3.14.2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 19:26:12 +01:00
Teffen Ellis
de1b7d7d81
web/i18n: Clean up locale scripts ( #18163 )
...
* web/i81n: Clean up locale scripts.
* Fix logs, clean up caching.
* Use previous script name.
* Fix path.
2025-11-18 12:25:00 -05:00
Jens L.
0913b1050d
stages/prompt: fix choices with labels causing error on submit ( #18183 )
...
* stages/prompt: fix choices with labels causing error on submit
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-18 18:04:45 +01:00
Teffen Ellis
5451e047c1
web: Patternfly 5 Prep: Part 2 ( #18085 )
...
* web: Fix missing block modifier. Remove redundant.
* Fix spacing.
* Fix status colors on dark themes.
* Add missing dark theme styles. Fix order of style rules.
* Only show ungrouped label when in high contrast.
* Consistent delete disable color.
* Split Patternfly variables into separate files. Prep for PF5.
* Fix contrast on light mode.
* Fix background base color.
* Fix issues surrounding color layering, overlay states, contrast, etc.
* Flesh out placeholder.
* Flesh out loading state, inspector toggle.
* Build static CSS for proxy. Remove loading entry.
* Fix types.
* some very small style adjustments
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-11-18 17:12:27 +01:00
dependabot[bot]
6f52899440
lifecycle/aws: bump aws-cdk from 2.1031.2 to 2.1032.0 in /lifecycle/aws ( #18218 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1031.2 to 2.1032.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1032.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1032.0
dependency-type: direct:development
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-11-18 15:30:55 +01:00
Marcelo Elizeche Landó
0ed903599a
core: bump click from 8.3.0 to v8.3.1 ( #18198 )
2025-11-18 15:30:35 +01:00
dependabot[bot]
c0b5c4be22
website: bump the build group across 1 directory with 9 updates ( #18231 )
...
Bumps the build group with 9 updates in the /website directory:
| Package | From | To |
| --- | --- | --- |
| [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.6.3` | `1.6.4` |
| [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.6.3` | `1.6.4` |
| [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.6.3` | `1.6.4` |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.15.1` | `1.15.2` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.15.1` | `1.15.2` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.15.1` | `1.15.2` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.15.1` | `1.15.2` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.15.1` | `1.15.2` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.15.1` | `1.15.2` |
Updates `@rspack/binding-darwin-arm64` from 1.6.3 to 1.6.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.4/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.6.3 to 1.6.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.4/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.6.3 to 1.6.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.4/packages/rspack )
Updates `@swc/core-darwin-arm64` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-arm64-gnu` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-x64-gnu` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/html-darwin-arm64` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/html-linux-arm64-gnu` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/html-linux-x64-gnu` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.6.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.6.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.6.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 15:22:06 +01:00
authentik-automation[bot]
12a85ee59f
core, web: update translations ( #18046 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-18 13:24:47 +00:00
dependabot[bot]
013b06b0b6
website: bump the eslint group in /website with 3 updates ( #18214 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/parser )
Updates `typescript-eslint` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:23:31 +01:00
dependabot[bot]
0e6eae2e90
web: bump the eslint group across 2 directories with 3 updates ( #18216 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-eslint )
Updates `typescript-eslint` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.4 to 8.47.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.47.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.47.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:23:20 +01:00
Marcelo Elizeche Landó
c280558489
core: bump google-auth from 2.42.1 to v2.43.0 ( #18199 )
2025-11-18 14:22:59 +01:00
dependabot[bot]
d55c83a32f
core: bump github.com/getsentry/sentry-go from 0.37.0 to 0.38.0 ( #18212 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.37.0 to 0.38.0.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.37.0...v0.38.0 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.38.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-11-18 14:22:42 +01:00
dependabot[bot]
9dc167572b
website: bump @types/react from 19.2.4 to 19.2.6 in /website ( #18215 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.4 to 19.2.6.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:22:25 +01:00
dependabot[bot]
b7ba388b57
web: bump the storybook group across 1 directory with 5 updates ( #18217 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 10.0.7 to 10.0.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/addons/docs )
Updates `@storybook/addon-links` from 10.0.7 to 10.0.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/addons/links )
Updates `@storybook/web-components` from 10.0.7 to 10.0.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 10.0.7 to 10.0.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/frameworks/web-components-vite )
Updates `storybook` from 10.0.7 to 10.0.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.8/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 10.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 10.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 10.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 10.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 10.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:22:13 +01:00
dependabot[bot]
c3f1f68adc
web: bump the swc group across 1 directory with 11 updates ( #18219 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-darwin-arm64` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-darwin-x64` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-arm64-gnu` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-arm64-musl` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-x64-gnu` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-linux-x64-musl` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-win32-arm64-msvc` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-win32-ia32-msvc` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
Updates `@swc/core-win32-x64-msvc` from 1.15.1 to 1.15.2
- [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.15.1...v1.15.2 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.15.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:22:04 +01:00
dependabot[bot]
328c2fbca3
core: bump astral-sh/uv from 0.9.9 to 0.9.10 ( #18224 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.9 to 0.9.10.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.9...0.9.10 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:20:12 +01:00
Marcelo Elizeche Landó
f01241421f
core: bump jsii from 1.118.0 to v1.119.0 ( #18201 )
2025-11-18 14:07:50 +01:00
Marcelo Elizeche Landó
3a8b04ca60
core: bump pynacl from 1.6.0 to v1.6.1 ( #18203 )
2025-11-18 14:07:40 +01:00
Marcelo Elizeche Landó
70a65f79be
core: bump boto3 from 1.40.66 to v1.40.75 ( #18194 )
2025-11-18 14:07:33 +01:00
Marcelo Elizeche Landó
02c8941b26
core: bump googleapis-common-protos from 1.71.0 to v1.72.0 ( #18200 )
2025-11-18 14:06:25 +01:00
Marcelo Elizeche Landó
4f0626a033
core: bump certifi from 2025.10.5 to v2025.11.12 ( #18197 )
2025-11-18 14:05:54 +01:00
Marcelo Elizeche Landó
ac5f22abe7
core: bump zope-interface from 8.0.1 to v8.1.1 ( #18206 )
2025-11-18 14:05:33 +01:00
Marcelo Elizeche Landó
1e552b3cbe
core: bump zope-event from 6.0 to v6.1 ( #18205 )
2025-11-18 14:05:18 +01:00
Marcelo Elizeche Landó
db8600955f
core: bump cachetools from 6.2.1 to v6.2.2 ( #18195 )
2025-11-18 14:05:09 +01:00
Marcelo Elizeche Landó
07fa0d90f2
core: bump rpds-py from 0.28.0 to v0.29.0 ( #18204 )
2025-11-18 14:05:02 +01:00
Marcelo Elizeche Landó
9d1571fd0e
core: bump protobuf from 6.33.0 to v6.33.1 ( #18202 )
2025-11-18 14:04:41 +01:00
Marcelo Elizeche Landó
86ca79ce30
core: bump cattrs from 25.2.0 to v25.3.0 ( #18196 )
2025-11-18 14:04:34 +01:00
dependabot[bot]
61695adaa4
core: bump goauthentik/fips-debian from 40a1f32 to 65a9f1f ( #18223 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:01:18 +01:00
dependabot[bot]
1999d60465
ci: bump actions/checkout from 5.0.0 to 5.0.1 ( #18222 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:00:36 +01:00
dependabot[bot]
62f10273b5
core: bump library/nginx from 1beed3c to b5b9e01 in /website ( #18225 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-18 14:00:10 +01:00
Connor Peshek
35329991ef
providers/saml: fix front-end saml binding defaults ( #18189 )
...
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-11-17 15:55:48 -08:00
Teffen Ellis
0b2cc6370c
web: Hide avatars when set to "none" ( #17911 )
2025-11-17 23:48:14 +00:00
Marcelo Elizeche Landó
166913c6c3
website/docs: Add instructions for installing RC versions ( #18099 )
...
* Add instructions for installing RC versions
* Moves the imports to the start and changed the docker wording
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-17 20:17:51 -03:00
Teffen Ellis
5c0ddf368f
web/a11y: Update wizard form labels, placeholders. ( #17811 )
...
web: Update wizard form labels, placeholders.
2025-11-17 18:17:16 -05:00
Jens L.
f269c24b94
web: fix outpost build ( #18190 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-17 21:43:27 +01:00
authentik-automation[bot]
b8dfe1aae0
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #18166 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-17 21:26:55 +01:00
dependabot[bot]
09f4020770
build(deps): bump js-yaml from 4.1.0 to 4.1.1 ( #18169 )
...
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 4.1.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 21:26:42 +01:00
dependabot[bot]
f6346a2823
web: bump js-yaml from 4.1.0 to 4.1.1 in /web ( #18170 )
...
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 4.1.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 21:25:38 +01:00
dependabot[bot]
1333fff711
web: bump js-yaml from 4.1.0 to 4.1.1 in /packages/prettier-config ( #18185 )
...
Bumps [js-yaml](https://github.com/nodeca/js-yaml ) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nodeca/js-yaml/compare/4.1.0...4.1.1 )
---
updated-dependencies:
- dependency-name: js-yaml
dependency-version: 4.1.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-17 21:25:23 +01:00
Jake Nabasny, PhD
226b19d83c
website/integrations: ubuntu landscape: remove appendix ( #18188 )
...
Remove appendix on OpenID-Connect User admin setup
Removed the appendix section detailing how to make an OpenID-Connect User an admin. Roles are now managed in the UI when you invite a user or afterwards in the Roles tab. There is no need for database edits.
Signed-off-by: Jake Nabasny, PhD <jake.nabasny@canonical.com >
2025-11-17 19:28:21 +00:00
NiceDevil
3296489790
website/integrations: FortiMail ( #17900 )
...
* New Integration Guide FortiMail
* WIP
* Fix formatting
* small typo ;)
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
* rearranged section above tabs
---------
Signed-off-by: NiceDevil <17103076+nicedevil007@users.noreply.github.com >
Co-authored-by: nicedevil007 <nicedevil007@users.noreply.github.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-11-17 08:24:35 -06:00
Jens L.
4caece7fef
web/sfe: downgrade bootstrap that was accidentally upgraded ( #18157 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-15 12:09:52 +01:00
Teffen Ellis
90d9b2daf9
web: Fix ESBuild hanging process ( #18162 )
2025-11-15 02:13:28 +01:00
NiceDevil
4c92eff521
website/integrations: macmon NAC ( #17898 )
...
* New Integration Guide macmon NAC
* Bring doc in-line with current style guide, clarifies language and changes verification section
---------
Co-authored-by: nicedevil007 <nicedevil007@users.noreply.github.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-11-14 13:39:01 -06:00
Marc 'risson' Schmitt
779d98a808
packages/django-channels-postgres/layer: fix query when subscribed to multiple channels ( #18152 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-14 15:30:19 +01:00
Dominic R
5389709ab7
core: deduplicate user attribute constant definitions ( #18138 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-14 13:59:55 +00:00
dependabot[bot]
650c1f93f2
web: bump @trivago/prettier-plugin-sort-imports from 5.2.2 to 6.0.0 in /web ( #18146 )
...
web: bump @trivago/prettier-plugin-sort-imports in /web
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports ) from 5.2.2 to 6.0.0.
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases )
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md )
- [Commits](https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0 )
---
updated-dependencies:
- dependency-name: "@trivago/prettier-plugin-sort-imports"
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-14 14:59:34 +01:00
Connor Peshek
2b794e616d
crypto: update certificates on fs event ( #18129 )
...
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-11-14 14:37:00 +01:00
Dewi Roberts
fd7cea1344
github: converts issue templates to forms ( #18133 )
2025-11-14 14:30:05 +01:00
dependabot[bot]
8fdc6e44eb
core: bump github.com/getsentry/sentry-go from 0.36.2 to 0.37.0 ( #18140 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.36.2 to 0.37.0.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.36.2...v0.37.0 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.37.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-11-14 13:56:16 +01:00
dependabot[bot]
fb76f3e1ac
web: bump type-fest from 5.1.0 to 5.2.0 in /web ( #18144 )
...
Bumps [type-fest](https://github.com/sindresorhus/type-fest ) from 5.1.0 to 5.2.0.
- [Release notes](https://github.com/sindresorhus/type-fest/releases )
- [Commits](https://github.com/sindresorhus/type-fest/compare/v5.1.0...v5.2.0 )
---
updated-dependencies:
- dependency-name: type-fest
dependency-version: 5.2.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-11-14 13:56:02 +01:00
dependabot[bot]
f7e04b8bcf
web: bump vite from 7.1.12 to 7.2.2 in /web ( #18143 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.12 to 7.2.2.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.2.2/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.2.2
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-11-14 13:55:52 +01:00
dependabot[bot]
1026601085
website: bump the build group in /website with 3 updates ( #18141 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.6.2 to 1.6.3
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.3/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.6.2 to 1.6.3
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.3/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.6.2 to 1.6.3
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.3/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.6.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.6.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.6.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-14 13:50:50 +01:00
dependabot[bot]
8b7cceadec
web: bump globals from 16.4.0 to 16.5.0 in /web ( #18145 )
...
Bumps [globals](https://github.com/sindresorhus/globals ) from 16.4.0 to 16.5.0.
- [Release notes](https://github.com/sindresorhus/globals/releases )
- [Commits](https://github.com/sindresorhus/globals/compare/v16.4.0...v16.5.0 )
---
updated-dependencies:
- dependency-name: globals
dependency-version: 16.5.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-11-14 13:50:39 +01:00
dependabot[bot]
232bc52960
core: bump astral-sh/uv from 0.9.8 to 0.9.9 ( #18148 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.8 to 0.9.9.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.8...0.9.9 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-14 13:49:54 +01:00
dependabot[bot]
1c282c339b
core: bump goauthentik/fips-debian from 5017d65 to 40a1f32 ( #18149 )
...
Bumps goauthentik/fips-debian from `5017d65` to `40a1f32`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-14 13:43:30 +01:00
mayswind
e99e5b7355
website/integrations: Add ezBookkeeping integration ( #18040 )
...
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-14 04:26:41 +00:00
Daniel Tihanyi
9e1244f764
website/integrations: Add Joplin ( #18042 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-14 04:05:15 +00:00
Teffen Ellis
1115e6f82f
web: Disable library <datalist> on Firefox. ( #18103 )
...
web: Disable library autocomplete on Firefox.
2025-11-13 22:09:25 +01:00
Jens L.
3d66864735
web/admin: link to user on invitation list page ( #18132 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-13 22:09:17 +01:00
Dewi Roberts
1cc5fa1412
web/admin: update stage descriptions ( #18118 )
...
* Updates the description for stages to standardize lanauge and clarify.
* Add "based"
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Remove "currently"
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Fix user_write stage
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
2025-11-13 20:40:13 +00:00
Christoph Dyllick-Brenzinger
60adbd9245
website/integrations: add SeaTable ( #18115 )
...
* website/integrations: add description for SeaTable
* fix wrong display of links in the section additional resources
* fix typo
* Change wording, update formatting, change curl command, add section headers, and bring in-line with style guide
* Spelling
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestion from @dominic-r
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Fix missing backticks
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Remove indentation
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Remove "the"
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Add intro to certs section
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-13 20:38:31 +00:00
Dominic R
d4e0694cbe
website/integrations: stripe: fix markdown ( #18126 )
...
* website/integrations: stripe: fix markdown
Signed-off-by: Dominic R <dominic@sdko.org >
* Linting
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-11-13 19:57:37 +00:00
Tealk
4821198f92
web/flows: improvements for hCaptcha ( #16882 )
...
* improvements for hCaptcha
Issue #16755
* web: Format.
---------
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-11-13 20:23:53 +01:00
Dewi Roberts
b791737c47
website/docs: update application description ( #18125 )
...
Update due to 2025.10 changes
2025-11-13 19:09:20 +00:00
Dewi Roberts
f419173029
revert: github: convert issue templates to forms ( #18121 )
...
Revert "github: convert issue templates to forms (#18117 )"
This reverts commit 75d4c2d2ee .
2025-11-13 16:57:27 +00:00
Dewi Roberts
75d4c2d2ee
github: convert issue templates to forms ( #18117 )
...
* Updates templates to forms, changes project and label handling, mentions discussions and discord for questions rather than issues.
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-13 15:53:35 +00:00
Dewi Roberts
deb7765dee
website/docs: fix wording in stages overview ( #18061 )
...
Change flow to stage
2025-11-13 15:43:03 +00:00
Marc 'risson' Schmitt
acf5b5f2ff
packages/django-dramatiq-postgres: broker: ensure locking happens with the same connection ( #18095 )
2025-11-13 16:37:29 +01:00
Daniel Lo Nigro
9295d876a7
website/integrations: Frappe: update instructions ( #18029 )
...
* Update Frappe integration page
- Make it clearer that `provider` has to be replaced with the actual provider name.
- Add `ERPNext` into the title for SEO and clarity.
Signed-off-by: Daniel Lo Nigro <d@d.sb >
* Changed formatting of the note and added it to the authentik section
---------
Signed-off-by: Daniel Lo Nigro <d@d.sb >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-11-13 14:52:30 +00:00
dependabot[bot]
acbecff09c
website: bump @types/react from 19.2.3 to 19.2.4 in /website ( #18108 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.3 to 19.2.4.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 13:58:41 +01:00
dependabot[bot]
d7514c022a
web: bump @types/node from 24.10.0 to 24.10.1 in /packages/esbuild-plugin-live-reload ( #18111 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.10.0 to 24.10.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 13:05:01 +01:00
dependabot[bot]
d53f6e1035
website: bump the build group in /website with 3 updates ( #18106 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.6.1 to 1.6.2
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.2/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.6.1 to 1.6.2
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.2/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.6.1 to 1.6.2
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.2/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 12:47:58 +01:00
dependabot[bot]
e4e9062096
web: bump the react group across 2 directories with 2 updates ( #18110 )
...
Bumps the react group with 2 updates in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Bumps the react group with 2 updates in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Updates `@types/react` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react-dom` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react` from 19.2.3 to 19.2.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react-dom` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.4
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.3
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 12:47:07 +01:00
transifex-integration[bot]
d5bdea68c6
translate: Updates for file locale/en/LC_MESSAGES/django.po in fi ( #18105 )
...
Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-13 12:46:31 +01:00
dependabot[bot]
5415c7660f
website: bump @types/react-dom from 19.2.2 to 19.2.3 in /website ( #18107 )
...
Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ) from 19.2.2 to 19.2.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.2.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 12:46:17 +01:00
dependabot[bot]
769e22c7ed
web: bump @types/node from 24.10.0 to 24.10.1 in /packages/prettier-config ( #18112 )
...
web: bump @types/node in /packages/prettier-config
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.10.0 to 24.10.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 12:43:58 +01:00
dependabot[bot]
21b085b586
web: bump @types/node from 22.15.19 to 24.10.1 in /web ( #18113 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.10.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-13 12:43:41 +01:00
transifex-integration[bot]
44ac0d0bda
translate: Updates for file locale/en/LC_MESSAGES/django.po in fi ( #18060 )
...
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate web/xliff/en.xlf in ja
100% translated source file: 'web/xliff/en.xlf'
on 'ja'.
* Translate locale/en/LC_MESSAGES/django.po in ja
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'ja'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
* Update translation units. Prep Japanese.
---------
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-11-13 03:48:07 +00:00
Teffen Ellis
c37ef6d728
web/i18n: Japanese Locale(日本語ロケール) ( #17938 )
...
web: Activate Japanese locale.
2025-11-13 03:06:31 +00:00
Teffen Ellis
7743774905
web/i18n: Locale message fixes ( #17913 )
...
* web: Fix issue where messages defined outside elements are not translated.
* web: Apply locale to Captchas.
2025-11-12 22:04:48 -05:00
Teffen Ellis
7bb593da22
web: Lit Session Context ( #17903 )
...
web: Flesh out client-side session context.
2025-11-13 02:15:32 +00:00
Teffen Ellis
bbacea5b9a
web: Fix tab activation, blank provider URLs ( #18031 )
...
web: Fix tab activation.
2025-11-13 01:51:19 +00:00
Teffen Ellis
02072bda93
web: Fix RAC modal visibility. ( #17941 )
...
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-11-12 18:49:50 +01:00
Marc 'risson' Schmitt
a8327101c6
cmd/server/healthcheck: remove worker HTTP healthcheck ( #18090 )
...
* cmd/server/healthcheck: remove worker HTTP healthcheck
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* lint
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-12 14:42:30 +00:00
dependabot[bot]
1905fbb58f
web: bump @sentry/browser from 10.24.0 to 10.25.0 in /web in the sentry group across 1 directory ( #18079 )
...
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 10.24.0 to 10.25.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/10.24.0...10.25.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.25.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-11-12 13:26:55 +01:00
dependabot[bot]
5c05050de7
website: bump @types/react from 19.2.2 to 19.2.3 in /website ( #18077 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.2 to 19.2.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-12 12:15:30 +01:00
dependabot[bot]
5bdd6815bf
website: bump @types/node from 24.10.0 to 24.10.1 in /website ( #18078 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.10.0 to 24.10.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-12 12:14:45 +01:00
dependabot[bot]
40645b8abe
web: bump the storybook group across 1 directory with 5 updates ( #18080 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 10.0.6 to 10.0.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.7/code/addons/docs )
Updates `@storybook/addon-links` from 10.0.6 to 10.0.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.7/code/addons/links )
Updates `@storybook/web-components` from 10.0.6 to 10.0.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.7/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 10.0.6 to 10.0.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.7/code/frameworks/web-components-vite )
Updates `storybook` from 10.0.6 to 10.0.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.7/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 10.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 10.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 10.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 10.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 10.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-12 12:14:35 +01:00
dependabot[bot]
74742ff288
web: bump the rollup group across 1 directory with 4 updates ( #18082 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.52.5 to 4.53.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.5...v4.53.2 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.52.5 to 4.53.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.5...v4.53.2 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.52.5 to 4.53.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.5...v4.53.2 )
Updates `rollup` from 4.52.5 to 4.53.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.5...v4.53.2 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.53.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.53.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.53.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.53.2
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-12 12:14:16 +01:00
dependabot[bot]
d2dfcf5883
web: bump the react group across 2 directories with 1 update ( #18083 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Bumps the react group with 1 update in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Updates `@types/react` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react` from 19.2.2 to 19.2.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.3
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-12 12:13:45 +01:00
dependabot[bot]
ac5097dd14
core: bump goauthentik/fips-debian from f3228f8 to 5017d65 ( #18084 )
...
Bumps goauthentik/fips-debian from `f3228f8` to `5017d65`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-12 12:13:35 +01:00
Jens L.
b682299edd
core: improve app launch URL formatting ( #18076 )
...
* core: improve app launch URL formatting
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-12 12:06:16 +01:00
Jens L.
53426293aa
providers/scim: allow custom schema data ( #18073 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-12 00:20:46 +01:00
Teffen Ellis
e426f88401
web: Fix application of global styles in style roots. ( #17444 )
...
* web: Separate global styles from element roots.
* web: Flesh out style strategy plugin, fixes for imported styles.
* web: Clean up applying of dark theme.
web: unminify.
* web: Fix alignment, rendering on high contrast.
web: Apply footer resize.
web: Fix application of global styles in style roots.
web: Fix missing layout attribute.
web: Normalize background alignment.
web: Fix layout issues, color overrides.
web: Fix alignment, colors, jank.
web: Separate method into function.
web: Clean up alignment, reflow.
web: Fix colors, compatibility mode.
web: Add content left/right support.
web: Fix colors, compatibility mode overrides.
* Fix issue where missing config throws runtime error.
* web: Refactor.
* Update tests.
* web: Fix Storybook imports.
* Fix order of theme application.
* web: Fix storybook asset paths.
* web: Flesh out tests surrounding source buttons, fix alignment,
contrast.
* Update tests, clarify errors.
* Update test selectors, assertions.
* Clarify redirect handling.
* Adjust user check.
* Update logs.
* web: Fix selector timing.
* Fix alignment.
* Fix selectors, timing.
* Log current URL content.
* Refine shadow selector, add delay.
* Replace IDs with named elements.
* Fix overlay color.
* Fix footer padding.
* Fix contrast.
* Add selectable name to button.
* Fix alignment, mobile layout.
* web: Spread exported parts to stages.
* Fix z-index order.
* Tidy colors, behaviors, layout.
* Fix overflow scroll.
* Clean up duplicate color styles.
* Clarify selector order. Fix overrides, color contrast.
* Attempt to read JSON multiple times.
* Clarify error.
* web: Fix timeouts, URL changes.
* web: Fix disabled styles.
* Fix color flip.
* Fix selector.
* Fix issue where hidden tables will alter test URLs.
* Use DOM to look for connection, rather than API. Update selectors.
* Immediately navigate to tab.
* Upgrade Dex.
* Ensure Dex redirects.
* Use same host during tests.
* web: Update package-lock.json
* Add delay.
2025-11-11 15:49:00 -05:00
Jens L.
8ff1fc10ca
events: fix timezone not set for log events ( #18067 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-11 18:49:22 +01:00
Jens L.
c11f3d9f72
ci: attempt to fix integration tests using dind ( #18066 )
...
* ci: attempt to fix integration tests using dind
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* bump dind version
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-11 17:31:07 +01:00
Jens L.
364ca70724
ci: revert to upstream GHA for release ( #18058 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-11 13:17:42 +01:00
dependabot[bot]
89bcfef363
web: bump the swc group across 1 directory with 12 updates ( #17998 )
...
Bumps the swc group with 2 updates in the /web directory: [@swc/cli](https://github.com/swc-project/pkgs ) and [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/cli` from 0.7.8 to 0.7.9
- [Commits](https://github.com/swc-project/pkgs/commits )
Updates `@swc/core` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-darwin-arm64` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-darwin-x64` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-linux-arm64-musl` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-linux-x64-gnu` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-linux-x64-musl` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
Updates `@swc/core-win32-x64-msvc` from 1.13.19 to 1.15.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.13.19...v1.15.0 )
---
updated-dependencies:
- dependency-name: "@swc/cli"
dependency-version: 0.7.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 13:02:19 +01:00
TMUniversal
80b79ab901
website/docs: update discord social login script example ( #18026 )
...
update the guild membership example to no longer cause an exception from a missing import.
Closes #18025
Signed-off-by: TMUniversal <10200399+TMUniversal@users.noreply.github.com >
2025-11-11 12:55:01 +01:00
dependabot[bot]
17f229e575
core: bump goauthentik/fips-debian from 9b4cedf to f3228f8 ( #17819 )
...
Bumps goauthentik/fips-debian from `9b4cedf` to `f3228f8`.
---
updated-dependencies:
- dependency-name: goauthentik/fips-debian
dependency-version: trixie-slim-fips
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 12:52:35 +01:00
Teffen Ellis
efc8822469
web: Make Spotlight optional. ( #17904 )
...
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-11-11 12:37:50 +01:00
dependabot[bot]
c04b491125
website: bump @types/node from 24.9.2 to 24.10.0 in /website ( #17909 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.2 to 24.10.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.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-11-11 12:22:10 +01:00
dependabot[bot]
0809927def
web: bump @types/node from 24.9.1 to 24.10.0 in /packages/esbuild-plugin-live-reload ( #17948 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.1 to 24.10.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.0
dependency-type: direct:development
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-11-11 12:21:03 +01:00
dependabot[bot]
ec80106ee5
ci: bump calibreapp/image-actions from 05b1cf44e88c3b041b841452482df9497f046ef7 to 420075c115b26f8785e293c5bd5bef0911c506e5 ( #17953 )
...
ci: bump calibreapp/image-actions
Bumps [calibreapp/image-actions](https://github.com/calibreapp/image-actions ) from 05b1cf44e88c3b041b841452482df9497f046ef7 to 420075c115b26f8785e293c5bd5bef0911c506e5.
- [Release notes](https://github.com/calibreapp/image-actions/releases )
- [Commits](05b1cf44e8...420075c115 )
---
updated-dependencies:
- dependency-name: calibreapp/image-actions
dependency-version: 420075c115b26f8785e293c5bd5bef0911c506e5
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 12:20:54 +01:00
Marcelo Elizeche Landó
57ea7a3454
core: bump googleapis-common-protos from 1.70.0 to v1.71.0 ( #17979 )
2025-11-11 12:20:32 +01:00
dependabot[bot]
39c83c5048
web: bump the sentry group across 1 directory with 2 updates ( #17997 )
...
Bumps the sentry group with 2 updates in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and @spotlightjs/spotlight.
Updates `@sentry/browser` from 10.22.0 to 10.23.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/10.22.0...10.23.0 )
Updates `@spotlightjs/spotlight` from 4.3.0 to 4.5.0
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.23.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.5.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-11-11 12:20:13 +01:00
dependabot[bot]
413ee2dbb8
website: bump the build group across 1 directory with 9 updates ( #17995 )
...
Bumps the build group with 9 updates in the /website directory:
| Package | From | To |
| --- | --- | --- |
| [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.6.0` | `1.6.1` |
| [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.6.0` | `1.6.1` |
| [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.6.0` | `1.6.1` |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.14.0` | `1.15.0` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.14.0` | `1.15.0` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.14.0` | `1.15.0` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.14.0` | `1.15.0` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.14.0` | `1.15.0` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.14.0` | `1.15.0` |
Updates `@rspack/binding-darwin-arm64` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.1/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.1/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.1/packages/rspack )
Updates `@swc/core-darwin-arm64` from 1.14.0 to 1.15.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.14.0...v1.15.0 )
Updates `@swc/core-linux-arm64-gnu` from 1.14.0 to 1.15.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.14.0...v1.15.0 )
Updates `@swc/core-linux-x64-gnu` from 1.14.0 to 1.15.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.14.0...v1.15.0 )
Updates `@swc/html-darwin-arm64` from 1.14.0 to 1.15.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.14.0...v1.15.0 )
Updates `@swc/html-linux-arm64-gnu` from 1.14.0 to 1.15.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.14.0...v1.15.0 )
Updates `@swc/html-linux-x64-gnu` from 1.14.0 to 1.15.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.14.0...v1.15.0 )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.6.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.6.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.6.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.15.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.15.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-11-11 12:19:33 +01:00
transifex-integration[bot]
566969c7bf
translate: Updates for file locale/en/LC_MESSAGES/django.po in fi ( #18056 )
...
Translate locale/en/LC_MESSAGES/django.po in fi
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fi'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-11-11 12:02:40 +01:00
dependabot[bot]
91650ea180
core: bump selenium/standalone-chromium from 141.0 to 142.0 in /tests/e2e ( #17910 )
...
core: bump selenium/standalone-chromium in /tests/e2e
Bumps selenium/standalone-chromium from 141.0 to 142.0.
---
updated-dependencies:
- dependency-name: selenium/standalone-chromium
dependency-version: '142.0'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 12:00:09 +01:00
dependabot[bot]
70e70c9203
website: bump the eslint group across 1 directory with 5 updates ( #17928 )
...
Bumps the eslint group with 5 updates in the /website directory:
| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) | `9.38.0` | `9.39.1` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) | `8.46.2` | `8.46.3` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) | `8.46.2` | `8.46.3` |
| [eslint](https://github.com/eslint/eslint ) | `9.38.0` | `9.39.1` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ) | `8.46.2` | `8.46.3` |
Updates `@eslint/js` from 9.38.0 to 9.39.1
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.39.1/packages/js )
Updates `@typescript-eslint/eslint-plugin` from 8.46.2 to 8.46.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.3/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.2 to 8.46.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.3/packages/parser )
Updates `eslint` from 9.38.0 to 9.39.1
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.38.0...v9.39.1 )
Updates `typescript-eslint` from 8.46.2 to 8.46.3
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.3/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.39.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.39.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:59:50 +01:00
dependabot[bot]
e3a374f9c0
core: bump github.com/go-openapi/runtime from 0.29.0 to 0.29.2 ( #18048 )
...
Bumps [github.com/go-openapi/runtime](https://github.com/go-openapi/runtime ) from 0.29.0 to 0.29.2.
- [Release notes](https://github.com/go-openapi/runtime/releases )
- [Commits](https://github.com/go-openapi/runtime/compare/v0.29.0...v0.29.2 )
---
updated-dependencies:
- dependency-name: github.com/go-openapi/runtime
dependency-version: 0.29.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:59:28 +01:00
dependabot[bot]
090f73b1f9
core: bump gorm.io/gorm from 1.31.0 to 1.31.1 ( #17907 )
...
Bumps [gorm.io/gorm](https://github.com/go-gorm/gorm ) from 1.31.0 to 1.31.1.
- [Release notes](https://github.com/go-gorm/gorm/releases )
- [Commits](https://github.com/go-gorm/gorm/compare/v1.31.0...v1.31.1 )
---
updated-dependencies:
- dependency-name: gorm.io/gorm
dependency-version: 1.31.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:58:34 +01:00
dependabot[bot]
6538e94961
core: bump github.com/getsentry/sentry-go from 0.36.1 to 0.36.2 ( #17785 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.36.1 to 0.36.2.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.36.1...v0.36.2 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.36.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:58:20 +01:00
dependabot[bot]
0c9de742fc
web: bump the eslint group across 2 directories with 5 updates ( #18049 )
...
Bumps the eslint group with 2 updates in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 2 updates in the /web directory: [eslint](https://github.com/eslint/eslint ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `eslint` from 9.38.0 to 9.39.1
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.38.0...v9.39.1 )
Updates `typescript-eslint` from 8.46.2 to 8.46.4
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.4/packages/typescript-eslint )
Updates `eslint` from 9.38.0 to 9.39.1
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.38.0...v9.39.1 )
Updates `typescript-eslint` from 8.46.2 to 8.46.4
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.4/packages/typescript-eslint )
Updates `@eslint/js` from 9.38.0 to 9.39.1
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.39.1/packages/js )
Updates `@typescript-eslint/eslint-plugin` from 8.46.2 to 8.46.4
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.4/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.2 to 8.46.4
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.4/packages/parser )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.39.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.4
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.39.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.39.1
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:58:02 +01:00
dependabot[bot]
5b450d07f6
web: bump the storybook group across 1 directory with 5 updates ( #18050 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 10.0.3 to 10.0.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.6/code/addons/docs )
Updates `@storybook/addon-links` from 10.0.3 to 10.0.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.6/code/addons/links )
Updates `@storybook/web-components` from 10.0.3 to 10.0.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.6/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 10.0.3 to 10.0.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.6/code/frameworks/web-components-vite )
Updates `storybook` from 10.0.3 to 10.0.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.6/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 10.0.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 10.0.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 10.0.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 10.0.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 10.0.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:57:16 +01:00
dependabot[bot]
2ce0db0515
ci: bump astral-sh/setup-uv from 7.1.2 to 7.1.3 in /.github/actions/setup ( #18053 )
...
ci: bump astral-sh/setup-uv in /.github/actions/setup
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv ) from 7.1.2 to 7.1.3.
- [Release notes](https://github.com/astral-sh/setup-uv/releases )
- [Commits](85856786d1...5a7eac68fb )
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: 7.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-11 11:54:03 +01:00
Ken Sternberg
cbc1351ef2
website/release notes: fix broken urls ( #18041 )
...
* website: fix bad escaping of URLs in release notes
## What
Fixes bad escaping of URLs in the release notes that resulted in mangled output.
v2024.6.4 had entries that looked like this:
```
##### `GET` /providers/google_workspace/{#123;id}#125;/
```
v2025.4.md had entries that looked like this:
```
##### `GET` /policies/unique_password/{#125;#123;policy_uuid}/
```
A couple of straightforward search-and-replaces has fixed the issue.
## Notes
Two of the release notes had bad escaping of URLs. I'm not sure how the error was made or got past,
but it was obvious when visiting the page.
@Beryju suggested that the bug is due to our using `{...}` to symbolize parameters in a URL while
Docusaurus wants to interpret `{...}` as an internal template instruction, resulting in odd
behavior. In either case, docusarus interpreted the hashtagged entries as links to unrelated issues
in Github (the same two issues, which were "bump version of pylint" and "bump version of sentry"),
which could be very confusing.
The inconsistencies between the two releases, and the working releases, suggests that the error was
introduced manually.
2025-11-10 09:55:30 -08:00
authentik-automation[bot]
69000ea849
core, web: update translations ( #17943 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-10 16:10:04 +01:00
dependabot[bot]
2aeb1b2448
web: bump @types/node from 24.9.1 to 24.10.0 in /packages/prettier-config ( #17949 )
...
web: bump @types/node in /packages/prettier-config
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.1 to 24.10.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.0
dependency-type: direct:development
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-11-10 16:09:46 +01:00
dependabot[bot]
b513baf980
core: bump library/nginx from f547e3d to 1beed3c in /website ( #17955 )
...
Bumps library/nginx from `f547e3d` to `1beed3c`.
---
updated-dependencies:
- dependency-name: library/nginx
dependency-version: 1.29-trixie
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 16:09:31 +01:00
dependabot[bot]
4506b9703d
core: bump goauthentik.io/api/v3 from 3.2025120.2 to 3.2025120.3 ( #17945 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.2 to 3.2025120.3.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.2...v3.2025120.3 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 16:09:11 +01:00
dependabot[bot]
daf3cf9ce3
web: bump @types/node from 22.15.19 to 24.10.0 in /web ( #17950 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.10.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.10.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 16:08:58 +01:00
dependabot[bot]
abf5575001
ci: bump docker/setup-qemu-action from 3.6.0 to 3.7.0 ( #17999 )
...
Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action ) from 3.6.0 to 3.7.0.
- [Release notes](https://github.com/docker/setup-qemu-action/releases )
- [Commits](29109295f8...c7c5346462 )
---
updated-dependencies:
- dependency-name: docker/setup-qemu-action
dependency-version: 3.7.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-11-10 15:57:48 +01:00
dependabot[bot]
dded84769f
lifecycle/aws: bump aws-cdk from 2.1031.1 to 2.1031.2 in /lifecycle/aws ( #18014 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1031.1 to 2.1031.2.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1031.2/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1031.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 15:56:59 +01:00
dependabot[bot]
fd44a206d9
core: bump golang.org/x/sync from 0.17.0 to 0.18.0 ( #18033 )
...
Bumps [golang.org/x/sync](https://github.com/golang/sync ) from 0.17.0 to 0.18.0.
- [Commits](https://github.com/golang/sync/compare/v0.17.0...v0.18.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/sync
dependency-version: 0.18.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-11-10 15:56:00 +01:00
dependabot[bot]
9625270aed
core: bump astral-sh/uv from 0.9.7 to 0.9.8 ( #18037 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.7 to 0.9.8.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.7...0.9.8 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 14:41:35 +01:00
dependabot[bot]
2888f35e54
core: bump golang.org/x/oauth2 from 0.32.0 to 0.33.0 ( #18034 )
...
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2 ) from 0.32.0 to 0.33.0.
- [Commits](https://github.com/golang/oauth2/compare/v0.32.0...v0.33.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/oauth2
dependency-version: 0.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-11-10 14:40:57 +01:00
dependabot[bot]
8ed53627ff
core: bump axllent/mailpit from v1.27.10 to v1.27.11 in /tests/e2e ( #18035 )
...
Bumps axllent/mailpit from v1.27.10 to v1.27.11.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.27.11
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 14:40:42 +01:00
dependabot[bot]
7ce46ac301
ci: bump golangci/golangci-lint-action from 8.0.0 to 9.0.0 ( #18036 )
...
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action ) from 8.0.0 to 9.0.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases )
- [Commits](4afd733a84...0a35821d5c )
---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
dependency-version: 9.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-10 14:40:28 +01:00
dependabot[bot]
60dbaf1fa1
core: bump library/golang from a13297b to 27e1c92 ( #18038 )
...
* core: bump library/golang from `a13297b` to `27e1c92`
Bumps library/golang from `a13297b` to `27e1c92`.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.4-trixie
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dont require python
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix error code
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-11-10 14:40:11 +01:00
Jens L.
7068d4d978
ci: fix migrate-from-stable for old versions ( #18019 )
...
ci: better logic for picking previous stable version
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-08 13:22:10 +01:00
dependabot[bot]
ba331a093e
core: bump library/golang from 1.25.3-trixie to 1.25.4-trixie ( #18000 )
...
Bumps library/golang from 1.25.3-trixie to 1.25.4-trixie.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.4-trixie
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-07 16:15:53 +01:00
Dewi Roberts
230b1b5850
website/docs: updates img-src csp ( #18010 )
2025-11-06 15:53:53 -05:00
Connor Peshek
fb868a6224
providers/saml: move sp binding location and default value ( #17609 )
...
* providers/saml: move sp binding location and default value in UI
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-11-06 13:39:46 -06:00
Marcelo Elizeche Landó
9802d4bcdd
core: Add example invitation blueprint ( #17661 )
...
* Add flows-invitation-enrollment.yaml blueprint example, make serializer add default anonymous user in blueprint context
* Add tests
* fix linting
* Update invitations docs
* Use custom attributes instead of fixed_data
* remove clutter
* Reworks the invitations doc to new styling standards
* Apply suggestions
* fix field
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Add manual steps for invitation creation
* add both options at the beginning
* use serializer.context in InvitationViewSet.perform_create
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* add description to bluprint
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* tweaks to structure and formatting
* Optimised images with calibre/image-actions
* Update website/docs/users-sources/user/invitations.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* fix linting
* imports
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* less branch
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* gen
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-06 20:29:04 +01:00
Dominic R
221b8431ef
root: settings.py: fix comment ( #18006 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-11-06 17:47:21 +01:00
Marcelo Elizeche Landó
367100dde6
core: bump google-auth-httplib2 from 0.2.0 to v0.2.1 ( #17978 )
2025-11-06 14:58:02 +00:00
Marcelo Elizeche Landó
2f50903021
core: bump protobuf from 6.32.1 to v6.33.0 ( #17984 )
2025-11-06 14:55:28 +00:00
Marcelo Elizeche Landó
6a13b38740
core: bump django from 5.2.7 to 5.2.8 ( #17967 )
...
* bump django from 5.2.7 to 5.2.8
* longer urls
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add debug statements
* Remove debug statements
* import MAX_URL_LENGTH constant from django.http.response
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-11-06 15:10:46 +01:00
Jesse Johnson
34279ba8a5
website/docs: Update Homarr instructions to v1.43.1. ( #17992 )
2025-11-06 00:46:36 +00:00
Marcelo Elizeche Landó
94886dd33d
core: bump python-dotenv from 1.1.1 to v1.2.1 ( #17986 )
2025-11-05 18:02:43 +00:00
Marcelo Elizeche Landó
e6ef5fd663
core: bump trio from 0.31.0 to v0.32.0 ( #17989 )
2025-11-05 18:01:14 +00:00
Marcelo Elizeche Landó
bc9bcc44f4
core: bump autobahn from 24.4.2 to v25.10.2 ( #17970 )
2025-11-05 17:59:53 +00:00
Marcelo Elizeche Landó
fa6ca4ced6
core: bump cwcwidth from 0.1.10 to v0.1.12 ( #17975 )
2025-11-05 18:42:28 +01:00
Marcelo Elizeche Landó
4cabc3975c
core: bump jsii from 1.116.0 to v1.118.0 ( #17981 )
2025-11-05 18:42:20 +01:00
Marcelo Elizeche Landó
9a4c3dc9c7
core: bump blessed from 1.22.0 to v1.23.0 ( #17972 )
2025-11-05 18:41:50 +01:00
Marcelo Elizeche Landó
7ca0a667ba
core: bump azure-core from 1.35.1 to v1.36.0 ( #17971 )
2025-11-05 18:41:41 +01:00
Marcelo Elizeche Landó
1c8f209274
core: bump boto3 from 1.40.51 to v1.40.66 ( #17973 )
2025-11-05 18:41:28 +01:00
Marcelo Elizeche Landó
69a9dadc43
core: bump cbor2 from 5.7.0 to v5.7.1 ( #17974 )
2025-11-05 18:40:55 +01:00
Marcelo Elizeche Landó
30e1cde6a2
core: bump google-api-core from 2.26.0 to v2.28.1 ( #17976 )
2025-11-05 18:40:46 +01:00
Marcelo Elizeche Landó
6e957977aa
core: bump google-auth from 2.41.1 to v2.42.1 ( #17977 )
2025-11-05 18:40:35 +01:00
Marcelo Elizeche Landó
bccaf97cb9
core: bump opentelemetry-api from 1.37.0 to v1.38.0 ( #17982 )
2025-11-05 18:40:27 +01:00
Marcelo Elizeche Landó
78c9936bb7
core: bump orjson from 3.11.3 to v3.11.4 ( #17983 )
2025-11-05 18:40:13 +01:00
Marcelo Elizeche Landó
accb41959b
core: bump psycopg-pool from 3.2.6 to v3.2.7 ( #17985 )
2025-11-05 18:40:07 +01:00
Marcelo Elizeche Landó
fd7851bfb4
core: bump rpds-py from 0.27.1 to v0.28.0 ( #17987 )
2025-11-05 18:39:57 +01:00
Marcelo Elizeche Landó
8f2f680668
core: bump std-uritemplate from 2.0.6 to v2.0.8 ( #17988 )
2025-11-05 18:39:49 +01:00
Marcelo Elizeche Landó
335805e2ba
core: bump iniconfig from 2.1.0 to v2.3.0 ( #17980 )
2025-11-05 18:35:28 +01:00
Marcelo Elizeche Landó
6ccdbff511
core: bump aiohttp from 3.13.0 to v3.13.2 ( #17969 )
2025-11-05 18:34:23 +01:00
Marcelo Elizeche Landó
f9ed24362a
core: bump uvloop from 0.21.0 to v0.22.1 ( #17990 )
2025-11-05 18:34:08 +01:00
Dewi Roberts
8a9291a9b5
webiste/docs: remove broken info box and fix sentence ( #17963 )
...
Remove broken info box and fix sentence.
2025-11-05 14:06:12 +00:00
Dewi Roberts
547d35e992
web/admin: fixes capitalization in application wizard title ( #17959 )
...
Changes 'The' to 'the'
2025-11-05 12:45:34 +00:00
Tana M Berry
8acd670fff
website/docs: added Note about email_verified scope mapping is set to false by default ( #17942 )
...
* added Note about email_verified set to false
* Update website/docs/add-secure-apps/providers/property-mappings/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* edits
* more edits
* Update website/docs/add-secure-apps/providers/property-mappings/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-11-04 19:17:23 -06:00
Connor Peshek
0b01f45b07
crypto: update certificate api and component ( #17921 )
...
* Update crypto api and front-end component
---------
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-11-04 14:44:57 -06:00
dependabot[bot]
c45c76302d
core: bump openapitools/openapi-diff from 2.1.4 to 2.1.5 in /scripts/api ( #17929 )
...
Bumps openapitools/openapi-diff from 2.1.4 to 2.1.5.
---
updated-dependencies:
- dependency-name: openapitools/openapi-diff
dependency-version: 2.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-04 19:24:18 +01:00
dependabot[bot]
0fdfd88c23
ci: bump getsentry/action-release from 3.3.0 to 3.4.0 ( #17931 )
...
Bumps [getsentry/action-release](https://github.com/getsentry/action-release ) from 3.3.0 to 3.4.0.
- [Release notes](https://github.com/getsentry/action-release/releases )
- [Changelog](https://github.com/getsentry/action-release/blob/master/CHANGELOG.md )
- [Commits](4f502acc1d...128c5058bb )
---
updated-dependencies:
- dependency-name: getsentry/action-release
dependency-version: 3.4.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-11-04 19:12:00 +01:00
dependabot[bot]
08a380a875
ci: bump helm/kind-action from 1.12.0 to 1.13.0 ( #17930 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-04 15:45:40 +01:00
Marc 'risson' Schmitt
52e613b368
tasks/schedules: fix rel obj not being associated or updated ( #17934 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-11-04 15:04:49 +01:00
authentik-automation[bot]
c1338b0164
core, web: update translations ( #17807 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-04 13:44:22 +00:00
Marc 'risson' Schmitt
945c2d8032
brands: sort matched brand by match length ( #17920 )
2025-11-04 14:22:10 +01:00
dependabot[bot]
e2e7021b62
web: bump the storybook group across 1 directory with 5 updates ( #17787 )
...
Bumps the storybook group with 5 updates in the /web directory:
| Package | From | To |
| --- | --- | --- |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ) | `9.1.15` | `10.0.0` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ) | `9.1.15` | `10.0.0` |
| [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) | `9.1.15` | `10.0.0` |
| [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ) | `9.1.15` | `10.0.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core ) | `9.1.15` | `10.0.0` |
Updates `@storybook/addon-docs` from 9.1.15 to 10.0.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.0/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.15 to 10.0.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.0/code/addons/links )
Updates `@storybook/web-components` from 9.1.15 to 10.0.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.0/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.15 to 10.0.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.0/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.15 to 10.0.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.0/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: storybook
- dependency-name: storybook
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-04 04:37:46 +00:00
Marc 'risson' Schmitt
b02a0a79b8
brands: add more matching tests ( #16185 )
...
* brands: reproduce matching error
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* try some things
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix tests
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix tests
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* Update authentik/brands/tests.py
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix tests again?
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* wip
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-11-03 20:31:56 +01:00
Jens L.
30f9d19f87
website/docs: 2025.10.1 release notes ( #17918 )
...
* website/docs: 2025.10.1 release notes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Jens L. <jens@beryju.org >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-11-03 16:53:58 +01:00
Jens L.
ddf463b2cd
providers/oauth2: fix kid always required for federation ( #17914 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-03 16:13:02 +01:00
Jens L.
1aff2c2b3a
providers/radius: revert fix inverted message authenticator validation ( #17855 ) ( #17915 )
...
Revert "providers/radius: fix inverted message authenticator validation (#17855 )"
This reverts commit 09e3301c8f .
2025-11-03 16:10:41 +01:00
dependabot[bot]
6b08a932d1
website: bump @types/node from 24.9.1 to 24.9.2 in /website ( #17786 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.1 to 24.9.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-02 16:11:35 -05:00
dependabot[bot]
a89e7e37d5
web: bump @rollup/plugin-commonjs from 28.0.8 to 28.0.9 in /web in the rollup group across 1 directory ( #17788 )
...
web: bump @rollup/plugin-commonjs
Bumps the rollup group with 1 update in the /web directory: [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs ).
Updates `@rollup/plugin-commonjs` from 28.0.8 to 28.0.9
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md )
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.9/packages/commonjs )
---
updated-dependencies:
- dependency-name: "@rollup/plugin-commonjs"
dependency-version: 28.0.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-02 15:49:39 -05:00
dependabot[bot]
754425aebe
web: bump validator from 13.15.15 to 13.15.20 in /packages/docusaurus-config ( #17866 )
...
web: bump validator in /packages/docusaurus-config
Bumps [validator](https://github.com/validatorjs/validator.js ) from 13.15.15 to 13.15.20.
- [Release notes](https://github.com/validatorjs/validator.js/releases )
- [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/validatorjs/validator.js/compare/13.15.15...13.15.20 )
---
updated-dependencies:
- dependency-name: validator
dependency-version: 13.15.20
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-01 20:08:37 +01:00
Jens L.
894db1237a
internal: add default go http server timeouts ( #17858 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-01 19:04:13 +01:00
Jens L.
09e3301c8f
providers/radius: fix inverted message authenticator validation ( #17855 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-11-01 17:58:48 +01:00
authentik-automation[bot]
3ae838293e
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #17871 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-11-01 16:40:10 +01:00
Dominic R
9763cf323b
web: fix package-lock.json ( #17809 )
2025-10-31 18:18:31 +00:00
Dominic R
000f89e0bf
website/integrations: oracle cloud: cleanup ( #17808 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-10-31 18:17:04 +00:00
Connor Peshek
9f92d6b334
website/integrations: Add Keycloak integration ( #17813 )
...
* web/integrations: Add Keycloak integration
* Update website/integrations/infrastructure/keycloak/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/integrations/infrastructure/keycloak/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/integrations/infrastructure/keycloak/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* update feedback
* Update realm name placeholder
* add feedback
* Update website/integrations/infrastructure/keycloak/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/integrations/infrastructure/keycloak/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* fix build
* Fix build
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-31 12:26:14 -05:00
dependabot[bot]
82ecd4168e
website: bump the build group across 1 directory with 9 updates ( #17849 )
...
Bumps the build group with 9 updates in the /website directory:
| Package | From | To |
| --- | --- | --- |
| [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.5.8` | `1.6.0` |
| [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.5.8` | `1.6.0` |
| [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.5.8` | `1.6.0` |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.21` | `1.14.0` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.21` | `1.14.0` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.21` | `1.14.0` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.21` | `1.14.0` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.21` | `1.14.0` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.21` | `1.14.0` |
Updates `@rspack/binding-darwin-arm64` from 1.5.8 to 1.6.0
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.0/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.5.8 to 1.6.0
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.0/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.5.8 to 1.6.0
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.6.0/packages/rspack )
Updates `@swc/core-darwin-arm64` from 1.13.21 to 1.14.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.13.21...v1.14.0 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.21 to 1.14.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.13.21...v1.14.0 )
Updates `@swc/core-linux-x64-gnu` from 1.13.21 to 1.14.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.13.21...v1.14.0 )
Updates `@swc/html-darwin-arm64` from 1.13.21 to 1.14.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.13.21...v1.14.0 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.21 to 1.14.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.13.21...v1.14.0 )
Updates `@swc/html-linux-x64-gnu` from 1.13.21 to 1.14.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.13.21...v1.14.0 )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.6.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.6.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.6.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.14.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.14.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-10-31 16:43:05 +01:00
dependabot[bot]
297d608e3d
lifecycle/aws: bump aws-cdk from 2.1031.0 to 2.1031.1 in /lifecycle/aws ( #17850 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1031.0 to 2.1031.1.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1031.1/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1031.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-31 16:42:40 +01:00
dependabot[bot]
f577b9cf95
core: bump astral-sh/uv from 0.9.6 to 0.9.7 ( #17851 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-31 15:15:31 +01:00
Jens L.
f242de17f5
internal: full openssl path ( #17856 )
2025-10-31 15:14:43 +01:00
Jens L.
d57103ff39
outpost: revert breaking signals change ( #17847 )
...
I have no idea why this breaks tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-31 01:50:38 +01:00
Teffen Ellis
45d0c7c24b
web/a11y: Isolated Outpost Error Page ( #17683 )
...
* web: Remove external resources from error page.
* web: Remove home link.
2025-10-30 23:00:01 +00:00
Connor Peshek
b65d163110
provider/saml: make signing kp singleton ( #17703 )
...
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-10-30 14:25:12 -05:00
Marc 'risson' Schmitt
bf19d572ae
tasks: sanitize log attributes ( #17833 )
2025-10-30 18:43:53 +01:00
Connor Peshek
7a1e976fcd
web/integrations: add information for slo supported integrations ( #17836 )
...
docs/integrations add slo supported integrations
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-10-30 12:43:44 -05:00
Dominic R
ec00a918b3
outposts: update permissions more eagerly ( #17783 )
...
* wip
* wip
* a
* a
Signed-off-by: Dominic R <dominic@sdko.org >
* rm
* this
* rm test files
* cover one more case
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-30 18:33:51 +01:00
dependabot[bot]
743e425894
core: bump astral-sh/uv from 0.9.5 to 0.9.6 ( #17820 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.5 to 0.9.6.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.5...0.9.6 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-30 17:37:56 +01:00
dependabot[bot]
b8d7447283
core: bump library/nginx from b619c34 to f547e3d in /website ( #17821 )
...
Bumps library/nginx from `b619c34` to `f547e3d`.
---
updated-dependencies:
- dependency-name: library/nginx
dependency-version: 1.29-trixie
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-30 17:34:35 +01:00
Jens L.
0c6eed1548
web/admin: fix scim provider form ( #17831 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-30 17:26:41 +01:00
Marc 'risson' Schmitt
1b77e93ecb
internal/web/proxy: fix return status code during startup ( #17827 )
2025-10-30 17:12:42 +01:00
Lukáš Kucharczyk
265b8abd83
website/integrations: miniflux: existing users must link accounts manually first ( #17822 )
...
* website/integrations: note about the last Miniflux setup
If a user already exists in Miniflux, trying to log in using Authentik will throw an error saying: "This user already exists". To enable logging in, the user must first log in using their existing credentials and manually link the account.
Signed-off-by: Lukáš Kucharczyk <lukas@kucharczyk.xyz >
* Modified language and changed to info box
---------
Signed-off-by: Lukáš Kucharczyk <lukas@kucharczyk.xyz >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-10-30 15:21:34 +00:00
Teffen Ellis
348e9b5625
web: Render Markdown in Blueprints descriptions ( #17746 )
...
* web: Render Markdown in Blueprints.
* web: Add MDX rendering to user notes.
2025-10-30 15:19:07 +00:00
Connor Peshek
cccce78e6c
web/integrations: add slo supported integrations ( #17810 )
...
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-10-30 15:18:19 +00:00
Dominic R
5410467569
internal: fix go deprecation for +build ( #17806 )
2025-10-30 14:50:28 +01:00
Teffen Ellis
42b96e82bb
web/a11y: User library -- fix issues surrounding element focus, ARIA labeling. ( #17522 )
...
* web/a11y: Fix issues surrounding element focus, aria labeling.
* web: Fix focus
* web: Fix nested focus
* web: Fix menu visibility when anchor positioning is not supported.
* web: Fix icon fallback behavior, labels.
* web: Fix flickering, descriptions.
* web: Fix excess width on mobile.
* web: Fix rendering artifacts on mobile.
* web: Remove aria-controls behavior.
- This is buggy, similar to aria-owns, and may cause crashes.
* web: Fix tabpanel focus attempting to scroll page.
* web: Fix issues surrounding consistent tab panel parameter testing.
* web: add shared helpers.
* web: Tidy comments.
2025-10-29 13:59:27 -04:00
Teffen Ellis
7891046c89
web: Consistent Tab Panel URL Parameters ( #17804 )
...
* web: Fix tabpanel focus attempting to scroll page.
* web: Fix issues surrounding consistent tab panel parameter testing.
* web: add shared helpers.
* web: Tidy comments.
2025-10-29 13:30:15 -04:00
Marc 'risson' Schmitt
c4af2ee642
ci: use hashes for actions everywhere ( #17803 )
2025-10-29 14:53:51 +00:00
Mattes Rötschke
da2201bffc
website/integrations: fixed paperless-ngx yml syntax issue and added additional info ( #17739 )
...
* website/integrations: fixed paperless-ngx yml syntax issue and added additional info
- added example for config in `docker-compose.env`
- added note about sign ups via authentik
* Added verification section, clarified some lanugage and moved some steps into the paperless configuration section
* website/integrations: minor improvements to wording in paperless-ngx page
* Moved docker instructions to correct section and duplicated language between both sections
---------
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-10-29 08:28:31 -05:00
authentik-automation[bot]
8eec94b9f4
core, web: update translations ( #17782 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-29 12:43:46 +00:00
Jens L.
4aa265c3b6
ci: rework internal repo ( #17797 )
...
* ci: rework internal repo
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also fix retention workflow
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-29 13:25:37 +01:00
Jens L.
6f35c32190
root: use hashes for dockerfile FROM ( #17795 )
...
* root: use hashes for dockerfile from
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix website dockerfile not being updated
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update golang bookworm to trixie
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update outpost runtime to trixie
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* node slim -> trixie slim
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* nginx -> trixie
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-29 13:19:46 +01:00
dependabot[bot]
88affcc590
web: bump validator from 13.15.15 to 13.15.20 in /packages/prettier-config ( #17776 )
...
web: bump validator in /packages/prettier-config
Bumps [validator](https://github.com/validatorjs/validator.js ) from 13.15.15 to 13.15.20.
- [Release notes](https://github.com/validatorjs/validator.js/releases )
- [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/validatorjs/validator.js/compare/13.15.15...13.15.20 )
---
updated-dependencies:
- dependency-name: validator
dependency-version: 13.15.20
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 22:12:47 +01:00
Marc 'risson' Schmitt
56d399a25e
tasks: delay startup signals ( #17769 )
2025-10-28 17:56:13 +00:00
dependabot[bot]
0fd9ffa46d
website: bump the build group in /website with 6 updates ( #17712 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.20` | `1.13.21` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.20` | `1.13.21` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.20` | `1.13.21` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.20` | `1.13.21` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.20` | `1.13.21` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.20` | `1.13.21` |
Updates `@swc/core-darwin-arm64` from 1.13.20 to 1.13.21
- [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.13.20...v1.13.21 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.20 to 1.13.21
- [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.13.20...v1.13.21 )
Updates `@swc/core-linux-x64-gnu` from 1.13.20 to 1.13.21
- [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.13.20...v1.13.21 )
Updates `@swc/html-darwin-arm64` from 1.13.20 to 1.13.21
- [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.13.20...v1.13.21 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.20 to 1.13.21
- [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.13.20...v1.13.21 )
Updates `@swc/html-linux-x64-gnu` from 1.13.20 to 1.13.21
- [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.13.20...v1.13.21 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.21
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.21
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.21
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.21
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.21
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.21
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 16:19:21 +01:00
authentik-automation[bot]
811c2e7322
core, web: update translations ( #17660 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-28 16:18:58 +01:00
dependabot[bot]
40fc6b7277
web: bump vite from 7.1.11 to 7.1.12 in /web ( #17689 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.11 to 7.1.12.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/v7.1.12/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.12/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 16:15:16 +01:00
dependabot[bot]
f5afb5090d
website: bump validator from 13.15.15 to 13.15.20 in /website ( #17741 )
...
Bumps [validator](https://github.com/validatorjs/validator.js ) from 13.15.15 to 13.15.20.
- [Release notes](https://github.com/validatorjs/validator.js/releases )
- [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/validatorjs/validator.js/compare/13.15.15...13.15.20 )
---
updated-dependencies:
- dependency-name: validator
dependency-version: 13.15.20
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 16:14:53 +01:00
dependabot[bot]
ca5e8ad788
web: bump eslint-plugin-react-hooks from 7.0.0 to 7.0.1 in /packages/eslint-config in the eslint group across 1 directory ( #17714 )
...
web: bump eslint-plugin-react-hooks
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks ).
Updates `eslint-plugin-react-hooks` from 7.0.0 to 7.0.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-hooks
dependency-version: 7.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 16:13:44 +01:00
dependabot[bot]
f54d196829
web: bump validator from 13.15.15 to 13.15.20 in /packages/eslint-config ( #17742 )
...
Bumps [validator](https://github.com/validatorjs/validator.js ) from 13.15.15 to 13.15.20.
- [Release notes](https://github.com/validatorjs/validator.js/releases )
- [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/validatorjs/validator.js/compare/13.15.15...13.15.20 )
---
updated-dependencies:
- dependency-name: validator
dependency-version: 13.15.20
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-28 16:12:38 +01:00
Marc 'risson' Schmitt
27ceb3ccf3
packages/django-postgres-cache: use upsert instead of select/update in a transaction ( #17760 )
2025-10-28 15:00:54 +00:00
Jens L.
9b6aa56df2
providers/radius: fix panic when no cert is configured ( #17762 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-28 15:42:11 +01:00
Alex Whitehead-Smith
6b43ddc7bf
sources/oauth: Make PKCE verifier 128 characters ( #17763 )
...
* sources/oauth: Make PKCE verifier 128 characters
The PKCE spec requires the code verifier to be 43-128 characters
inclusive[^1].
The default `length` argument to `generate_id` is 40 characters, which
meant the verifier is always shorter than required by the spec.
This could cause issues integrating authentik with PKCE-compliant OIDC
providers.
[^1]: https://datatracker.ietf.org/doc/html/rfc7636#section-4.1
* add length test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-28 15:39:49 +01:00
Jens L.
e7235732bb
providers/proxy: fix missing JWT/claims header ( #17759 )
...
* replace interface{} with any
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix raw token not saved to map or json
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also fix proxy claims
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-28 15:14:07 +01:00
Jens L.
e2904d13a9
providers/proxy: add gorm logging ( #17758 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-28 14:39:47 +01:00
dependabot[bot]
e8013bf76a
web: bump the sentry group across 1 directory with 2 updates ( #17743 )
...
Bumps the sentry group with 2 updates in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and @spotlightjs/spotlight.
Updates `@sentry/browser` from 10.21.0 to 10.22.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/10.21.0...10.22.0 )
Updates `@spotlightjs/spotlight` from 4.2.0 to 4.3.0
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.22.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.3.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-10-28 13:52:59 +01:00
Erwan Hervé
340803202e
root: Add Dockerfile label org.opencontainers.image.source ( #17756 )
...
Add label source in dockerfiles
2025-10-28 13:47:24 +01:00
Teffen Ellis
0237ec2723
web/a11y: Prefers more field contrast ( #17279 )
...
* web/a11y: Prefers more field contrast
* web: Fix issue where Lit Analyzer cannot parse newer CSS.
* web: Remove commented out code.
* web: Move styles into separate files, remove Lit Analyzer warnings.
* web: Fix nested pointer event detection.
* web: Fix contrast ratios, alignment, placeholders.
2025-10-28 01:12:37 -04:00
Dominic R
eae14f215a
root: update security.md's supported versions ( #17736 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-10-27 21:40:19 +01:00
Jens L.
60e5e7634b
website/docs: fix placeholder leftover ( #17737 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-27 21:30:34 +01:00
Jens L.
b61477972d
website/docs: finalise 2025.10 release notes ( #17728 )
...
* website/docs: finalise 2025.10 release notes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-27 19:39:19 +01:00
Jens L.
078e308bcc
website/docs: update flow context ref ( #17723 )
...
* website/docs: update flow context ref
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update website/docs/add-secure-apps/flows-stages/flow/context/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Jens L. <jens@beryju.org >
* Update website/docs/add-secure-apps/flows-stages/flow/context/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Jens L. <jens@beryju.org >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-10-27 19:13:45 +01:00
Jens L.
60be9d2c94
lifecycle: set search_path in system migrations ( #17721 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-27 18:54:33 +01:00
Jens L.
64483340b2
enterprise: handle cached naive timezone ( #17695 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-27 18:53:54 +01:00
Jens L.
22292b396d
providers/oauth2: move encryption key field ( #17722 )
...
it is often mis configured
closes #17678
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-27 18:48:43 +01:00
dependabot[bot]
12c2343c79
ci: bump astral-sh/setup-uv from 7.1.1 to 7.1.2 in /.github/actions/setup ( #17718 )
...
ci: bump astral-sh/setup-uv in /.github/actions/setup
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv ) from 7.1.1 to 7.1.2.
- [Release notes](https://github.com/astral-sh/setup-uv/releases )
- [Commits](2ddd2b9cb3...85856786d1 )
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: 7.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-27 12:03:11 +01:00
dependabot[bot]
5d7d3ffee7
web: bump the storybook group across 1 directory with 5 updates ( #17715 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.13 to 9.1.15
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.15/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.13 to 9.1.15
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.15/code/addons/links )
Updates `@storybook/web-components` from 9.1.13 to 9.1.15
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.15/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.13 to 9.1.15
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.15/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.13 to 9.1.15
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.15/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-27 11:59:10 +01:00
dependabot[bot]
c5017ad5cb
ci: bump actions/upload-artifact from 4.6.2 to 5.0.0 ( #17720 )
...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact ) from 4.6.2 to 5.0.0.
- [Release notes](https://github.com/actions/upload-artifact/releases )
- [Commits](ea165f8d65...330a01c490 )
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-27 11:58:55 +01:00
dependabot[bot]
d4a76419c5
ci: bump actions/download-artifact from 5.0.0 to 6.0.0 ( #17719 )
...
Bumps [actions/download-artifact](https://github.com/actions/download-artifact ) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/actions/download-artifact/releases )
- [Commits](634f93cb29...018cc2cf5b )
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-27 11:58:41 +01:00
Sylvain E
db0cc22857
website/integrations: grafana: replace deprecated redirect_uris usage by allowed_redirect_uris ( #17710 )
2025-10-27 02:54:32 +00:00
dependabot[bot]
077645ba43
web: bump @types/codemirror from 5.60.16 to 5.60.17 in /web ( #17685 )
...
Bumps [@types/codemirror](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/codemirror ) from 5.60.16 to 5.60.17.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/codemirror )
---
updated-dependencies:
- dependency-name: "@types/codemirror"
dependency-version: 5.60.17
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-26 23:35:27 +01:00
dependabot[bot]
94cfb5be76
web: bump @types/node from 22.15.19 to 24.9.1 in /web ( #17687 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.9.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-26 23:35:12 +01:00
dependabot[bot]
6784d29b7f
web: bump hono from 4.10.2 to 4.10.3 in /web ( #17698 )
...
Bumps [hono](https://github.com/honojs/hono ) from 4.10.2 to 4.10.3.
- [Release notes](https://github.com/honojs/hono/releases )
- [Commits](https://github.com/honojs/hono/compare/v4.10.2...v4.10.3 )
---
updated-dependencies:
- dependency-name: hono
dependency-version: 4.10.3
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-26 23:35:00 +01:00
Dominic R
b5ae282bf3
website/docs: blueprints: add a bit more info ( #17704 )
...
* website/docs: blueprints: add a bit more info
* this might be worth mentioning
* fix
* a bit more info
2025-10-26 09:24:33 -04:00
Dominic R
5e4c9ad44c
website/docs: release notes: Add Zot integration ( #17700 )
2025-10-24 23:59:12 +00:00
shcherbak
12fb630f5e
website/integrations: zot oci registry integration ( #17682 )
...
Co-authored-by: iops <iops@syneforge.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-24 23:46:10 +00:00
AlexLArmstrong
813878f260
website/integrations: sonarr: clarify reverse proxy setup ( #17485 )
...
* Clarify Sonarr setup
The Sonarr setup documentation, especially the reverse proxy setup section, caused confusion.
The documentation was clarified by providing an architectural overview and slight change in wording in the Reverse Proxy Setup section.
Signed-off-by: AlexLArmstrong <143502247+AlexLArmstrong@users.noreply.github.com >
* Fix typo and move diagram in sonarr/index.md
Signed-off-by: AlexLArmstrong <143502247+AlexLArmstrong@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: AlexLArmstrong <143502247+AlexLArmstrong@users.noreply.github.com >
* Prettier fix
---------
Signed-off-by: AlexLArmstrong <143502247+AlexLArmstrong@users.noreply.github.com >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-10-24 16:01:04 -05:00
Tana M Berry
21d965d481
website/docs: eap add info about custom validation ( #17642 )
...
* add info about custom validation
* tweaked table
* remove bullet
* remove other bullet
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-10-24 20:36:40 +00:00
Teffen Ellis
06fcbfd5af
web: Fix table row click handler. ( #17697 )
2025-10-24 19:26:42 +00:00
Dylan Kauling
d9707d4ad0
root: Fix transifex link ( #17696 )
...
readme: Fix transifex link
Previous link was giving a 404, looks like they moved projects to a different subdomain.
Signed-off-by: Dylan Kauling <gunsmithy@gmail.com >
2025-10-24 19:01:42 +02:00
Marc 'risson' Schmitt
b247ccdcfa
translate: add cs_CZ ( #17632 )
2025-10-24 15:40:30 +02:00
dependabot[bot]
ee201ce73c
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #17684 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-24 13:45:18 +02:00
Marcelo Elizeche Landó
3d38bcd859
web: Make action field search case insensitive in Event Matcher Policy Form ( #17680 )
...
* Make action field search case insensitive
* fix linting
2025-10-23 21:54:40 +02:00
Tana M Berry
c9bed1339c
website/docs: add note about invite link not bound ( #17657 )
...
* invite link not bound
* marcelo's truth
* jens tweak
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-10-23 09:56:53 -05:00
Teffen Ellis
7d10f1555c
web: Abstract Wizard Lifecycle ( #17658 )
...
* web: Remove wizard step element creation.
* web: Clean up abstract properties.
2025-10-23 15:43:52 +02:00
Teffen Ellis
03f4d7a9f5
web: Table row refinements ( #17659 )
...
* web: Reset selection state after refresh.
* web: Only select row when not expandable.
* web: Only render expandable content when row is expanded.
* web: Use `repeat` directive.
2025-10-23 15:42:31 +02:00
dependabot[bot]
a8908bdc26
core: bump goauthentik.io/api/v3 from 3.2025120.1 to 3.2025120.2 ( #17662 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025120.1 to 3.2025120.2.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025120.1...v3.2025120.2 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-23 14:33:27 +02:00
dependabot[bot]
0cf346cb58
web: bump the sentry group across 1 directory with 2 updates ( #17663 )
...
Bumps the sentry group with 2 updates in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and @spotlightjs/spotlight.
Updates `@sentry/browser` from 10.20.0 to 10.21.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/10.20.0...10.21.0 )
Updates `@spotlightjs/spotlight` from 4.1.4 to 4.2.0
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.21.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.2.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-10-23 13:51:30 +02:00
dependabot[bot]
adca19d419
web: bump chromedriver from 141.0.3 to 141.0.4 in /web ( #17665 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 141.0.3 to 141.0.4.
- [Commits](https://github.com/giggio/node-chromedriver/compare/141.0.3...141.0.4 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 141.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-23 13:10:37 +02:00
dependabot[bot]
53ac1c93c6
lifecycle/aws: bump aws-cdk from 2.1030.0 to 2.1031.0 in /lifecycle/aws ( #17667 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1030.0 to 2.1031.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1031.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1031.0
dependency-type: direct:development
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-10-23 13:10:25 +02:00
dependabot[bot]
b205e823a0
website: bump the eslint group in /website with 3 updates ( #17601 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/parser )
Updates `typescript-eslint` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 18:15:42 +02:00
dependabot[bot]
2691ca0bdc
web: bump hono from 4.9.12 to 4.10.2 in /web ( #17653 )
...
Bumps [hono](https://github.com/honojs/hono ) from 4.9.12 to 4.10.2.
- [Release notes](https://github.com/honojs/hono/releases )
- [Commits](https://github.com/honojs/hono/compare/v4.9.12...v4.10.2 )
---
updated-dependencies:
- dependency-name: hono
dependency-version: 4.10.2
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 18:14:46 +02:00
dependabot[bot]
2705c816e1
web: bump @types/node from 24.9.0 to 24.9.1 in /packages/esbuild-plugin-live-reload ( #17616 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.0 to 24.9.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 17:51:37 +02:00
dependabot[bot]
724f2aac1f
core: bump goauthentik.io/api/v3 from 3.2025100.25 to 3.2025120.1 ( #17613 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.25 to 3.2025120.1.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.25...v3.2025120.1 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025120.1
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-10-22 17:51:27 +02:00
dependabot[bot]
7fa60ec0e5
website: bump @types/node from 24.9.0 to 24.9.1 in /website ( #17612 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.0 to 24.9.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 17:51:16 +02:00
dependabot[bot]
12da0f3615
web: bump vite from 7.1.10 to 7.1.11 in /web ( #17604 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.10 to 7.1.11.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.11/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.11
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 17:51:08 +02:00
Marc 'risson' Schmitt
e593933bca
lib/sync/outgoing: store sync settings in database ( #17630 )
2025-10-22 17:15:37 +02:00
dependabot[bot]
6a594355d3
web: bump @types/node from 24.9.0 to 24.9.1 in /packages/prettier-config ( #17617 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.9.0 to 24.9.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 16:52:06 +02:00
dependabot[bot]
42162620d6
web: bump @types/node from 22.15.19 to 24.9.1 in /web ( #17618 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.9.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 16:51:48 +02:00
dependabot[bot]
b4bfa3689d
web: bump knip from 5.66.1 to 5.66.2 in /web ( #17619 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.66.1 to 5.66.2.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.66.2/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.66.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 16:51:35 +02:00
transifex-integration[bot]
4b54bd6b82
translate: Updates for file web/xliff/en.xlf in pt_BR ( #17639 )
...
Translate web/xliff/en.xlf in pt_BR
100% translated source file: 'web/xliff/en.xlf'
on 'pt_BR'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-22 16:51:03 +02:00
authentik-automation[bot]
5ab0a4380f
core, web: update translations ( #17643 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-22 16:33:08 +02:00
Tana M Berry
7894c52764
website/docs: rel notes 2025.10: add 3 more integration guides ( #17641 )
...
* add 3 more int guides
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* is github's suggestion thingy usually this buggy
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-22 09:28:49 -04:00
Jens L.
e9347e88e1
providers/proxy: drop headers with underscores ( #17650 )
...
drop any headers with underscores that we set in the remote system
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-22 15:19:34 +02:00
dependabot[bot]
92de2c3d25
core: bump astral-sh/uv from 0.9.4 to 0.9.5 ( #17645 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.4 to 0.9.5.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.4...0.9.5 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 13:26:53 +02:00
dependabot[bot]
b241f9b087
web: bump style-mod from 4.1.2 to 4.1.3 in /web ( #17647 )
...
Bumps [style-mod](https://github.com/marijnh/style-mod ) from 4.1.2 to 4.1.3.
- [Commits](https://github.com/marijnh/style-mod/compare/4.1.2...4.1.3 )
---
updated-dependencies:
- dependency-name: style-mod
dependency-version: 4.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 13:26:34 +02:00
dependabot[bot]
38d399626e
core: bump github.com/getsentry/sentry-go from 0.36.0 to 0.36.1 ( #17646 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.36.0 to 0.36.1.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.36.0...v0.36.1 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.36.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-22 13:26:23 +02:00
Dominic R
a972eab2fc
website/integrations: add terraform cloud ( #17610 )
...
* website/integrations: add terraform cloud
* Added extra section and clarified verification section
* Update website/integrations/infrastructure/terraform-cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/integrations/infrastructure/terraform-cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/integrations/infrastructure/terraform-cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/integrations/infrastructure/terraform-cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-10-22 10:28:22 +01:00
Connor Peshek
157aef6a67
website/integrations: add zendesk ( #17541 )
...
* Add zendesk integration steps
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-10-21 15:58:21 -05:00
Marcelo Elizeche Landó
710714ab7a
core: bump djangorestframework from 3.16.0 (our fork) to v3.16.1 (official package) ( #16594 )
...
* bump djangorestframework from 3.16.0 (our fork) to v3.16.1 (official package)
* maybe fix issues?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* check for .pk when state==ABSENT in blueprint importer
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-21 18:37:01 +02:00
Jens L.
6ea8d7dbaf
enterprise: add prometheus metrics for license usage and expiry ( #17606 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-21 18:03:52 +02:00
Jens L.
3c4d106880
ci: link to next. for pre-release docs ( #17634 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-21 17:44:55 +02:00
Marcelo Elizeche Landó
604ec1f9c1
web: sync web/package-lock.json ( #17611 )
...
sync web/package-lock.json
2025-10-21 17:32:02 +02:00
Dewi Roberts
75e93ca114
website/integrations: random fixes ( #17631 )
...
* Change miniflux and espo-crm formatting
* Fixes capitalization, bolding and wording.
2025-10-21 13:21:15 +00:00
Dewi Roberts
7a98b64855
website/docs: add short-lived certificate recommendation ( #17628 )
...
Add certificate recommendation
2025-10-21 13:02:27 +00:00
authentik-automation[bot]
7190a94095
core, web: update translations ( #17605 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-21 14:25:09 +02:00
transifex-integration[bot]
65f09d0cae
translate: Updates for file locale/en/LC_MESSAGES/django.po in pt_BR ( #17622 )
...
Translate locale/en/LC_MESSAGES/django.po in pt_BR
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'pt_BR'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-21 14:23:15 +02:00
Jens L.
fa10a29727
ci: use forked release action to deal with large release notes ( #17625 )
...
* ci: use forked release action to deal with large release notes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* bump build
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-21 14:21:56 +02:00
Dominic R
d13d2e8abb
website: fix active menu link background overlap ( #17607 )
2025-10-21 07:06:19 +02:00
Dominic R
be011e8676
website/integrations: Zoom: Fix punctuation in description ( #17608 )
2025-10-21 04:55:46 +02:00
authentik-automation[bot]
db213a8944
root: bump version to 2025.12.0-rc1 ( #17603 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-21 01:10:16 +02:00
Jens L.
b61938bd17
website/docs: add 2025.10 release notes ( #17296 )
...
* website/docs: add 2025.10 release notes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* a
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add the actual release notes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update website/docs/releases/2025/v2025.10.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Jens L. <jens@beryju.org >
* Update website/docs/releases/2025/v2025.10.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Jens L. <jens@beryju.org >
* Update website/docs/releases/2025/v2025.10.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
* Update website/docs/releases/2025/v2025.10.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-10-21 00:18:16 +02:00
Jens L.
9847c3adc8
providers/proxy: fix missing postgres import ( #17582 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-21 00:09:54 +02:00
dependabot[bot]
da675b3e91
ci: bump peter-evans/create-or-update-comment from 2.1.1 to 5.0.0 in /.github/actions/comment-pr-instructions ( #17593 )
...
ci: bump peter-evans/create-or-update-comment
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment ) from 2.1.1 to 5.0.0.
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases )
- [Commits](67dcc547d3...e8674b0752 )
---
updated-dependencies:
- dependency-name: peter-evans/create-or-update-comment
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:15:35 +02:00
dependabot[bot]
ee65e8fcbc
web: bump the eslint group across 2 directories with 5 updates ( #17587 )
...
Bumps the eslint group with 2 updates in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 2 updates in the /web directory: [eslint](https://github.com/eslint/eslint ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `eslint` from 9.37.0 to 9.38.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.37.0...v9.38.0 )
Updates `typescript-eslint` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/typescript-eslint )
Updates `eslint` from 9.37.0 to 9.38.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.37.0...v9.38.0 )
Updates `typescript-eslint` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/typescript-eslint )
Updates `@eslint/js` from 9.37.0 to 9.38.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.38.0/packages/js )
Updates `@typescript-eslint/eslint-plugin` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.1 to 8.46.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.2/packages/parser )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.2
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:34 +02:00
dependabot[bot]
0e52f3b72f
web: bump the rollup group across 1 directory with 4 updates ( #17588 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.52.4 to 4.52.5
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.4...v4.52.5 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.52.4 to 4.52.5
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.4...v4.52.5 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.52.4 to 4.52.5
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.4...v4.52.5 )
Updates `rollup` from 4.52.4 to 4.52.5
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.4...v4.52.5 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.52.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.52.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.52.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.52.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:31 +02:00
dependabot[bot]
3156cf776f
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #17589 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:28 +02:00
dependabot[bot]
5b86169c7d
ci: bump astral-sh/setup-uv from 5.4.2 to 7.1.1 in /.github/actions/setup ( #17590 )
...
ci: bump astral-sh/setup-uv in /.github/actions/setup
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv ) from 5.4.2 to 7.1.1.
- [Release notes](https://github.com/astral-sh/setup-uv/releases )
- [Commits](d4b2f3b6ec...2ddd2b9cb3 )
---
updated-dependencies:
- dependency-name: astral-sh/setup-uv
dependency-version: 7.1.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:24 +02:00
dependabot[bot]
f901c85af9
web: bump @types/node from 24.8.1 to 24.9.0 in /packages/esbuild-plugin-live-reload ( #17591 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.8.1 to 24.9.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.0
dependency-type: direct:development
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-10-20 23:14:21 +02:00
dependabot[bot]
99a6d0bb74
ci: bump actions/setup-python from 5.6.0 to 6.0.0 in /.github/actions/setup ( #17592 )
...
ci: bump actions/setup-python in /.github/actions/setup
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 5.6.0 to 6.0.0.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](a26af69be9...e797f83bcb )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:18 +02:00
dependabot[bot]
dde47a0b10
ci: bump peter-evans/find-comment from 2.4.0 to 4.0.0 in /.github/actions/comment-pr-instructions ( #17594 )
...
ci: bump peter-evans/find-comment
Bumps [peter-evans/find-comment](https://github.com/peter-evans/find-comment ) from 2.4.0 to 4.0.0.
- [Release notes](https://github.com/peter-evans/find-comment/releases )
- [Commits](a54c31d7fa...b30e6a3c0e )
---
updated-dependencies:
- dependency-name: peter-evans/find-comment
dependency-version: 4.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:15 +02:00
dependabot[bot]
d51b3481fa
web: bump @types/node from 24.8.1 to 24.9.0 in /packages/prettier-config ( #17596 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.8.1 to 24.9.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.0
dependency-type: direct:development
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-10-20 23:14:12 +02:00
dependabot[bot]
c815ed118a
web: bump pino from 10.0.0 to 10.1.0 in /packages/esbuild-plugin-live-reload ( #17597 )
...
web: bump pino in /packages/esbuild-plugin-live-reload
Bumps [pino](https://github.com/pinojs/pino ) from 10.0.0 to 10.1.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v10.0.0...v10.1.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 10.1.0
dependency-type: direct:development
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-10-20 23:14:07 +02:00
dependabot[bot]
6179c7c5a0
ci: bump actions/setup-go from 5.5.0 to 6.0.0 in /.github/actions/setup ( #17598 )
...
Bumps [actions/setup-go](https://github.com/actions/setup-go ) from 5.5.0 to 6.0.0.
- [Release notes](https://github.com/actions/setup-go/releases )
- [Commits](d35c59abb0...4469467582 )
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:14:04 +02:00
dependabot[bot]
941999608f
web: bump pino from 10.0.0 to 10.1.0 in /web ( #17599 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 10.0.0 to 10.1.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v10.0.0...v10.1.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 10.1.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-10-20 23:14:00 +02:00
dependabot[bot]
03a31fda98
web: bump @types/node from 22.15.19 to 24.9.0 in /web ( #17600 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.9.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:13:57 +02:00
dependabot[bot]
5b54400567
website: bump @types/node from 24.8.1 to 24.9.0 in /website ( #17602 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.8.1 to 24.9.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.9.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-10-20 23:13:52 +02:00
dependabot[bot]
720d2418b0
ci: bump actions/setup-node from 4.4.0 to 6.0.0 in /.github/actions/setup ( #17595 )
...
ci: bump actions/setup-node in /.github/actions/setup
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 4.4.0 to 6.0.0.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](49933ea528...2028fbc5c2 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 23:10:06 +02:00
Jens L.
9f0e114eb6
root: bump python ( #17585 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-20 22:50:17 +02:00
Jens L.
9c4f23c8ba
ci: make dependabot update composite actions ( #17586 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-20 22:29:18 +02:00
Dewi Roberts
6460f56915
website/docs: rework source docs ( #17380 )
...
* Merge changes
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Remove tags from Entra docs
* Minor improvements
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Update website/docs/users-sources/sources/social-logins/plex/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/google/workspace/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/google/cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/mailcow/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/twitch/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/entra-id/scim/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/twitter/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Update website/docs/users-sources/sources/social-logins/google/cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/google/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/google/cloud/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-10-20 19:48:31 +00:00
transifex-integration[bot]
92c0047e17
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #17552 )
...
Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:38 +02:00
transifex-integration[bot]
91d4dc621d
translate: Updates for file locale/en/LC_MESSAGES/django.po in it [Manual Sync] ( #17555 )
...
Translate django.po in it [Manual Sync]
92% of minimum 60% translated source file: 'django.po'
on 'it'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:35 +02:00
transifex-integration[bot]
44d77e3a82
translate: Updates for file locale/en/LC_MESSAGES/django.po in nl [Manual Sync] ( #17556 )
...
Translate django.po in nl [Manual Sync]
65% of minimum 60% translated source file: 'django.po'
on 'nl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:32 +02:00
transifex-integration[bot]
94fd3202aa
translate: Updates for file locale/en/LC_MESSAGES/django.po in fi [Manual Sync] ( #17557 )
...
Translate django.po in fi [Manual Sync]
76% of minimum 60% translated source file: 'django.po'
on 'fi'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:29 +02:00
transifex-integration[bot]
53bf7b5d86
translate: Updates for file locale/en/LC_MESSAGES/django.po in de [Manual Sync] ( #17558 )
...
Translate django.po in de [Manual Sync]
94% of minimum 60% translated source file: 'django.po'
on 'de'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:25 +02:00
transifex-integration[bot]
0af06eb919
translate: Updates for file locale/en/LC_MESSAGES/django.po in pl [Manual Sync] ( #17559 )
...
Translate django.po in pl [Manual Sync]
70% of minimum 60% translated source file: 'django.po'
on 'pl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:22 +02:00
transifex-integration[bot]
e5f89653ca
translate: Updates for file locale/en/LC_MESSAGES/django.po in ko [Manual Sync] ( #17560 )
...
Translate django.po in ko [Manual Sync]
60% of minimum 60% translated source file: 'django.po'
on 'ko'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:19 +02:00
transifex-integration[bot]
e93e7ecce6
translate: Updates for file locale/en/LC_MESSAGES/django.po in es [Manual Sync] ( #17561 )
...
Translate django.po in es [Manual Sync]
92% of minimum 60% translated source file: 'django.po'
on 'es'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:16 +02:00
transifex-integration[bot]
8bc854c7b2
translate: Updates for file locale/en/LC_MESSAGES/django.po in pt [Manual Sync] ( #17562 )
...
Translate django.po in pt [Manual Sync]
82% of minimum 60% translated source file: 'django.po'
on 'pt'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:13 +02:00
transifex-integration[bot]
70aaf8d51e
translate: Updates for file locale/en/LC_MESSAGES/django.po in tr [Manual Sync] ( #17563 )
...
Translate django.po in tr [Manual Sync]
74% of minimum 60% translated source file: 'django.po'
on 'tr'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:10 +02:00
transifex-integration[bot]
f2b64e3425
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_CN [Manual Sync] ( #17564 )
...
Translate django.po in zh_CN [Manual Sync]
98% of minimum 60% translated source file: 'django.po'
on 'zh_CN'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:07 +02:00
transifex-integration[bot]
a46811baf9
translate: Updates for file locale/en/LC_MESSAGES/django.po in ru [Manual Sync] ( #17565 )
...
Translate django.po in ru [Manual Sync]
73% of minimum 60% translated source file: 'django.po'
on 'ru'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:25:03 +02:00
transifex-integration[bot]
3aace9caf6
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_TW [Manual Sync] ( #17566 )
...
Translate django.po in zh_TW [Manual Sync]
64% of minimum 60% translated source file: 'django.po'
on 'zh_TW'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:24:59 +02:00
transifex-integration[bot]
58069b2ff9
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh-Hans [Manual Sync] ( #17567 )
...
Translate django.po in zh-Hans [Manual Sync]
84% of minimum 60% translated source file: 'django.po'
on 'zh-Hans'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:24:56 +02:00
transifex-integration[bot]
80914564dc
translate: Updates for file web/xliff/en.xlf in es [Manual Sync] ( #17568 )
...
Translate web/xliff/en.xlf in es [Manual Sync]
89% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'es'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:24:00 +02:00
transifex-integration[bot]
ba2e1f2749
translate: Updates for file web/xliff/en.xlf in de [Manual Sync] ( #17569 )
...
Translate web/xliff/en.xlf in de [Manual Sync]
92% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'de'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:57 +02:00
transifex-integration[bot]
f5d2abfe69
translate: Updates for file web/xliff/en.xlf in fi [Manual Sync] ( #17570 )
...
Translate web/xliff/en.xlf in fi [Manual Sync]
79% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'fi'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:54 +02:00
transifex-integration[bot]
a1fed2cb80
translate: Updates for file web/xliff/en.xlf in fr [Manual Sync] ( #17571 )
...
Translate web/xliff/en.xlf in fr [Manual Sync]
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:50 +02:00
transifex-integration[bot]
46859aaa2e
translate: Updates for file web/xliff/en.xlf in ko [Manual Sync] ( #17572 )
...
Translate web/xliff/en.xlf in ko [Manual Sync]
72% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'ko'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:48 +02:00
transifex-integration[bot]
35913477d4
translate: Updates for file web/xliff/en.xlf in pl [Manual Sync] ( #17573 )
...
Translate web/xliff/en.xlf in pl [Manual Sync]
72% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'pl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:45 +02:00
transifex-integration[bot]
4464fcd72b
translate: Updates for file web/xliff/en.xlf in pt_BR [Manual Sync] ( #17574 )
...
Translate web/xliff/en.xlf in pt_BR [Manual Sync]
94% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'pt_BR'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:41 +02:00
transifex-integration[bot]
c46f94b1f8
translate: Updates for file web/xliff/en.xlf in it [Manual Sync] ( #17575 )
...
Translate web/xliff/en.xlf in it [Manual Sync]
86% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'it'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:37 +02:00
transifex-integration[bot]
ff22293a40
translate: Updates for file web/xliff/en.xlf in tr [Manual Sync] ( #17576 )
...
Translate web/xliff/en.xlf in tr [Manual Sync]
76% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'tr'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:34 +02:00
transifex-integration[bot]
e48a6a6aac
translate: Updates for file web/xliff/en.xlf in ru [Manual Sync] ( #17577 )
...
Translate web/xliff/en.xlf in ru [Manual Sync]
75% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'ru'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:31 +02:00
transifex-integration[bot]
fdecbfba41
translate: Updates for file web/xliff/en.xlf in zh_CN [Manual Sync] ( #17578 )
...
Translate web/xliff/en.xlf in zh_CN [Manual Sync]
98% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'zh_CN'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:27 +02:00
transifex-integration[bot]
11cde9a216
translate: Updates for file web/xliff/en.xlf in zh_TW [Manual Sync] ( #17579 )
...
Translate web/xliff/en.xlf in zh_TW [Manual Sync]
60% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'zh_TW'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:24 +02:00
transifex-integration[bot]
31a9106b60
translate: Updates for file web/xliff/en.xlf in zh-Hans [Manual Sync] ( #17580 )
...
Translate en.xlf in zh-Hans [Manual Sync]
86% of minimum 60% translated source file: 'en.xlf'
on 'zh-Hans'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:21 +02:00
transifex-integration[bot]
5e76720c01
translate: Updates for file web/xliff/en.xlf in cs_CZ [Manual Sync] ( #17581 )
...
Translate web/xliff/en.xlf in cs_CZ [Manual Sync]
91% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'cs_CZ'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 20:23:17 +02:00
dependabot[bot]
49b15ff854
core: bump goauthentik.io/api/v3 from 3.2025100.24 to 3.2025100.25 ( #17514 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.24 to 3.2025100.25.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.24...v3.2025100.25 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.25
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 19:58:21 +02:00
authentik-automation[bot]
4169cd53e4
core, web: update translations ( #17554 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-20 19:57:29 +02:00
Jens L.
b4125e6bf5
lib/sync: revert breaking type change ( #17553 )
...
* lib/sync: revert breaking type change
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* sigh
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-20 19:53:03 +02:00
Tana M Berry
83603a528f
website/docs: update SAML provider docs ( #15887 )
...
* tweaks
* a little more cleanup
* more headings
* merged with latest /main, tweak
* Update website/docs/add-secure-apps/providers/saml/create-saml-provider.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/create-saml-provider.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/create-saml-provider.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/create-saml-provider.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* WIP
* WIP
* WIP
* WIP
* WIP
* Codespell
* WIP
* Remove unneccessary section
* Fixed headers
* WIP
* WIP
* WIP
* Apply suggestions from code review
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestions from Tana
* Fix link
* Update website/docs/add-secure-apps/providers/saml/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Improved opening paragraph
* Update website/docs/add-secure-apps/providers/saml/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/saml/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Improved sentence
* Update website/docs/add-secure-apps/providers/saml/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-20 18:06:36 +01:00
Connor Peshek
266f164e4e
website/integrations: add zoom ( #17540 )
...
* Add zoom integration
* update changes.
* wip
* add usgov
* Tiny formatting changes
---------
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-10-20 18:02:20 +01:00
transifex-integration[bot]
abd14e5f29
translate: Updates for file web/xliff/en.xlf in fr ( #17533 )
...
* Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
* Removing web/xliff/en.xlf in fr
99% of minimum 100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
* Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
---------
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-20 15:17:35 +00:00
Jens L.
056e4ca7c4
web/flow: small layout fixes ( #17551 )
...
* web: Fix colors, compatibility mode overrides.
* web: Fix alignment, rendering on high contrast.
* web: Apply footer resize.
---------
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-10-20 16:47:54 +02:00
authentik-automation[bot]
af6dadcfd8
core, web: update translations ( #17512 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-20 16:47:14 +02:00
Dominic R
795a025af9
outpost/proxyv2: postgresstore: db/pool/misc cleanup and enhancement ( #17511 )
...
* wip
* Update internal/outpost/proxyv2/application/session_postgres_test.go
Signed-off-by: Dominic R <dominic@sdko.org >
* Update refresh.go
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-10-20 16:25:13 +02:00
Marc 'risson' Schmitt
730b2731f2
tasks/schedules: upsert instead of update_or_create ( #17534 )
...
* root: introduce django-postgres-extra
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* wip
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-20 13:52:36 +00:00
Jens L.
dfef5d64ab
core: add QL for groups ( #17527 )
...
* web/admin: allow ql in member select
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add ql for groups
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-20 15:36:08 +02:00
dependabot[bot]
52cc30d575
website: bump @types/node from 24.7.2 to 24.8.1 in /website ( #17515 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.2 to 24.8.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.8.1
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-10-20 14:05:10 +02:00
dependabot[bot]
c81361d9fb
web: bump @types/node from 24.7.2 to 24.8.1 in /packages/esbuild-plugin-live-reload ( #17517 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.2 to 24.8.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.8.1
dependency-type: direct:development
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-10-20 14:03:08 +02:00
dependabot[bot]
1f1c59f1e7
web: bump @playwright/test from 1.56.0 to 1.56.1 in /web ( #17519 )
...
Bumps [@playwright/test](https://github.com/microsoft/playwright ) from 1.56.0 to 1.56.1.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.56.0...v1.56.1 )
---
updated-dependencies:
- dependency-name: "@playwright/test"
dependency-version: 1.56.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 13:54:04 +02:00
dependabot[bot]
0472140c37
web: bump @types/node from 24.7.2 to 24.8.1 in /packages/prettier-config ( #17518 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.2 to 24.8.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.8.1
dependency-type: direct:development
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-10-20 13:53:26 +02:00
ripple
b0e78a92ba
lib: small type hinting improvements ( #17528 )
...
refactor: smol type hinting improvements
2025-10-20 13:26:11 +02:00
dependabot[bot]
6c89a36e28
web: bump @types/node from 22.15.19 to 24.8.1 in /web ( #17521 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.8.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.8.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 13:26:05 +02:00
Marc 'risson' Schmitt
8fb34c4ca2
policies/reputation: update reputation in a single query ( #17529 )
2025-10-20 12:56:53 +02:00
dependabot[bot]
c49169f427
core: bump astral-sh/uv from 0.9.3 to 0.9.4 ( #17543 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.3 to 0.9.4.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.3...0.9.4 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 12:55:49 +02:00
dependabot[bot]
bb9f1764e7
ci: bump int128/docker-manifest-create-action from 2.9.0 to 2.10.0 ( #17544 )
...
Bumps [int128/docker-manifest-create-action](https://github.com/int128/docker-manifest-create-action ) from 2.9.0 to 2.10.0.
- [Release notes](https://github.com/int128/docker-manifest-create-action/releases )
- [Commits](7061c6f396...b60433fd43 )
---
updated-dependencies:
- dependency-name: int128/docker-manifest-create-action
dependency-version: 2.10.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-10-20 12:55:40 +02:00
dependabot[bot]
aa1b91586e
website: bump the eslint group in /website with 2 updates ( #17545 )
...
Bumps the eslint group in /website with 2 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) and [eslint](https://github.com/eslint/eslint ).
Updates `@eslint/js` from 9.37.0 to 9.38.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.38.0/packages/js )
Updates `eslint` from 9.37.0 to 9.38.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.37.0...v9.38.0 )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 12:55:10 +02:00
dependabot[bot]
60b4989b46
web: bump the storybook group across 1 directory with 5 updates ( #17516 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.10 to 9.1.12
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.12/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.10 to 9.1.12
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.12/code/addons/links )
Updates `@storybook/web-components` from 9.1.10 to 9.1.12
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.12/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.10 to 9.1.12
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.12/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.10 to 9.1.12
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.12/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-20 12:54:55 +02:00
dependabot[bot]
2f4f45fe19
web: bump knip from 5.65.0 to 5.66.1 in /web ( #17549 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.65.0 to 5.66.1.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.66.1/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.66.1
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-10-20 12:54:21 +02:00
transifex-integration[bot]
5e0bc44f3e
translate: Updates for file locale/en/LC_MESSAGES/django.po in pt_BR ( #17532 )
...
Translate locale/en/LC_MESSAGES/django.po in pt_BR
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'pt_BR'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-18 12:56:53 +00:00
Dewi Roberts
867503ee08
website/docs: adds information about known device logins ( #17175 )
...
* Adds information
* Update website/docs/add-secure-apps/flows-stages/stages/user_login/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/flows-stages/stages/user_login/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/sys-mgmt/events/notification_rule_expression_policies.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/sys-mgmt/events/notification_rule_expression_policies.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/sys-mgmt/events/notification_rule_expression_policies.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/sys-mgmt/events/notification_rule_expression_policies.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Headers update
* Apply suggestions
* Fixed table of contents
* Apply suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-10-17 16:57:39 +00:00
Tana M Berry
7ea47da1c7
website/docs: add more RADIUS EAP-TLS docs ( #17419 )
...
* tweak
* formatting
* rewords from Jens and collapsible table
* Update website/docs/sys-mgmt/brands.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* tweaks
* add cheggerdev and marc combo note
* tweak?
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-10-17 10:51:28 -05:00
ripple
176b5bc314
lib: import ExceptionDictTransformer from structlog.tracebacks ( #17526 )
...
* fix: ExceptionDictTransformer moved to structlog.tracebacks
* fix: exception_to_dict incorrect type hint
2025-10-17 16:44:50 +02:00
Dewi Roberts
6c7fdf7113
website/docs: update outpost upgrade doc ( #17433 )
...
* Updated wording and screenshots
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Apply suggestions
---------
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-17 09:20:36 -04:00
Dewi Roberts
1f886e8848
website/docs: random improvements to docs ( #17524 )
...
Minor changes
2025-10-17 09:19:21 -04:00
Teffen Ellis
1ed6008126
web/a11y: Fix "skip to content" target. ( #17510 )
...
* web/a11y: Fix "skip to content" target.
* web: Fix tab focus.
* web: Clarify comment.
2025-10-16 19:44:42 -04:00
dependabot[bot]
a1269ac5d1
web: bump typescript from 5.8.3 to 5.9.3 in /web ( #17168 )
...
* web: bump typescript from 5.8.3 to 5.9.3 in /web
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* fix up ish
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web: Fix typing.
* web: assign array type.
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-10-16 19:43:48 -04:00
Jens L.
8926cadd7c
stages/user_write: fix attribute path replacement ( #17507 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-16 19:26:37 +02:00
dependabot[bot]
b760d0e3a1
web: bump vite from 7.1.9 to 7.1.10 in /web ( #17497 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.9 to 7.1.10.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.10/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 18:55:03 +02:00
authentik-automation[bot]
f668c692bc
core, web: update translations ( #17492 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-16 18:54:49 +02:00
transifex-integration[bot]
58eeafb103
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #17489 )
...
Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-16 18:54:34 +02:00
dependabot[bot]
9f396b317e
core: bump astral-sh/uv from 0.9.2 to 0.9.3 ( #17493 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.2 to 0.9.3.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.2...0.9.3 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 13:54:01 +02:00
dependabot[bot]
8efdf07fc8
core: bump goauthentik.io/api/v3 from 3.2025100.23 to 3.2025100.24 ( #17494 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.23 to 3.2025100.24.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.23...v3.2025100.24 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.24
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 13:53:47 +02:00
dependabot[bot]
4c59aa0834
web: bump @sentry/browser from 10.19.0 to 10.20.0 in /web in the sentry group across 1 directory ( #17495 )
...
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 10.19.0 to 10.20.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.20.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/10.19.0...10.20.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.20.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-10-16 13:53:36 +02:00
dependabot[bot]
5072bbabb2
web: bump @rollup/plugin-commonjs from 28.0.7 to 28.0.8 in /web in the rollup group across 1 directory ( #17496 )
...
web: bump @rollup/plugin-commonjs
Bumps the rollup group with 1 update in the /web directory: [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs ).
Updates `@rollup/plugin-commonjs` from 28.0.7 to 28.0.8
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md )
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.8/packages/commonjs )
---
updated-dependencies:
- dependency-name: "@rollup/plugin-commonjs"
dependency-version: 28.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 13:53:24 +02:00
dependabot[bot]
0a251f5506
web: bump chromedriver from 141.0.2 to 141.0.3 in /web ( #17498 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 141.0.2 to 141.0.3.
- [Commits](https://github.com/giggio/node-chromedriver/compare/141.0.2...141.0.3 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 141.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-16 13:49:48 +02:00
authentik-automation[bot]
1d4e859175
web: bump API Client version ( #17501 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-16 13:43:33 +02:00
Jens L.
2484f28bb6
sources/oauth: configurable PKCE mode ( #17487 )
...
* sources/oauth: configurable PKCE mode
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* common function for pkce s256
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-16 13:32:03 +02:00
dependabot[bot]
775a8feed7
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #17490 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 22:54:50 +02:00
authentik-automation[bot]
6257a534c6
core, web: update translations ( #17473 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-15 22:50:58 +02:00
Connor Peshek
734de9b2c1
website/docs: Update docs for single logout ( #17169 )
...
* website/docs: Update docs for single logout
---------
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
2025-10-15 11:51:17 -05:00
authentik-automation[bot]
1518c9aeaf
web: bump API Client version ( #17488 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-15 15:00:00 +00:00
dependabot[bot]
6a4ea997a6
core: bump github.com/avast/retry-go/v4 from 4.6.1 to 4.7.0 ( #17476 )
...
Bumps [github.com/avast/retry-go/v4](https://github.com/avast/retry-go ) from 4.6.1 to 4.7.0.
- [Release notes](https://github.com/avast/retry-go/releases )
- [Commits](https://github.com/avast/retry-go/compare/4.6.1...4.7.0 )
---
updated-dependencies:
- dependency-name: github.com/avast/retry-go/v4
dependency-version: 4.7.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-10-15 16:50:43 +02:00
dependabot[bot]
65871564c7
web: bump @spotlightjs/spotlight from 4.1.3 to 4.1.4 in /web in the sentry group across 1 directory ( #17477 )
...
web: bump @spotlightjs/spotlight
Bumps the sentry group with 1 update in the /web directory: @spotlightjs/spotlight.
Updates `@spotlightjs/spotlight` from 4.1.3 to 4.1.4
---
updated-dependencies:
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 16:50:32 +02:00
dependabot[bot]
00fe138b17
web: bump the esbuild group across 2 directories with 4 updates ( #17478 )
...
Bumps the esbuild group with 1 update in the /packages/esbuild-plugin-live-reload directory: [esbuild](https://github.com/evanw/esbuild ).
Bumps the esbuild group with 1 update in the /web directory: [esbuild](https://github.com/evanw/esbuild ).
Updates `esbuild` from 0.25.10 to 0.25.11
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.11 )
Updates `esbuild` from 0.25.10 to 0.25.11
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.11 )
Updates `@esbuild/darwin-arm64` from 0.25.10 to 0.25.11
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.11 )
Updates `@esbuild/linux-arm64` from 0.25.10 to 0.25.11
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.11 )
Updates `@esbuild/linux-x64` from 0.25.10 to 0.25.11
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.10...v0.25.11 )
---
updated-dependencies:
- dependency-name: esbuild
dependency-version: 0.25.11
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: esbuild
dependency-version: 0.25.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 16:50:22 +02:00
dependabot[bot]
4ff7f600b6
web: bump chart.js from 4.5.0 to 4.5.1 in /web ( #17480 )
...
Bumps [chart.js](https://github.com/chartjs/Chart.js ) from 4.5.0 to 4.5.1.
- [Release notes](https://github.com/chartjs/Chart.js/releases )
- [Commits](https://github.com/chartjs/Chart.js/compare/v4.5.0...v4.5.1 )
---
updated-dependencies:
- dependency-name: chart.js
dependency-version: 4.5.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 16:50:11 +02:00
dependabot[bot]
a949b880ea
web: bump pino-pretty from 13.1.1 to 13.1.2 in /web ( #17481 )
...
Bumps [pino-pretty](https://github.com/pinojs/pino-pretty ) from 13.1.1 to 13.1.2.
- [Release notes](https://github.com/pinojs/pino-pretty/releases )
- [Commits](https://github.com/pinojs/pino-pretty/compare/v13.1.1...v13.1.2 )
---
updated-dependencies:
- dependency-name: pino-pretty
dependency-version: 13.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 16:46:28 +02:00
dependabot[bot]
830ed6149f
core: bump openapitools/openapi-diff from 2.1.3 to 2.1.4 in /scripts/api ( #17482 )
...
Bumps openapitools/openapi-diff from 2.1.3 to 2.1.4.
---
updated-dependencies:
- dependency-name: openapitools/openapi-diff
dependency-version: 2.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-15 16:46:14 +02:00
Marcelo Elizeche Landó
d640fc7024
web/admin: Add link to the docs in the import flow dialog ( #17436 )
...
* Add link to the docs in the import flow dialog
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* Use doclink
---------
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-10-15 16:46:03 +02:00
Erik Ahlund
619fdb506f
stages/prompt: add ability to set separate labels and values for choices ( #16693 )
...
* Choices can have value and label
Value and label are set turned to a string.
This will make choices into a Array<{ [key: string]: any; }> | null which at some point it should be a defined interface.
* Auto Updated schema.yml
* Used label and value in choice
Label and Value are used for Dropdown and RadioButtonGroup. Strings are still accepted.
* docs: Updated stages/prompt documentation
* Updated docs for initial-value
Also fixed wrong choice example in previous docs changes
* Check if choice is dict
Choice can of course be anything, we shouldn't assume it's string or dict
* Check if choice is dict for initial value
Same as before, choice can be anything. We check if it's explicitely a dict
* Added tests for dict choices
* ran make lint-fix
* Apply typo fix from code review
Co-authored-by: macmoritz <49832924+macmoritz@users.noreply.github.com >
Signed-off-by: Erik Ahlund <erik@ahlund.me >
* stages/prompt: add PromptChoiceSerializer
choices are now a list of PromptChoiceSerializer instead of a generic DictField.
The PromptChallenge also forces the use of value/label object.
* web: use PromptChoice object
The front end can now safely use choices as an array of PromptChoice instead of it being either a string or an object.
* slight revise
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* small ui
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Erik Ahlund <erik@ahlund.me >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: macmoritz <49832924+macmoritz@users.noreply.github.com >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-15 16:30:27 +02:00
Dominic R
06bfcf04e3
outpost/proxyv2: postgresstore: credential refresh ( #17414 )
...
* outpost/proxyv2: postgresstore: credential refresh
* wip
* mabye
* mabye fix
2025-10-15 15:22:27 +02:00
authentik-automation[bot]
d0b69bafac
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #17474 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-15 14:54:21 +02:00
Jens L.
bd0944fed2
providers/oauth2: allow setting logout method always ( #17470 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-14 23:34:26 +02:00
dependabot[bot]
028780a5d7
web: bump chromedriver from 141.0.1 to 141.0.2 in /web ( #17439 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 141.0.1 to 141.0.2.
- [Commits](https://github.com/giggio/node-chromedriver/compare/141.0.1...141.0.2 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 141.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 23:32:52 +02:00
dependabot[bot]
bf62a44866
web: bump @hcaptcha/types from 1.0.4 to 1.1.0 in /web ( #17440 )
...
Bumps @hcaptcha/types from 1.0.4 to 1.1.0.
---
updated-dependencies:
- dependency-name: "@hcaptcha/types"
dependency-version: 1.1.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-10-14 23:32:43 +02:00
dependabot[bot]
6185522ab6
ci: bump softprops/action-gh-release from 2.4.0 to 2.4.1 ( #17393 )
...
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release ) from 2.4.0 to 2.4.1.
- [Release notes](https://github.com/softprops/action-gh-release/releases )
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md )
- [Commits](aec2ec56f9...6da8fa9354 )
---
updated-dependencies:
- dependency-name: softprops/action-gh-release
dependency-version: 2.4.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 23:32:21 +02:00
dependabot[bot]
898a166e41
core: bump astral-sh/uv from 0.9.1 to 0.9.2 ( #17394 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.1 to 0.9.2.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.1...0.9.2 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 23:32:15 +02:00
dependabot[bot]
8361ce9234
core: bump github.com/getsentry/sentry-go from 0.35.3 to 0.36.0 ( #17437 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.35.3 to 0.36.0.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.35.3...v0.36.0 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.36.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-10-14 23:32:11 +02:00
dependabot[bot]
31bef83f6a
web: bump @rollup/plugin-commonjs from 28.0.6 to 28.0.7 in /web in the rollup group across 1 directory ( #17438 )
...
web: bump @rollup/plugin-commonjs
Bumps the rollup group with 1 update in the /web directory: [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs ).
Updates `@rollup/plugin-commonjs` from 28.0.6 to 28.0.7
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md )
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.7/packages/commonjs )
---
updated-dependencies:
- dependency-name: "@rollup/plugin-commonjs"
dependency-version: 28.0.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 23:32:07 +02:00
transifex-integration[bot]
4e6b2cf70a
translate: Updates for file web/xliff/en.xlf in fr ( #17443 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-14 23:30:57 +02:00
Marcelo Elizeche Landó
5e651716e3
core: bump wcwidth from 0.2.13 to v0.2.14 ( #17467 )
2025-10-14 23:30:40 +02:00
Marcelo Elizeche Landó
f4de574ee4
core: bump websocket-client from 1.8.0 to v1.9.0 ( #17468 )
2025-10-14 23:30:29 +02:00
Marcelo Elizeche Landó
47f2c65f21
core: bump yarl from 1.20.1 to v1.22.0 ( #17469 )
2025-10-14 23:28:36 +02:00
dependabot[bot]
888fd5e1a6
web: bump @formatjs/intl-listformat from 7.7.12 to 7.7.13 in /web ( #17441 )
...
Bumps [@formatjs/intl-listformat](https://github.com/formatjs/formatjs ) from 7.7.12 to 7.7.13.
- [Release notes](https://github.com/formatjs/formatjs/releases )
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@7.7.12...@formatjs/intl-listformat@7.7.13 )
---
updated-dependencies:
- dependency-name: "@formatjs/intl-listformat"
dependency-version: 7.7.13
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 23:27:07 +02:00
dependabot[bot]
4abd987332
web: bump knip from 5.64.2 to 5.65.0 in /web ( #17442 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.64.2 to 5.65.0.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.65.0/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.65.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-10-14 23:27:02 +02:00
Marcelo Elizeche Landó
8e785f2493
core: bump aiohttp from 3.12.15 to v3.13.0 ( #17445 )
2025-10-14 23:26:58 +02:00
Marcelo Elizeche Landó
e4dc90d2f8
core: bump asgiref from 3.9.2 to v3.10.0 ( #17446 )
2025-10-14 23:26:55 +02:00
Marcelo Elizeche Landó
d43b6be656
core: bump attrs from 25.3.0 to v25.4.0 ( #17447 )
2025-10-14 23:26:52 +02:00
Marcelo Elizeche Landó
f9ac08b54d
core: bump azure-identity from 1.25.0 to v1.25.1 ( #17448 )
2025-10-14 23:26:48 +02:00
Marcelo Elizeche Landó
79f35e7a80
core: bump blessed from 1.21.0 to v1.22.0 ( #17449 )
2025-10-14 23:26:45 +02:00
Marcelo Elizeche Landó
cc35ec04e1
core: bump boto3 from 1.40.43 to v1.40.51 ( #17450 )
2025-10-14 23:26:41 +02:00
Marcelo Elizeche Landó
0780295390
core: bump cachetools from 5.5.2 to v6.2.1 ( #17451 )
2025-10-14 23:26:36 +02:00
Marcelo Elizeche Landó
cccc831e4e
core: bump certifi from 2025.8.3 to v2025.10.5 ( #17452 )
2025-10-14 23:26:33 +02:00
Marcelo Elizeche Landó
a6a7ffbd1d
core: bump charset-normalizer from 3.4.3 to v3.4.4 ( #17453 )
2025-10-14 23:26:29 +02:00
Marcelo Elizeche Landó
9f18d6b09d
core: bump django-stubs-ext from 5.2.5 to v5.2.7 ( #17454 )
2025-10-14 23:26:25 +02:00
Marcelo Elizeche Landó
5789f29758
core: bump frozenlist from 1.7.0 to v1.8.0 ( #17455 )
2025-10-14 23:26:22 +02:00
Marcelo Elizeche Landó
1ae0560b1b
core: bump google-api-core from 2.25.1 to v2.26.0 ( #17456 )
2025-10-14 23:26:19 +02:00
Marcelo Elizeche Landó
3989659a4f
core: bump httptools from 0.6.4 to v0.7.1 ( #17457 )
2025-10-14 23:26:15 +02:00
Marcelo Elizeche Landó
8ddd2932ac
core: bump idna from 3.10 to v3.11 ( #17458 )
2025-10-14 23:26:11 +02:00
Marcelo Elizeche Landó
b29ef43fb5
core: bump jsii from 1.115.0 to v1.116.0 ( #17459 )
2025-10-14 23:26:07 +02:00
Marcelo Elizeche Landó
54572b8170
core: bump msgpack from 1.1.1 to v1.1.2 ( #17460 )
2025-10-14 23:26:03 +02:00
Marcelo Elizeche Landó
97406df87d
core: bump multidict from 6.6.4 to v6.7.0 ( #17461 )
2025-10-14 23:26:00 +02:00
Marcelo Elizeche Landó
3320a12dd2
core: bump platformdirs from 4.4.0 to v4.5.0 ( #17462 )
2025-10-14 23:25:57 +02:00
Marcelo Elizeche Landó
c46fa52203
core: bump propcache from 0.3.2 to v0.4.1 ( #17463 )
2025-10-14 23:25:54 +02:00
Marcelo Elizeche Landó
b464394747
core: bump referencing from 0.36.2 to v0.37.0 ( #17464 )
2025-10-14 23:25:50 +02:00
Marcelo Elizeche Landó
6567637274
core: bump rich from 14.1.0 to v14.2.0 ( #17465 )
2025-10-14 23:25:47 +02:00
Marcelo Elizeche Landó
0ef2c476a3
core: bump watchfiles from 1.1.0 to v1.1.1 ( #17466 )
2025-10-14 23:25:44 +02:00
Tana M Berry
c3a48351a3
website/docs: add a section about new param login_hint ( #17415 )
...
* add section for login_hint
* tweak headings
* Update website/docs/users-sources/sources/protocols/oauth/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/users-sources/sources/protocols/oauth/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/users-sources/sources/protocols/oauth/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/users-sources/sources/protocols/oauth/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/users-sources/sources/protocols/oauth/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-14 15:36:49 -05:00
Tana M Berry
b075056ec8
website/docs: add content about new option SCIM + OAuth ( #17067 )
...
* more content
* rearrange, more content
* change link to oauth source
* Update website/docs/add-secure-apps/providers/scim/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/providers/scim/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* dewi edits
* dewi edit2
* resize image, add examples
* tweak
* Update website/docs/add-secure-apps/providers/scim/index.md
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* jens edits
* more content, fix links
* mpre tweaks
* more info about ServiceProviderConfig
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* tweak to bumb build
* Update website/docs/add-secure-apps/providers/scim/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/providers/scim/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/applications/manage_apps.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/providers/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/applications/manage_apps.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Apply suggestion from @BeryJu
Signed-off-by: Jens L. <jens@beryju.org >
* Apply suggestion from @BeryJu
Signed-off-by: Jens L. <jens@beryju.org >
* Apply suggestion from @BeryJu
Signed-off-by: Jens L. <jens@beryju.org >
* Apply suggestion from @BeryJu
Signed-off-by: Jens L. <jens@beryju.org >
* Update website/docs/add-secure-apps/providers/scim/index.md
Signed-off-by: Jens L. <jens@beryju.org >
* add version badge
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-14 13:10:10 -05:00
Marc 'risson' Schmitt
d91dcf4eef
root: move API client generation to docker-compose ( #17434 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-14 17:55:44 +02:00
dependabot[bot]
296b348bd2
web: bump the react group across 2 directories with 1 update ( #17425 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Bumps the react group with 1 update in the /web directory: [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Updates `@types/react-dom` from 19.2.1 to 19.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react-dom` from 19.2.1 to 19.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.2.2
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 13:26:15 +02:00
dependabot[bot]
d0fe59454c
web: bump the eslint group across 2 directories with 3 updates ( #17424 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/typescript-eslint )
Updates `typescript-eslint` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.46.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 13:02:26 +02:00
dependabot[bot]
65458e5698
core: bump library/golang from 1.25.2-bookworm to 1.25.3-bookworm ( #17420 )
...
Bumps library/golang from 1.25.2-bookworm to 1.25.3-bookworm.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.3-bookworm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 12:43:22 +02:00
dependabot[bot]
047ce0d789
website: bump @types/react-dom from 19.2.1 to 19.2.2 in /website ( #17423 )
...
Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ) from 19.2.1 to 19.2.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 12:42:28 +02:00
dependabot[bot]
4e94401d10
website: bump the eslint group in /website with 3 updates ( #17422 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/parser )
Updates `typescript-eslint` from 8.46.0 to 8.46.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.1/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 12:42:16 +02:00
dependabot[bot]
57e562a2b9
ci: bump actions/setup-node from 5.0.0 to 6.0.0 ( #17421 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](a0853c2454...2028fbc5c2 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-14 12:42:02 +02:00
dependabot[bot]
9bbb2a8101
web: bump dompurify from 3.2.7 to 3.3.0 in /web ( #17426 )
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 3.2.7 to 3.3.0.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.2.7...3.3.0 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-version: 3.3.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-10-14 12:41:38 +02:00
dependabot[bot]
05ff5dbeac
web: bump core-js from 3.45.1 to 3.46.0 in /web ( #17427 )
...
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js ) from 3.45.1 to 3.46.0.
- [Release notes](https://github.com/zloirock/core-js/releases )
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/zloirock/core-js/commits/v3.46.0/packages/core-js )
---
updated-dependencies:
- dependency-name: core-js
dependency-version: 3.46.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-10-14 12:41:29 +02:00
dependabot[bot]
dddfa99161
web: bump type-fest from 5.0.1 to 5.1.0 in /web ( #17428 )
...
Bumps [type-fest](https://github.com/sindresorhus/type-fest ) from 5.0.1 to 5.1.0.
- [Release notes](https://github.com/sindresorhus/type-fest/releases )
- [Commits](https://github.com/sindresorhus/type-fest/compare/v5.0.1...v5.1.0 )
---
updated-dependencies:
- dependency-name: type-fest
dependency-version: 5.1.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-10-14 12:41:17 +02:00
authentik-automation[bot]
62fa2ec85e
core, web: update translations ( #17418 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-14 12:38:49 +02:00
Jens L.
274b002043
core: fix application and source's fa:// icon ( #17416 )
...
* core: fix application and source's fa:// icon
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-14 00:53:14 +02:00
Dewi Roberts
14d0bf22fa
webiste/integrations: update fortigate ssl doc ( #17406 )
...
* Update guide
* Added periods
2025-10-13 22:16:29 +01:00
Marc 'risson' Schmitt
b7453a74ae
web/admin: remove maxlength on user display name ( #17412 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-13 17:49:57 +02:00
dependabot[bot]
4319a73872
website: bump @types/node from 24.7.1 to 24.7.2 in /website ( #17395 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.1 to 24.7.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 17:49:17 +02:00
dependabot[bot]
2aabcfe312
web: bump @rollup/plugin-node-resolve from 16.0.2 to 16.0.3 in /web in the rollup group across 1 directory ( #17396 )
...
web: bump @rollup/plugin-node-resolve
Bumps the rollup group with 1 update in the /web directory: [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve ).
Updates `@rollup/plugin-node-resolve` from 16.0.2 to 16.0.3
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md )
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.3/packages/node-resolve )
---
updated-dependencies:
- dependency-name: "@rollup/plugin-node-resolve"
dependency-version: 16.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 17:49:04 +02:00
dependabot[bot]
9662cc58cd
web: bump @goauthentik/api from 2025.10.0-rc1-1760097716 to 2025.10.0-rc1-1760106928 in /web in the goauthentik group across 1 directory ( #17397 )
...
web: bump @goauthentik/api
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/api` from 2025.10.0-rc1-1760097716 to 2025.10.0-rc1-1760106928
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1760106928
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 17:48:55 +02:00
dependabot[bot]
bfa9715d2c
web: bump @types/node from 24.7.1 to 24.7.2 in /packages/esbuild-plugin-live-reload ( #17398 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.1 to 24.7.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 17:48:46 +02:00
dependabot[bot]
b865e131e3
web: bump typedoc from 0.28.13 to 0.28.14 in /packages/esbuild-plugin-live-reload ( #17399 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.13 to 0.28.14.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.13...v0.28.14 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.14
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 17:48:23 +02:00
dependabot[bot]
14a7b00ff7
web: bump @types/node from 24.7.1 to 24.7.2 in /packages/prettier-config ( #17400 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.1 to 24.7.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 17:48:14 +02:00
transifex-integration[bot]
58f3c433ee
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #17408 )
...
Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-13 17:47:54 +02:00
transifex-integration[bot]
c680518fd4
translate: Updates for file web/xliff/en.xlf in fr ( #17409 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-13 17:47:38 +02:00
Teffen Ellis
472b7c6626
web: User library UI fixes ( #17376 )
...
* web: Remove duplicate styles.
* web: Touch up contrast.
* web: Shrink searchbar.
* web: Flesh out library fixes.
* web: Refine layout.
* web: Touch up multi column.
* web: Fix header alignment.
* web: Fix up search behavior.
* web: Fix alignment with multiple columns.
* web: Wrap styles.
* web: Remove color override.
- note: I think this is deprecated.
* Fix up menu styles.
* web: Revert expansion component changes.
* web: rename.
* web: use row as default.
* web: Remove unused.
* web: Fix icon sizing.
* web: Fix sizing.
* slightly bigger cards
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix rac alignment
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* ok a bit bigger
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web: Adjust border.
* web: Fix properties.
* tweaks
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web: Fix multi-line alignment.
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-13 17:14:01 +02:00
Jens L.
97e04a902d
tests/e2e: switch chrome for chromium ( #17407 )
...
* tests/e2e: switch chrome for chromium
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* sigh
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix diff?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix git diff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* cleanup shadow dom getter
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-13 16:36:41 +02:00
Marc 'risson' Schmitt
cfeaf0126e
website/docs: background tasks: fix status description ( #17410 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-13 16:03:21 +02:00
Simonyi Gergő
6c4eefbe41
website/docs: fix token duration ( #17405 )
...
off by a few orders of magnitude :)
Signed-off-by: Simonyi Gergő <28359278+gergosimonyi@users.noreply.github.com >
2025-10-13 14:30:28 +02:00
dependabot[bot]
90e51e9232
web: bump @types/node from 22.15.19 to 24.7.2 in /web ( #17401 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.7.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.2
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-13 13:31:31 +02:00
Jens L.
53b357d96b
providers/rac: bump guacd to 1.6 ( #17392 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-13 12:30:10 +02:00
dependabot[bot]
1430a75e13
core: bump goauthentik.io/api/v3 from 3.2025100.20 to 3.2025100.23 ( #17388 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.20 to 3.2025100.23.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.20...v3.2025100.23 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.23
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-11 15:36:45 +02:00
authentik-automation[bot]
2898950efc
core, web: update translations ( #17387 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-11 02:46:18 +02:00
Jens L.
80b039b522
ci: migrate npm publish to OIDC ( #17386 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-11 02:45:55 +02:00
Marc 'risson' Schmitt
23357f45e9
*: remove Redis leftovers ( #17146 )
...
* *: remove Redis leftovers
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* more removal
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix leftover
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more removal
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* lint
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix broken anchor
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* re-add redis for previous version migrations
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-10-11 01:46:53 +02:00
Marc 'risson' Schmitt
7dbdb4c613
tasks: store messages in separate table ( #17359 )
2025-10-10 14:35:13 +00:00
Jens L.
92edd1d2e5
providers/saml: fix timezone naive warning ( #17382 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-10 14:24:43 +00:00
authentik-automation[bot]
373a8de0d3
web: bump API Client version ( #17379 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-10 14:04:05 +02:00
Connor Peshek
48797c6d35
providers/saml: add frontchannel idp slo, backchannel post idp slo ( #15863 )
...
* providers/saml: add frontchannel idp slo, backchannel post idp slo
* move signal to user_logout stage
* split logic for injection of stages into proper providers signals
* cleanup data structures
* scope stages
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* uuid pk
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* cleanup schema
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format, again
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update tasks.py
* Update pyproject.toml
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-10 12:01:39 +00:00
dependabot[bot]
95359dbec0
core: bump astral-sh/uv from 0.9.0 to 0.9.1 ( #17368 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.9.0...0.9.1 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 13:33:40 +02:00
dependabot[bot]
f05aeb3b56
website: bump @types/node from 24.7.0 to 24.7.1 in /website ( #17369 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.0 to 24.7.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 13:33:29 +02:00
dependabot[bot]
a04680779c
web: bump @sentry/browser from 10.18.0 to 10.19.0 in /web in the sentry group across 1 directory ( #17370 )
...
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 10.18.0 to 10.19.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/10.18.0...10.19.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.19.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-10-10 13:33:13 +02:00
dependabot[bot]
1571822d5b
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #17371 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 13:33:06 +02:00
dependabot[bot]
5df2f6fd0c
web: bump @types/node from 24.7.0 to 24.7.1 in /packages/esbuild-plugin-live-reload ( #17372 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.0 to 24.7.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 13:32:57 +02:00
dependabot[bot]
93f0b5a19d
web: bump @types/node from 24.7.0 to 24.7.1 in /packages/prettier-config ( #17373 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.7.0 to 24.7.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 13:32:51 +02:00
dependabot[bot]
f64fde226e
web: bump @types/node from 22.15.19 to 24.7.1 in /web ( #17374 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.7.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-10 13:31:51 +02:00
dependabot[bot]
deb66c6ab8
lifecycle/aws: bump aws-cdk from 2.1029.4 to 2.1030.0 in /lifecycle/aws ( #17375 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1029.4 to 2.1030.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1030.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1030.0
dependency-type: direct:development
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-10-10 13:31:12 +02:00
Dominic R
87a0001a5d
blueprints: regenerate schema ( #17365 )
...
* blueprints: regenerate schema
* idk
2025-10-10 13:02:02 +02:00
authentik-automation[bot]
504c520709
core, web: update translations ( #17367 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-10 09:17:43 +02:00
transifex-integration[bot]
a767c4ac1b
translate: Updates for file web/xliff/en.xlf in fr ( #17363 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-10 06:43:24 +00:00
Dewi Roberts
4816dc4c1c
website/docs: add email config section ( #16727 )
...
* Add email section and link to it from install guide
Co-authored-by: Andrew Berry <andrew@furrypaws.ca >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* WIP
* Typo
* WIP
* Apply suggestion
* Added TLS email config
* Apply suggestions
* Apply suggestions
* fix linting
* fix broken anchor
* Apply suggestions
* Fix extra line
---------
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-10-09 22:03:41 +00:00
transifex-integration[bot]
230b0a3453
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #17361 )
...
* Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
* Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
* Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
* Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
---------
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-10-09 17:47:29 +00:00
Dewi Roberts
2e03270dcf
website/docs: add entra id scim source ( #17357 )
...
* Create directories, oauth, scim and overview docs
* Minor changes to overview
* Update sidebar and complete docs
* Update website/docs/users-sources/sources/social-logins/entra-id/scim/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/entra-id/scim/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Fix table of contents
* Language change
* Language change
* Apply dominic's suggestions
* Update website/docs/users-sources/sources/social-logins/entra-id/oauth/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-09 17:50:23 +01:00
Dominic R
6dde8bdd4a
outpost: proxyv2: Use Postgres for the Embedded Outpost ( #16628 )
...
* wip
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* remove testing files
* a
* wip
* pls
* pls2
* a
* Update authentik/providers/proxy/models.py
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: Dominic R <dominic@sdko.org >
* makemigrations
* pls
* pls1000
* dont migrate in go
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* set uuid
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix more test cases
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better logging
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* set gorm nowfunc (gorm defaults to local time)
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* improve test db closing
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* move expiration to field
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dont' manually set table
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* refactor tests more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* more refactor
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix em
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* postgres cleanup is done by worker
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update expiry and set expiring
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@beryju.org >
2025-10-09 16:59:15 +02:00
Marc 'risson' Schmitt
634125205e
tasks: set uid early ( #17356 )
2025-10-09 13:41:53 +00:00
Marc 'risson' Schmitt
8368e93577
tasks: only set tenant on task creation ( #17358 )
2025-10-09 15:05:05 +02:00
dependabot[bot]
10c896d930
core: bump golang.org/x/oauth2 from 0.31.0 to 0.32.0 ( #17346 )
...
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2 ) from 0.31.0 to 0.32.0.
- [Commits](https://github.com/golang/oauth2/compare/v0.31.0...v0.32.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/oauth2
dependency-version: 0.32.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-10-09 13:53:17 +02:00
dependabot[bot]
b37f6e0c6a
web: bump eslint-plugin-react-hooks from 6.1.1 to 7.0.0 in /packages/eslint-config in the eslint group across 1 directory ( #17347 )
...
web: bump eslint-plugin-react-hooks
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks ).
Updates `eslint-plugin-react-hooks` from 6.1.1 to 7.0.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-hooks
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:41:38 +02:00
dependabot[bot]
61b00b7937
web: bump chromedriver from 141.0.0 to 141.0.1 in /web ( #17348 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 141.0.0 to 141.0.1.
- [Commits](https://github.com/giggio/node-chromedriver/compare/141.0.0...141.0.1 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 141.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:41:35 +02:00
dependabot[bot]
eab4c821fa
web: bump knip from 5.64.1 to 5.64.2 in /web ( #17349 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.64.1 to 5.64.2.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.64.2/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.64.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:41:32 +02:00
dependabot[bot]
cf5c700e08
web: bump @formatjs/intl-listformat from 7.7.11 to 7.7.12 in /web ( #17350 )
...
Bumps [@formatjs/intl-listformat](https://github.com/formatjs/formatjs ) from 7.7.11 to 7.7.12.
- [Release notes](https://github.com/formatjs/formatjs/releases )
- [Commits](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@7.7.11...@formatjs/intl-listformat@7.7.12 )
---
updated-dependencies:
- dependency-name: "@formatjs/intl-listformat"
dependency-version: 7.7.12
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:41:29 +02:00
dependabot[bot]
f0cef0174e
web: bump pino from 9.13.0 to 10.0.0 in /web ( #17351 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.13.0 to 10.0.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.13.0...v10.0.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:41:25 +02:00
dependabot[bot]
c907f201ad
core: bump axllent/mailpit from v1.27.9 to v1.27.10 in /tests/e2e ( #17352 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 11:38:52 +00:00
Jens L.
3d489bd0e1
enterprise/providers/gws+entra: fix group integrity error during discovery ( #17355 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-09 13:31:08 +02:00
authentik-automation[bot]
4777bbd0eb
core, web: update translations ( #17342 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-09 13:25:21 +02:00
dependabot[bot]
99ee39dcc2
ci: bump snok/container-retention-policy from 2.2.1 to 3.0.1 ( #17344 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:25:03 +02:00
dependabot[bot]
c1ab5fd7a9
core: bump goauthentik.io/api/v3 from 3.2025100.18 to 3.2025100.20 ( #17345 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-09 13:24:43 +02:00
Marc 'risson' Schmitt
c8caeef214
packages/django-dramatiq-postgres: broker: task retrieval fixes and improvements ( #17335 )
2025-10-09 13:22:03 +02:00
Jens L.
14bc8b8bd7
enterprise/providers/gws+entra: fix integrity error during discovery ( #17341 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-09 00:21:19 +02:00
authentik-automation[bot]
c85d150ec6
web: bump API Client version ( #17340 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-08 22:41:12 +02:00
Jens L.
bbf77002d5
api: Clean schema up more ( #17055 )
...
* api: better filtering
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* revamp prompt
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add common query param to dedupe
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* simplify paginated results
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* simplify error responses
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* keep error schemas
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better structure
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* ok simplifying too far
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix web
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove unused optimization
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* re-gen
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-08 22:35:10 +02:00
dependabot[bot]
f09e9d9d45
website: bump the eslint group in /website with 3 updates ( #17282 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/parser )
Updates `typescript-eslint` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 22:02:57 +02:00
dependabot[bot]
366746e503
web: bump the react group across 2 directories with 2 updates ( #17294 )
...
Bumps the react group with 2 updates in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Bumps the react group with 2 updates in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Updates `@types/react` from 19.2.0 to 19.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react-dom` from 19.2.0 to 19.2.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react` from 19.2.0 to 19.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react-dom` from 19.2.0 to 19.2.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react` from 19.2.0 to 19.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react-dom` from 19.2.0 to 19.2.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react` from 19.2.0 to 19.2.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react-dom` from 19.2.0 to 19.2.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.2
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.2
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 22:02:48 +02:00
Jens L.
70b07c1cf3
ci: migrate actions to commit hashes ( #17339 )
...
* remove deprecated action
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* migrate v1
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* cleanup tags
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove netlify action since its not maintained
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-08 21:50:25 +02:00
PinguDEV
731d4f5749
website/integrations: vaultwarden: clarify availability of feature ( #17338 )
...
* Add notice to describe that it currently only works with the testing image
Signed-off-by: PinguDEV <82669329+PinguDEV-original@users.noreply.github.com >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: PinguDEV <82669329+PinguDEV-original@users.noreply.github.com >
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-08 19:03:30 +00:00
Jens L.
dc591545ea
web/admin: rework task status summary ( #17337 )
...
* web/admin: rework task status summary
fix not updating on refresh, fix font size, add spinner
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* use var
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-08 20:12:41 +02:00
Marc 'risson' Schmitt
a4a6c1fe3b
tasks: show number of retries and planned execution time ( #17295 )
...
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-10-08 16:45:18 +02:00
Marc 'risson' Schmitt
89e907e7e7
blueprints: ensure tasks retry on database errors ( #17333 )
2025-10-08 14:44:48 +00:00
dependabot[bot]
2781c73567
website: bump @types/react from 19.2.0 to 19.2.2 in /website ( #17324 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.2.0 to 19.2.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.2.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 16:21:00 +02:00
dependabot[bot]
685a2d308e
web: bump @playwright/test from 1.55.1 to 1.56.0 in /web ( #17328 )
...
Bumps [@playwright/test](https://github.com/microsoft/playwright ) from 1.55.1 to 1.56.0.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.56.0 )
---
updated-dependencies:
- dependency-name: "@playwright/test"
dependency-version: 1.56.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-10-08 16:18:35 +02:00
dependabot[bot]
0d20019ce2
core: bump astral-sh/uv from 0.8.24 to 0.9.0 ( #17318 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.24 to 0.9.0.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.24...0.9.0 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.9.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-10-08 15:35:24 +02:00
dependabot[bot]
b436296f08
core: bump library/golang from 1.25.1-bookworm to 1.25.2-bookworm ( #17320 )
...
Bumps library/golang from 1.25.1-bookworm to 1.25.2-bookworm.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.2-bookworm
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:35:20 +02:00
dependabot[bot]
1b041e6c00
ci: bump github/codeql-action from 3 to 4 ( #17321 )
...
Bumps [github/codeql-action](https://github.com/github/codeql-action ) from 3 to 4.
- [Release notes](https://github.com/github/codeql-action/releases )
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md )
- [Commits](https://github.com/github/codeql-action/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:35:16 +02:00
dependabot[bot]
ef9a292a3c
core: bump goauthentik.io/api/v3 from 3.2025100.16 to 3.2025100.18 ( #17322 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.16 to 3.2025100.18.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.16...v3.2025100.18 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.18
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:35:13 +02:00
dependabot[bot]
607db6e17f
website: bump semver from 7.7.2 to 7.7.3 in /website ( #17323 )
...
Bumps [semver](https://github.com/npm/node-semver ) from 7.7.2 to 7.7.3.
- [Release notes](https://github.com/npm/node-semver/releases )
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md )
- [Commits](https://github.com/npm/node-semver/compare/v7.7.2...v7.7.3 )
---
updated-dependencies:
- dependency-name: semver
dependency-version: 7.7.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:35:09 +02:00
dependabot[bot]
797196ded5
website: bump @types/react-dom from 19.2.0 to 19.2.1 in /website ( #17325 )
...
Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ) from 19.2.0 to 19.2.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:35:03 +02:00
dependabot[bot]
47f6fbdf45
web: bump @goauthentik/api from 2025.10.0-rc1-1759853794 to 2025.10.0-rc1-1759854379 in /web in the goauthentik group across 1 directory ( #17327 )
...
web: bump @goauthentik/api
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/api` from 2025.10.0-rc1-1759853794 to 2025.10.0-rc1-1759854379
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1759854379
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:35:00 +02:00
dependabot[bot]
014295128e
web: bump @sentry/browser from 10.17.0 to 10.18.0 in /web in the sentry group across 1 directory ( #17326 )
...
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 10.17.0 to 10.18.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/10.17.0...10.18.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.18.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-10-08 15:34:10 +02:00
dependabot[bot]
8d84a92f0d
web: bump semver from 7.7.2 to 7.7.3 in /web ( #17329 )
...
Bumps [semver](https://github.com/npm/node-semver ) from 7.7.2 to 7.7.3.
- [Release notes](https://github.com/npm/node-semver/releases )
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md )
- [Commits](https://github.com/npm/node-semver/compare/v7.7.2...v7.7.3 )
---
updated-dependencies:
- dependency-name: semver
dependency-version: 7.7.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-08 15:33:17 +02:00
Jens L.
27a2faa3a1
web/flows: fix card alignment ( #17332 )
...
* web/flows: fix card alignment
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also fix timeout
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-08 15:32:15 +02:00
Marc 'risson' Schmitt
7bd7cf8f4c
ci: test with postgres 14 and 18 ( #17331 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-08 12:03:40 +00:00
Marc 'risson' Schmitt
85ecb4b02b
lib/sync/outgoing: revert reduce number of db queries made (revert #14177 ) ( #17306 )
2025-10-08 11:15:37 +00:00
authentik-automation[bot]
96f5819262
*: Auto compress images ( #17317 )
...
* [create-pull-request] automated change
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Optimised images with calibre/image-actions
---------
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-08 03:04:31 +00:00
authentik-automation[bot]
cff3b1e5ad
core, web: update translations ( #17314 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-07 22:01:33 -04:00
authentik-automation[bot]
54a3e2c978
*: Auto compress images ( #17316 )
...
* [create-pull-request] automated change
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
* Optimised images with calibre/image-actions
---------
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: BeryJu <1932513+BeryJu@users.noreply.github.com >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-07 22:00:30 -04:00
Teffen Ellis
d80c7e9459
web/a11y: User library ( #17311 )
...
web/a11y: User library.
2025-10-07 21:57:03 -04:00
Teffen Ellis
cf16079d0f
web: Minimal mobile flow, revisions ( #17310 )
...
* web: Fix colors, labels, resizing.
* web: Fix missing monospace font.
2025-10-08 01:50:36 +00:00
Jens L.
4f235a1f7d
web/flows: update default flow background ( #17315 )
...
* web/flows: update default flow background
https://unsplash.com/photos/an-aerial-view-of-a-road-surrounded-by-trees-SpToBHAzC_I
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix compression
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Optimised images with calibre/image-actions
* shrink more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* and a bit more
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-08 02:46:23 +02:00
authentik-automation[bot]
7087e771bf
web: bump API Client version ( #17304 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-08 00:17:19 +02:00
Jens L.
84a3e9f372
rbac: fix role search fields ( #17305 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-07 23:04:57 +02:00
Teffen Ellis
091b10ddc4
web: Minimal mobile flow ( #17280 )
...
* web: Flesh out minimal mobile layout.
* web: Clean up contrast.
* web: Tidy classes. Add part selectors.
2025-10-07 20:25:06 +00:00
Jens L.
88583ae46b
web/admin: fix incorrect placeholder for scim provider ( #17308 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-07 20:45:18 +02:00
Teffen Ellis
a72cbcf8c0
website: Enable legacy integrations redirects. ( #17300 )
2025-10-07 17:15:30 +00:00
Marc 'risson' Schmitt
70f9ec760a
packages/django-channels-postgres: compression and connection pool ( #17303 )
2025-10-07 17:14:39 +00:00
Teffen Ellis
ef9f06848c
web: Fix card alignment, slotting, labeling ( #17307 )
...
web: Fix alignment, slotting.
2025-10-07 17:11:49 +00:00
Teffen Ellis
03b9f00fde
web/a11y: Fix missing screen reader class on fieldset legends. ( #17298 )
2025-10-07 10:06:32 -07:00
Jens L.
e3ae6eea00
tasks: add task status summary ( #17302 )
2025-10-07 18:20:31 +02:00
Marc 'risson' Schmitt
907ccd63a0
tasks: add preprocess, running and postprocess statuses ( #17297 )
2025-10-07 14:19:03 +00:00
Dominic R
90908314cd
web: Fix behavior for modals configured with closeAfterSuccessfulSubmit ( #17277 )
...
when a form inside a modal submits successfully, it dispatches an EVENT_REFRESH event that bubbles up through the DOM. Parent components like TablePage listen for this event to refresh their data.
so, when the parent component refreshes/re-renders in response to EVENT_REFRESH, it destroys and recreates the entire row including the modal element and that causes the modal to disappear even
though the ModalForm component never explicitly closed it.
2025-10-07 15:21:16 +02:00
Teffen Ellis
f1d92bc4d4
web: Responsive toolbar flow ( #17278 )
...
* web: Allow toolbars to overflow.
* web: Fix table toolbar wrapping.
* web: Remove extra space.
* web: Use consistent padding.
2025-10-07 14:42:03 +02:00
Dewi Roberts
688579a79b
website/integrations: update dokuwiki ( #17292 )
...
* More information on user identifier config, change docuwiki to dokuwiki and minor improvements
* Apply suggestion
2025-10-07 13:12:07 +01:00
authentik-automation[bot]
39de9a2c21
core, web: update translations ( #17275 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-07 14:09:48 +02:00
dependabot[bot]
89e9cabf6d
core: bump astral-sh/uv from 0.8.23 to 0.8.24 ( #17281 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.23 to 0.8.24.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.23...0.8.24 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.24
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 14:08:37 +02:00
dependabot[bot]
d8298e32f4
website: bump @types/node from 24.6.2 to 24.7.0 in /website ( #17283 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.2 to 24.7.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.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-10-07 14:08:16 +02:00
dependabot[bot]
6dd792d52e
web: bump the eslint group across 2 directories with 3 updates ( #17285 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/typescript-eslint )
Updates `typescript-eslint` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.45.0 to 8.46.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.46.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.46.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 14:08:01 +02:00
dependabot[bot]
948387bb7a
web: bump @types/node from 24.6.2 to 24.7.0 in /packages/esbuild-plugin-live-reload ( #17287 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.2 to 24.7.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.0
dependency-type: direct:development
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-10-07 14:07:42 +02:00
dependabot[bot]
0473f42991
web: bump @types/node from 24.6.2 to 24.7.0 in /packages/prettier-config ( #17288 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.2 to 24.7.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.0
dependency-type: direct:development
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-10-07 14:07:33 +02:00
dependabot[bot]
a23120542e
web: bump @types/node from 22.15.19 to 24.7.0 in /web ( #17289 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.7.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.7.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-07 14:07:25 +02:00
Deff
9b59eac32f
website/integrations: sssd: Updating config template to include default shell ( #17274 )
...
* Updating SSSD template to include default shell
* wip
---------
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-07 01:02:22 +00:00
Teffen Ellis
90d5cf2836
web/a11y: Flow Stages ( #17273 )
...
* web/a11y: Flow cards.
* web: Fix preferred contrast.
* web: Tidy labels, border.
* web: Fix compatibility mode selectors.
2025-10-06 19:02:07 -04:00
Teffen Ellis
88402e3d13
web/a11y: Flow inspector. ( #17271 )
...
* web/a11y: Flow inspector.
* web: Flesh out fieldset contrast colors.
* web: Fix card ARIA.
* web: Fix alignment, ARIA tree.
* web: Fix contrast. Tidy.
2025-10-06 17:03:33 -04:00
Marc 'risson' Schmitt
ae6c1906e4
packages/django-channels-postgres/layer: fix connection deadlock ( #17270 )
2025-10-06 18:43:00 +00:00
Marcelo Elizeche Landó
2108575b73
core: bump django to 5.2.7 ( #16324 )
...
* initial upgrade to django 5.2
* fix duo test
* fix merge conflicts
* fix uv.lock
* remove whitespace
* fix linting
* update django-tenants
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix migration commands
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix mypy
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* remove bumpversion
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* re-add get_banner_text
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-06 19:24:17 +02:00
Jens L.
47683480bf
core: fix absolute and relative path file uploads ( #17269 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-06 18:14:14 +02:00
Teffen Ellis
d25f140be3
web/a11y: Accessible scrollbars. ( #17253 )
2025-10-06 17:58:52 +02:00
Teffen Ellis
e6bf389922
web: Fix table column updates, template parsing ( #17254 )
...
* web: Fix column count calculation.
* web: Apply presentational class optionally.
* web: Fix header identification, ARIA matching.
* web: Remove unmatched closing tag.
2025-10-06 11:34:31 -04:00
Dewi Roberts
ecaea9c626
website/integrations: add launch url info to dokuwiki ( #17268 )
...
* Add line about launch url
* Language
2025-10-06 16:29:21 +01:00
Teffen Ellis
3259748866
web: Fix flow autofocus element targeting. ( #17255 )
2025-10-06 09:56:03 -04:00
dependabot[bot]
a3aedbd564
web: bump the rollup group across 1 directory with 5 updates ( #17261 )
...
Bumps the rollup group with 5 updates in the /web directory:
| Package | From | To |
| --- | --- | --- |
| [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ) | `4.52.3` | `4.52.4` |
| [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ) | `4.52.3` | `4.52.4` |
| [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) | `4.52.3` | `4.52.4` |
| [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve ) | `16.0.1` | `16.0.2` |
| [rollup](https://github.com/rollup/rollup ) | `4.52.3` | `4.52.4` |
Updates `@rollup/rollup-darwin-arm64` from 4.52.3 to 4.52.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.3...v4.52.4 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.52.3 to 4.52.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.3...v4.52.4 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.52.3 to 4.52.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.3...v4.52.4 )
Updates `@rollup/plugin-node-resolve` from 16.0.1 to 16.0.2
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md )
- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v16.0.2/packages/node-resolve )
Updates `rollup` from 4.52.3 to 4.52.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.3...v4.52.4 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.52.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.52.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.52.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/plugin-node-resolve"
dependency-version: 16.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.52.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:51:02 +02:00
Marc 'risson' Schmitt
4fb61bb991
packages/django-channels-postgres: init ( #17247 )
2025-10-06 13:39:28 +02:00
dependabot[bot]
bd421e5815
core: bump astral-sh/uv from 0.8.22 to 0.8.23 ( #17256 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.22 to 0.8.23.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.22...0.8.23 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.23
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:33:24 +02:00
dependabot[bot]
80e3dc18af
core: bump github.com/coreos/go-oidc/v3 from 3.15.0 to 3.16.0 ( #17257 )
...
Bumps [github.com/coreos/go-oidc/v3](https://github.com/coreos/go-oidc ) from 3.15.0 to 3.16.0.
- [Release notes](https://github.com/coreos/go-oidc/releases )
- [Commits](https://github.com/coreos/go-oidc/compare/v3.15.0...v3.16.0 )
---
updated-dependencies:
- dependency-name: github.com/coreos/go-oidc/v3
dependency-version: 3.16.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-10-06 13:33:11 +02:00
dependabot[bot]
bd71d6f29b
website: bump the eslint group in /website with 2 updates ( #17258 )
...
Bumps the eslint group in /website with 2 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) and [eslint](https://github.com/eslint/eslint ).
Updates `@eslint/js` from 9.36.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.37.0/packages/js )
Updates `eslint` from 9.36.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.36.0...v9.37.0 )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.37.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.37.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:32:35 +02:00
dependabot[bot]
1070a6212a
web: bump @spotlightjs/spotlight from 4.1.2 to 4.1.3 in /web in the sentry group across 1 directory ( #17259 )
...
web: bump @spotlightjs/spotlight
Bumps the sentry group with 1 update in the /web directory: @spotlightjs/spotlight.
Updates `@spotlightjs/spotlight` from 4.1.2 to 4.1.3
---
updated-dependencies:
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:32:26 +02:00
dependabot[bot]
0afbe0bd75
core: bump selenium/standalone-chrome from 140.0 to 141.0 in /tests/e2e ( #17264 )
...
Bumps selenium/standalone-chrome from 140.0 to 141.0.
---
updated-dependencies:
- dependency-name: selenium/standalone-chrome
dependency-version: '141.0'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:24:11 +02:00
dependabot[bot]
6d1947c42c
web: bump the eslint group across 2 directories with 3 updates ( #17260 )
...
Bumps the eslint group with 2 updates in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ) and [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks ).
Bumps the eslint group with 1 update in the /web directory: [eslint](https://github.com/eslint/eslint ).
Updates `eslint` from 9.36.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.36.0...v9.37.0 )
Updates `eslint-plugin-react-hooks` from 6.1.0 to 6.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks )
Updates `eslint` from 9.36.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/compare/v9.36.0...v9.37.0 )
Updates `@eslint/js` from 9.36.0 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Commits](https://github.com/eslint/eslint/commits/v9.37.0/packages/js )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.37.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint-plugin-react-hooks
dependency-version: 6.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.37.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.37.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:17:46 +02:00
dependabot[bot]
13f01d0d21
web: bump @codemirror/legacy-modes from 6.5.1 to 6.5.2 in /web ( #17262 )
...
Bumps [@codemirror/legacy-modes](https://github.com/codemirror/legacy-modes ) from 6.5.1 to 6.5.2.
- [Changelog](https://github.com/codemirror/legacy-modes/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/legacy-modes/compare/6.5.1...6.5.2 )
---
updated-dependencies:
- dependency-name: "@codemirror/legacy-modes"
dependency-version: 6.5.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:17:27 +02:00
dependabot[bot]
a02b10b21f
web: bump chromedriver from 140.0.4 to 141.0.0 in /web ( #17263 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 140.0.4 to 141.0.0.
- [Commits](https://github.com/giggio/node-chromedriver/compare/140.0.4...141.0.0 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 141.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-06 13:17:10 +02:00
authentik-automation[bot]
653d587dc0
core, web: update translations ( #17244 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-06 12:52:43 +02:00
Teffen Ellis
88c01f6ba5
web/a11y: User settings flow. ( #17219 )
...
- Fix label association.
- Fix autocomplete.
2025-10-05 23:37:55 -04:00
Teffen Ellis
a3c433162f
web: Fix low DPI on QR Codes. ( #17251 )
2025-10-05 22:41:42 -04:00
Javier Díaz Bustamante
760e0496b3
website/integrations: grafana: update role attribute path search to groups[*] ( #17249 )
...
Change groups to groups[*]
It won't iterate through the user's groups
Signed-off-by: Javier Díaz Bustamante <javidbu@gmail.com >
2025-10-05 18:35:25 +00:00
Teffen Ellis
c1d8709714
web: Fix flow view title setter. ( #17245 )
2025-10-05 20:12:13 +02:00
Dewi Roberts
ce1fc4eef4
website/integrations: fix mealie ( #17250 )
...
Adds mention of signing key because mealie requires it
2025-10-05 14:22:55 +01:00
Jens L.
6473a2a4e3
flows: redirect to next when accessing an unapplicable authentication flow while already authenticated ( #17243 )
...
* flows: redirect to next when accessing an unapplicable authentication flow while already authenticated
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix test
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-05 02:34:46 +02:00
Marc 'risson' Schmitt
13e211e184
tasks/middlewares/messages: make sure exceptions are always logged ( #17237 )
2025-10-04 16:41:07 +02:00
Teffen Ellis
f412079fcb
web: Flow fixes -- Captchas, form states, compatibility mode. ( #17226 )
...
* web: Fix text color priority.
* web: Fix centering/width in compatibility mode.
* web: Fix avatar and username alignment in compatibility mode.
* web: Invalidate captcha after submission failure.
* web: Fix grid column size. Add ARIA labels to flow executors.
* web: Fix horizontal tab alignment on pages without vertical tabs.
2025-10-04 01:33:06 +02:00
dependabot[bot]
27ca600917
website: bump react-dom and @types/react-dom in /website ( #17207 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ). These dependencies needed to be updated together.
Updates `react-dom` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom )
Updates `@types/react-dom` from 19.1.9 to 19.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: "@types/react-dom"
dependency-version: 19.2.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-10-04 00:54:55 +02:00
authentik-automation[bot]
3f0f6b20d5
core, web: update translations ( #17225 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-04 00:54:43 +02:00
dependabot[bot]
fd515ac48b
web: bump pino from 9.12.0 to 9.13.0 in /packages/esbuild-plugin-live-reload ( #17228 )
...
web: bump pino in /packages/esbuild-plugin-live-reload
Bumps [pino](https://github.com/pinojs/pino ) from 9.12.0 to 9.13.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.12.0...v9.13.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.13.0
dependency-type: direct:development
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-10-04 00:54:33 +02:00
Dewi Roberts
53b95ed262
website/integrations: update proxmox doc ( #17035 )
...
* Update proxmox doc
* Wording
* Applied suggestions
* Apply suggestion
2025-10-03 20:36:10 +00:00
dependabot[bot]
6fe83119f6
web: bump @codemirror/lang-html from 6.4.10 to 6.4.11 in /web ( #17229 )
...
Bumps [@codemirror/lang-html](https://github.com/codemirror/lang-html ) from 6.4.10 to 6.4.11.
- [Changelog](https://github.com/codemirror/lang-html/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/lang-html/compare/6.4.10...6.4.11 )
---
updated-dependencies:
- dependency-name: "@codemirror/lang-html"
dependency-version: 6.4.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 17:20:36 +02:00
dependabot[bot]
e8e3b0fbca
web: bump pino from 9.12.0 to 9.13.0 in /web ( #17231 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.12.0 to 9.13.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.12.0...v9.13.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.13.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-10-03 17:20:23 +02:00
dependabot[bot]
52c395cc92
web: bump @fortawesome/fontawesome-free from 7.0.1 to 7.1.0 in /web ( #17230 )
...
Bumps [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome ) from 7.0.1 to 7.1.0.
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases )
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md )
- [Commits](https://github.com/FortAwesome/Font-Awesome/compare/7.0.1...7.1.0 )
---
updated-dependencies:
- dependency-name: "@fortawesome/fontawesome-free"
dependency-version: 7.1.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-10-03 17:20:05 +02:00
dependabot[bot]
ac4e39d92a
web: bump vite from 7.1.7 to 7.1.9 in /web ( #17232 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.7 to 7.1.9.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.9/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 17:04:18 +02:00
dependabot[bot]
3bd7ee7a3d
ci: bump peter-evans/create-or-update-comment from 4 to 5 ( #17227 )
...
Bumps [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment ) from 4 to 5.
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases )
- [Commits](https://github.com/peter-evans/create-or-update-comment/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: peter-evans/create-or-update-comment
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-03 17:03:56 +02:00
Jens L.
66fcccdd39
packages/django-dramatiq-postgres: fix error when updating task with no changes ( #16728 )
2025-10-03 13:34:08 +00:00
Teffen Ellis
b5cf26451a
web: Fix avatar image load flash. ( #17220 )
2025-10-03 01:26:58 +02:00
Teffen Ellis
5cdc5e8d2b
web: Fix tab theme consistency, table overflow. ( #17222 )
2025-10-03 01:25:29 +02:00
Jens L.
c49bab9fc4
providers/rac: remove autobahn import ( #17224 )
...
not installed in production, oops
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-03 00:52:59 +02:00
dependabot[bot]
93e88686c8
web: bump the react group across 2 directories with 4 updates ( #17211 )
...
Bumps the react group with 4 updates in the /packages/docusaurus-config directory: [react](https://github.com/facebook/react/tree/HEAD/packages/react ), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Bumps the react group with 4 updates in the /web directory: [react](https://github.com/facebook/react/tree/HEAD/packages/react ), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Updates `react` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react )
Updates `@types/react` from 19.1.16 to 19.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `react-dom` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom )
Updates `@types/react-dom` from 19.1.9 to 19.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `react` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react )
Updates `@types/react` from 19.1.16 to 19.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `react-dom` from 19.1.1 to 19.2.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.2.0/packages/react-dom )
Updates `@types/react-dom` from 19.1.9 to 19.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: react-dom
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: react
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: react-dom
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 22:44:35 +02:00
Teffen Ellis
60dd28825d
web/a11y: Admin overview regions. ( #17170 )
...
* web/a11y: Admin overview regions.
* web: Fix status overflow on smaller viewports.
* web: Use present check over defined.
2025-10-02 10:32:18 -04:00
Jens L.
986f082b59
packages/django-postgres-cache: Initial implementation of postgres cache ( #16653 )
...
* start db cache
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update codeowners
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* handle db error in keys
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* implement rest of the methods
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix unrelated warning on startup for cache
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix migrations?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add readme
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dynamic dependency...?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* types
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rip out django_redis
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix get default
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* some cleanup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* simplify to use ORM
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove old migrations that use cache instead of doing dynamic things
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix migration
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update packages/django-postgres-cache/django_postgres_cache/models.py
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* Update packages/django-postgres-cache/django_postgres_cache/migrations/0001_initial.py
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* fix redis imports
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* more redis removal
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* lint
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-10-02 16:01:28 +02:00
Marc 'risson' Schmitt
8f644c3d3a
packages/django-dramatiq-postgres: broker: fix task expiration ( #17178 )
2025-10-02 12:45:56 +00:00
Marcelo Elizeche Landó
40811eabc9
core: Add ak_send_email function in expression context ( #16941 )
...
* Add ak_send_email function in expression context
* Add docs for ak_send_email
* refactor the flow, simplify tests
* fix linting
* Update website/docs/expressions/_functions.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* Catch specific exceptions, better imports
* Add the option to send email to multiple recipients
* fix linting
* move imports
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* simplify
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* simplify ak_send_email to use send_mails for all cases
* change :::note to :::info, fix linting
---------
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-02 14:12:13 +02:00
Marc 'risson' Schmitt
c715a596d8
root: channels: use postgres ( #13532 )
...
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-02 14:08:56 +02:00
dependabot[bot]
dc9007fb6f
ci: bump peter-evans/find-comment from 3 to 4 ( #17203 )
...
Bumps [peter-evans/find-comment](https://github.com/peter-evans/find-comment ) from 3 to 4.
- [Release notes](https://github.com/peter-evans/find-comment/releases )
- [Commits](https://github.com/peter-evans/find-comment/compare/v3...v4 )
---
updated-dependencies:
- dependency-name: peter-evans/find-comment
dependency-version: '4'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:50:42 +02:00
dependabot[bot]
acb02d5df3
core: bump goauthentik.io/api/v3 from 3.2025100.15 to 3.2025100.16 ( #17205 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.15 to 3.2025100.16.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.15...v3.2025100.16 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.16
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:50:11 +02:00
dependabot[bot]
72907f1320
website: bump @types/node from 24.6.1 to 24.6.2 in /website ( #17208 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.1 to 24.6.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:49:51 +02:00
dependabot[bot]
a8e62e4a97
core: bump github.com/go-ldap/ldap/v3 from 3.4.11 to 3.4.12 ( #17204 )
...
Bumps [github.com/go-ldap/ldap/v3](https://github.com/go-ldap/ldap ) from 3.4.11 to 3.4.12.
- [Release notes](https://github.com/go-ldap/ldap/releases )
- [Commits](https://github.com/go-ldap/ldap/compare/v3.4.11...v3.4.12 )
---
updated-dependencies:
- dependency-name: github.com/go-ldap/ldap/v3
dependency-version: 3.4.12
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:48:43 +02:00
dependabot[bot]
1cbec1876d
web: bump the eslint group across 2 directories with 2 updates ( #17209 )
...
Bumps the eslint group with 2 updates in the /packages/eslint-config directory: [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks ) and [eslint-plugin-wc](https://github.com/43081j/eslint-plugin-wc ).
Bumps the eslint group with 1 update in the /web directory: [eslint-plugin-wc](https://github.com/43081j/eslint-plugin-wc ).
Updates `eslint-plugin-react-hooks` from 5.2.0 to 6.1.0
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks )
Updates `eslint-plugin-wc` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/43081j/eslint-plugin-wc/releases )
- [Changelog](https://github.com/43081j/eslint-plugin-wc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/43081j/eslint-plugin-wc/compare/3.0.1...3.0.2 )
Updates `eslint-plugin-wc` from 3.0.1 to 3.0.2
- [Release notes](https://github.com/43081j/eslint-plugin-wc/releases )
- [Changelog](https://github.com/43081j/eslint-plugin-wc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/43081j/eslint-plugin-wc/compare/3.0.1...3.0.2 )
---
updated-dependencies:
- dependency-name: eslint-plugin-react-hooks
dependency-version: 6.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: eslint
- dependency-name: eslint-plugin-wc
dependency-version: 3.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: eslint-plugin-wc
dependency-version: 3.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:48:22 +02:00
dependabot[bot]
f5e5af9415
web: bump the storybook group across 1 directory with 5 updates ( #17210 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.9 to 9.1.10
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.10/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.9 to 9.1.10
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.10/code/addons/links )
Updates `@storybook/web-components` from 9.1.9 to 9.1.10
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.10/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.9 to 9.1.10
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.10/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.9 to 9.1.10
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.10/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:48:08 +02:00
dependabot[bot]
9cf8150df5
web: bump @types/node from 24.6.0 to 24.6.2 in /packages/esbuild-plugin-live-reload ( #17212 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.0 to 24.6.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:47:00 +02:00
dependabot[bot]
3038122c79
web: bump @types/node from 24.6.0 to 24.6.2 in /packages/prettier-config ( #17213 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.0 to 24.6.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:46:48 +02:00
dependabot[bot]
639d6da4f2
lifecycle/aws: bump aws-cdk from 2.1029.3 to 2.1029.4 in /lifecycle/aws ( #17214 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1029.3 to 2.1029.4.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1029.4/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1029.4
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:46:14 +02:00
dependabot[bot]
a89cc8e6d1
web: bump @types/node from 22.15.19 to 24.6.2 in /web ( #17215 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.6.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.2
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-02 11:45:55 +02:00
Teffen Ellis
7e8492aecf
web: Fix nested table column span behavior. ( #17177 )
2025-10-02 03:47:32 +00:00
Teffen Ellis
2e8a1d80a3
web: Fix numeric values in search select inputs, search input fixes ( #16928 )
...
* web: Fix numeric values in search select inputs.
* web: Fix ARIA attributes on menu items.
* web: Fix issues surrounding nested modal actions, selectors, labels.
* web: Prepare group forms for testing, ARIA, etc.
* web: Clarify when spinner buttons are busy.
* web: Fix dark theme toggle input visibility.
* web: Fix issue where tests complete before optional search inputs load.
* web: Add user creation tests, group creation. Flesh out fixtures.
2025-10-02 03:04:38 +00:00
Jens L.
9e4b6098fd
ci: don't log postgres always ( #17201 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-02 02:31:56 +02:00
authentik-automation[bot]
686631ca84
core, web: update translations ( #17202 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-02 02:30:02 +02:00
dependabot[bot]
e7565944e9
build(deps): bump django from 5.1.12 to 5.1.13 ( #17198 )
...
* build(deps): bump django from 5.1.12 to 5.1.13
Bumps [django](https://github.com/django/django ) from 5.1.12 to 5.1.13.
- [Commits](https://github.com/django/django/compare/5.1.12...5.1.13 )
---
updated-dependencies:
- dependency-name: django
dependency-version: 5.1.13
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
* lock
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-10-02 01:31:59 +02:00
Marcelo Elizeche Landó
8208a569da
core: bump boto3 from 1.40.31 to v1.40.43 ( #17182 )
2025-10-02 01:01:02 +02:00
Marcelo Elizeche Landó
511a43d8c0
core: bump asgiref from 3.9.1 to v3.9.2 ( #17180 )
2025-10-02 00:47:23 +02:00
Marcelo Elizeche Landó
1e3cd8677a
core: bump zope-interface from 8.0 to v8.0.1 ( #17197 )
2025-10-02 00:47:08 +02:00
Marcelo Elizeche Landó
f33a576993
core: bump anyio from 4.10.0 to v4.11.0 ( #17179 )
2025-10-02 00:46:19 +02:00
Marcelo Elizeche Landó
9bb3cb37bf
core: bump pyparsing from 3.2.4 to v3.2.5 ( #17193 )
2025-10-01 21:38:56 +00:00
Marcelo Elizeche Landó
422d6d8267
core: bump typing-inspection from 0.4.1 to v0.4.2 ( #17196 )
2025-10-01 21:38:30 +00:00
Marcelo Elizeche Landó
db74683803
core: bump std-uritemplate from 2.0.5 to v2.0.6 ( #17194 )
2025-10-01 21:37:27 +00:00
Marcelo Elizeche Landó
c1ec60fc24
core: bump click from 8.2.1 to v8.3.0 ( #17184 )
2025-10-01 21:30:17 +00:00
Marcelo Elizeche Landó
913457108d
core: bump bcrypt from 4.3.0 to v5.0.0 ( #17181 )
2025-10-01 21:27:53 +00:00
Marcelo Elizeche Landó
0dd5bf95b8
core: bump gevent from 25.8.2 to v25.9.1 ( #17185 )
2025-10-01 21:27:26 +00:00
Marcelo Elizeche Landó
2c94da4b63
core: bump microsoft-kiota-authentication-azure from 1.9.6 to v1.9.7 ( #17189 )
2025-10-01 21:25:07 +00:00
Marcelo Elizeche Landó
0d63bf74d1
core: bump jsii from 1.114.1 to v1.115.0 ( #17187 )
2025-10-01 21:23:44 +00:00
Marcelo Elizeche Landó
ffadac7450
core: bump txaio from 25.6.1 to v25.9.2 ( #17195 )
2025-10-01 23:16:06 +02:00
Marcelo Elizeche Landó
3d81e9f056
core: bump cattrs from 25.1.1 to v25.2.0 ( #17183 )
2025-10-01 23:13:38 +02:00
Marcelo Elizeche Landó
17682075e2
core: bump prometheus-client from 0.22.1 to v0.23.1 ( #17192 )
2025-10-01 23:12:08 +02:00
Marcelo Elizeche Landó
e538b88fd1
core: bump msal from 1.33.0 to v1.34.0 ( #17191 )
2025-10-01 23:11:13 +02:00
Marcelo Elizeche Landó
921246166a
core: bump microsoft-kiota-http from 1.9.6 to v1.9.7 ( #17190 )
2025-10-01 23:11:06 +02:00
Marcelo Elizeche Landó
68a5e738e6
core: bump markupsafe from 3.0.2 to v3.0.3 ( #17188 )
2025-10-01 21:00:59 +00:00
Marcelo Elizeche Landó
ae0823741e
core: bump google-auth from 2.40.3 to v2.41.1 ( #17186 )
2025-10-01 22:56:33 +02:00
Jens L.
2613f335c0
ci: output postgres logs for CI debugging ( #17176 )
...
* ci: output postgres logs for CI debugging
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* group logs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* actually log statements
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* stop container
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-01 21:27:39 +02:00
Marc 'risson' Schmitt
3d81a5dbd0
packages/django-dramatiq-postgres: typing ( #16978 )
2025-10-01 18:32:47 +02:00
Teffen Ellis
8f329f3b3e
web: Remove brand column. ( #17173 )
2025-10-01 12:07:24 -04:00
dependabot[bot]
fbe5f17378
web: bump the sentry group across 1 directory with 2 updates ( #17160 )
...
Bumps the sentry group with 2 updates in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and @spotlightjs/spotlight.
Updates `@sentry/browser` from 10.16.0 to 10.17.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/10.16.0...10.17.0 )
Updates `@spotlightjs/spotlight` from 4.1.1 to 4.1.2
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.17.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 17:55:08 +02:00
Teffen Ellis
2f3bac6b1a
web: Fix Recent Events toolbar height. ( #17172 )
2025-10-01 17:54:50 +02:00
authentik-automation[bot]
a76bf31f67
web: bump API Client version ( #17174 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-01 17:23:12 +02:00
Jens L.
5c4e6a0d9f
stages/user_login: add user to query ( #17171 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-10-01 17:04:37 +02:00
Alexander Tereshkin
eeb5cb08cd
sources: add Telegram source ( #15749 )
...
* sources: add Telegram source (#2232 )
* sources/telegram: put telegram user info into policy context (#2232 )
* sources/telegram: replace regular input for bot token with a "secret" one (#2232 )
* sources/telegram: fix typo on Telegram source form
* sources/telegram: added UserSourceConnection/GroupSourceConnection and SourceFlowManager subclasses for Telegram source
* sources/telegram: improved code layout
* sources/telegram: collapsed migrations
* sources/telegram: fix lint errors
* sources/telegram: fixed lint errors in docs
* sources/telegram: fix app config
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/users-sources/sources/social-logins/telegram/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* sources/telegram: add user source settings UI so that the users can disconnect Telegram source from their account
* sources/telegram: clean up code per @risson's suggestions
* sources/telegram: improve docs based on @tanberry's suggestions
* sources/telegram: fix minor docs formatting issue
* sources/teleram: add tests for views
* sources/telegram: update serielizer field types references to be in line with convention
* sources/telegram: add missing type annotations
* sources/telegram: add check for source.enabled in the redirect view
* sources/telegram: add pre-authentication flow to telegram source
* sources: add Telegram source (#2232 )
* sources/telegram: added UserSourceConnection/GroupSourceConnection and SourceFlowManager subclasses for Telegram source
* sources/telegram: collapsed migrations
* sources/telegram: fix lint errors
* sources/telegram: clean up code per @risson's suggestions
* sources/teregram: fix merge errors
* sources/telegram: improve docs wording
* Standardized documentation
* sources/telegram: added telegram source package to the list of ignored modules for mypy
* sources/telegram: fix TS lint errors
* sources/telegram: improve test coverage
* web: bump @types/node from 22.15.19 to 24.5.2 in /web (#16989 )
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.2
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---------
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 17:03:38 +02:00
Tana M Berry
1f2d411a7c
website/docs: updates to say use info not note ( #17141 )
...
* updates to say use info not note
* Update website/docs/developer-docs/docs/style-guide.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/docs/style-guide.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/docs/style-guide.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/docs/templates/reference.tmpl.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/docs/templates/reference.tmpl.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/docs/style-guide.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* dewi and dominic edits
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-10-01 09:51:28 -05:00
authentik-automation[bot]
c3dad275d1
core, web: update translations ( #17061 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-01 15:17:29 +02:00
authentik-automation[bot]
709cf89985
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #17154 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-10-01 13:54:21 +02:00
dependabot[bot]
49070a2404
core: bump library/golang from 1.25-bookworm to 1.25.1-bookworm ( #17155 )
...
Bumps library/golang from 1.25-bookworm to 1.25.1-bookworm.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25.1-bookworm
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:54:17 +02:00
dependabot[bot]
343ae59ece
website: bump @types/react from 19.1.15 to 19.1.16 in /website ( #17156 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.15 to 19.1.16.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.16
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:54:14 +02:00
dependabot[bot]
aa33384147
website: bump @types/node from 24.6.0 to 24.6.1 in /website ( #17157 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.6.0 to 24.6.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:54:11 +02:00
dependabot[bot]
d02e79ab51
website: bump typescript from 5.9.2 to 5.9.3 in /website ( #17158 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.2 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:54:07 +02:00
dependabot[bot]
c5cf1653fb
core: bump goauthentik.io/api/v3 from 3.2025100.14 to 3.2025100.15 ( #17159 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.14 to 3.2025100.15.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.14...v3.2025100.15 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.15
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:54:02 +02:00
dependabot[bot]
000fa61648
web: bump the storybook group across 1 directory with 5 updates ( #17161 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.8 to 9.1.9
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.9/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.8 to 9.1.9
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.9/code/addons/links )
Updates `@storybook/web-components` from 9.1.8 to 9.1.9
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.9/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.8 to 9.1.9
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.9/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.8 to 9.1.9
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.9/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:58 +02:00
dependabot[bot]
58516148c8
web: bump @goauthentik/api from 2025.10.0-rc1-1758925111 to 2025.10.0-rc1-1759234079 in /web in the goauthentik group across 1 directory ( #17162 )
...
web: bump @goauthentik/api
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/api` from 2025.10.0-rc1-1758925111 to 2025.10.0-rc1-1759234079
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1759234079
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:55 +02:00
dependabot[bot]
6464d89a16
web: bump the react group across 2 directories with 1 update ( #17163 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Bumps the react group with 1 update in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Updates `@types/react` from 19.1.15 to 19.1.16
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react` from 19.1.15 to 19.1.16
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.16
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.1.16
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:52 +02:00
dependabot[bot]
db1afbf206
web: bump typescript from 5.9.2 to 5.9.3 in /packages/docusaurus-config ( #17164 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.2 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:49 +02:00
dependabot[bot]
99e83254e5
web: bump typescript from 5.9.2 to 5.9.3 in /packages/esbuild-plugin-live-reload ( #17165 )
...
web: bump typescript in /packages/esbuild-plugin-live-reload
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.2 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:45 +02:00
dependabot[bot]
54603310fb
web: bump typescript from 5.9.2 to 5.9.3 in /packages/eslint-config ( #17166 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.2 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:42 +02:00
dependabot[bot]
4e84de4dee
web: bump typescript from 5.9.2 to 5.9.3 in /packages/prettier-config ( #17167 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.9.2 to 5.9.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.2...v5.9.3 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.3
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-10-01 13:53:39 +02:00
Teffen Ellis
b0892c4245
web: Fix default RADIUS EAP-TLS cert without license. ( #17152 )
...
* web: Fix default RADIUS EAP-TLS cert without license.
* web: Add default label.
* web: Fix enterprise only test path.
2025-10-01 07:16:21 -04:00
Teffen Ellis
1eb78ac9ae
web/a11y: Brand form ( #16011 )
...
* web: Flesh out form validation.
* web: Remove required attribute.
* web: Add labels.
* web: Use screen reader friendly labels.
2025-09-30 21:43:25 +00:00
Teffen Ellis
9af3ab3215
web/a11y: Notifications drawer ( #17031 )
...
* web/a11y: Notifications drawer
* web: Add strict label selection.
* web: Add ARIA roles to API drawer, distiguish from notifications region.
* web: Fix type.
2025-09-30 21:20:57 +00:00
Teffen Ellis
fb72088b80
web: Clean up render interfaces. ( #16031 )
...
Co-Author: ken@goauthentik.io
2025-09-30 19:23:55 +00:00
Teffen Ellis
a5b1ac1a56
web/a11y: Status label ( #17148 )
...
web/a11y: status label.
2025-09-30 14:35:55 -04:00
Teffen Ellis
25d128d7cc
web: Additional text field properties, ARIA fixes ( #17115 )
...
* web: Fix label ARIA.
* web: Wrap helper text on larger viewports.
* web: Add placeholder style.
* web: Fix ARIA grouping, label association.
* web: Add missing text properties. Fix ARIA association of help values.
2025-09-30 14:20:20 -04:00
Teffen Ellis
190683611c
web/e2e: User creation ( #17149 )
...
* web: Match autocomplete properties.
* web: Fix label ARIA.
* web: Fix ARIA grouping, label association.
* web: Add missing text properties. Fix ARIA association of help values.
* web: Flesh out tests, ARIA selection.
2025-09-30 14:18:48 -04:00
Teffen Ellis
3f84d76eba
web/a11y: Tree view ( #17147 )
...
* web/a11y: Tree view
* web: Add label.
2025-09-30 17:49:11 +00:00
Teffen Ellis
4d986aa4af
web/a11y: Fix dark theme color contrast ( #17144 )
...
* web: Fix color regressions.
* web: Use Patternfly color.
* web: Remove unused.
2025-09-30 13:29:15 -04:00
Teffen Ellis
5e64335717
web: Table refresh timestamp. ( #17145 )
...
* web: Table refresh timestamp.
* web: update label.
* web: Fix contrast, types.
2025-09-30 13:09:37 -04:00
Jens L.
54e1bcb791
providers/oauth2: add ui_locales support for OIDC ( #17140 )
...
* providers/oauth2: add ui_locales support for OIDC
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* sanitise language code
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* account for mocked requests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-30 17:51:08 +02:00
Dewi Roberts
f83b2920e6
website/integrations: convert all note boxes to info boxes ( #17139 )
...
Replace all note boxes with info boxes
2025-09-30 11:35:51 -04:00
Dewi Roberts
da69b6d716
website/docs: replaces all note boxes with info boxes ( #17138 )
...
Replaces all note boxes with info boxes
2025-09-30 11:34:08 -04:00
Dominic R
334c6d1c09
website/docs: developer docs: adjust sentence for writing docs ( #17137 )
...
As per Tana's request
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-30 13:38:54 +00:00
Dominic R
0b667c8019
core: Add input validation for service account creation ( #16964 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-30 14:07:41 +02:00
dependabot[bot]
4bceac1757
website: bump @types/node from 24.5.2 to 24.6.0 in /website ( #17126 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.2 to 24.6.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.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-09-30 13:04:03 +02:00
dependabot[bot]
e9ca1643ee
ci: bump actions/setup-node from 4 to 5 ( #17123 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 4 to 5.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](https://github.com/actions/setup-node/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-30 13:01:10 +02:00
dependabot[bot]
3b77e243b0
website: bump the build group in /website with 6 updates ( #17124 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.5.7` | `1.5.8` |
| [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.5.7` | `1.5.8` |
| [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.5.7` | `1.5.8` |
| [lightningcss-darwin-arm64](https://github.com/parcel-bundler/lightningcss ) | `1.30.1` | `1.30.2` |
| [lightningcss-linux-arm64-gnu](https://github.com/parcel-bundler/lightningcss ) | `1.30.1` | `1.30.2` |
| [lightningcss-linux-x64-gnu](https://github.com/parcel-bundler/lightningcss ) | `1.30.1` | `1.30.2` |
Updates `@rspack/binding-darwin-arm64` from 1.5.7 to 1.5.8
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.8/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.5.7 to 1.5.8
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.8/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.5.7 to 1.5.8
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.8/packages/rspack )
Updates `lightningcss-darwin-arm64` from 1.30.1 to 1.30.2
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases )
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.1...v1.30.2 )
Updates `lightningcss-linux-arm64-gnu` from 1.30.1 to 1.30.2
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases )
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.1...v1.30.2 )
Updates `lightningcss-linux-x64-gnu` from 1.30.1 to 1.30.2
- [Release notes](https://github.com/parcel-bundler/lightningcss/releases )
- [Commits](https://github.com/parcel-bundler/lightningcss/compare/v1.30.1...v1.30.2 )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.5.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.5.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.5.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: lightningcss-darwin-arm64
dependency-version: 1.30.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: lightningcss-linux-arm64-gnu
dependency-version: 1.30.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: lightningcss-linux-x64-gnu
dependency-version: 1.30.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-30 13:01:07 +02:00
dependabot[bot]
46cfa471f4
website: bump the eslint group in /website with 3 updates ( #17125 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/parser )
Updates `typescript-eslint` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-30 13:01:03 +02:00
dependabot[bot]
e48cfec1b4
web: bump @sentry/browser from 10.15.0 to 10.16.0 in /web in the sentry group across 1 directory ( #17127 )
...
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 10.15.0 to 10.16.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/10.15.0...10.16.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.16.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-09-30 13:00:59 +02:00
dependabot[bot]
47c09c30c6
web: bump the eslint group across 2 directories with 3 updates ( #17128 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/typescript-eslint )
Updates `typescript-eslint` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.44.1 to 8.45.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.45.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.45.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.45.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-30 13:00:56 +02:00
dependabot[bot]
639ad8cc94
lifecycle/aws: bump cross-env from 10.0.0 to 10.1.0 in /lifecycle/aws ( #17130 )
...
Bumps [cross-env](https://github.com/kentcdodds/cross-env ) from 10.0.0 to 10.1.0.
- [Release notes](https://github.com/kentcdodds/cross-env/releases )
- [Changelog](https://github.com/kentcdodds/cross-env/blob/main/CHANGELOG.md )
- [Commits](https://github.com/kentcdodds/cross-env/compare/v10.0.0...v10.1.0 )
---
updated-dependencies:
- dependency-name: cross-env
dependency-version: 10.1.0
dependency-type: direct:development
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-09-30 13:00:52 +02:00
dependabot[bot]
f8a8b70df8
web: bump pino from 9.11.0 to 9.12.0 in /packages/esbuild-plugin-live-reload ( #17131 )
...
web: bump pino in /packages/esbuild-plugin-live-reload
Bumps [pino](https://github.com/pinojs/pino ) from 9.11.0 to 9.12.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.11.0...v9.12.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.12.0
dependency-type: direct:development
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-09-30 13:00:49 +02:00
dependabot[bot]
973bc3898a
web: bump @types/node from 24.5.2 to 24.6.0 in /packages/esbuild-plugin-live-reload ( #17132 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.2 to 24.6.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.0
dependency-type: direct:development
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-09-30 13:00:45 +02:00
dependabot[bot]
b5230fcb2d
web: bump @types/node from 24.5.2 to 24.6.0 in /packages/prettier-config ( #17133 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.2 to 24.6.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.0
dependency-type: direct:development
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-09-30 13:00:41 +02:00
dependabot[bot]
6f38eaa1cd
web: bump @types/node from 22.15.19 to 24.6.0 in /web ( #17134 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.6.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.6.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-30 13:00:37 +02:00
Jens L.
48a7a707fd
root: fix rustup error during build when buildcache version is outdated ( #17121 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-30 13:00:06 +02:00
Teffen Ellis
78b156d149
web/a11y: Table header -- Search input ( #17117 )
...
* web: Fix pagination jitter during loading.
* web: Fix issues surrounding search input ARIA, alignment, etc.
2025-09-30 06:39:23 -04:00
Teffen Ellis
99b3daf46a
web: Fix table child alignment ( #17114 )
...
* web: Reduce cut off.
* web: Fix issue where inherited style causes modal issues.
2025-09-30 06:38:33 -04:00
Teffen Ellis
eb739ad4d7
web/a11y: Table header -- Fix pagination jitter, prepare alignment ( #17116 )
...
web: Fix pagination jitter during loading.
2025-09-30 12:36:33 +02:00
Teffen Ellis
eb5045b809
web: Fix native icon colors when using dark theme. ( #17118 )
2025-09-30 12:34:27 +02:00
Teffen Ellis
dd9ac5f838
web: Apply consistent background color when input is disabled or readonly. ( #17105 )
2025-09-29 23:25:54 +02:00
Jens L.
8107338742
website/docs: 2025.8.4 release notes ( #17119 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-29 23:22:28 +02:00
Marc 'risson' Schmitt
cfb126eaad
web: revert bump the swc group across 1 directory with 11 updates ( #17113 )
...
Revert "web: bump the swc group across 1 directory with 11 updates (#17079 )"
This reverts commit 38020de4f1 .
2025-09-29 22:39:48 +02:00
Marc 'risson' Schmitt
c65060b3d0
ci: fix node version in docker image build ( #17110 )
2025-09-29 18:28:44 +00:00
transifex-integration[bot]
79fc574980
translate: Updates for file web/xliff/en.xlf in pt_BR ( #17111 )
...
* Translate web/xliff/en.xlf in pt_BR
100% translated source file: 'web/xliff/en.xlf'
on 'pt_BR'.
* Translate web/xliff/en.xlf in pt_BR
100% translated source file: 'web/xliff/en.xlf'
on 'pt_BR'.
* Translate web/xliff/en.xlf in pt_BR
100% translated source file: 'web/xliff/en.xlf'
on 'pt_BR'.
* Translate web/xliff/en.xlf in pt_BR
100% translated source file: 'web/xliff/en.xlf'
on 'pt_BR'.
---------
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-29 18:22:52 +00:00
Marc 'risson' Schmitt
a87f182503
tasks: reduce default number of retries and max backoff ( #17107 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-09-29 17:17:23 +00:00
Marc 'risson' Schmitt
0dba78a757
packages/django-dramatiq-postgres: broker: fix new messages not being picked up when too many messages are waiting ( #17106 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-09-29 18:54:03 +02:00
boesr
bb8c007e63
website/docs: additional documentation for ak_user_by ( #17098 )
...
* adds additional documentation to search for user by attribute
* changes attribute naming in expression example
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: boesr <88541074+boesr@users.noreply.github.com >
* Adjusts ak_user_by to style guide
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: boesr <88541074+boesr@users.noreply.github.com >
* Update website/docs/expressions/_functions.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: boesr <88541074+boesr@users.noreply.github.com >
---------
Signed-off-by: boesr <88541074+boesr@users.noreply.github.com >
Co-authored-by: Jens L. <jens@beryju.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-09-29 10:49:23 -04:00
Jens L.
5cdd4d6d54
stages/identification: fix mismatched error messages ( #17090 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-29 16:24:18 +02:00
Jens L.
e0f754c789
providers/oauth2: fix authentication error with identical app passwords ( #17100 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-29 16:22:47 +02:00
transifex-integration[bot]
8be7a035d5
translate: Updates for file web/xliff/en.xlf in de ( #17099 )
...
Translate web/xliff/en.xlf in de
100% translated source file: 'web/xliff/en.xlf'
on 'de'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-29 14:05:29 +00:00
transifex-integration[bot]
ffef94dcc2
translate: Updates for file locale/en/LC_MESSAGES/django.po in de ( #17096 )
...
Translate locale/en/LC_MESSAGES/django.po in de
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'de'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-29 15:21:05 +02:00
dependabot[bot]
8ba0ccac48
core: bump goauthentik.io/api/v3 from 3.2025100.11 to 3.2025100.14 ( #17071 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.11 to 3.2025100.14.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.11...v3.2025100.14 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.14
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 15:20:19 +02:00
dependabot[bot]
90b1f483d1
website: bump @types/react from 19.1.13 to 19.1.15 in /website ( #17075 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.13 to 19.1.15.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 15:19:07 +02:00
Dominic R
3e587560eb
website/integrations: add cloudflare access redirect ( #17094 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-29 08:51:21 -04:00
Marc 'risson' Schmitt
f92abbf291
cmd/server/healthcheck: info log success instead of debug ( #17093 )
2025-09-29 12:48:38 +00:00
Dominic R
e0917490e3
website/integrations: cloudflare ( #17039 )
...
* wip
* e
* codereview
co-authored-by: dewi <dewi@goauthentik.io >
* Update website/integrations/security/cloudflare-access/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/integrations/security/cloudflare-access/index.md
Signed-off-by: Dominic R <dominic@sdko.org >
* lintfix
* Revert "lintfix"
This reverts commit b7643f4e8a .
* lintfix?????????
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestion from @tanberry
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-29 08:18:37 -04:00
Marc 'risson' Schmitt
30698778c3
rbac: optimize rbac assigned by users query ( #17015 )
2025-09-29 14:12:40 +02:00
Jérôme W.
922f01d7de
web: Fix layout class for 'row' in LibraryPage ( #16752 )
...
Fix layout class for 'row' in LibraryPage
Signed-off-by: Jérôme W. <jerome@wnetworks.org >
2025-09-29 14:11:24 +02:00
authentik-automation[bot]
8a1b6c8b07
*: Auto compress images ( #16733 )
...
[create-pull-request] automated change
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: dewi-tik <204862582+dewi-tik@users.noreply.github.com >
2025-09-29 13:39:15 +02:00
dependabot[bot]
e6d9293fea
core: bump github.com/go-openapi/runtime from 0.28.0 to 0.29.0 ( #17072 )
...
Bumps [github.com/go-openapi/runtime](https://github.com/go-openapi/runtime ) from 0.28.0 to 0.29.0.
- [Release notes](https://github.com/go-openapi/runtime/releases )
- [Commits](https://github.com/go-openapi/runtime/compare/v0.28.0...v0.29.0 )
---
updated-dependencies:
- dependency-name: github.com/go-openapi/runtime
dependency-version: 0.29.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-09-29 13:38:33 +02:00
dependabot[bot]
abc42d6f6d
website: bump the build group in /website with 6 updates ( #17076 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.19` | `1.13.20` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.19` | `1.13.20` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.19` | `1.13.20` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.19` | `1.13.20` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.19` | `1.13.20` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.19` | `1.13.20` |
Updates `@swc/core-darwin-arm64` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-x64-gnu` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/html-darwin-arm64` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/html-linux-x64-gnu` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 13:38:28 +02:00
dependabot[bot]
5807d86d20
web: bump @spotlightjs/spotlight from 4.0.0 to 4.1.1 in /web in the sentry group across 1 directory ( #17077 )
...
web: bump @spotlightjs/spotlight
Bumps the sentry group with 1 update in the /web directory: @spotlightjs/spotlight.
Updates `@spotlightjs/spotlight` from 4.0.0 to 4.1.1
---
updated-dependencies:
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.1.1
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-09-29 13:38:25 +02:00
dependabot[bot]
f1ba6f6786
web: bump the rollup group across 1 directory with 4 updates ( #17078 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.52.2 to 4.52.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.2...v4.52.3 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.52.2 to 4.52.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.2...v4.52.3 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.52.2 to 4.52.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.2...v4.52.3 )
Updates `rollup` from 4.52.2 to 4.52.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.2...v4.52.3 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.52.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.52.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.52.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.52.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 13:38:21 +02:00
dependabot[bot]
38020de4f1
web: bump the swc group across 1 directory with 11 updates ( #17079 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-darwin-arm64` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-darwin-x64` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-arm64-musl` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-x64-gnu` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-linux-x64-musl` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
Updates `@swc/core-win32-x64-msvc` from 1.13.19 to 1.13.20
- [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.13.19...v1.13.20 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.20
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 13:38:17 +02:00
dependabot[bot]
ba21c9a417
web: bump the react group across 2 directories with 1 update ( #17083 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Bumps the react group with 1 update in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Updates `@types/react` from 19.1.13 to 19.1.15
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react` from 19.1.13 to 19.1.15
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.15
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.1.15
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 13:38:14 +02:00
dependabot[bot]
860598fc61
web: bump knip from 5.64.0 to 5.64.1 in /web ( #17084 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.64.0 to 5.64.1.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.64.1/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.64.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 13:38:10 +02:00
dependabot[bot]
a2d5c652b8
web: bump pino from 9.11.0 to 9.12.0 in /web ( #17085 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.11.0 to 9.12.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.11.0...v9.12.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.12.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-09-29 13:38:06 +02:00
dependabot[bot]
fd731c23bf
core: bump axllent/mailpit from v1.27.8 to v1.27.9 in /tests/e2e ( #17086 )
...
Bumps axllent/mailpit from v1.27.8 to v1.27.9.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.27.9
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-29 13:38:03 +02:00
Jens L.
68292fede2
enterprise/stages/mtls: Improve Email address extraction ( #17068 )
...
* enterprise/stages/mtls: improve email attribute extraction
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* return error from outpost flow executor correctly
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-28 19:28:52 +02:00
Jens L.
dce25e3fc1
web/admin: fix federation sources automatically selected ( #17069 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-28 19:28:43 +02:00
Jens L.
b2c6ec284c
tasks: fix errors found in tests ( #17062 )
...
fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-27 03:47:22 +02:00
Jens L.
1790c7efed
tasks: fix logger name ( #17009 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-27 01:48:42 +02:00
authentik-automation[bot]
44a04705e3
web: bump API Client version ( #17058 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-26 22:45:15 +00:00
Jens L.
1028c962c7
providers/oauth2: only issue new refresh token if old one is about to expire ( #16905 )
...
* providers/oauth2: only issue new refresh token if old one is about to expire
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* make configurable
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* tests and fixes
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* sigh
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-27 00:18:14 +02:00
Jens L.
1c30c16c35
ci: cherry-pick branch in folder, include target branch in title ( #17054 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-26 18:45:01 +02:00
Connor Peshek
87a28d63ed
sources/saml: add location selection for Signature node ( #15626 )
...
* sources/saml: add location selection for Signature node
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: connor <connor@connors-MacBook-Pro.local >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: connor peshek <connorpeshek@connors-MacBook-Pro.local >
Co-authored-by: Katsushi Kobayashi < ikob@acm.org >
2025-09-26 11:07:51 -05:00
Jens L.
8c635ebb02
*/bindings: order by pk ( #17027 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-26 17:53:54 +02:00
authentik-automation[bot]
85e9803da8
core, web: update translations ( #17036 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-26 16:04:16 +02:00
authentik-automation[bot]
1db0ba1cc1
web: bump API Client version ( #17048 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-26 15:04:06 +02:00
Jens L.
b3e9c46cf4
tests/e2e: less hardcoded names ( #17047 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-26 14:55:16 +02:00
Jens L.
4ec785a598
core/api: Better naming for partial user/group serializer, optimise bindings ( #17022 )
...
* core: add index on Group.is_superuser (#17011 )
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update go code
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also optimise bindings
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* typo
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove unused
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-09-26 14:43:39 +02:00
dependabot[bot]
d4e5ee4bf5
core: bump goauthentik.io/api/v3 from 3.2025100.10 to 3.2025100.11 ( #17040 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.10 to 3.2025100.11.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.10...v3.2025100.11 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-26 14:23:56 +02:00
dependabot[bot]
3f87279535
website: bump the build group in /website with 6 updates ( #17042 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.5` | `1.13.19` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.5` | `1.13.19` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.5` | `1.13.19` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.8` | `1.13.19` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.8` | `1.13.19` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.8` | `1.13.19` |
Updates `@swc/core-darwin-arm64` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-x64-gnu` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/html-darwin-arm64` from 1.13.8 to 1.13.19
- [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.13.8...v1.13.19 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.8 to 1.13.19
- [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.13.8...v1.13.19 )
Updates `@swc/html-linux-x64-gnu` from 1.13.8 to 1.13.19
- [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.13.8...v1.13.19 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-26 14:23:47 +02:00
dependabot[bot]
5fe0de5267
web: bump the swc group across 1 directory with 11 updates ( #17043 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-darwin-arm64` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-darwin-x64` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-arm64-musl` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-x64-gnu` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-linux-x64-musl` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
Updates `@swc/core-win32-x64-msvc` from 1.13.5 to 1.13.19
- [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.13.5...v1.13.19 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.19
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-26 14:23:10 +02:00
Dominic R
8a0e14b3bb
website/integrations: Move Cloudflare Access Documentation. ( #17038 )
...
No other changes were made except moving this documentation. Cloudflare Access is authentication, not networking related, so it's logical to move it to this category.
2025-09-26 07:09:02 -04:00
Teffen Ellis
05e26b33e1
web: Fix skip-to-content element target, order. ( #17030 )
2025-09-25 19:43:24 -04:00
Teffen Ellis
b7df7d0478
web: Add disabled radio styles. ( #17026 )
...
* web: Add disabled radio styles.
* web: Use built-in system colors.
2025-09-25 18:55:16 +00:00
Teffen Ellis
ae518bf34f
web: Report unregistered elements. ( #17025 )
2025-09-25 19:12:28 +02:00
Patrick
4c6e0150a7
website/docs: Update Github expression to handle non-OAuth sources gracefully ( #17014 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-09-25 16:55:59 +00:00
Marc 'risson' Schmitt
ba1cea1516
tests/e2e: fix ldap tests following #17010 ( #17021 )
2025-09-25 16:21:41 +00:00
dependabot[bot]
7c70defa5a
web: bump @sentry/browser from 10.13.0 to 10.14.0 in /web in the sentry group across 1 directory ( #16966 )
...
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 10.13.0 to 10.14.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/10.13.0...10.14.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.14.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-09-25 17:57:45 +02:00
transifex-integration[bot]
e81f789248
translate: Updates for file locale/en/LC_MESSAGES/django.po in pt_BR ( #17001 )
...
Translate locale/en/LC_MESSAGES/django.po in pt_BR
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'pt_BR'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-25 15:52:04 +00:00
Marc 'risson' Schmitt
e2040dc3ad
lib/config: fix listen settings ( #17005 )
2025-09-25 15:31:17 +00:00
dependabot[bot]
6e1cd6793a
core: bump goauthentik.io/api/v3 from 3.2025100.8 to 3.2025100.10 ( #17019 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.8 to 3.2025100.10.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.8...v3.2025100.10 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-25 16:49:20 +02:00
Marc 'risson' Schmitt
6ba054b54c
core: add index on Group.is_superuser ( #17011 )
2025-09-25 16:33:57 +02:00
Jens L.
033439db26
lib: match exception_to_dict locals behaviour ( #17006 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-25 16:31:31 +02:00
Marc 'risson' Schmitt
9df7e50b8f
outposts/ldap: add pwdChangeTime attribute ( #17010 )
...
* outposts/ldap: add pwdChangeTime attribute
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* simplify
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update schema
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-09-25 16:16:08 +02:00
Jens L.
27033764dd
website/docs: improve discord policies when also bound to non-oauth sources ( #17008 )
2025-09-25 13:47:17 +00:00
dependabot[bot]
53f457f84a
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #17007 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-25 15:40:50 +02:00
Marc 'risson' Schmitt
f4ec1bd88a
flows: SessionEndStage: only show page if user is still authenticated ( #17003 )
2025-09-25 13:25:43 +00:00
Dominic R
81923d1b58
website/integrations: zammad: fix broken markdown ( #17002 )
...
* website/integrations: zammad: fix broken markdown
Signed-off-by: Dominic R <dominic@sdko.org >
* more
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-25 13:24:04 +00:00
authentik-automation[bot]
dc4e2788c7
web: bump API Client version ( #16997 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-25 13:11:40 +00:00
dependabot[bot]
e864654c7f
web: bump @types/node from 22.15.19 to 24.5.2 in /web ( #16989 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.2
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-25 14:56:35 +02:00
dependabot[bot]
5dc711e962
web: bump chromedriver from 140.0.3 to 140.0.4 in /web ( #16990 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 140.0.3 to 140.0.4.
- [Commits](https://github.com/giggio/node-chromedriver/compare/140.0.3...140.0.4 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 140.0.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-25 14:56:19 +02:00
dependabot[bot]
965cf2126e
website: bump the build group in /website with 3 updates ( #16933 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.5.5 to 1.5.6
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.6/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.5.5 to 1.5.6
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.6/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.5.5 to 1.5.6
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.6/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.5.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.5.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.5.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-25 14:56:07 +02:00
Daniel Adu-Gyan
e415d3b667
providers/ldap: add include_children parameter to cached search mode ( #16918 )
2025-09-25 14:41:33 +02:00
Dewi Roberts
edb46b42fe
webiste/docs: add missing oauth endpoints ( #16995 )
...
Add endpoints
2025-09-25 12:39:01 +00:00
dependabot[bot]
cbff24e506
lifecycle/aws: bump aws-cdk from 2.1029.2 to 2.1029.3 in /lifecycle/aws ( #16991 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-25 14:38:21 +02:00
Dominic R
3d94049e00
website/docs: oauth provider: Add 'device' and 'introspect' to reserved slugs ( #16994 )
...
Updated the list of reserved application slugs for OAuth2 endpoints.
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-25 12:37:41 +00:00
Jens L.
53308295a2
providers/scim: add salesforce support ( #16976 )
...
* providers/scim: add salesforce support
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix lint
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-25 14:36:23 +02:00
Katsushi Kobayashi
053c639aa8
outposts: fix flow executor when using subpath ( #16947 )
...
* Refer refConfig's URL
* Update internal/outpost/flow/executor.go
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: Katsushi Kobayashi <ikob@acm.org >
---------
Signed-off-by: Katsushi Kobayashi <ikob@acm.org >
Co-authored-by: Jens L. <jens@beryju.org >
2025-09-25 14:34:44 +02:00
Dominic R
c03ee971dc
website/developer docs: What domain for what doc version ( #16987 )
...
* website/developer docs: What domain for what doc version
Closes: AUTH-1316
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-09-25 13:16:35 +01:00
Jens L.
cc61f92a0b
sources/oauth: add support for login support if source was started within a flow executor ( #16982 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-24 20:05:13 +02:00
Marco Lecheler
df33b4d3e9
website: fix docs links ( #16926 )
...
* fix: add other docker-compose links
* fix: update other docs urls
2025-09-24 11:48:33 -04:00
Dominic R
62bf60a82c
web/admin: Fix dissapearing "Create" button in service account modal ( #16963 )
...
Reproduction:
1. Attempt to create a service account: fill out the username and click Create.
2. There's a popup giving you your username and token. Click Close
3. Attempt to click Create Service Account again, the Create button should be here this time.
Root Cause: When the form is reset (it happens when the modal is closed), it was resetting the form data and clearing the result but not restoring the showSubmitButton property back to true.
2025-09-24 11:20:40 -04:00
Dewi Roberts
6becb1f0ea
website/integrations: update apache guacamole ( #16917 )
...
* Update doc with new info
* Typos
* Update website/integrations/infrastructure/apache-guacamole/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/infrastructure/apache-guacamole/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-24 14:22:48 +00:00
Dewi Roberts
30fc1b93bf
website/docs: website/integrations: update docker-compose to Docker Compose ( #16945 )
...
Updates instances of docker-compose to Docker Compose
2025-09-24 14:20:19 +00:00
Dewi Roberts
0496549386
website/docs: add missing release notes ( #16804 )
...
* Add notes
* Remove docs changes
* WIP
2025-09-24 07:39:34 -04:00
dependabot[bot]
7d718a16df
web: bump the storybook group across 1 directory with 5 updates ( #16967 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.7 to 9.1.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.8/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.7 to 9.1.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.8/code/addons/links )
Updates `@storybook/web-components` from 9.1.7 to 9.1.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.8/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.7 to 9.1.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.8/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.7 to 9.1.8
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.8/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 13:11:49 +02:00
authentik-automation[bot]
1cc3bbe784
core, web: update translations ( #16961 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-24 13:08:54 +02:00
dependabot[bot]
de98877aac
core: bump astral-sh/uv from 0.8.20 to 0.8.22 ( #16965 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.20 to 0.8.22.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.20...0.8.22 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.22
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 13:00:11 +02:00
dependabot[bot]
2dde770580
web: bump the rollup group across 1 directory with 4 updates ( #16968 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.52.0 to 4.52.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.0...v4.52.2 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.52.0 to 4.52.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.0...v4.52.2 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.52.0 to 4.52.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.0...v4.52.2 )
Updates `rollup` from 4.52.0 to 4.52.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.52.0...v4.52.2 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.52.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.52.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.52.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.52.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 13:00:04 +02:00
dependabot[bot]
1def462835
web: bump @goauthentik/api from 2025.10.0-rc1-1758642738 to 2025.10.0-rc1-1758664464 in /web in the goauthentik group across 1 directory ( #16969 )
...
web: bump @goauthentik/api
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/api` from 2025.10.0-rc1-1758642738 to 2025.10.0-rc1-1758664464
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1758664464
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 13:00:01 +02:00
dependabot[bot]
96db43a85e
web: bump playwright from 1.55.0 to 1.55.1 in /web ( #16970 )
...
Bumps [playwright](https://github.com/microsoft/playwright ) from 1.55.0 to 1.55.1.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.55.0...v1.55.1 )
---
updated-dependencies:
- dependency-name: playwright
dependency-version: 1.55.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 12:59:58 +02:00
dependabot[bot]
b589be91e1
web: bump @playwright/test from 1.55.0 to 1.55.1 in /web ( #16971 )
...
Bumps [@playwright/test](https://github.com/microsoft/playwright ) from 1.55.0 to 1.55.1.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.55.0...v1.55.1 )
---
updated-dependencies:
- dependency-name: "@playwright/test"
dependency-version: 1.55.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-24 12:59:55 +02:00
Jared Harrison
44c01f88c4
blueprints: fix typo in sources-google-ldap-mappings ( #16955 )
2025-09-24 00:29:03 +02:00
Jens L.
1f81d234cb
enterprise/providers/radius: add EAP-TLS support ( #15702 )
...
* implement with library (backend)
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add outpost
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add basic docs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add enterprise notice to certificate
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* clearer enterprise stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* idk
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-23 23:54:09 +02:00
Nuno Alves
1dda417596
website/docs: update url to docker-compose.yml ( #16901 )
...
Update URL of docker-compose.yml from "https://goauthentik.io/docker-compose.yml " to "https://docs.goauthentik.io/docker-compose.yml "
2025-09-23 16:31:41 -05:00
Jared Harrison
2862fa1728
website/docs: random typo fixes ( #16956 )
2025-09-23 20:57:42 +00:00
Tana M Berry
14b1d25f66
website/docs: fix capitalization ( #16944 )
...
* fix capitalization
* tweak
* Update website/docs/add-secure-apps/outposts/manual-deploy-docker-compose.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-23 14:32:28 -05:00
Tana M Berry
dbf85d04ef
website/docs: add docs for source switch expression policy ( #16878 )
...
* draft for source switch docs
* add python
* add sidebar entry
* Update website/docs/customize/policies/expression/source_switch.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/working_with_policies.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/working_with_policies.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* add sectin about binding the policy
* tweak
* Update website/docs/customize/policies/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/working_with_policies.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/working_with_policies.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/working_with_policies.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/working_with_policies.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/customize/policies/expression.mdx
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-09-23 13:57:51 -05:00
Dominic R
d482bf9887
recovery: Default to 60 minutes ( #16005 )
...
* recovery: Default to 60 minutes
* Suggestion
* oops left in an old comment
* ide autocompleted the wrong thing and I went along with it. Now uses timesince as Jens suggested lol
* which means I don't need this anymore
* Update authentik/recovery/tests.py
Signed-off-by: Dominic R <dominic@sdko.org >
* wip
* a
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-23 19:18:08 +02:00
Marc 'risson' Schmitt
2f2c5338c0
website/docs: 2025.8: fix worker concurrency setting rename ( #16946 )
2025-09-23 17:12:40 +00:00
authentik-automation[bot]
a51067c123
web: bump API Client version ( #16949 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-23 18:03:16 +02:00
Jens L.
2e56082066
enterprise/providers/scim: Add SCIM OAuth support ( #16903 )
...
* sources/oauth: add expires field to user source connection
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* providers/scim: add support for other auth methods
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rest of the owl
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* allow specifying any params
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add UI
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* delete user when token
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add tests and fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* sigh
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* gen
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better API validation
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix sentry
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* one more test and fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-23 17:52:02 +02:00
Marc 'risson' Schmitt
b704a54ceb
core, events: reduce memory usage when batch deleting objects ( #12436 )
...
* core, events: reduce memory usage when batch deleting objects
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* rework
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-09-23 15:47:33 +02:00
dependabot[bot]
3ddbaeb4fd
web: bump knip from 5.63.1 to 5.64.0 in /web ( #16937 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.63.1 to 5.64.0.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.64.0/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.64.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-09-23 14:39:42 +02:00
authentik-automation[bot]
212f847444
core, web: update translations ( #16931 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-23 13:44:49 +02:00
dependabot[bot]
a14acf2093
core: bump astral-sh/uv from 0.8.19 to 0.8.20 ( #16932 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.19 to 0.8.20.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.19...0.8.20 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.20
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 13:44:46 +02:00
dependabot[bot]
5e381bc825
website: bump the eslint group in /website with 3 updates ( #16934 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/parser )
Updates `typescript-eslint` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.44.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.44.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.44.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 13:44:41 +02:00
dependabot[bot]
1cafea5930
web: bump the sentry group across 1 directory with 2 updates ( #16935 )
...
Bumps the sentry group with 2 updates in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and @spotlightjs/spotlight.
Updates `@sentry/browser` from 10.12.0 to 10.13.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/10.12.0...10.13.0 )
Updates `@spotlightjs/spotlight` from 3.0.2 to 4.0.0
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 4.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 13:44:37 +02:00
dependabot[bot]
b9bf3b2e7c
web: bump the eslint group across 2 directories with 3 updates ( #16936 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/typescript-eslint )
Updates `typescript-eslint` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.44.0 to 8.44.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.1/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.44.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.44.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.44.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.44.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 13:44:34 +02:00
dependabot[bot]
f670acdde0
web: bump country-flag-icons from 1.5.20 to 1.5.21 in /web ( #16938 )
...
Bumps [country-flag-icons](https://gitlab.com/catamphetamine/country-flag-icons ) from 1.5.20 to 1.5.21.
- [Changelog](https://gitlab.com/catamphetamine/country-flag-icons/blob/master/CHANGELOG.md )
- [Commits](https://gitlab.com/catamphetamine/country-flag-icons/compare/v1.5.20...v1.5.21 )
---
updated-dependencies:
- dependency-name: country-flag-icons
dependency-version: 1.5.21
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 13:44:29 +02:00
dependabot[bot]
d017e7c419
web: bump vite from 7.1.6 to 7.1.7 in /web ( #16939 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.6 to 7.1.7.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.7/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 13:44:25 +02:00
Jens L.
3d8f4c5979
*: add ruff BLE rules ( #16943 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-23 13:38:42 +02:00
Dewi Roberts
486f1d8b04
website/docs: website/integrations: random language fixes ( #16896 )
...
* Random language fixes
* Osticket changed to match other files
2025-09-23 01:42:16 -05:00
Ken Sternberg
7666ba1eb7
web: revise ak-page-navbar to use standard event handlers ( #16898 )
...
* 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 .
* This commit refactors `ak-page-navbar` into rendering elements that support a more DOM-oriented behavior model. The core insights here is that there were two signals being propagated through the system: “page detail change” and “toggle sidebar,” and that they are *Events*.
## What
### Changes to Sidebar handling.
The event `SidebarToggle` has been changed to a more generic `PageNavMenuToggle`, so that we’re not dictating what kind of main menu the UI provides. It has also been made a typed, global event, rather than a CustomEvent. `ak-page-navbar` sends it, and `ak-interface-admin` listens for it, the way Hermes intended. Because events from `ak-page-navbar` propagate *up*,
### Changes to the Page Navbar
The static, ad-hoc handler for page identity has been replaced with a bog-standard event listener. The event listener is placed on `window`, and so has been added to the `connectCallback()/disconnectCallback()` portions of the lifecycle so it is removed successfully on disconnect.
I have also moved the Websocket event handler (`EVENT_WS_MESSAGE`) into the `connectCallback()/disconnectCallback()` lifecycle, for the same reson.
A function, `setPageDetails(header: PageInit);` has been provided to replicate the functionality of `AKPageNavbar.setNavbrDetails()`. This function pushes the event onto `window`, to which we are listening. The event is synchronous (since its origin is in custom code), and is delivered at the same time and in the same way as the prior method.
**Why**: Primarily, it’s the standard way to do things. Both the static method and this method happen in a single JSVM microtask (the same task, actually), so there’s no change in behavior or performance. If we ever want to go to a different idiom, like making the header a child element of a route, or turning this into some series of MPAs using view-transitions and a state-managing webworker, the lifecycle components will no longer get in the way. This change also eliminates the need for every instance of `ak-page-navbar` to keep a static reference to the “current” navbar. We were not using that reference to ensure singleton status, nor clean up multiple instances, so its utility wasn’t clear.
### Changes to pages that need to update the page header details.
A mechanical script<sup>\*</sup> replaced every instance of `import ... ak-page-header` with `import { setPageDetails } from ak-page-navbar`, and every instance of `<ak-page-header ...>` with:
updated(changed: PropertyValues<this>) {
setPageDetails(header: ...derived_from_ak-page-header);
}
In several cases, this left render statements that looked like:
render() {
return html`${this.renderBody()}`;
}
… in which case I manually short-circuited the extra function call.
**Note**: Doing this sometimes resulted in a lot of whitespace changes (thank you very effin’ much, *prettier*), so some of the changes look much bigger than they should. I have made marks in the PR when this happens.
## Not Fixed
The call to `ak-page-header` in `ApplicationPage` looked like this:
<ak-page-header
header=${this.application?.name || msg("Loading")}
description=${ifPresent(this.application?.metaPublisher)}
>
<ak-app-icon
size=${PFSize.Medium}
name=${ifPresent(this.application?.name)}
icon=${ifPresent(this.application?.metaIcon)}
slot="icon"
></ak-app-icon>
</ak-page-header>
When `ak-page-header` was revised to be nothing but an pub-hub style event emitter, it lost any `render` capability at all, falling back to the `nothing` inherited from `lit-html`. That slot does not exist. `ApplicationPage` has not been able to show user-supplied application icons for awhile now, and this commit does not change that.
<hr/>
<sup>\*</sup>The script is written in elisp. If anyone wants to read it, I’m willing to message it to ya.
* web: applied several fixes to the PR as requested.
* One more hack.
* Missed a bug that prevented Storybook from deploying.
* Prettier has some (silly) opinions.
2025-09-22 14:53:46 -07:00
Jens L.
5bfac4c11e
root: add mypy ( #16904 )
...
* add mypy
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix some stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix more stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* actually do overrides on a per-module basis
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix small stuff
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add pydantic plugin
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-22 19:37:49 +02:00
Teffen Ellis
1b96009be8
website: Remove duplicate sidebar entries. ( #16922 )
2025-09-22 19:14:23 +02:00
Teffen Ellis
20c67b3d85
web: Remove CSS constructor polyfill. ( #16920 )
2025-09-22 18:54:17 +02:00
Teffen Ellis
0fb542bd51
web: Replace Github Slugger package with change-case. ( #16921 )
2025-09-22 16:43:34 +00:00
Teffen Ellis
5997667501
website: Fix broken schema links v2 ( #16919 )
...
* website: fix broken schema links
* website: Add schema redirects.
---------
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-22 10:46:58 -05:00
dependabot[bot]
62dda3c869
website: bump the build group in /website with 3 updates ( #16908 )
...
Bumps the build group in /website with 3 updates: [@swc/html-darwin-arm64](https://github.com/swc-project/swc ), [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) and [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ).
Updates `@swc/html-darwin-arm64` from 1.13.5 to 1.13.8
- [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.13.5...v1.13.8 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.5 to 1.13.8
- [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.13.5...v1.13.8 )
Updates `@swc/html-linux-x64-gnu` from 1.13.5 to 1.13.8
- [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.13.5...v1.13.8 )
---
updated-dependencies:
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 16:37:12 +02:00
dependabot[bot]
7eba478fb3
core: bump astral-sh/uv from 0.8.18 to 0.8.19 ( #16906 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.18 to 0.8.19.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.18...0.8.19 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.19
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 16:36:58 +02:00
dependabot[bot]
4fab920b3e
core: bump goauthentik.io/api/v3 from 3.2025100.6 to 3.2025100.8 ( #16907 )
...
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 16:36:46 +02:00
dependabot[bot]
05cfcafbbc
website: bump the eslint group in /website with 2 updates ( #16909 )
...
Bumps the eslint group in /website with 2 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) and [eslint](https://github.com/eslint/eslint ).
Updates `@eslint/js` from 9.35.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.36.0/packages/js )
Updates `eslint` from 9.35.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.35.0...v9.36.0 )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.36.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.36.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 16:36:36 +02:00
dependabot[bot]
2f7bbd0d50
web: bump the eslint group across 2 directories with 2 updates ( #16911 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /web directory: [eslint](https://github.com/eslint/eslint ).
Updates `eslint` from 9.35.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.35.0...v9.36.0 )
Updates `eslint` from 9.35.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.35.0...v9.36.0 )
Updates `@eslint/js` from 9.35.0 to 9.36.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.36.0/packages/js )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.36.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.36.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.36.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 16:35:38 +02:00
dependabot[bot]
4070b4b105
web: bump the rollup group across 1 directory with 4 updates ( #16912 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.50.2 to 4.52.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.52.0 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.50.2 to 4.52.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.52.0 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.50.2 to 4.52.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.52.0 )
Updates `rollup` from 4.50.2 to 4.52.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.2...v4.52.0 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.52.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.52.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.52.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.52.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-22 16:35:05 +02:00
dependabot[bot]
b98be8092a
web: bump typedoc-plugin-markdown from 4.8.1 to 4.9.0 in /packages/esbuild-plugin-live-reload ( #16913 )
...
web: bump typedoc-plugin-markdown
Bumps [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown ) from 4.8.1 to 4.9.0.
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases )
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md )
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.9.0/packages/typedoc-plugin-markdown )
---
updated-dependencies:
- dependency-name: typedoc-plugin-markdown
dependency-version: 4.9.0
dependency-type: direct:development
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-09-22 16:34:05 +02:00
dependabot[bot]
09a65dfa52
web: bump pino from 9.10.0 to 9.11.0 in /packages/esbuild-plugin-live-reload ( #16914 )
...
web: bump pino in /packages/esbuild-plugin-live-reload
Bumps [pino](https://github.com/pinojs/pino ) from 9.10.0 to 9.11.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.10.0...v9.11.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.11.0
dependency-type: direct:development
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-09-22 16:33:27 +02:00
dependabot[bot]
bf1325e93c
web: bump pino from 9.10.0 to 9.11.0 in /web ( #16915 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.10.0 to 9.11.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.10.0...v9.11.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.11.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-09-22 16:32:54 +02:00
Dewi Roberts
493be79baf
website: add hierarchy line to sidebar ( #16565 )
...
* Adds hierarchy line
* Color changes for light and dark mode and remove rounded corners
* Remove comments
* website: Fix selector specificity, alignment, theming.
* Padding change
* website: Limit hover states. Add a11y checks.
---------
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-09-22 16:17:21 +02:00
Marc 'risson' Schmitt
2ce75b0b70
events: remove deprecated models ( #15823 )
2025-09-22 13:08:11 +00:00
Marc 'risson' Schmitt
1db626df90
core: update_attributes: only update the model if attributes changed ( #16322 )
2025-09-22 14:34:47 +02:00
Tana M Berry
56b3137ef2
Revert "website: Fix broken schema links, non-relative paths, unapplied redirect aliases" ( #16902 )
...
Revert "website: Fix broken schema links, non-relative paths, unapplied redir…"
This reverts commit 0e56195c82 .
2025-09-22 01:01:01 +02:00
Dominic R
0e56195c82
website: Fix broken schema links, non-relative paths, unapplied redirect aliases ( #16900 )
...
* website: fix broken schema links
* website: Use download links.
* website: Use env constants for URLs.
* website: Add schema redirects.
* website: Use path alias for integrations.
* website: Use docs alias in integrations.
* website: Use relative links, better dead-link checking.
* website: Fix nested docs prefix affecting redirects. Add aliases.
* website: Remove hard links.
* website: Replace hardcoded edit URL with environment URL.
---------
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-09-21 14:32:26 -04:00
Dewi Roberts
e8236871fb
website/integrations: adds termix ( #16889 )
...
* Adds termix document
* Applied suggestions
* minor fix
2025-09-21 09:36:12 -05:00
authentik-automation[bot]
e85db7e83c
web: bump API Client version ( #16894 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-19 16:46:27 +00:00
Connor Peshek
1636707dcd
blueprints: exclude exporting UserConsent ( #16640 )
...
The blueprint exporter would error when attempting to export a blueprint containing UserConsent. UserConsent no longer exports when exporting a blueprint
2025-09-19 11:15:45 -05:00
authentik-automation[bot]
48a4e76bab
web: bump API Client version ( #16890 )
...
* web: bump API Client version
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* fix missing package
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-09-19 17:29:41 +02:00
dependabot[bot]
310aa627fb
web: bump mermaid from 11.11.0 to 11.12.0 in /web ( #16887 )
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.11.0 to 11.12.0.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.11.0...mermaid@11.12.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.12.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-09-19 17:29:25 +02:00
authentik-automation[bot]
c0d498cfbf
core, web: update translations ( #16885 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-19 14:03:47 +02:00
dependabot[bot]
0cf5f47695
web: bump the storybook group across 1 directory with 5 updates ( #16886 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.7/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.7/code/addons/links )
Updates `@storybook/web-components` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.7/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.7/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.7/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-19 14:03:43 +02:00
Jens L.
2363c0d09f
api: optimise schemas' common query parameters ( #16884 )
...
* api: optimise schemas' common query parameters
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix location?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-19 13:51:07 +02:00
dependabot[bot]
26ac581d6b
web: bump the esbuild group across 2 directories with 4 updates ( #16868 )
...
Bumps the esbuild group with 1 update in the /packages/esbuild-plugin-live-reload directory: [esbuild](https://github.com/evanw/esbuild ).
Bumps the esbuild group with 1 update in the /web directory: [esbuild](https://github.com/evanw/esbuild ).
Updates `esbuild` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `@esbuild/darwin-arm64` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `@esbuild/linux-arm64` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `@esbuild/linux-x64` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `esbuild` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `@esbuild/darwin-arm64` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `@esbuild/linux-arm64` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
Updates `@esbuild/linux-x64` from 0.25.9 to 0.25.10
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.9...v0.25.10 )
---
updated-dependencies:
- dependency-name: esbuild
dependency-version: 0.25.10
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.10
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.10
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.10
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: esbuild
dependency-version: 0.25.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:36:37 +02:00
authentik-automation[bot]
2ba1aeb466
core, web: update translations ( #16864 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-18 13:33:07 +02:00
dependabot[bot]
db28ad3d49
core: bump astral-sh/uv from 0.8.17 to 0.8.18 ( #16866 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.17 to 0.8.18.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.17...0.8.18 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.18
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:33:04 +02:00
dependabot[bot]
a1ad6476d8
website: bump @types/node from 24.5.1 to 24.5.2 in /website ( #16867 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.1 to 24.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:33:00 +02:00
dependabot[bot]
9e478ec08f
web: bump @types/node from 24.5.1 to 24.5.2 in /packages/esbuild-plugin-live-reload ( #16869 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.1 to 24.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:32:55 +02:00
dependabot[bot]
6078b35406
web: bump pino from 9.9.5 to 9.10.0 in /packages/esbuild-plugin-live-reload ( #16870 )
...
web: bump pino in /packages/esbuild-plugin-live-reload
Bumps [pino](https://github.com/pinojs/pino ) from 9.9.5 to 9.10.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.9.5...v9.10.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.10.0
dependency-type: direct:development
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-09-18 13:32:52 +02:00
dependabot[bot]
56c93af180
web: bump @types/node from 24.5.1 to 24.5.2 in /packages/prettier-config ( #16871 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.1 to 24.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:32:49 +02:00
dependabot[bot]
0b7b07b499
web: bump @types/node from 22.15.19 to 24.5.2 in /web ( #16872 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.5.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.2
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:32:46 +02:00
dependabot[bot]
c16f6ecf5b
web: bump dompurify from 3.2.6 to 3.2.7 in /web ( #16873 )
...
Bumps [dompurify](https://github.com/cure53/DOMPurify ) from 3.2.6 to 3.2.7.
- [Release notes](https://github.com/cure53/DOMPurify/releases )
- [Commits](https://github.com/cure53/DOMPurify/compare/3.2.6...3.2.7 )
---
updated-dependencies:
- dependency-name: dompurify
dependency-version: 3.2.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:32:43 +02:00
dependabot[bot]
194ed23d12
web: bump pino from 9.9.5 to 9.10.0 in /web ( #16874 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.9.5 to 9.10.0.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.9.5...v9.10.0 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.10.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-09-18 13:32:39 +02:00
dependabot[bot]
af85f29a01
web: bump vite from 7.1.5 to 7.1.6 in /web ( #16875 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.5 to 7.1.6.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.6/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:32:36 +02:00
dependabot[bot]
2ec60446a0
web: bump chromedriver from 140.0.2 to 140.0.3 in /web ( #16876 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 140.0.2 to 140.0.3.
- [Commits](https://github.com/giggio/node-chromedriver/compare/140.0.2...140.0.3 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 140.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:30:20 +02:00
dependabot[bot]
beaf1dde50
lifecycle/aws: bump aws-cdk from 2.1029.1 to 2.1029.2 in /lifecycle/aws ( #16877 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1029.1 to 2.1029.2.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1029.2/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1029.2
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-18 13:30:11 +02:00
Teffen Ellis
17da90df6c
web: Fix docs links, a11y input descriptors ( #16671 )
...
* web: Clarify required marker when using screen reader.
* web: Mark helper text as input descriptor.
* web: Use next domain when in development.
* web: Clean up constants. Fix attribute mapping.
* web: use previous function name.
* web: Fix sort.
* web: Use constant.
* web: Use prefix.
* web: keep using current release for notes.
2025-09-18 00:34:15 +00:00
dependabot[bot]
d4f6370119
website: bump the eslint group in /website with 3 updates ( #16788 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/parser )
Updates `typescript-eslint` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 23:27:23 +02:00
dependabot[bot]
3f761e2358
website: bump the build group in /website with 3 updates ( #16787 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.4/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.4/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.5.3 to 1.5.4
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.4/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.5.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.5.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.5.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 23:25:53 +02:00
dependabot[bot]
3040987501
web: bump the eslint group across 2 directories with 3 updates ( #16790 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/parser )
Updates `typescript-eslint` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.43.0 to 8.44.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.44.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.44.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.44.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.44.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.44.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 23:25:36 +02:00
Max Kratz
5597bb64dd
website/docs: extends the example to include jwt_config for matrix/synapse ( #16860 )
...
* website: extends the example to include `jwt_config`
This is necessary to successfully connect Synapse to authentik.
* Updated formatting
---------
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-09-17 20:33:17 +00:00
Teffen Ellis
75d1771bb8
web/a11y: Flow Search ( #15876 )
...
* web: Flesh out flow search clean up.
* web: Fix issues surrounding escape key in modals. Tidy properties.
* web: Tidy properties, types.
* web: Clean up types.
* web: Clarify labels for screen readers.
* web: Fix ARIA group behavior, labeling, input selectors.
* web: Flesh out test prereqs.
* web: Clean up usage of nullish attributes directive.
* web: Add placeholder attribute.
* web: touch up comment.
* web: Fix role matching, test selectors, etc.
* web: Fix typo.
* web: Remove redundant clean up.
* web: Normalize tab attributes.
* web: Use main role wrapper.
2025-09-17 18:35:40 +00:00
authentik-automation[bot]
a7b02bcef4
web: bump API Client version, remove Webdriver dependencies ( #16836 )
...
* web: bump API Client version
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* web: Remove WDIO tests.
* web: bump tmp package.
---------
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-09-17 18:34:02 +00:00
Teffen Ellis
68684d1731
web: Ignore spellchecking of Playwright output. ( #16862 )
2025-09-17 20:14:49 +02:00
Jens L.
a648d00783
api: Fix locale propagation from ?locale parameter in frontend ( #16857 )
...
* web: add middleware to propagate locale header
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add Locale middleware
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* extract
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update web/src/common/api/middleware.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Jens L. <jens@beryju.org >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-09-17 19:42:44 +02:00
authentik-automation[bot]
b2c40392e8
core, web: update translations ( #16841 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-17 18:58:38 +02:00
dependabot[bot]
53b56faf31
website: bump @types/node from 24.5.0 to 24.5.1 in /website ( #16843 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.0 to 24.5.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 18:58:22 +02:00
Teffen Ellis
5359318650
web/a11y: Tables -- labels, input handlers, selection and expanded state ( #16207 )
...
* web: Clean up types.
* web: Flesh out a11y clean up.
* web: Fix text selection.
* Flesh out property.
* web: Clean up stateful issues. Add labels.
* web: Clean up column rendering.
* web: Hide icons from screen reader.
* web: Fix nesting of region base elements.
* web: Add labels to hidden columns.
* web: Add aria label to row actions.
* web: Use common timestamp component.
* web: Fix column text wrapping.
* web: Add labels to all rows.
* web: Fix icon alignment.
* web: Fix mix of method properties, duplicate role assignments.
* web: Fix alignment, labeling.
* web: Fix `nothing` typing.
2025-09-17 16:28:43 +00:00
Teffen Ellis
c1d4e5cf83
web: Flush logs on SIGINT. ( #16723 )
2025-09-17 11:08:34 -04:00
dependabot[bot]
968aef0567
core: bump goauthentik.io/api/v3 from 3.2025100.5 to 3.2025100.6 ( #16844 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.5 to 3.2025100.6.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.5...v3.2025100.6 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 17:06:17 +02:00
dependabot[bot]
174bc946b6
web: bump @goauthentik/api from 2025.10.0-rc1-1757525772 to 2025.10.0-rc1-1758042786 in /web in the goauthentik group across 1 directory ( #16846 )
...
web: bump @goauthentik/api
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/api` from 2025.10.0-rc1-1757525772 to 2025.10.0-rc1-1758042786
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1758042786
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 17:04:05 +02:00
dependabot[bot]
cb63a0d5ea
web: bump @sentry/browser from 10.11.0 to 10.12.0 in /web in the sentry group across 1 directory ( #16845 )
...
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 10.11.0 to 10.12.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/10.11.0...10.12.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.12.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-09-17 16:12:25 +02:00
dependabot[bot]
3f623f8ac0
web: bump @types/node from 24.5.0 to 24.5.1 in /packages/esbuild-plugin-live-reload ( #16847 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.0 to 24.5.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 16:11:44 +02:00
dependabot[bot]
783d92a6b1
web: bump @types/node from 24.5.0 to 24.5.1 in /packages/prettier-config ( #16848 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.5.0 to 24.5.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 16:11:20 +02:00
dependabot[bot]
ff6a42cc19
web: bump @types/node from 22.15.19 to 24.5.1 in /web ( #16849 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.5.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-17 16:10:45 +02:00
Adam Shirt
301ade8502
providers/scim: fix string formatting for SCIM user filter ( #16465 )
...
* providers/scim: fix string formatting for SCIM user filter
Signed-off-by: Adam Shirt <adamshirt@outlook.com >
* format
---------
Signed-off-by: Adam Shirt <adamshirt@outlook.com >
Co-authored-by: Jens Langhammer <jens.langhammer@beryju.org >
2025-09-17 12:42:05 +02:00
Marcelo Elizeche Landó
57e12cef06
core: bump azure-core from 1.35.0 to v1.35.1 ( #16811 )
2025-09-16 23:55:36 +02:00
Marcelo Elizeche Landó
41744d95c7
core: bump azure-identity from 1.23.1 to v1.25.0 ( #16812 )
2025-09-16 23:55:33 +02:00
Marcelo Elizeche Landó
ecc3021ede
core: bump boto3 from 1.40.2 to v1.40.31 ( #16813 )
2025-09-16 23:55:30 +02:00
Marcelo Elizeche Landó
cde73f9f9f
core: bump cffi from 1.17.1 to v2.0.0 ( #16814 )
2025-09-16 23:55:27 +02:00
Marcelo Elizeche Landó
f93398959c
core: bump dnspython from 2.7.0 to v2.8.0 ( #16815 )
2025-09-16 23:55:22 +02:00
Marcelo Elizeche Landó
f89b62b0d7
core: bump httplib2 from 0.22.0 to v0.31.0 ( #16816 )
2025-09-16 23:55:18 +02:00
Marcelo Elizeche Landó
1b76286257
core: bump jsii from 1.113.0 to v1.114.1 ( #16817 )
2025-09-16 23:55:15 +02:00
Marcelo Elizeche Landó
70b39eed55
core: bump jsonschema-specifications from 2025.4.1 to v2025.9.1 ( #16818 )
2025-09-16 23:55:12 +02:00
Marcelo Elizeche Landó
2b0d91e571
core: bump microsoft-kiota-abstractions from 1.9.5 to v1.9.7 ( #16819 )
2025-09-16 23:55:09 +02:00
Marcelo Elizeche Landó
59d496d499
core: bump microsoft-kiota-authentication-azure from 1.9.5 to v1.9.6 ( #16820 )
2025-09-16 23:55:06 +02:00
Marcelo Elizeche Landó
3648fd287e
core: bump microsoft-kiota-http from 1.9.5 to v1.9.6 ( #16821 )
2025-09-16 23:55:03 +02:00
Marcelo Elizeche Landó
adb9aa223f
core: bump microsoft-kiota-serialization-form from 1.9.5 to v1.9.7 ( #16822 )
2025-09-16 23:55:01 +02:00
Marcelo Elizeche Landó
ab66ba2924
core: bump microsoft-kiota-serialization-json from 1.9.5 to v1.9.7 ( #16823 )
2025-09-16 23:54:57 +02:00
Marcelo Elizeche Landó
0575b9142a
core: bump microsoft-kiota-serialization-multipart from 1.9.5 to v1.9.7 ( #16824 )
2025-09-16 23:54:55 +02:00
Marcelo Elizeche Landó
1c66f7964a
core: bump microsoft-kiota-serialization-text from 1.9.5 to v1.9.7 ( #16825 )
2025-09-16 23:54:51 +02:00
Marcelo Elizeche Landó
a1ff4732d2
core: bump msgraph-core from 1.3.5 to v1.3.8 ( #16826 )
2025-09-16 23:54:48 +02:00
Marcelo Elizeche Landó
7374a9544a
core: bump opentelemetry-api from 1.36.0 to v1.37.0 ( #16827 )
2025-09-16 23:54:44 +02:00
Marcelo Elizeche Landó
7c976fa86f
core: bump protobuf from 6.31.1 to v6.32.1 ( #16828 )
2025-09-16 23:54:41 +02:00
Marcelo Elizeche Landó
37743fc3ac
core: bump pycparser from 2.22 to v2.23 ( #16829 )
2025-09-16 23:54:38 +02:00
Marcelo Elizeche Landó
56af515ca8
core: bump pynacl from 1.5.0 to v1.6.0 ( #16830 )
2025-09-16 23:54:35 +02:00
Marcelo Elizeche Landó
4fdba8febf
core: bump pyparsing from 3.2.3 to v3.2.4 ( #16831 )
2025-09-16 23:54:32 +02:00
Marcelo Elizeche Landó
a98d845e17
core: bump trio from 0.30.0 to v0.31.0 ( #16832 )
2025-09-16 23:54:29 +02:00
Marcelo Elizeche Landó
21193952bc
core: bump zope-event from 5.1.1 to v6.0 ( #16833 )
2025-09-16 23:54:25 +02:00
Marcelo Elizeche Landó
2fe6a6d115
core: bump zope-interface from 7.2 to v8.0 ( #16834 )
2025-09-16 23:54:22 +02:00
Dewi Roberts
b5ec7df9d1
webiste/docs: improve user ref doc ( #16779 )
...
* WIP
* WIP
* Update website/docs/users-sources/user/user_ref.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Language change
* Update website/docs/users-sources/user/user_ref.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-16 22:54:00 +01:00
transifex-integration[bot]
cf0afd98e3
translate: Updates for file web/xliff/en.xlf in de ( #16808 )
...
Translate web/xliff/en.xlf in de
100% translated source file: 'web/xliff/en.xlf'
on 'de'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-16 20:13:15 +02:00
Connor Peshek
d94f743124
stages: update friendly_name model from null to blank ( #16672 )
...
authentik/stages: update friendly_name model from null to blank
2025-09-16 12:06:42 -05:00
Connor Peshek
7abd287bd0
sources/saml: add default error messages to exceptions ( #15562 )
...
Co-authored-by: connor <connor@connors-MacBook-Pro.local >
2025-09-16 12:06:20 -05:00
Jens L.
84fb8143a2
website/docs: 2025.8.3 release notes ( #16809 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-16 16:34:05 +02:00
authentik-automation[bot]
f285e5f8d1
core, web: update translations ( #16783 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-16 16:11:28 +02:00
Marcelo Elizeche Landó
b0a508a602
stages/email_authenticator: Fix email mfa loop ( #16579 )
...
* Return error message instead of infinite loop
* Remove unused code
* check for existing email device
* revert to initial behaviour
* Add test for failing when the user already has an email device
2025-09-16 16:04:01 +02:00
Josh Martin
e9fa7ad16b
website/docs: updated Frontend development environment contributor docs ( #16731 )
...
* updated Frontend development environment contributor docs
Updated the docs on how to start the frontend project.
clarifying how to override the docker-compose.yml and starting the front-end project for the first time.
Signed-off-by: Josh Martin <joshmartin@reprogrammed.software >
* Update website/docs/developer-docs/setup/frontend-dev-environment.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Josh Martin <joshmartin5001@gmail.com >
---------
Signed-off-by: Josh Martin <joshmartin@reprogrammed.software >
Signed-off-by: Josh Martin <joshmartin5001@gmail.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-09-16 08:57:12 -05:00
Dewi Roberts
04023265a6
webiste/integrations: update roundcube doc ( #16753 )
...
* Update doc
* variable names
* Applied suggestions
* Update website/integrations/chat-communication-collaboration/roundcube/index.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-16 13:45:47 +00:00
Dewi Roberts
87b92767e2
website/docs: update create oauth provider page ( #16617 )
...
* Updated the page to be more consistent with upcoming changes to the saml page
* Add note
2025-09-16 14:20:08 +01:00
dependabot[bot]
f80d668b43
website: bump @types/node from 24.4.0 to 24.5.0 in /website ( #16789 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.4.0 to 24.5.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.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-09-16 14:54:08 +02:00
dependabot[bot]
317db14940
web: bump the rollup group across 1 directory with 4 updates ( #16792 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.50.1 to 4.50.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.1...v4.50.2 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.50.1 to 4.50.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.1...v4.50.2 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.50.1 to 4.50.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.1...v4.50.2 )
Updates `rollup` from 4.50.1 to 4.50.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.1...v4.50.2 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.50.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.50.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.50.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.50.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-16 14:54:00 +02:00
dependabot[bot]
15597d131c
core: bump github.com/getsentry/sentry-go from 0.35.2 to 0.35.3 ( #16786 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.35.2 to 0.35.3.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.35.2...v0.35.3 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.35.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-16 14:53:41 +02:00
dependabot[bot]
fc4ab5ff2f
web: bump the storybook group across 1 directory with 5 updates ( #16791 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.5 to 9.1.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.6/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.5 to 9.1.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.6/code/addons/links )
Updates `@storybook/web-components` from 9.1.5 to 9.1.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.6/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.5 to 9.1.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.6/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.5 to 9.1.6
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.6/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-16 14:53:28 +02:00
dependabot[bot]
d4b4e60348
web: bump @types/node from 24.4.0 to 24.5.0 in /packages/esbuild-plugin-live-reload ( #16794 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.4.0 to 24.5.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.0
dependency-type: direct:development
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-09-16 14:53:17 +02:00
dependabot[bot]
78be0900c8
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #16793 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-16 14:53:00 +02:00
dependabot[bot]
d621f7b221
web: bump @types/node from 24.4.0 to 24.5.0 in /packages/prettier-config ( #16795 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.4.0 to 24.5.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.0
dependency-type: direct:development
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-09-16 14:52:31 +02:00
dependabot[bot]
9fe4bd6e4a
web: bump @types/node from 22.15.19 to 24.5.0 in /web ( #16796 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.5.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.5.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-16 14:52:18 +02:00
Teffen Ellis
45821e0bf1
web: Use curated dictionary for e2e fixtures. ( #16750 )
2025-09-16 08:37:26 -04:00
cbka
1226446be7
website/integrations: fix wekan redirect URL ( #16801 )
...
Update index.mdx
correct redirect url template
Signed-off-by: cbka <cb@mct-datensysteme.de >
2025-09-16 09:42:10 +00:00
Connor Peshek
fd1a0c3afc
website/docs: fix docker tabs not rendering properly ( #16799 )
...
docs: fix docker tabs not rendering properly
2025-09-16 10:19:56 +01:00
Josh Martin
979f511030
web: Fixed null lastUsed and autofocus on TOTP login field ( #16739 )
...
* web: Fix repeated copy alert overlapping input.
* web: Fix null `lastUsed` property in request payload.
Co-authored-by: Josh Martin <joshmartin@reprogrammed.software >
* web: Fix Chrome warning about submitting unmounted forms.
* web: Fix issues surrounding autofocus on mount.
---------
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-09-16 01:03:27 +02:00
Dewi Roberts
62f0e6757f
website/integrations: add logout url to paperless ( #16758 )
...
Add logout URL
2025-09-15 15:41:07 +00:00
Dewi Roberts
1752b0f03d
website/integrations: update omada controller doc ( #16771 )
...
* Adds tabs, updates group name property mapping, fixes some language.
* WIP
* WIP
2025-09-15 16:15:48 +01:00
Marc 'risson' Schmitt
2a76399c37
website/docs: 2025.8.2 release notes ( #16773 )
2025-09-15 15:13:55 +00:00
Marc 'risson' Schmitt
9db012ee35
sources/oauth/entra_id: do not assume group_id comes from entra ( #16456 )
2025-09-15 16:40:36 +02:00
dependabot[bot]
425216a353
website: bump @types/react from 19.1.12 to 19.1.13 in /website ( #16761 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.12 to 19.1.13.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.13
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 16:32:44 +02:00
dependabot[bot]
d5a1a9edbf
web: bump @types/node from 24.3.1 to 24.4.0 in /packages/esbuild-plugin-live-reload ( #16763 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.3.1 to 24.4.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.4.0
dependency-type: direct:development
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-09-15 16:32:34 +02:00
dependabot[bot]
a8a95b76f3
web: bump @types/node from 22.15.19 to 24.4.0 in /web ( #16768 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.4.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.4.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 16:32:23 +02:00
dependabot[bot]
eff8b1ea5d
web: bump chromedriver from 140.0.1 to 140.0.2 in /web ( #16766 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 140.0.1 to 140.0.2.
- [Commits](https://github.com/giggio/node-chromedriver/compare/140.0.1...140.0.2 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 140.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 16:32:09 +02:00
dependabot[bot]
3ca352cbc1
website: bump @types/node from 24.3.1 to 24.4.0 in /website ( #16762 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.3.1 to 24.4.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.4.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-09-15 15:47:10 +02:00
dependabot[bot]
77fd73d0f8
web: bump the react group across 2 directories with 1 update ( #16764 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Bumps the react group with 1 update in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Updates `@types/react` from 19.1.12 to 19.1.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react` from 19.1.12 to 19.1.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.13
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.1.13
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 15:46:51 +02:00
dependabot[bot]
b59ccfaf4c
web: bump typedoc from 0.28.12 to 0.28.13 in /packages/esbuild-plugin-live-reload ( #16765 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.12 to 0.28.13.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.12...v0.28.13 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.13
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 15:46:31 +02:00
dependabot[bot]
b9fa1171e9
web: bump @types/node from 24.3.1 to 24.4.0 in /packages/prettier-config ( #16767 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.3.1 to 24.4.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.4.0
dependency-type: direct:development
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-09-15 15:46:21 +02:00
Jens L.
68a23327a8
lib/logging: only show locals when in debug mode ( #16772 )
2025-09-15 15:33:51 +02:00
Dominic R
7e70c6a3b2
readme: Remove Docker pulls badge ( #16707 )
2025-09-15 14:58:48 +02:00
authentik-automation[bot]
f565803cc7
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #16759 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-15 11:22:37 +00:00
dependabot[bot]
ab96bb1ed5
ci: bump tj-actions/changed-files from 46.0.5 to 47.0.0 ( #16760 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 12:58:07 +02:00
dependabot[bot]
0ed65d2df8
core: bump axllent/mailpit from v1.27.7 to v1.27.8 in /tests/e2e ( #16769 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-15 12:57:19 +02:00
zinen
51320d2cd5
website/integrations: remove uneeed slash from semaphore doc ( #16749 )
...
Remove uneeed slash
Signed-off-by: zinen <9595798+zinen@users.noreply.github.com >
2025-09-12 22:03:31 +00:00
dependabot[bot]
ebdb0fd7d3
lifecycle/aws: bump aws-cdk from 2.1029.0 to 2.1029.1 in /lifecycle/aws ( #16742 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1029.0 to 2.1029.1.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1029.1/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1029.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 11:17:20 -05:00
dependabot[bot]
fe25a0aa07
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #16741 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 11:17:01 -05:00
authentik-automation[bot]
55ebadd2f6
core, web: update translations ( #16740 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-12 11:16:39 -05:00
dependabot[bot]
50f8e750a6
web: bump axios from 1.8.4 to 1.12.0 in /web ( #16748 )
...
Bumps [axios](https://github.com/axios/axios ) from 1.8.4 to 1.12.0.
- [Release notes](https://github.com/axios/axios/releases )
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md )
- [Commits](https://github.com/axios/axios/compare/v1.8.4...v1.12.0 )
---
updated-dependencies:
- dependency-name: axios
dependency-version: 1.12.0
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 10:21:09 -05:00
dependabot[bot]
886f9a766c
web: bump @codemirror/lang-html from 6.4.9 to 6.4.10 in /web ( #16744 )
...
Bumps [@codemirror/lang-html](https://github.com/codemirror/lang-html ) from 6.4.9 to 6.4.10.
- [Changelog](https://github.com/codemirror/lang-html/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/lang-html/compare/6.4.9...6.4.10 )
---
updated-dependencies:
- dependency-name: "@codemirror/lang-html"
dependency-version: 6.4.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 14:10:29 +02:00
dependabot[bot]
15e4c8ee4f
web: bump @types/node from 22.15.19 to 24.3.1 in /web ( #16743 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.3.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-12 14:10:19 +02:00
Jens L.
06d59dd08d
lifecycle: fix permission error when running worker as root ( #16735 )
...
* lifecycle: fix permission error when running worker as root
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix maybe?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-11 15:48:19 -05:00
Teffen Ellis
f1f234e879
core: Normalize NPM script arguments. ( #16725 )
2025-09-11 15:29:23 -05:00
Tana M Berry
515a065831
website/docs: re-fix sentence about Go ( #16736 )
...
re-fix sentence about Go
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-09-11 15:24:47 -05:00
Dewi Roberts
a02aaa130e
website/integrations: update tautulli doc ( #16717 )
...
* Update doc
Co-Authored-By: dewi-tik <dewi@goauthentik.io >
Co-Authored-By: Brian Begun <begunfx@usa.net >
* Fix link and typo
* Apply suggestions
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestions
* Add http and port to k8s step
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-11 19:48:35 +01:00
dependabot[bot]
930a924c78
website: bump the build group in /website with 3 updates ( #16687 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.5.2 to 1.5.3
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.3/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.5.2 to 1.5.3
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.3/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.5.2 to 1.5.3
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.3/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.5.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.5.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.5.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:06:24 -05:00
dependabot[bot]
5fc5429226
web: bump @sentry/browser from 10.10.0 to 10.11.0 in /web in the sentry group across 1 directory ( #16688 )
...
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 10.10.0 to 10.11.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.11.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/10.10.0...10.11.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.11.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-09-11 13:06:20 -05:00
dependabot[bot]
0ecc442412
web: bump country-flag-icons from 1.5.19 to 1.5.20 in /web ( #16689 )
...
Bumps [country-flag-icons](https://gitlab.com/catamphetamine/country-flag-icons ) from 1.5.19 to 1.5.20.
- [Changelog](https://gitlab.com/catamphetamine/country-flag-icons/blob/master/CHANGELOG.md )
- [Commits](https://gitlab.com/catamphetamine/country-flag-icons/compare/v1.5.19...v1.5.20 )
---
updated-dependencies:
- dependency-name: country-flag-icons
dependency-version: 1.5.20
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:06:16 -05:00
dependabot[bot]
b3f046cfcf
web: bump globals from 16.3.0 to 16.4.0 in /web ( #16690 )
...
Bumps [globals](https://github.com/sindresorhus/globals ) from 16.3.0 to 16.4.0.
- [Release notes](https://github.com/sindresorhus/globals/releases )
- [Commits](https://github.com/sindresorhus/globals/compare/v16.3.0...v16.4.0 )
---
updated-dependencies:
- dependency-name: globals
dependency-version: 16.4.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-09-11 13:06:11 -05:00
dependabot[bot]
473d528ad2
core: bump astral-sh/uv from 0.8.15 to 0.8.17 ( #16708 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.15 to 0.8.17.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.15...0.8.17 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.17
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:06:09 -05:00
dependabot[bot]
26ac6547be
core: bump github.com/redis/go-redis/v9 from 9.13.0 to 9.14.0 ( #16709 )
...
Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis ) from 9.13.0 to 9.14.0.
- [Release notes](https://github.com/redis/go-redis/releases )
- [Changelog](https://github.com/redis/go-redis/blob/master/RELEASE-NOTES.md )
- [Commits](https://github.com/redis/go-redis/compare/v9.13.0...v9.14.0 )
---
updated-dependencies:
- dependency-name: github.com/redis/go-redis/v9
dependency-version: 9.14.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-09-11 13:06:05 -05:00
dependabot[bot]
a867ae9ae1
core: bump goauthentik.io/api/v3 from 3.2025100.4 to 3.2025100.5 ( #16710 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.4 to 3.2025100.5.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.4...v3.2025100.5 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:06:01 -05:00
dependabot[bot]
6186455cb9
core: bump github.com/getsentry/sentry-go from 0.35.1 to 0.35.2 ( #16711 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.35.1 to 0.35.2.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.35.1...v0.35.2 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.35.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:05:58 -05:00
dependabot[bot]
812b912ea2
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #16712 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:05:55 -05:00
dependabot[bot]
218ffb9179
web: bump chromedriver from 140.0.0 to 140.0.1 in /web ( #16713 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 140.0.0 to 140.0.1.
- [Commits](https://github.com/giggio/node-chromedriver/compare/140.0.0...140.0.1 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 140.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:05:52 -05:00
dependabot[bot]
2a12be73b5
web: bump pino from 9.9.4 to 9.9.5 in /web ( #16714 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.9.4 to 9.9.5.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.9.4...v9.9.5 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.9.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:05:49 -05:00
dependabot[bot]
3f1921c0d3
web: bump @types/node from 22.15.19 to 24.3.1 in /web ( #16715 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.3.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-11 13:05:46 -05:00
transifex-integration[bot]
5ef530d7c9
translate: Updates for file locale/en/LC_MESSAGES/django.po in de ( #16697 )
...
Translate locale/en/LC_MESSAGES/django.po in de
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'de'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-11 13:02:20 -05:00
transifex-integration[bot]
5e86610b63
translate: Updates for file web/xliff/en.xlf in de ( #16698 )
...
Translate web/xliff/en.xlf in de
100% translated source file: 'web/xliff/en.xlf'
on 'de'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-11 13:02:06 -05:00
Teffen Ellis
3906ba90f2
website: Bump @goauthentik/docusaurus-config ( #16722 )
2025-09-11 17:07:52 +00:00
Teffen Ellis
d8bc6e7d9b
core: Fix middlware race condition induced crash ( #16705 )
2025-09-11 11:35:16 -05:00
Tana M Berry
e582a178e1
website/docs: remove reference to Go migration ( #16724 )
...
remove reference to Go migration
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-09-11 09:50:15 -05:00
Dewi Roberts
aa56b2fdb1
website: add powershell syntax highlighting and bump package ( #16683 )
...
Add powershell syntax highlighting and bump package
2025-09-11 15:35:03 +02:00
Dewi Roberts
5f3b6ddbb2
website/docs: update ssh rac doc ( #16695 )
...
* Added linebreak preservation and changed blocks to yaml syntax
* Update website/docs/add-secure-apps/providers/rac/rac-public-key.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/providers/rac/rac-public-key.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-11 14:22:09 +01:00
Dewi Roberts
bb193a4a15
website/docs: fix typos ( #16716 )
...
Fix typos
2025-09-11 14:21:22 +01:00
Dewi Roberts
d24cebbf07
website/docs: moves display source notes ( #16704 )
...
Moves display source note location to better location
2025-09-11 14:20:41 +01:00
authentik-automation[bot]
26616b8d7d
web: bump API Client version ( #16700 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-10 17:20:16 -04:00
Teffen Ellis
ff31e0fc3d
web: Use Pino console logger, reduce live reload noise. ( #16703 )
...
* web: Use Pino console logger, reduce live reload noise.
* web: Update package.
2025-09-10 20:56:50 +00:00
Teffen Ellis
62918e9f58
web/a11y: Codemirror ( #16010 )
...
* web: Make Codemirror screen reader friendly.
* web: Include shared directory.
2025-09-10 20:21:37 +00:00
Teffen Ellis
37d8ccdd31
web: Use embedded layout. ( #16481 )
...
* web: Use embedded layout.
* web: Fix import path. Clarify type.
2025-09-10 18:59:08 +00:00
Teffen Ellis
ca73d7df8a
web: Remove deprecated node:path polyfill. ( #16702 )
2025-09-10 18:08:37 +00:00
Teffen Ellis
635df5694e
web/esbuild-plugin-live-reload: Logger options. ( #16701 )
2025-09-10 18:03:21 +00:00
Dewi Roberts
3a978dc348
core: fix description on remove_user_from_group ( #16694 )
...
Fix description on authentik_core.remove_user_from_group and regenerated schema
2025-09-10 12:35:56 -05:00
Dewi Roberts
480a110d74
website/docs: clarify docker compose install ( #16696 )
...
* Change order
* WIP
2025-09-10 12:35:35 -05:00
Rahammetoela Toekiman
607cbf5148
website/integrations: add osticket ( #16572 )
...
* add osticket
* website/integrations/infrastructure/osticket/index.md
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* further improved wording
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
* remove extra header
* Capitalize authentik
* Update website/integrations/infrastructure/osticket/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
---------
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-10 13:33:49 +00:00
bazhard
cab8d42fe0
website/integrations: add appflowy ( #16499 )
...
* Add documentation for Appflowy service
Signed-off-by: bazhard <52638579+rayanbzd@users.noreply.github.com >
* Update index.md
Signed-off-by: bazhard <52638579+rayanbzd@users.noreply.github.com >
* Update website/integrations/documentation/appflowy/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/documentation/appflowy/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/integrations/documentation/appflowy/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions from code review
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestions
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Apply suggestions
* Fixed cert names
* Applied suggestions
---------
Signed-off-by: bazhard <52638579+rayanbzd@users.noreply.github.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-10 11:45:47 +00:00
Tana M Berry
7b9945202b
website/docs: add rate limiting info to Email stage docs ( #16668 )
...
* add rate limiting info
* added Jens' edits
* Update website/docs/add-secure-apps/flows-stages/stages/email/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/flows-stages/stages/email/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/add-secure-apps/flows-stages/stages/email/index.mdx
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-09-10 04:50:44 -05:00
dependabot[bot]
3418776ab1
website: bump the eslint group in /website with 3 updates ( #16674 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/parser )
Updates `typescript-eslint` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-09 09:42:44 -05:00
dependabot[bot]
79dbcca0f4
web: bump the eslint group across 2 directories with 3 updates ( #16675 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/parser )
Updates `typescript-eslint` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.42.0 to 8.43.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.43.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.43.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.43.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.43.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.43.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-09 09:42:24 -05:00
dependabot[bot]
34c1c9794e
web: bump vite from 7.1.4 to 7.1.5 in /web ( #16676 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.4 to 7.1.5.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.5/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-09 09:20:58 -05:00
Dewi Roberts
14adb060ee
website/docs: fix typo ( #16681 )
...
Fix typo
2025-09-09 14:12:49 +01:00
Teffen Ellis
a8b6030f07
core: Include region comments in VSCode Minimap. ( #16667 )
2025-09-09 09:10:38 -04:00
Jens L.
46767c307d
tasks: fix status and healthcheck breaking with connection issues ( #16504 )
...
* add high priority for inline tasks in API
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* also catch psycopg errors directly
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* retry locking worker state after failure
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-08 16:59:34 -05:00
Tana M Berry
4d655e63cb
website/docs: add period on very last sentence. ( #16669 )
...
add period on very last sentence.
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-09-08 18:15:01 +01:00
dependabot[bot]
7182b22fbc
core: bump golang.org/x/sync from 0.16.0 to 0.17.0 ( #16657 )
...
Bumps [golang.org/x/sync](https://github.com/golang/sync ) from 0.16.0 to 0.17.0.
- [Commits](https://github.com/golang/sync/compare/v0.16.0...v0.17.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/sync
dependency-version: 0.17.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-09-08 09:44:51 -05:00
dependabot[bot]
156db5cf04
web: bump the eslint group across 3 directories with 2 updates ( #16661 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /packages/prettier-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /web directory: [eslint](https://github.com/eslint/eslint ).
Updates `eslint` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.34.0...v9.35.0 )
Updates `eslint` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.34.0...v9.35.0 )
Updates `@eslint/js` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.35.0/packages/js )
Updates `eslint` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.34.0...v9.35.0 )
Updates `@eslint/js` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.35.0/packages/js )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.35.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.35.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.35.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.35.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.35.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:32:47 -05:00
dependabot[bot]
3a38e8c57e
web: bump the storybook group across 1 directory with 5 updates ( #16662 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.5/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.5/code/addons/links )
Updates `@storybook/web-components` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.5/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.5/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.5/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:32:32 -05:00
dependabot[bot]
75834c7776
core: bump golang.org/x/oauth2 from 0.30.0 to 0.31.0 ( #16658 )
...
Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2 ) from 0.30.0 to 0.31.0.
- [Commits](https://github.com/golang/oauth2/compare/v0.30.0...v0.31.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/oauth2
dependency-version: 0.31.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-09-08 09:31:42 -05:00
dependabot[bot]
4fad769314
core: bump github.com/prometheus/client_golang from 1.23.1 to 1.23.2 ( #16659 )
...
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang ) from 1.23.1 to 1.23.2.
- [Release notes](https://github.com/prometheus/client_golang/releases )
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prometheus/client_golang/compare/v1.23.1...v1.23.2 )
---
updated-dependencies:
- dependency-name: github.com/prometheus/client_golang
dependency-version: 1.23.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:31:38 -05:00
dependabot[bot]
89823f3f2a
website: bump the eslint group in /website with 2 updates ( #16660 )
...
Bumps the eslint group in /website with 2 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) and [eslint](https://github.com/eslint/eslint ).
Updates `@eslint/js` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.35.0/packages/js )
Updates `eslint` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.34.0...v9.35.0 )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.35.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.35.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:31:34 -05:00
dependabot[bot]
a53da5f00d
web: bump the rollup group across 1 directory with 4 updates ( #16663 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.50.0 to 4.50.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.0...v4.50.1 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.50.0 to 4.50.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.0...v4.50.1 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.50.0 to 4.50.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.0...v4.50.1 )
Updates `rollup` from 4.50.0 to 4.50.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.50.0...v4.50.1 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.50.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.50.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.50.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.50.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:31:26 -05:00
dependabot[bot]
5c17f5d82c
web: bump pino from 9.9.2 to 9.9.4 in /web ( #16664 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.9.2 to 9.9.4.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.9.2...v9.9.4 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.9.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:31:21 -05:00
dependabot[bot]
b04ea505b8
lifecycle/aws: bump aws-cdk from 2.1028.0 to 2.1029.0 in /lifecycle/aws ( #16665 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1028.0 to 2.1029.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1029.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1029.0
dependency-type: direct:development
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-09-08 09:31:17 -05:00
dependabot[bot]
84e81e4327
core: bump selenium/standalone-chrome from 139.0 to 140.0 in /tests/e2e ( #16666 )
...
Bumps selenium/standalone-chrome from 139.0 to 140.0.
---
updated-dependencies:
- dependency-name: selenium/standalone-chrome
dependency-version: '140.0'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-08 09:31:13 -05:00
Dominic R
b356c8dbb5
website/integrations: fix missing space after comma ( #16650 )
...
The look on my face when I noticed this...
2025-09-07 00:20:21 +00:00
Anders Samuelsen
5c77fa0300
website/integrations: add missing comma paperless-ngx ( #16651 )
...
Update index.mdx
PAPERLESS_SOCIALACCOUNT_PROVIDERS environment variable
- Added missing comma between "server_url" and "claims" in compose.yaml
Signed-off-by: Anders Samuelsen <51813620+sammynorway@users.noreply.github.com >
2025-09-06 23:59:37 +00:00
Jens L.
d7d220ad77
root: bump to debian trixie ( #16626 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-06 20:10:02 +02:00
Dominic R
ed96c73842
website/integrations: digitalocean: improve sentence for profile scope ( #16652 )
2025-09-06 17:56:07 +00:00
Dominic R
9484ec85c0
website/integrations: digitalocean ( #16649 )
2025-09-06 18:36:53 +02:00
Jens L.
114eb7968a
providers/scim: improve error message when object fails to sync ( #16625 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-05 14:12:23 +02:00
dependabot[bot]
4c2f307d23
ci: bump actions/setup-go from 5 to 6 ( #16630 )
...
Bumps [actions/setup-go](https://github.com/actions/setup-go ) from 5 to 6.
- [Release notes](https://github.com/actions/setup-go/releases )
- [Commits](https://github.com/actions/setup-go/compare/v5...v6 )
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:07:14 +02:00
dependabot[bot]
8e88257e58
ci: bump actions/stale from 9 to 10 ( #16631 )
...
Bumps [actions/stale](https://github.com/actions/stale ) from 9 to 10.
- [Release notes](https://github.com/actions/stale/releases )
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/stale/compare/v9...v10 )
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: '10'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:07:07 +02:00
dependabot[bot]
7af4cef152
core: bump github.com/prometheus/client_golang from 1.23.0 to 1.23.1 ( #16632 )
...
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang ) from 1.23.0 to 1.23.1.
- [Release notes](https://github.com/prometheus/client_golang/releases )
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prometheus/client_golang/compare/v1.23.0...v1.23.1 )
---
updated-dependencies:
- dependency-name: github.com/prometheus/client_golang
dependency-version: 1.23.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:06:53 +02:00
dependabot[bot]
a780e42e55
web: bump @sentry/browser from 10.9.0 to 10.10.0 in /web in the sentry group across 1 directory ( #16634 )
...
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 10.9.0 to 10.10.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.10.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/10.9.0...10.10.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.10.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-09-05 14:06:44 +02:00
dependabot[bot]
295a137a5d
website: bump @types/node from 24.3.0 to 24.3.1 in /website ( #16633 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.3.0 to 24.3.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:06:34 +02:00
dependabot[bot]
475377c428
web: bump @types/node from 24.3.0 to 24.3.1 in /packages/esbuild-plugin-live-reload ( #16635 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.3.0 to 24.3.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:06:27 +02:00
dependabot[bot]
d7af4b1619
web: bump @types/node from 24.3.0 to 24.3.1 in /packages/prettier-config ( #16636 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.3.0 to 24.3.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:06:20 +02:00
dependabot[bot]
be2574ac27
web: bump @types/node from 22.15.19 to 24.3.1 in /web ( #16637 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.3.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:06:08 +02:00
dependabot[bot]
6a25af851b
web: bump pino from 9.9.1 to 9.9.2 in /web ( #16638 )
...
Bumps [pino](https://github.com/pinojs/pino ) from 9.9.1 to 9.9.2.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.9.1...v9.9.2 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.9.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-05 14:06:01 +02:00
dependabot[bot]
e07009c67d
web: bump mermaid from 11.10.1 to 11.11.0 in /web ( #16639 )
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.10.1 to 11.11.0.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.10.1...mermaid@11.11.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.11.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-09-05 14:05:53 +02:00
dependabot[bot]
fa899e9b32
web: bump @goauthentik/api from 2025.10.0-rc1-1756472879 to 2025.10.0-rc1-1756907691 in /web in the goauthentik group across 1 directory ( #16616 )
...
web: bump @goauthentik/api
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/api` from 2025.10.0-rc1-1756472879 to 2025.10.0-rc1-1756907691
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1756907691
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 16:01:53 +02:00
dependabot[bot]
23dfacec3e
web: bump pino from 9.7.0 to 9.9.1 in /web ( #16605 )
...
* web: bump pino from 9.7.0 to 9.9.1 in /web
Bumps [pino](https://github.com/pinojs/pino ) from 9.7.0 to 9.9.1.
- [Release notes](https://github.com/pinojs/pino/releases )
- [Commits](https://github.com/pinojs/pino/compare/v9.7.0...v9.9.1 )
---
updated-dependencies:
- dependency-name: pino
dependency-version: 9.9.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* fix?
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-09-04 15:24:45 +02:00
dependabot[bot]
de37a8d31b
lifecycle/aws: bump aws-cdk from 2.1027.0 to 2.1028.0 in /lifecycle/aws ( #16614 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1027.0 to 2.1028.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1028.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1028.0
dependency-type: direct:development
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-09-04 14:42:02 +02:00
dependabot[bot]
ec3cf4dc4b
core: bump goauthentik.io/api/v3 from 3.2025100.3 to 3.2025100.4 ( #16613 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.3 to 3.2025100.4.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.3...v3.2025100.4 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 14:29:42 +02:00
dependabot[bot]
603b384192
ci: bump aws-actions/configure-aws-credentials from 4 to 5 ( #16612 )
...
Bumps [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials ) from 4 to 5.
- [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases )
- [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md )
- [Commits](https://github.com/aws-actions/configure-aws-credentials/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: aws-actions/configure-aws-credentials
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 14:25:22 +02:00
authentik-automation[bot]
2427642bec
core, web: update translations ( #16602 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-04 13:54:24 +02:00
dependabot[bot]
eaab0b144d
web: bump the storybook group across 1 directory with 5 updates ( #16603 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.3 to 9.1.4
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.4/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.3 to 9.1.4
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.4/code/addons/links )
Updates `@storybook/web-components` from 9.1.3 to 9.1.4
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.4/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.3 to 9.1.4
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.4/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.3 to 9.1.4
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.4/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 13:54:20 +02:00
dependabot[bot]
e7fbe1c6cb
web: bump @fortawesome/fontawesome-free from 7.0.0 to 7.0.1 in /web ( #16604 )
...
Bumps [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome ) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases )
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md )
- [Commits](https://github.com/FortAwesome/Font-Awesome/compare/7.0.0...7.0.1 )
---
updated-dependencies:
- dependency-name: "@fortawesome/fontawesome-free"
dependency-version: 7.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 13:54:17 +02:00
dependabot[bot]
9d49b6f0ce
website: bump @types/semver from 7.7.0 to 7.7.1 in /website ( #16606 )
...
Bumps [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver ) from 7.7.0 to 7.7.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver )
---
updated-dependencies:
- dependency-name: "@types/semver"
dependency-version: 7.7.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 13:54:14 +02:00
dependabot[bot]
afd81d5307
core: bump github.com/redis/go-redis/v9 from 9.12.1 to 9.13.0 ( #16607 )
...
Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis ) from 9.12.1 to 9.13.0.
- [Release notes](https://github.com/redis/go-redis/releases )
- [Changelog](https://github.com/redis/go-redis/blob/master/RELEASE-NOTES.md )
- [Commits](https://github.com/redis/go-redis/compare/v9.12.1...v9.13.0 )
---
updated-dependencies:
- dependency-name: github.com/redis/go-redis/v9
dependency-version: 9.13.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-09-04 13:54:11 +02:00
dependabot[bot]
333ace5dc4
ci: bump actions/setup-node from 4 to 5 ( #16608 )
...
Bumps [actions/setup-node](https://github.com/actions/setup-node ) from 4 to 5.
- [Release notes](https://github.com/actions/setup-node/releases )
- [Commits](https://github.com/actions/setup-node/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 13:54:07 +02:00
dependabot[bot]
1cca3406e9
web: bump @sentry/browser from 10.8.0 to 10.9.0 in /web in the sentry group across 1 directory ( #16609 )
...
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 10.8.0 to 10.9.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.9.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/10.8.0...10.9.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.9.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-09-04 13:54:04 +02:00
dependabot[bot]
736cd85c8f
web: bump @types/node from 22.15.19 to 24.3.0 in /web ( #16610 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.3.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 13:54:01 +02:00
dependabot[bot]
07fd7c61c8
web: bump knip from 5.63.0 to 5.63.1 in /web ( #16611 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.63.0 to 5.63.1.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.63.1/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.63.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 13:53:18 +02:00
dependabot[bot]
2b99b0095b
website: bump the eslint group in /website with 3 updates ( #16599 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/parser )
Updates `typescript-eslint` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 00:23:32 +02:00
dependabot[bot]
65e8c6ab9a
web: bump chromedriver from 139.0.3 to 140.0.0 in /web ( #16601 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 139.0.3 to 140.0.0.
- [Commits](https://github.com/giggio/node-chromedriver/compare/139.0.3...140.0.0 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 140.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 00:12:53 +02:00
dependabot[bot]
7721f1588d
web: bump the eslint group across 2 directories with 3 updates ( #16600 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/parser )
Updates `typescript-eslint` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.41.0 to 8.42.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.42.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.42.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.42.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.42.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.42.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 23:56:07 +02:00
Jens L.
d9bffc1f91
providers/oauth2: add missing exp claim for logout token ( #16593 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-03 23:30:11 +02:00
dependabot[bot]
31b231322d
core: bump astral-sh/uv from 0.8.14 to 0.8.15 ( #16597 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.14 to 0.8.15.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/commits )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.15
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 23:18:10 +02:00
Marcelo Elizeche Landó
c953e7dc48
core: bump boto3 from 1.40.21 to v1.40.22 ( #16595 )
2025-09-03 20:02:00 +02:00
Dominic R
523b5995d7
website: Update license text to use "directory" ( #16589 )
...
To remove any potential confusion
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-03 16:55:00 +01:00
Marcelo Elizeche Landó
37db24d12e
core: bump django from 5.1.11 to v5.1.12 ( #16584 )
...
bump django from 5.1.11 to 5.1.12
2025-09-03 17:20:59 +02:00
Jens L.
2a8eae14f0
web/flows: only disable login button when interactive captcha is configured and not loaded ( #16586 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-09-03 17:20:46 +02:00
Dongwoo Jeong
a1076d784f
sources/ldap: fix malformed filter error with special characters in group DN ( #16243 )
...
* sources/ldap: fix malformed filter error with special characters in group DN
Escape special characters in LDAP group DN when constructing membership filters using ldap3's escape_filter_chars() function to prevent LDAPInvalidFilterError exceptions.
* sources/ldap: add tests for special characters in group DN filter escaping
Add comprehensive tests to verify that LDAP group DN values with special characters (parentheses, backslashes, asterisks) are properly escaped when constructing LDAP filters. Tests cover both the membership synchronization process and the escape_filter_chars function directly to ensure malformed filter errors are prevented.
* sources/ldap: fix line length for ruff linting compliance
Split long line in group filter construction to comply with 100 character limit.
* sources/ldap: move escape_filter_chars import to top-level in tests; audit other filter usages
---------
Co-authored-by: Dongwoo Jeong <dongwoo.jeong@lge.com >
2025-09-03 14:21:50 +00:00
Jonas Bernard
cca57718ca
blueprints: fix email address verified by default ( #16206 )
2025-09-03 14:20:14 +00:00
Dominic R
1e0b7e461d
core: Mark impersonation reason field as required in UI and fix status codes ( #16065 )
2025-09-03 15:54:33 +02:00
Dewi Roberts
a6390f0c00
web/admin: providers/rac: improve host field hint ( #16443 )
...
Adds mention of port config
2025-09-03 15:51:13 +02:00
Marcelo Elizeche Landó
eda3e956a5
core: bump cbor2 from 5.6.5 to v5.7.0 ( #16533 )
2025-09-03 15:50:09 +02:00
RobotHanzo
9d1df62122
core: Fix typo ( #16560 )
...
fix: Typo
Fixed typo in /core/users/impersonate_end/ docs
Signed-off-by: RobotHanzo <36107150+RobotHanzo@users.noreply.github.com >
2025-09-03 15:49:56 +02:00
Simonyi Gergő
5240506d98
website/docs: misc changes and fixes ( #15935 )
...
* docs: misc changes and fixes
* Update website/docs/core/terminology.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/core/terminology.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/core/terminology.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/core/terminology.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/core/terminology.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/customize/policies/index.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/enterprise/get-started.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/core/terminology.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* missed a spot
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-09-03 15:47:19 +02:00
Simonyi Gergő
3044071290
website/docs: misc changes to full dev environment setup ( #15937 )
...
* website/docs: misc changes to full dev environment setup
Yes, I redid my setup tonight, how did you know?
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* add worker threads hint
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-03 15:47:06 +02:00
transifex-integration[bot]
f6bb48bf3d
translate: Updates for file locale/en/LC_MESSAGES/django.po in de ( #16563 )
...
Translate locale/en/LC_MESSAGES/django.po in de
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'de'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-09-03 13:05:31 +02:00
Marcelo Elizeche Landó
01416a4b6e
core: bump markdown-it-py from 3.0.0 to v4.0.0 ( #16542 )
2025-09-03 13:05:05 +02:00
Marcelo Elizeche Landó
3feb2518ba
core: bump microsoft-kiota-abstractions from 1.9.5 to v1.9.6 ( #16543 )
2025-09-03 13:05:02 +02:00
Marcelo Elizeche Landó
0423262cec
core: bump microsoft-kiota-serialization-form from 1.9.5 to v1.9.6 ( #16544 )
2025-09-03 13:04:58 +02:00
Marcelo Elizeche Landó
84d8b3af69
core: bump microsoft-kiota-serialization-json from 1.9.5 to v1.9.6 ( #16545 )
2025-09-03 13:04:55 +02:00
Marcelo Elizeche Landó
1adfbcc636
core: bump microsoft-kiota-serialization-multipart from 1.9.5 to v1.9.6 ( #16546 )
2025-09-03 13:04:52 +02:00
Marcelo Elizeche Landó
9009b4d5ff
core: bump microsoft-kiota-serialization-text from 1.9.5 to v1.9.6 ( #16547 )
2025-09-03 13:04:48 +02:00
Marcelo Elizeche Landó
afed187517
core: bump multidict from 6.6.3 to v6.6.4 ( #16548 )
2025-09-03 13:04:45 +02:00
Marcelo Elizeche Landó
43955d580f
core: bump platformdirs from 4.3.8 to v4.4.0 ( #16551 )
2025-09-03 13:04:41 +02:00
Marcelo Elizeche Landó
2d26229f21
core: bump protobuf from 6.31.1 to v6.32.0 ( #16552 )
2025-09-03 13:04:38 +02:00
Marcelo Elizeche Landó
1ea2348f4d
core: bump redis from 6.3.0 to v6.4.0 ( #16553 )
2025-09-03 13:04:34 +02:00
Marcelo Elizeche Landó
2a93caf819
core: bump requests from 2.32.4 to v2.32.5 ( #16554 )
2025-09-03 13:04:31 +02:00
Marcelo Elizeche Landó
0096c296b6
core: bump rpds-py from 0.26.0 to v0.27.1 ( #16555 )
2025-09-03 13:04:28 +02:00
Marcelo Elizeche Landó
e9fe3ab71f
core: bump stevedore from 5.4.1 to v5.5.0 ( #16556 )
2025-09-03 13:04:25 +02:00
Marcelo Elizeche Landó
a48d412ae1
core: bump typing-extensions from 4.14.1 to v4.15.0 ( #16557 )
2025-09-03 13:04:21 +02:00
dependabot[bot]
709a6eb2c3
web: bump vite from 7.1.3 to 7.1.4 in /web ( #16577 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.1.3 to 7.1.4.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.4/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-03 13:04:18 +02:00
dependabot[bot]
6a28ea52ae
core: bump github.com/spf13/cobra from 1.9.1 to 1.10.1 ( #16578 )
...
Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra ) from 1.9.1 to 1.10.1.
- [Release notes](https://github.com/spf13/cobra/releases )
- [Commits](https://github.com/spf13/cobra/compare/v1.9.1...v1.10.1 )
---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
dependency-version: 1.10.1
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-09-03 13:04:15 +02:00
Marcelo Elizeche Landó
6b480e9b10
core: bump charset-normalizer from 3.4.2 to v3.4.3 ( #16535 )
...
* core: bump cbor2 from 5.6.5 to v5.7.0
* core: bump charset-normalizer from 3.4.2 to v3.4.3
2025-09-03 13:04:11 +02:00
Marcelo Elizeche Landó
5f0d75c89b
core: bump email-validator from 2.2.0 to v2.3.0 ( #16536 )
2025-09-03 13:04:07 +02:00
Marcelo Elizeche Landó
26a37e4d02
core: bump geographiclib from 2.0 to v2.1 ( #16537 )
2025-09-03 13:04:03 +02:00
Marcelo Elizeche Landó
c3a2350a07
core: bump gevent from 25.5.1 to v25.8.2 ( #16538 )
2025-09-03 13:04:00 +02:00
Marcelo Elizeche Landó
e26e9e74f1
core: bump greenlet from 3.2.3 to v3.2.4 ( #16539 )
2025-09-03 13:03:56 +02:00
Marcelo Elizeche Landó
921e620c01
core: bump httplib2 from 0.22.0 to v0.30.0 ( #16540 )
2025-09-03 13:03:53 +02:00
Marcelo Elizeche Landó
018a561ff4
core: bump jsonschema from 4.25.0 to v4.25.1 ( #16541 )
2025-09-03 13:03:50 +02:00
Connor Peshek
59d5f858dc
website/docs: remove base providers redirect. ( #16576 )
2025-09-03 07:22:32 +02:00
dependabot[bot]
dcc4a126b3
website: bump the build group in /website with 3 updates ( #16575 )
2025-09-03 03:08:49 +02:00
Dominic R
67a4905f47
root: clean up README ( #16286 )
...
* wip
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Delete website/LICENSE
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-02 21:38:53 +00:00
Dominic R
f690c2205d
website: Add text copy of license ( #16559 )
...
* website: Add License
According to the root LICENSE, the website is licensed under Creative Commons: CC BY-SA 4.0 license. To match the root of the project and the EE dir, a text copy of the license is now included.
Updates AUTH-1246
Signed-off-by: Dominic R <dominic@sdko.org >
* Update LICENSE
Signed-off-by: Dominic R <dominic@sdko.org >
* Create LICENSE for proprietary logo assets
Added license information for proprietary assets.
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-02 22:28:04 +01:00
Dewi Roberts
053621bc0a
website/integrations: updates arrows and fixes some formatting ( #16570 )
...
Updates arrows and fixes some formatting
2025-09-02 22:10:23 +01:00
Dewi Roberts
3bebdd1272
website/integrations: update paperless-ngx environment variables ( #16492 )
...
* Update environment variables
* Update website/integrations/documentation/paperless-ngx/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-09-02 16:18:57 +01:00
Dewi Roberts
ce43d8361e
website/docs: changes all -> arrows to > ( #16569 )
...
Changes all -> arrows to > as per style guide. Also fixes some bolding and capitalization
2025-09-02 15:55:09 +01:00
Dewi Roberts
f9e87f4c37
website/docs: update external user information ( #16493 )
...
Updated information
2025-09-02 14:27:55 +01:00
Dewi Roberts
9b4325269b
website/docs: improve customize your instance page layout ( #16367 )
...
* Changes bullet points to a table. WIP
* Finished sentence and added punctuation
* Updated to match other overview/landing pages
2025-09-02 13:54:03 +01:00
Marcelo Elizeche Landó
ea5ac1e76e
core: bump orjson from 3.11.1 to v3.11.3 ( #16549 )
2025-09-02 14:46:18 +02:00
Dominic R
6370d4ba77
website/integrations: openwebui: update provider configuration ( #16495 )
...
* website/integrations: openwebui: update provider configuration
Closes https://github.com/goauthentik/authentik/issues/16491
Closes AUTH-1245
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana Berry <tana@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/integrations/miscellaneous/open-webui/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Lint fix
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana Berry <tana@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-09-02 12:37:29 +00:00
Dominic R
9e1dad6b94
website: integration template: add reference section ( #16561 )
...
* website: integration template: add reference section
Closes AUTH-1251
* Update website/integrations/template/service.md
Signed-off-by: Dominic R <dominic@sdko.org >
* a
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-02 09:46:51 +01:00
Dominic R
9b6be3ae23
website/integrations: seafile: update provider configuration ( #16496 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-09-01 21:03:26 +00:00
Dominic R
785b4ecc80
Revert "website: Add License" ( #16558 )
...
Revert "website: Add License (#16515 )"
This reverts commit c0979988b2 .
2025-09-01 18:35:48 +00:00
Dominic R
c0979988b2
website: Add License ( #16515 )
...
According to the root LICENSE, the website is licensed under Creative Commons: CC BY-SA 4.0 license. To match the root of the project and the EE dir, a text copy of the license is now included.
Updates AUTH-1246
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-01 19:52:53 +02:00
authentik-automation[bot]
8d31b1b902
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #16505 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-09-01 17:47:48 +01:00
dependabot[bot]
a5578aed62
website: bump @mdx-js/react from 3.1.0 to 3.1.1 in /website ( #16506 )
...
Bumps [@mdx-js/react](https://github.com/mdx-js/mdx/tree/HEAD/packages/react ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/mdx-js/mdx/releases )
- [Changelog](https://github.com/mdx-js/mdx/blob/main/changelog.md )
- [Commits](https://github.com/mdx-js/mdx/commits/3.1.1/packages/react )
---
updated-dependencies:
- dependency-name: "@mdx-js/react"
dependency-version: 3.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 17:47:29 +01:00
dependabot[bot]
edf8bb68e1
core: bump goauthentik.io/api/v3 from 3.2025100.2 to 3.2025100.3 ( #16507 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025100.2 to 3.2025100.3.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025100.2...v3.2025100.3 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 17:47:21 +01:00
dependabot[bot]
674e0a6003
web: bump the rollup group across 1 directory with 4 updates ( #16508 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.49.0 to 4.50.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.49.0...v4.50.0 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.49.0 to 4.50.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.49.0...v4.50.0 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.49.0 to 4.50.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.49.0...v4.50.0 )
Updates `rollup` from 4.49.0 to 4.50.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.49.0...v4.50.0 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.50.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.50.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.50.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.50.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 17:46:38 +01:00
dependabot[bot]
542f9dc638
web: bump @types/node from 22.15.19 to 24.3.0 in /web ( #16509 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.3.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 17:46:21 +01:00
dependabot[bot]
12c13d7d3c
web: bump @sentry/browser from 10.7.0 to 10.8.0 in /web in the sentry group across 1 directory ( #16510 )
...
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 10.7.0 to 10.8.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/10.7.0...10.8.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.8.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-09-01 17:46:11 +01:00
dependabot[bot]
1129dd17fc
web: bump typedoc from 0.28.11 to 0.28.12 in /packages/esbuild-plugin-live-reload ( #16512 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.11 to 0.28.12.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.11...v0.28.12 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.12
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 17:44:30 +01:00
dependabot[bot]
796e5aca3e
web: bump @mdx-js/mdx from 3.1.0 to 3.1.1 in /web ( #16513 )
...
Bumps [@mdx-js/mdx](https://github.com/mdx-js/mdx/tree/HEAD/packages/mdx ) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/mdx-js/mdx/releases )
- [Changelog](https://github.com/mdx-js/mdx/blob/main/changelog.md )
- [Commits](https://github.com/mdx-js/mdx/commits/3.1.1/packages/mdx )
---
updated-dependencies:
- dependency-name: "@mdx-js/mdx"
dependency-version: 3.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-01 17:42:43 +01:00
Dominic R
244be46806
website/integrations: bitwarden: fix ent notice ( #16502 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-09-01 09:15:07 +01:00
Jens L.
73a076560e
policies: remove object pk from authentik_policies_execution_time to reduce cardinality ( #16500 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
#16386
2025-08-31 13:35:57 +01:00
Dewi Roberts
9dfa6a0a7b
website/docs: update how to rac and outpost landing page ( #16442 )
...
* Adds outpost deployment to how to rac guide and updates the outpost landing page
* Applied suggestions
* Apply suggestion
* Update website/docs/add-secure-apps/providers/rac/how-to-rac.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/add-secure-apps/outposts/index.mdx
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Removed cards
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-08-31 10:12:45 +00:00
authentik-automation[bot]
239770ec06
web: bump API Client version ( #16471 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-30 12:41:05 +01:00
authentik-automation[bot]
4ff5c2d818
core, web: update translations ( #16485 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-30 12:40:35 +01:00
dependabot[bot]
06aaafb694
website: bump the build group in /website with 3 updates ( #16463 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.1/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.1/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.5.0 to 1.5.1
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.1/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.5.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.5.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.5.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 22:36:08 +01:00
dependabot[bot]
41bc6540dd
website: bump @types/react-dom from 19.1.8 to 19.1.9 in /website ( #16464 )
...
Bumps [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ) from 19.1.8 to 19.1.9.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 22:35:52 +01:00
Dewi Roberts
dbb9810d63
website/docs: add missing notification rule example doc to sidebar ( #16478 )
...
Adds missing doc to sidebar
2025-08-29 17:33:25 +00:00
Jens L.
7bb40bf058
ci: cherry pick improvements ( #16477 )
...
* git user name as param
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* prevent variable expansion in external strings
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* only run on pull_request_target for external PRs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* get bot ID from task
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-29 18:21:35 +01:00
Simonyi Gergő
563e98e243
rbac: fix typo ( #16476 )
2025-08-29 18:22:42 +02:00
Teffen Ellis
016e5eabe1
website: Redirect Azure to Entra. Add tags for search indexing. ( #16474 )
...
* website: Add Azure redirects, tags for search indexing.
* website: Fix redirects tab alignment.
2025-08-29 15:22:48 +00:00
Teffen Ellis
66e17fe280
website: Page redirect guide, documentation ( #16466 )
...
website: Flesh out redirects docs.
2025-08-29 14:41:30 +00:00
katrinm86
f01429bf6a
root: bump openapi-generator-cli to v7.15.0 ( #16440 )
2025-08-29 15:54:30 +02:00
dependabot[bot]
a4bc9942ef
ci: bump actions/attest-build-provenance from 2 to 3 ( #16462 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 15:25:08 +02:00
dependabot[bot]
7029043409
core: bump astral-sh/uv from 0.8.13 to 0.8.14 ( #16461 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-29 15:24:54 +02:00
Marc 'risson' Schmitt
d57d305c3f
ci: remove Python client API publication ( #16468 )
2025-08-29 13:22:12 +00:00
Teffen Ellis
6d81aea5aa
website: Unify Netlify redirects with Docusaurus's client-side router. ( #16430 )
...
* website: Unify Netlify redirects with Docusaurus's client-side router.
* website: Flesh out client-redirects.
* Potential fix for code scanning alert no. 256: Incomplete string escaping or encoding
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
* website: Use package.
* website: use permanent redirect.
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
* website: Spelling.
* website: Add link.
* website: Clarify.
* website: Remove doc.
* website: Add redirects for API and integrations.
---------
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-08-29 15:11:18 +02:00
Jens L.
180cec9d61
core: fix client-side only validation allowing admin to set blank user password ( #16467 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-29 13:07:41 +00:00
Ramil Valitov
665cbd2fd6
website/integrations: Update Issuer URL for Immich ( #16460 )
2025-08-29 10:43:45 +00:00
Jens L.
4feeacdf23
providers/oauth2: include scope in JWT ( #16454 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-28 18:31:29 +01:00
Marc 'risson' Schmitt
6b143e13fd
lib/sync/outgoing: fix single object sync timeout ( #16447 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-28 15:34:40 +00:00
Tana M Berry
738b603d47
website/docs: capitalized proper name of stages, removed old version references. ( #16414 )
...
* capitalized proper name of stages, removed old version references.
* ken and dominics edits
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-08-28 09:27:44 -05:00
dependabot[bot]
b7d5d6734d
web: bump pino-pretty from 13.0.0 to 13.1.1 in /web ( #16411 )
...
Bumps [pino-pretty](https://github.com/pinojs/pino-pretty ) from 13.0.0 to 13.1.1.
- [Release notes](https://github.com/pinojs/pino-pretty/releases )
- [Commits](https://github.com/pinojs/pino-pretty/compare/v13.0.0...v13.1.1 )
---
updated-dependencies:
- dependency-name: pino-pretty
dependency-version: 13.1.1
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-08-28 15:21:35 +01:00
Marc 'risson' Schmitt
e24e672166
core: bump h2 from 4.2.0 to 4.3.0 ( #16446 )
2025-08-28 14:06:24 +00:00
dependabot[bot]
6c497beb8e
web: bump @playwright/test from 1.54.1 to 1.55.0 in /web ( #16413 )
...
Bumps [@playwright/test](https://github.com/microsoft/playwright ) from 1.54.1 to 1.55.0.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.54.1...v1.55.0 )
---
updated-dependencies:
- dependency-name: "@playwright/test"
dependency-version: 1.55.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-08-28 15:05:50 +01:00
dependabot[bot]
f49c707eee
web: bump the react group across 2 directories with 1 update ( #16448 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Bumps the react group with 1 update in the /web directory: [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Updates `@types/react-dom` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react-dom` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react-dom` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `@types/react-dom` from 19.1.8 to 19.1.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.1.9
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.1.9
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.1.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 15:05:31 +01:00
dependabot[bot]
d0d6f321d8
web: bump bootstrap from 5.3.7 to 5.3.8 in /web ( #16416 )
...
Bumps [bootstrap](https://github.com/twbs/bootstrap ) from 5.3.7 to 5.3.8.
- [Release notes](https://github.com/twbs/bootstrap/releases )
- [Commits](https://github.com/twbs/bootstrap/compare/v5.3.7...v5.3.8 )
---
updated-dependencies:
- dependency-name: bootstrap
dependency-version: 5.3.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 14:23:55 +01:00
dependabot[bot]
676ec98afb
web: bump @sentry/browser from 10.6.0 to 10.7.0 in /web in the sentry group across 1 directory ( #16433 )
...
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 10.6.0 to 10.7.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/10.6.0...10.7.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.7.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-08-28 14:22:55 +01:00
Connor Peshek
aae41c25a8
root: check for brew install of libxml2 before updating path ( #16422 )
2025-08-28 15:21:57 +02:00
dependabot[bot]
6979f1336a
core: bump github.com/stretchr/testify from 1.11.0 to 1.11.1 ( #16434 )
...
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify ) from 1.11.0 to 1.11.1.
- [Release notes](https://github.com/stretchr/testify/releases )
- [Commits](https://github.com/stretchr/testify/compare/v1.11.0...v1.11.1 )
---
updated-dependencies:
- dependency-name: github.com/stretchr/testify
dependency-version: 1.11.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 14:21:51 +01:00
dependabot[bot]
037913d9ea
web: bump the react group across 2 directories with 1 update ( #16435 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Bumps the react group with 1 update in the /web directory: [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ).
Updates `@types/react` from 19.1.11 to 19.1.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
Updates `@types/react` from 19.1.11 to 19.1.12
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.12
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react"
dependency-version: 19.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 14:14:32 +01:00
dependabot[bot]
194755b9ad
web: bump chromedriver from 139.0.2 to 139.0.3 in /web ( #16436 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 139.0.2 to 139.0.3.
- [Commits](https://github.com/giggio/node-chromedriver/compare/139.0.2...139.0.3 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 139.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 14:14:14 +01:00
dependabot[bot]
818503e8ff
lifecycle/aws: bump aws-cdk from 2.1026.0 to 2.1027.0 in /lifecycle/aws ( #16437 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1026.0 to 2.1027.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1027.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1027.0
dependency-type: direct:development
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-08-28 14:13:55 +01:00
dependabot[bot]
1e7326947b
web: bump the rollup group across 1 directory with 4 updates ( #16438 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.48.1 to 4.49.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.48.1...v4.49.0 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.48.1 to 4.49.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.48.1...v4.49.0 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.48.1 to 4.49.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.48.1...v4.49.0 )
Updates `rollup` from 4.48.1 to 4.49.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.48.1...v4.49.0 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.49.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.49.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.49.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.49.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 14:13:38 +01:00
dependabot[bot]
ce1208bd78
website: bump @types/react from 19.1.11 to 19.1.12 in /website ( #16439 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.11 to 19.1.12.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.12
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-28 14:13:09 +01:00
Dominic R
cb0e0e7016
website/docs: rac public key: Fix typo ( #16426 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-28 10:11:03 +01:00
Jens L.
bbc951e3cf
lib/sync: fix missing f for string ( #16423 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-27 21:28:06 +00:00
Dominic R
a1a83addc4
website/docs: dev-docs: Minimal landing + landing for dev env ( #15246 )
...
* wip
* Update index.mdx
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/developer-docs/contributing.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/developer-docs/contributing.md
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-27 19:04:03 +00:00
Dewi Roberts
fd0d2a5b86
website/docs: update internal vs external user information ( #16359 )
...
* Update external vs internal user information
* Language updates
* Spelling
* Applied suggestion
2025-08-27 18:37:40 +01:00
Dominic R
f4c791a247
web: ak-status-label: add neutral status ( #16064 )
...
wip
2025-08-27 18:13:44 +02:00
Simonyi Gergő
0efc7e4efd
providers/rac: fix AuthenticatedSession migration ( #16400 )
...
fix `AuthenticatedSession` migration
2025-08-27 16:05:56 +00:00
dependabot[bot]
12801dd34c
website: bump react-dom and @types/react-dom in /website ( #15869 )
...
* website: bump react-dom and @types/react-dom in /website
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ). These dependencies needed to be updated together.
Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom )
Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: "@types/react-dom"
dependency-version: 19.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
* upgrade
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-27 16:25:51 +01:00
Dewi Roberts
465e2b3dba
website/docs: merge docs development environment and writing docs pages ( #16402 )
...
* Merges the docs development environment doc into the writing documentation guide to avoid duplication. Also updates the formatting of the writing docs page to make it easier to copy commands.
* Updates sidebar
* Update website/docs/developer-docs/docs/writing-documentation.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/developer-docs/docs/writing-documentation.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/developer-docs/docs/writing-documentation.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update language on -watch commands
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-08-27 10:14:15 -05:00
Jens L.
a5d269929e
ci: fix cherry-pick for the last time and cleanup ( #16409 )
...
* remove old config
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove duplicate #
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix run erroring on dependabot/external PRs
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-27 15:14:13 +01:00
dependabot[bot]
2611c31a16
web: bump vite from 7.0.6 to 7.1.3 in /web ( #16403 )
...
Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite ) from 7.0.6 to 7.1.3.
- [Release notes](https://github.com/vitejs/vite/releases )
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md )
- [Commits](https://github.com/vitejs/vite/commits/v7.1.3/packages/vite )
---
updated-dependencies:
- dependency-name: vite
dependency-version: 7.1.3
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-08-27 15:01:21 +01:00
dependabot[bot]
6d01f7027e
web: bump playwright from 1.54.1 to 1.55.0 in /web ( #16404 )
...
Bumps [playwright](https://github.com/microsoft/playwright ) from 1.54.1 to 1.55.0.
- [Release notes](https://github.com/microsoft/playwright/releases )
- [Commits](https://github.com/microsoft/playwright/compare/v1.54.1...v1.55.0 )
---
updated-dependencies:
- dependency-name: playwright
dependency-version: 1.55.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-08-27 15:00:46 +01:00
dependabot[bot]
a88b945441
core: bump axllent/mailpit from v1.27.6 to v1.27.7 in /tests/e2e ( #16408 )
...
Bumps axllent/mailpit from v1.27.6 to v1.27.7.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.27.7
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 15:00:19 +01:00
Marc 'risson' Schmitt
6b306877ae
tasks/schedules: fix api search fields ( #16405 )
2025-08-27 13:36:59 +00:00
Marc 'risson' Schmitt
5a26382b36
lifecycle: fix PROMETHEUS_MULTIPROC_DIR missing suffix ( #16401 )
2025-08-27 13:18:27 +00:00
dependabot[bot]
664b13d1ef
website: bump the eslint group across 1 directory with 5 updates ( #16381 )
...
Bumps the eslint group with 5 updates in the /website directory:
| Package | From | To |
| --- | --- | --- |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) | `9.33.0` | `9.34.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) | `8.40.0` | `8.41.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) | `8.40.0` | `8.41.0` |
| [eslint](https://github.com/eslint/eslint ) | `9.33.0` | `9.34.0` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ) | `8.40.0` | `8.41.0` |
Updates `@eslint/js` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.34.0/packages/js )
Updates `@typescript-eslint/eslint-plugin` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/parser )
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `typescript-eslint` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:39:46 +01:00
dependabot[bot]
1a71f79251
web: bump mermaid from 11.10.0 to 11.10.1 in /web ( #16383 )
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.10.0 to 11.10.1.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.10.0...mermaid@11.10.1 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.10.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:39:32 +01:00
authentik-automation[bot]
9b575c5a29
core, web: update translations ( #16384 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-27 13:39:19 +01:00
dependabot[bot]
21770833d6
web: bump the eslint group across 3 directories with 5 updates ( #16385 )
...
Bumps the eslint group with 2 updates in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /packages/prettier-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 2 updates in the /web directory: [eslint](https://github.com/eslint/eslint ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `typescript-eslint` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/parser )
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `typescript-eslint` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint )
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `@eslint/js` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.34.0/packages/js )
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `typescript-eslint` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint )
Updates `@eslint/js` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.34.0/packages/js )
Updates `@typescript-eslint/eslint-plugin` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/parser )
Updates `eslint` from 9.33.0 to 9.34.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.33.0...v9.34.0 )
Updates `typescript-eslint` from 8.40.0 to 8.41.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.41.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.41.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.41.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.41.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.41.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.34.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.41.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:39:10 +01:00
dependabot[bot]
d1f6ddb7f4
web: bump the react group across 3 directories with 3 updates ( #16387 )
...
Bumps the react group with 1 update in the /packages/docusaurus-config directory: [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Bumps the react group with 2 updates in the /packages/eslint-config directory: [react](https://github.com/facebook/react/tree/HEAD/packages/react ) and [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ).
Bumps the react group with 1 update in the /web directory: [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ).
Updates `@types/react-dom` from 19.1.7 to 19.1.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
Updates `react` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react )
Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom )
Updates `@types/react-dom` from 19.1.7 to 19.1.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: "@types/react-dom"
dependency-version: 19.1.8
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: react
dependency-version: 19.1.1
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: react-dom
dependency-version: 19.1.1
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: react
- dependency-name: "@types/react-dom"
dependency-version: 19.1.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: react
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:38:58 +01:00
dependabot[bot]
4db9749cf4
core: bump github.com/grafana/pyroscope-go from 1.2.4 to 1.2.7 ( #16388 )
...
Bumps [github.com/grafana/pyroscope-go](https://github.com/grafana/pyroscope-go ) from 1.2.4 to 1.2.7.
- [Release notes](https://github.com/grafana/pyroscope-go/releases )
- [Commits](https://github.com/grafana/pyroscope-go/compare/v1.2.4...v1.2.7 )
---
updated-dependencies:
- dependency-name: github.com/grafana/pyroscope-go
dependency-version: 1.2.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:38:46 +01:00
dependabot[bot]
9acf784c41
web: bump @sentry/browser from 10.5.0 to 10.6.0 in /web in the sentry group across 1 directory ( #16389 )
...
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 10.5.0 to 10.6.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/10.6.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/10.5.0...10.6.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.6.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-08-27 13:38:31 +01:00
dependabot[bot]
47fffe65a7
website: bump the build group in /website with 3 updates ( #16390 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.4.11 to 1.5.0
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.0/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.4.11 to 1.5.0
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.0/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.4.11 to 1.5.0
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.5.0/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.5.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.5.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.5.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-08-27 13:38:11 +01:00
dependabot[bot]
1a36a33b62
web: bump typedoc from 0.28.10 to 0.28.11 in /packages/esbuild-plugin-live-reload ( #16382 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.10 to 0.28.11.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.10...v0.28.11 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.11
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:37:18 +01:00
dependabot[bot]
a60cb055ab
web: bump the rollup group across 1 directory with 4 updates ( #16289 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.46.3 to 4.46.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.3...v4.46.4 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.46.3 to 4.46.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.3...v4.46.4 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.46.3 to 4.46.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.3...v4.46.4 )
Updates `rollup` from 4.46.3 to 4.46.4
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.3...v4.46.4 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.46.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-27 13:27:15 +01:00
Dewi Roberts
ac8ed99c94
website/integrations: fix dead links ( #16392 )
...
* Fix source link on integrations overview page
* Fix remaining source links
2025-08-27 11:03:48 +01:00
Marc 'risson' Schmitt
30d3a0cdc3
web: Docker versioning compatibility ( #16139 )
...
* website/docs: update frontend dev docs to always use latest dev images
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
* website: Clarify instructions.
---------
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Teffen Ellis <teffen@goauthentik.io >
2025-08-26 21:12:20 +00:00
Max
2a7d61c6aa
web/admin: allow blank value for User path template in User Write Stage ( #16347 )
...
userPathTemplate isn't a mandatory field - remove required attribute
2025-08-26 21:00:58 +01:00
Ken Sternberg
d29d99010e
web/maintenance: typo in icon class ( #16371 )
...
* 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 .
* This typo irritates me every time I see it.
2025-08-26 20:55:23 +01:00
Jens L.
7fd649f1f1
ci: fix cherry-pick fully ( #16379 )
...
* remove extra labels
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove concurrency
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* unrelated change but bundle react updates
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-26 20:55:00 +01:00
dependabot[bot]
489f492635
web: bump the storybook group across 1 directory with 5 updates ( #16326 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.2 to 9.1.3
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.3/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.2 to 9.1.3
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.3/code/addons/links )
Updates `@storybook/web-components` from 9.1.2 to 9.1.3
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.3/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.2 to 9.1.3
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.3/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.2 to 9.1.3
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.3/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:53:03 +01:00
dependabot[bot]
0517f620f5
web: bump chromedriver from 139.0.1 to 139.0.2 in /web ( #16291 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 139.0.1 to 139.0.2.
- [Commits](https://github.com/giggio/node-chromedriver/compare/139.0.1...139.0.2 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 139.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:49:45 +01:00
dependabot[bot]
8dfffc0cca
web: bump the swc group across 1 directory with 11 updates ( #16327 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-darwin-arm64` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-darwin-x64` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-arm64-musl` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-x64-gnu` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-x64-musl` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-win32-x64-msvc` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:49:30 +01:00
dependabot[bot]
698eff0695
web: bump knip from 5.62.0 to 5.63.0 in /web ( #16328 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.62.0 to 5.63.0.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.63.0/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.63.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-08-26 20:49:21 +01:00
dependabot[bot]
512941ed7b
web: bump @floating-ui/dom from 1.7.3 to 1.7.4 in /web ( #16329 )
...
Bumps [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom ) from 1.7.3 to 1.7.4.
- [Release notes](https://github.com/floating-ui/floating-ui/releases )
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md )
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.7.4/packages/dom )
---
updated-dependencies:
- dependency-name: "@floating-ui/dom"
dependency-version: 1.7.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:49:04 +01:00
dependabot[bot]
bffb7823f9
website: bump the build group in /website with 6 updates ( #16330 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.3` | `1.13.4` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.3` | `1.13.4` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.3` | `1.13.4` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.3` | `1.13.4` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.3` | `1.13.4` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.3` | `1.13.4` |
Updates `@swc/core-darwin-arm64` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/core-linux-x64-gnu` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/html-darwin-arm64` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
Updates `@swc/html-linux-x64-gnu` from 1.13.3 to 1.13.4
- [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.13.3...v1.13.4 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.4
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:48:48 +01:00
dependabot[bot]
b8a50fac96
web: bump @types/react from 19.1.10 to 19.1.11 in /packages/docusaurus-config ( #16355 )
...
web: bump @types/react in /packages/docusaurus-config
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.10 to 19.1.11.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.11
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:48:39 +01:00
dependabot[bot]
3c311dfe41
web: bump @types/react from 19.1.10 to 19.1.11 in /web ( #16356 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.10 to 19.1.11.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 20:48:22 +01:00
Jens L.
3a7529a3e1
ci: Fix cherry-pick v5, remove --json flag ( #16377 )
...
* cancel in progress
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove --json flag
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-26 20:37:00 +01:00
Teffen Ellis
36bf0a762a
web/a11y: Text Input ( #16041 )
...
web: Flesh out input clean up.
2025-08-26 15:30:06 -04:00
Jens L.
61db0fa760
ci: fix cherry-pick quoting PR body causing variable expansion ( #16376 )
...
* set pipefail etc just to be sure
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dont quote PR body
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* dont run on issue label
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-26 20:26:27 +01:00
Jens L.
04f883c8da
ci: fix missing triggers for cherry-pick ( #16375 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-26 20:16:01 +01:00
Jens L.
6d097feac0
ci: fix cherry-pick GHA to work on merged PRs ( #16373 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-26 19:55:36 +01:00
Teffen Ellis
6a2e07eb6a
web/a11y: File Inputs ( #16038 )
...
web: Prep for a11y.
2025-08-26 20:12:45 +02:00
Teffen Ellis
232f52b349
web/e2e: Playwright end-to-end test runner ( #16014 )
...
* web: Flesh out Playwright.
web: Flesh out slim tests.
* web/e2e: Sessions
* web: Update tests.
* web: Fix missing git hash when using docker as backend.
* Fix selectors.
* web: Flesh out a11y in wizard elements.
* web: Flesh out provider tests.
2025-08-26 17:09:00 +00:00
Jens L.
baeb892a22
ci: Add label-based cherry-pick ( #16370 )
...
* yaml consistency
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* create backport label on branch off
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* ci: add cherry-pick action
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update .github/actions/cherry-pick/action.yml
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Jens L. <jens@beryju.org >
* Apply suggestions from code review
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Jens L. <jens@beryju.org >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-26 17:25:36 +01:00
Teffen Ellis
810aa1cfea
website: Fix stale links that depend on initial route not triggering redirects. ( #16369 )
...
website: Fix issue where stale links that depend on initial route are
not redirected.
2025-08-26 12:21:22 -04:00
Teffen Ellis
04a8357708
web: Automatic reload during server start up. ( #16030 )
...
* web: Automatic reload during server start up.
* web: Flesh out reload behavior.
* web: Flesh out wave boi.
2025-08-26 15:13:22 +00:00
Connor Peshek
a8ecc9b530
website/docs: Add steps for fixing xml python errors, clean up ( #16223 )
2025-08-26 08:42:05 -05:00
Marc 'risson' Schmitt
197f4c5585
providers/oauth2: avoid deadlock during session migration ( #16361 )
2025-08-25 17:48:20 +02:00
dependabot[bot]
80e9865c6a
lifecycle/aws: bump aws-cdk from 2.1025.0 to 2.1026.0 in /lifecycle/aws ( #16352 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-25 12:25:57 +00:00
dependabot[bot]
c08df26c65
core: bump github.com/stretchr/testify from 1.10.0 to 1.11.0 ( #16357 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-25 14:07:09 +02:00
dependabot[bot]
332a53ceff
core: bump axllent/mailpit from v1.27.5 to v1.27.6 in /tests/e2e ( #16358 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-25 14:06:01 +02:00
Mo
4919772d68
website/docs: fix missing trailing slash in vaultwarden documentation ( #16348 )
...
Missing trailing slash in documentation
Won't work without the missing forward slash.
Source: https://github.com/dani-garcia/vaultwarden/wiki/Enabling-SSO-support-using-OpenId-Connect#authentik
Signed-off-by: Mo <65728018+Moe1369@users.noreply.github.com >
2025-08-24 22:16:54 +01:00
Dominic R
a978b4b60e
root: fix security.md ( #16345 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-24 22:13:45 +01:00
Dewi Roberts
17bd1f1574
root: update security.md with github reporting link ( #16332 )
...
* Adds github reporting link
* Applied suggestions
* Improved wording
* Improved wording
2025-08-22 16:46:16 +01:00
Marc 'risson' Schmitt
0b4be1fdda
website/docs: 2025.8.1 release notes ( #16343 )
2025-08-22 14:51:40 +00:00
Marc 'risson' Schmitt
e305c98eb8
packages/django-dramatiq-postgres: broker: fix various timing issues ( #16340 )
2025-08-22 14:04:54 +00:00
Dewi Roberts
35bd1d9907
website/docs: adds details to certificates doc ( #16335 )
...
* Clarifies certs directory mounting and adds instruction for manually re-triggering discovery.
* Fixed mounting info
* Update website/docs/sys-mgmt/certificates.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/sys-mgmt/certificates.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-08-22 14:53:44 +01:00
Marc 'risson' Schmitt
3150885889
outposts: allow ingress path type configuration ( #16339 )
2025-08-22 15:36:18 +02:00
authentik-automation[bot]
5fd96518d3
core, web: update translations ( #16321 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-22 12:47:49 +00:00
Marc 'risson' Schmitt
287647beea
outposts: fix service connection update task arguments ( #16312 )
2025-08-22 14:31:49 +02:00
Marcelo Elizeche Landó
2c1a0ca0fc
core: use email backend for test_email management command ( #16311 )
2025-08-22 14:17:02 +02:00
dependabot[bot]
da47095ebc
core: bump astral-sh/uv from 0.8.12 to 0.8.13 ( #16325 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-22 14:15:57 +02:00
Dominic R
2ea95ba189
website: Move docs netlify.toml ( #16320 )
...
* website: Move docs netlify.toml
* Update publish path in Netlify configuration
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-22 13:36:16 +02:00
Tana M Berry
b277828b21
website/docs: add link in 2025.8 rel notes to back-channel logout docs ( #16306 )
...
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-08-21 19:12:54 +00:00
Marc 'risson' Schmitt
8765c92fc4
packages/django-dramatiq-postgres: middleware: fix listening on hosts where ipv6 is not supported ( #16308 )
2025-08-21 19:11:21 +00:00
Teffen Ellis
536688f23b
website: Fix version origin detection, build-time URLs ( #15774 )
...
* website: Update route base path.
* website: Add copy step for migration.
* website: Use build redirects.
* website: Ensure that netlify config is picked up.
* website: Add shared Netlify plugin cache.
* website: Use relative path.
* website: Fix routing when moving across versioned URLs.
* website: Fix issues surrounding origin detection.
* website: Allow integrations to omit plugin data, fix types.
2025-08-21 18:31:54 +00:00
Teffen Ellis
7861f5a40e
web/a11y: Associating labels with inputs ( #16119 )
...
web: Flesh out use of label component.
web: Add correct ID to stage inputs.
2025-08-21 18:28:38 +00:00
Teffen Ellis
e7b43b72ab
web: Username truncation, field alignment. ( #16283 )
2025-08-21 18:03:51 +02:00
Dewi Roberts
2bf9a9d4fe
website/docs: adds a webhook header mapping example ( #16301 )
...
* Adds webhook header example
* Small changes
* Update website/docs/sys-mgmt/events/transports.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-08-21 16:59:03 +01:00
Teffen Ellis
f6af8f3b9d
web: Fix issue where form group uses unknown slot. ( #16276 )
2025-08-21 17:56:26 +02:00
Marc 'risson' Schmitt
c9a4eff3a8
lifecycle: set PROMETHEUS_MULTIPROC_DIR as early as possible ( #16298 )
2025-08-21 11:09:36 -03:00
Marc 'risson' Schmitt
b893305e5f
providers/oauth2: fix logout token missing sid, fix wrong sub mode used ( #16295 )
2025-08-21 10:43:10 -03:00
dependabot[bot]
b3a5cc8320
web: bump core-js from 3.45.0 to 3.45.1 in /web ( #16290 )
...
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js ) from 3.45.0 to 3.45.1.
- [Release notes](https://github.com/zloirock/core-js/releases )
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/zloirock/core-js/commits/v3.45.1/packages/core-js )
---
updated-dependencies:
- dependency-name: core-js
dependency-version: 3.45.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-21 08:29:05 -04:00
Dominic R
94d7a989a1
root: Remove CODEOWNERS entries from docs/ directory ( #16287 )
2025-08-21 14:19:09 +02:00
Dominic R
359fa5d5df
*: Fix dead doc link ( #16288 )
2025-08-21 14:09:20 +02:00
Dominic R
11c9015a49
web: saml provider view: fix state refresh issues ( #14474 )
...
* web: saml provider view: fix state refresh issues
Fixes the following issues:
1. Fixed incorrect certificate download when changing a signing certificate - previously, clicking "Download Signing Certificate" after updating a certificate would still download the old certificate until the page was refreshed.
2. Fixed missing UI updates when adding a signing certificate - previously, when a signing certificate was added to a provider, the download button wouldn't appear until the page was refreshed.
3. Fixed persistent download button when removing a certificate - previously, when a signing certificate was removed from a provider, the download button would still be visible until the page was refreshed.
* prob has more uses than for certs only
* teffen's suggestions
Signed-off-by: Dominic R <dominic@sdko.org >
* fix
Signed-off-by: Dominic R <dominic@sdko.org >
* this should fix it?
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-21 03:39:16 +02:00
Max
f135990c6b
web: fix "Explore integrations" link in Quick actions ( #16274 )
...
fix "Explore integrations" link in Quick actions
2025-08-20 19:21:46 -04:00
Max
6f63a3eb15
website/integrations: fix dead links to external docs ( #16273 )
2025-08-20 18:46:27 +00:00
Marc 'risson' Schmitt
2209fcea2a
tasks: add rel_obj to system task exception event ( #16270 )
2025-08-20 17:29:05 +00:00
Marc 'risson' Schmitt
e5efb50a37
website/docs: update 2025.8 release notes ( #16269 )
2025-08-20 19:15:20 +02:00
dependabot[bot]
bbc02dc065
web: bump @patternfly/elements from 4.1.0 to 4.2.0 in /web ( #16265 )
...
Bumps [@patternfly/elements](https://github.com/patternfly/patternfly-elements/tree/HEAD/elements ) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/patternfly/patternfly-elements/releases )
- [Changelog](https://github.com/patternfly/patternfly-elements/blob/main/elements/CHANGELOG.md )
- [Commits](https://github.com/patternfly/patternfly-elements/commits/@patternfly/elements@4.2.0/elements )
---
updated-dependencies:
- dependency-name: "@patternfly/elements"
dependency-version: 4.2.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-08-20 13:05:02 +01:00
dependabot[bot]
f3f81951c6
web: bump mermaid from 11.9.0 to 11.10.0 in /web ( #16263 )
...
Bumps [mermaid](https://github.com/mermaid-js/mermaid ) from 11.9.0 to 11.10.0.
- [Release notes](https://github.com/mermaid-js/mermaid/releases )
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.9.0...mermaid@11.10.0 )
---
updated-dependencies:
- dependency-name: mermaid
dependency-version: 11.10.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-08-20 13:04:50 +01:00
dependabot[bot]
739eff66e0
web: bump @types/guacamole-common-js from 1.5.3 to 1.5.4 in /web ( #16262 )
...
Bumps [@types/guacamole-common-js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/guacamole-common-js ) from 1.5.3 to 1.5.4.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/guacamole-common-js )
---
updated-dependencies:
- dependency-name: "@types/guacamole-common-js"
dependency-version: 1.5.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-20 13:04:24 +01:00
Dominic R
48de61a926
security: Bump supported versions ( #16261 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-20 12:41:45 +01:00
Marcelo Elizeche Landó
032031f2cf
core: bump channels from 4.3.0 to v4.3.1 ( #16260 )
2025-08-20 13:25:44 +02:00
transifex-integration[bot]
4e44209af1
translate: Updates for file web/xliff/en.xlf in cs_CZ ( #16264 )
...
* Translate web/xliff/en.xlf in cs_CZ
100% translated source file: 'web/xliff/en.xlf'
on 'cs_CZ'.
* Translate web/xliff/en.xlf in cs_CZ
100% translated source file: 'web/xliff/en.xlf'
on 'cs_CZ'.
---------
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-20 11:12:41 +00:00
dependabot[bot]
289555abcd
website: bump the eslint group in /website with 3 updates ( #16248 )
2025-08-19 21:38:10 +01:00
Marcelo Elizeche Landó
943c456555
stages/authenticator_duo: Add test to fix codecov error ( #16257 )
...
* Add test to fix codecov error
* use self.assertJSONEqual instead of assertEqual
2025-08-19 22:12:39 +02:00
dependabot[bot]
a79b914d39
core: bump selenium/standalone-chrome from 138.0 to 139.0 in /tests/e2e ( #16256 )
2025-08-19 21:06:20 +01:00
dependabot[bot]
7a8816abd1
web: bump the eslint group across 2 directories with 3 updates ( #16255 )
2025-08-19 21:06:00 +01:00
Dominic R
93e448c3fd
website/docs: sys-mgmt/s3: Clean up and improve ( #16242 )
...
* website/docs: sys-mgmt/s3: Clean up and improve
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/sys-mgmt/ops/storage-s3.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-08-19 15:01:32 -05:00
Tana M Berry
109c869f97
website/docs: Advanced queries, remove reference to QL and add more examples ( #16191 )
...
* remove reference to QL
* add Jens' examples
* tweak
* Update website/docs/users-sources/user/user_basic_operations.md
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/users-sources/user/user_basic_operations.md
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* add note about UX ticks
* tweak
* argh
* clarify there are more values
* add link to Event actions list
* tweaks, typo
* Update website/docs/users-sources/user/user_basic_operations.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/sys-mgmt/events/logging-events.md
Co-authored-by: Jens L. <jens@goauthentik.io >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* jens edits
---------
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-08-19 14:27:00 -05:00
Dominic R
8029fdad7b
website/integrations: emby ( #15921 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana Berry <tana@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Ivan Schaller <ivan@schaller.sh >
2025-08-19 14:12:45 -05:00
Marcelo Elizeche Landó
d2aac457ef
stages/authenticator_duo: return generic error message ( #16194 )
...
* return generic error message
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
* fix linting
* Trigger Build
---------
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-08-19 18:27:48 +02:00
dependabot[bot]
70ce5ccceb
core: bump axllent/mailpit from v1.27.4 to v1.27.5 in /tests/e2e ( #16252 )
...
Bumps axllent/mailpit from v1.27.4 to v1.27.5.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.27.5
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-19 17:05:56 +01:00
dependabot[bot]
173c334478
core: bump astral-sh/uv from 0.8.11 to 0.8.12 ( #16250 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.11 to 0.8.12.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.11...0.8.12 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.12
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-19 17:05:33 +01:00
dependabot[bot]
6e321097a1
web: bump the rollup group across 1 directory with 4 updates ( #16251 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.46.2 to 4.46.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.2...v4.46.3 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.46.2 to 4.46.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.2...v4.46.3 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.46.2 to 4.46.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.2...v4.46.3 )
Updates `rollup` from 4.46.2 to 4.46.3
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.2...v4.46.3 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.46.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-19 17:05:29 +01:00
dependabot[bot]
f3bf8097b8
core: bump goauthentik/fips-python from 3.13.6-slim-bookworm-fips to 3.13.7-slim-bookworm-fips ( #16253 )
...
core: bump goauthentik/fips-python
Bumps goauthentik/fips-python from 3.13.6-slim-bookworm-fips to 3.13.7-slim-bookworm-fips.
---
updated-dependencies:
- dependency-name: goauthentik/fips-python
dependency-version: 3.13.7-slim-bookworm-fips
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-19 17:05:16 +01:00
authentik-automation[bot]
b869433e4d
core, web: update translations ( #16244 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-19 13:51:45 +01:00
Dominic R
5aef86c3d1
core: Block usage of Django's createsuperuser ( #16215 )
...
wip
2025-08-19 13:43:06 +01:00
Dominic R
970ac44ff8
web: Do not mark Attributes as a mandatory field ( #16004 )
...
* web: Do not mark Attributes as a mandatory field
* fix lint
* Teffen's suggestion
2025-08-19 14:16:49 +02:00
dependabot[bot]
9145d55e6c
web: bump @types/react from 19.1.8 to 19.1.10 in /packages/docusaurus-config ( #16131 )
...
web: bump @types/react in /packages/docusaurus-config
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.8 to 19.1.10.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.10
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-18 20:39:35 +01:00
Dominic R
1c36b361b2
router: fix missing response headers on compressed 404 for static files ( #16216 )
...
* router: only serve dist assets if present; fallback to backend 404
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-18 20:18:28 +01:00
Teffen Ellis
d55e23cdb8
web: Fix ak-flow-card footer alignment. ( #16236 )
2025-08-18 18:10:51 +00:00
Teffen Ellis
52673e4223
web: Fix reported error precedence ( #16231 )
...
* web: Fix issue where controlled element is not assigned.
* web: Fix preferred error to display when API response include fields.
* web: Clarify error message alert.
* web: Fix issue where impersonation form can be submitted with empty
fields. Clarify message behavior.
2025-08-18 17:39:44 +00:00
Marc 'risson' Schmitt
5cbcbf8d2c
brands: revert sort matched brand by match length (revert #15413 ) ( #16233 )
2025-08-18 17:22:00 +00:00
Dominic R
f29a4c1876
website/integrations: vaultwarden ( #16057 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-08-18 11:36:41 -05:00
Brian Begun
38fb5cd712
website/integrations: update tautulli ( #16059 )
...
* Update index.md
Revised tutorial using new template. Sorry for the delay on this.
Signed-off-by: Brian Begun <begunfx@usa.net >
* Update website/integrations/media/tautulli/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Brian Begun <begunfx@usa.net >
* fix linting
* remove placeholder section
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/media/tautulli/index.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Brian Begun <begunfx@usa.net >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-08-18 11:30:35 -05:00
authentik-automation[bot]
5b2aad586f
core, web: update translations ( #16210 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-18 17:12:15 +01:00
Simonyi Gergő
2dd1c7b1ab
rbac: assign InitialPermissions in a middleware ( #16138 )
...
assign `InitialPermission`s in a middleware
This will catch more creation events, hopefully fixing things like
https://github.com/goauthentik/authentik/issues/14313
2025-08-18 18:02:48 +02:00
dependabot[bot]
57c24e5c1c
website: bump @types/node from 24.2.1 to 24.3.0 in /website ( #16218 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.2.1 to 24.3.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.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-08-18 16:50:46 +01:00
dependabot[bot]
76d9b3479e
web: bump the goauthentik group across 1 directory with 2 updates ( #16219 )
...
Bumps the goauthentik group with 2 updates in the /web directory: @goauthentik/prettier-config and [@goauthentik/api](https://github.com/goauthentik/authentik ).
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
Updates `@goauthentik/api` from 2024.6.0-1720200294 to 2025.10.0-rc1-1755254677
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits )
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
- dependency-name: "@goauthentik/api"
dependency-version: 2025.10.0-rc1-1755254677
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-18 16:50:38 +01:00
dependabot[bot]
e9f946cdf2
web: bump @types/node from 24.2.1 to 24.3.0 in /packages/prettier-config ( #16220 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.2.1 to 24.3.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.0
dependency-type: direct:development
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-08-18 16:50:22 +01:00
dependabot[bot]
167452f1ed
web: bump @types/node from 24.2.1 to 24.3.0 in /packages/esbuild-plugin-live-reload ( #16221 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.2.1 to 24.3.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.0
dependency-type: direct:development
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-08-18 16:50:14 +01:00
dependabot[bot]
dbfdb37e83
web: bump @types/node from 22.15.19 to 24.3.0 in /web ( #16222 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.3.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.3.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-18 16:48:49 +01:00
dependabot[bot]
efdbf7aeed
core: bump goauthentik.io/api/v3 from 3.2025100.1 to 3.2025100.2 ( #16217 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-18 15:43:36 +02:00
Dominic R
8e9e4de80f
website: prettierignore: Add docsmg Rust target ( #16067 )
2025-08-18 15:31:21 +02:00
Teffen Ellis
a63c5b1846
web: Improvements to ReCaptcha resizing ( #16171 )
...
* web: Remove comments from serialized HTML.
* web: Apply color theme to iframe.
* web: Fix issues surrounding reCaptcha resize events not propagating.
2025-08-18 13:24:14 +00:00
Teffen Ellis
80b84fa8a8
web/a11y: QL Search Input ( #16198 )
...
web: Fix issues surrounding form submission, keyboard focus, alignment.
2025-08-18 15:01:47 +02:00
Dominic R
4ce9795491
website/integrations: headscale: Remove href in product description ( #16214 )
...
Not included in any other integration and frankly unneeded with the link right below
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-18 01:41:27 -05:00
dependabot[bot]
e50cf1c150
web: bump @sentry/browser from 10.3.0 to 10.4.0 in /web in the sentry group across 1 directory ( #16122 )
...
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 10.3.0 to 10.4.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/10.3.0...10.4.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.4.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-08-15 17:37:25 +01:00
authentik-automation[bot]
4178717386
core, web: update translations ( #16195 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-15 17:36:59 +01:00
M-Slanec
20d068f767
policies/password: Fix amount_uppercase in password policy check ( #16197 )
...
Fix amount_uppercase in password policy check
Co-authored-by: Matthew Slanec <matthewslanec@Matthews-MacBook-Pro.local >
2025-08-15 13:51:43 +01:00
authentik-automation[bot]
5b7a42e6d6
web: bump API Client version ( #16203 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-15 13:04:59 +01:00
dependabot[bot]
1398561142
core: bump astral-sh/uv from 0.8.10 to 0.8.11 ( #16201 )
2025-08-15 12:27:42 +01:00
dependabot[bot]
55657e149b
web: bump chromedriver from 139.0.0 to 139.0.1 in /web ( #16200 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 139.0.0 to 139.0.1.
- [Commits](https://github.com/giggio/node-chromedriver/compare/139.0.0...139.0.1 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 139.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-15 11:47:52 +01:00
authentik-automation[bot]
d5d7140631
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #16196 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-15 11:46:40 +01:00
Marcelo Elizeche Landó
17ff12f68f
core: Add email template selector ( #16170 )
...
* Unify all email templates under stages.email.models.EmailTemplates
* Add template selector to Email Authenticator Stage
* fix tests
* Add email_template field to events.notificationtransport
* update schemas
* Make email_template default as None, add UI to notif transports
* Add showEmail and fix default selection in TransportForm
* fix required field for emailtemplate and webhookurl in TransportForm
* use switch because typescript is whinning
* Add email_subject_prefix to NotificationTransport
* Add tests, update migration
* remove duplicate API
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rename template name
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* move send_once up
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* better defaults
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* no null
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* update test for email templates endpoint
* fix test url
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-15 11:44:18 +01:00
Tana M Berry
9c9a6e3d66
website/docs: add content about new Advanced Query searches ( #16019 )
...
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-08-14 17:31:36 +02:00
dependabot[bot]
2cd81b2e78
web: bump the eslint group across 2 directories with 3 updates ( #16133 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/parser )
Updates `typescript-eslint` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.39.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.39.1
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.39.1
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.39.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.39.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.39.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 14:31:52 +01:00
dependabot[bot]
bad426f694
web: bump @types/react from 19.1.8 to 19.1.10 in /web ( #16125 )
...
Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react ) from 19.1.8 to 19.1.10.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react )
---
updated-dependencies:
- dependency-name: "@types/react"
dependency-version: 19.1.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 14:31:44 +01:00
dependabot[bot]
6404fba2e4
web: bump core-js from 3.44.0 to 3.45.0 in /web ( #16123 )
...
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js ) from 3.44.0 to 3.45.0.
- [Release notes](https://github.com/zloirock/core-js/releases )
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/zloirock/core-js/commits/v3.45.0/packages/core-js )
---
updated-dependencies:
- dependency-name: core-js
dependency-version: 3.45.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-08-14 14:31:28 +01:00
Marc 'risson' Schmitt
c33b9f2d3f
web/admin: fix settings saving ( #16184 )
...
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-14 12:33:33 +00:00
dependabot[bot]
bac6e965f4
website: bump the eslint group in /website with 3 updates ( #16124 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/parser )
Updates `typescript-eslint` from 8.39.0 to 8.39.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.1/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.39.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.39.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.39.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 12:01:48 +01:00
dependabot[bot]
36cb4dc750
web: bump typedoc-plugin-markdown from 4.8.0 to 4.8.1 in /packages/esbuild-plugin-live-reload ( #16126 )
...
web: bump typedoc-plugin-markdown
Bumps [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown ) from 4.8.0 to 4.8.1.
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases )
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md )
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.8.1/packages/typedoc-plugin-markdown )
---
updated-dependencies:
- dependency-name: typedoc-plugin-markdown
dependency-version: 4.8.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 12:01:34 +01:00
dependabot[bot]
45d9945a3a
web: bump the storybook group across 1 directory with 5 updates ( #16134 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.2/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.2/code/addons/links )
Updates `@storybook/web-components` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.2/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.2/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.1 to 9.1.2
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.2/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 11:59:51 +01:00
dependabot[bot]
23285ad664
core: bump goauthentik.io/api/v3 from 3.2025064.8 to 3.2025100.1 ( #16161 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025064.8 to 3.2025100.1.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025064.8...v3.2025100.1 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025100.1
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-08-14 11:59:24 +01:00
dependabot[bot]
91ab9503fd
web: bump the esbuild group across 2 directories with 4 updates ( #16162 )
...
Bumps the esbuild group with 1 update in the /packages/esbuild-plugin-live-reload directory: [esbuild](https://github.com/evanw/esbuild ).
Bumps the esbuild group with 1 update in the /web directory: [esbuild](https://github.com/evanw/esbuild ).
Updates `esbuild` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `@esbuild/darwin-arm64` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `@esbuild/linux-arm64` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `@esbuild/linux-x64` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `esbuild` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `@esbuild/darwin-arm64` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `@esbuild/linux-arm64` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
Updates `@esbuild/linux-x64` from 0.25.8 to 0.25.9
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.8...v0.25.9 )
---
updated-dependencies:
- dependency-name: esbuild
dependency-version: 0.25.9
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.9
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.9
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.9
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: esbuild
dependency-version: 0.25.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 11:58:58 +01:00
dependabot[bot]
fb7802e6af
web: bump the wdio group across 1 directory with 3 updates ( #16163 )
...
Bumps the wdio group with 3 updates in the /web directory: [@wdio/browser-runner](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-browser-runner ), [@wdio/cli](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-cli ) and [@wdio/spec-reporter](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-spec-reporter ).
Updates `@wdio/browser-runner` from 9.19.0 to 9.19.1
- [Release notes](https://github.com/webdriverio/webdriverio/releases )
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.19.1/packages/wdio-browser-runner )
Updates `@wdio/cli` from 9.19.0 to 9.19.1
- [Release notes](https://github.com/webdriverio/webdriverio/releases )
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.19.1/packages/wdio-cli )
Updates `@wdio/spec-reporter` from 9.19.0 to 9.19.1
- [Release notes](https://github.com/webdriverio/webdriverio/releases )
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.19.1/packages/wdio-spec-reporter )
---
updated-dependencies:
- dependency-name: "@wdio/browser-runner"
dependency-version: 9.19.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: wdio
- dependency-name: "@wdio/cli"
dependency-version: 9.19.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: wdio
- dependency-name: "@wdio/spec-reporter"
dependency-version: 9.19.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: wdio
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 11:58:46 +01:00
authentik-automation[bot]
0f13a63528
core, web: update translations ( #16175 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-14 11:57:52 +01:00
dependabot[bot]
36daf4b519
core: bump github.com/getsentry/sentry-go from 0.35.0 to 0.35.1 ( #16176 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.35.0 to 0.35.1.
- [Release notes](https://github.com/getsentry/sentry-go/releases )
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-go/compare/v0.35.0...v0.35.1 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.35.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 11:57:44 +01:00
dependabot[bot]
5cc4793b84
lifecycle/aws: bump aws-cdk from 2.1024.0 to 2.1025.0 in /lifecycle/aws ( #16177 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1024.0 to 2.1025.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1025.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1025.0
dependency-type: direct:development
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-08-14 11:57:36 +01:00
dependabot[bot]
a6063d4af4
core: bump library/golang from 1.24-bookworm to 1.25-bookworm ( #16178 )
...
Bumps library/golang from 1.24-bookworm to 1.25-bookworm.
---
updated-dependencies:
- dependency-name: library/golang
dependency-version: 1.25-bookworm
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 11:57:24 +01:00
dependabot[bot]
8f450e6e14
core: bump astral-sh/uv from 0.8.9 to 0.8.10 ( #16179 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.9 to 0.8.10.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.9...0.8.10 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.10
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-14 11:57:15 +01:00
Dominic R
a1fc0605e2
website/integrations: nextcloud: Cleanup SAML service config ( #16066 )
...
* wip
* wip
* wip
2025-08-14 10:44:34 +01:00
Teffen Ellis
c886e4ff6b
web: Fix issue where clicking a list item scrolls container. ( #16174 )
2025-08-13 21:30:58 +00:00
Marc 'risson' Schmitt
f91ebc2ad5
ci: release tag: fix missing env variables ( #16172 )
2025-08-13 21:09:41 +01:00
Jens L.
dbe7bfe58b
tasks: add sentry dramatiq integration ( #16167 )
2025-08-13 18:53:12 +01:00
Teffen Ellis
05d4d207d7
web: Fix hidden textarea required attribute. ( #16168 )
...
* web: Fix hidden textarea `required` attribute.
* web: Fix missing flag property.
* web: Clarify field error reporting.
2025-08-13 12:31:00 -04:00
Marc 'risson' Schmitt
11efc75451
ci: release: consolidation bump version and on tag ( #16164 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2025-08-13 18:21:12 +02:00
authentik-automation[bot]
4d2d020be1
web: bump API Client version ( #16152 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-13 14:48:57 +01:00
Marc 'risson' Schmitt
9c0905d76d
ci: fix docker hub credentials ( #16165 )
2025-08-13 15:18:39 +02:00
Marc 'risson' Schmitt
3ca94b2198
root: fix custom packages installation in docker ( #16157 )
2025-08-13 12:24:21 +00:00
Marc 'risson' Schmitt
dbf51fb11f
ci: release publish: fix missing permissions ( #16155 )
2025-08-13 13:22:35 +01:00
Marc 'risson' Schmitt
ad69eb955f
ci: docker push: fix version missing dash ( #16153 )
2025-08-13 13:22:14 +01:00
transifex-integration[bot]
c867ebc014
translate: Updates for file web/xliff/en.xlf in fr ( #16160 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-13 12:06:38 +00:00
authentik-automation[bot]
adea1e460c
core, web: update translations ( #16159 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-13 00:38:30 +00:00
Marc 'risson' Schmitt
846c58e617
root: fix custom packages installation in docker ( #16150 )
2025-08-12 21:29:56 +00:00
Marcelo Elizeche Landó
352079fc3c
core: bump redis from 6.2.0 to v6.3.0 ( #15983 )
2025-08-12 23:20:40 +02:00
dependabot[bot]
6786391732
core: bump github.com/redis/go-redis/v9 from 9.11.0 to 9.12.1 ( #16121 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 23:19:52 +02:00
dependabot[bot]
4b3d08154d
core: bump astral-sh/uv from 0.8.8 to 0.8.9 ( #16120 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 23:19:33 +02:00
authentik-automation[bot]
130fe4cac7
root: bump version to 2025.10.0-rc1 ( #16149 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-12 21:17:14 +00:00
Marc 'risson' Schmitt
c7679434e1
ci: release bump version: run migrations ( #16148 )
2025-08-12 20:22:29 +00:00
Marc 'risson' Schmitt
8bc58e24e9
website/docs: 2025.8 release notes: add changelog and API diff ( #16147 )
2025-08-12 22:12:30 +02:00
Marc 'risson' Schmitt
2aa256d532
root: fix missing uv run in makefile ( #16146 )
2025-08-12 19:58:09 +00:00
authentik-automation[bot]
2f2bdd032d
web: bump API Client version ( #16132 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-12 19:46:45 +00:00
Dametto Luca
e36529614f
website/docs: Fixed documentation issue for core_users_recovery_email_create ( #16140 )
...
Co-authored-by: Luca Dametto <>
2025-08-12 21:20:14 +02:00
Marc 'risson' Schmitt
883367263a
ci: release branch off: fix missing migrations ( #16145 )
2025-08-12 19:00:58 +00:00
Marc 'risson' Schmitt
96a47c69e0
ci: setup action: uninstall man-db ( #16144 )
2025-08-12 20:45:29 +02:00
Marc 'risson' Schmitt
3ae9721698
ci: release: add missing env variables ( #16143 )
2025-08-12 18:28:52 +00:00
Marc 'risson' Schmitt
30a3ad402b
ci: release branch off: use github app for branch creation ( #16141 )
2025-08-12 19:48:53 +02:00
Marc 'risson' Schmitt
4e500030d1
ci: release branch off: various fixes ( #16137 )
2025-08-12 16:49:02 +00:00
Marc 'risson' Schmitt
885f1cc018
ci: add release bump version workflow ( #16136 )
...
Co-authored-by: Dominic R <dominic@sdko.org >
2025-08-12 16:48:12 +00:00
Marc 'risson' Schmitt
a4c7e7ba2e
root: bump version to 2025.8.0-rc1 ( #16135 )
2025-08-12 15:24:23 +00:00
Marc 'risson' Schmitt
a4dbd1dc93
ci: add release branch-off workflow ( #16130 )
2025-08-12 14:39:51 +00:00
Teffen Ellis
1bc2daae98
web: Form validation regressions, consistency fixes ( #15894 )
...
* web: Clean up naming of inputs.
* web: Flesh out label components, slots.
* web: Expand clickable area of labels.
* web: Fix issue where launch URL is required.
* web: Surface string errors verbatim.
* web: Fix issues surrounding client-side error reporting, form validation,
server-side error reporting.
* web: Clarify property visibility.
* web: Fix issue where provider errors are not surfaced.
* web: Fix issue where wizard steps do not consistently use form validation.
* web: Fix issue where render root is not preferred.
* web: Fix import path.
* web: Fix selectors.
* keep labels aligned
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web: Fix field nesting.
* web: Fix issue where required secret text inputs fail validation when editing existing entities.
- We need to make the component have a better understanding of this concept.
* web: Fix slot alignment on legacy elements.
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-12 14:34:08 +00:00
Jens L.
a38239509b
root: Better version bump ( #14905 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-12 13:50:12 +00:00
Marcelo Elizeche Landó
34bab28985
website/docs: remove slash from API reference ( #16117 )
2025-08-12 15:02:19 +02:00
Marc 'risson' Schmitt
b68adec303
packages/django-dramatiq-postgres: broker: remember previously fetched notifies ( #16128 )
2025-08-12 12:57:45 +00:00
dependabot[bot]
cf4dd24b6f
ci: bump actions/checkout from 4 to 5 ( #16127 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v4...v5 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-12 13:47:23 +01:00
Dominic R
ffe767fe13
outpost: proxy: handle nil HTTP response in attemptBasicAuth function ( #13781 )
...
* outpost: proxy: handle nil HTTP response in attemptBasicAuth function
Fixes a nil pointer dereference that occurs when an HTTP request fails in the attemptBasicAuth function. Added additional checks to safely handle cases where the HTTP response or its body is nil.
* add defer res.Body.Close() to prevent resource leaks in basic auth
* oops
* this
* Revert "this"
This reverts commit 7f7d110291 .
* wip
* better?
2025-08-12 11:40:18 +01:00
authentik-automation[bot]
c0732ec687
core, web: update translations ( #16118 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-12 11:16:03 +01:00
authentik-automation[bot]
cf72074820
core, web: update translations ( #16116 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-11 16:50:00 +00:00
Jens L.
e154fee28a
lib/sync: drop sync task when triggered by users' last_login change ( #15553 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-11 17:20:17 +01:00
transifex-integration[bot]
85ccd7acbc
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_CN [Manual Sync] ( #16109 )
...
Translate django.po in zh_CN [Manual Sync]
90% of minimum 60% translated source file: 'django.po'
on 'zh_CN'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:51:34 +00:00
transifex-integration[bot]
3f52706e3f
translate: Updates for file locale/en/LC_MESSAGES/django.po in fi [Manual Sync] ( #16093 )
...
Translate django.po in fi [Manual Sync]
81% of minimum 60% translated source file: 'django.po'
on 'fi'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:39:16 +00:00
transifex-integration[bot]
662ac47332
translate: Updates for file locale/en/LC_MESSAGES/django.po in pt [Manual Sync] ( #16098 )
...
Translate django.po in pt [Manual Sync]
88% of minimum 60% translated source file: 'django.po'
on 'pt'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:34:38 +00:00
transifex-integration[bot]
b3e69c1665
translate: Updates for file web/xliff/en.xlf in zh_TW [Manual Sync] ( #16113 )
...
Translate web/xliff/en.xlf in zh_TW [Manual Sync]
67% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'zh_TW'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:33:48 +00:00
transifex-integration[bot]
b9a34afaf4
translate: Updates for file web/xliff/en.xlf in tr [Manual Sync] ( #16108 )
...
Translate web/xliff/en.xlf in tr [Manual Sync]
85% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'tr'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:33:34 +00:00
transifex-integration[bot]
8ca78c5a3d
translate: Updates for file web/xliff/en.xlf in fi [Manual Sync] ( #16097 )
...
Translate web/xliff/en.xlf in fi [Manual Sync]
89% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'fi'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:33:20 +00:00
transifex-integration[bot]
9ac320a5d9
translate: Updates for file locale/en/LC_MESSAGES/django.po in tr [Manual Sync] ( #16096 )
...
Translate django.po in tr [Manual Sync]
79% of minimum 60% translated source file: 'django.po'
on 'tr'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:32:00 +00:00
transifex-integration[bot]
7ce1ac08d4
translate: Updates for file locale/en/LC_MESSAGES/django.po in de [Manual Sync] ( #16091 )
...
Translate django.po in de [Manual Sync]
90% of minimum 60% translated source file: 'django.po'
on 'de'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:31:45 +00:00
transifex-integration[bot]
fc68221495
translate: Updates for file locale/en/LC_MESSAGES/django.po in ru [Manual Sync] ( #16090 )
...
Translate django.po in ru [Manual Sync]
78% of minimum 60% translated source file: 'django.po'
on 'ru'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:31:09 +00:00
transifex-integration[bot]
37066eef6c
translate: Updates for file web/xliff/en.xlf in it [Manual Sync] ( #16095 )
...
Translate web/xliff/en.xlf in it [Manual Sync]
96% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'it'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:30:51 +00:00
transifex-integration[bot]
63e116f109
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh-Hans [Manual Sync] ( #16112 )
...
Translate django.po in zh-Hans [Manual Sync]
90% of minimum 60% translated source file: 'django.po'
on 'zh-Hans'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:30:14 +00:00
transifex-integration[bot]
eb0611950c
translate: Updates for file locale/en/LC_MESSAGES/django.po in pl [Manual Sync] ( #16092 )
...
Translate django.po in pl [Manual Sync]
75% of minimum 60% translated source file: 'django.po'
on 'pl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:29:37 +00:00
transifex-integration[bot]
c03fe12406
translate: Updates for file web/xliff/en.xlf in de [Manual Sync] ( #16110 )
...
Translate web/xliff/en.xlf in de [Manual Sync]
96% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'de'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:28:38 +00:00
transifex-integration[bot]
72ac793065
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_TW [Manual Sync] ( #16107 )
...
Translate django.po in zh_TW [Manual Sync]
69% of minimum 60% translated source file: 'django.po'
on 'zh_TW'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:25:55 +00:00
transifex-integration[bot]
43ed08c636
translate: Updates for file web/xliff/en.xlf in es [Manual Sync] ( #16106 )
...
Translate web/xliff/en.xlf in es [Manual Sync]
98% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'es'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:23:34 +00:00
transifex-integration[bot]
2534261954
translate: Updates for file web/xliff/en.xlf in cs_CZ [Manual Sync] ( #16104 )
...
Translate web/xliff/en.xlf in cs_CZ [Manual Sync]
95% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'cs_CZ'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:18:10 +00:00
transifex-integration[bot]
41cd3305f9
translate: Updates for file web/xliff/en.xlf in ru [Manual Sync] ( #16114 )
...
Translate web/xliff/en.xlf in ru [Manual Sync]
84% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'ru'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:07:04 +00:00
transifex-integration[bot]
cccbc473e5
translate: Updates for file locale/en/LC_MESSAGES/django.po in nl [Manual Sync] ( #16111 )
...
Translate django.po in nl [Manual Sync]
70% of minimum 60% translated source file: 'django.po'
on 'nl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:05:36 +00:00
transifex-integration[bot]
13bdad33cb
translate: Updates for file locale/en/LC_MESSAGES/django.po in pt_BR [Manual Sync] ( #16105 )
...
Translate django.po in pt_BR [Manual Sync]
69% of minimum 60% translated source file: 'django.po'
on 'pt_BR'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:03:55 +00:00
transifex-integration[bot]
0fd53bb8cf
translate: Updates for file web/xliff/en.xlf in zh_CN [Manual Sync] ( #16103 )
...
Translate web/xliff/en.xlf in zh_CN [Manual Sync]
96% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'zh_CN'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 15:00:07 +00:00
transifex-integration[bot]
e56ac8494f
translate: Updates for file locale/en/LC_MESSAGES/django.po in it [Manual Sync] ( #16102 )
...
Translate django.po in it [Manual Sync]
90% of minimum 60% translated source file: 'django.po'
on 'it'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 14:58:43 +00:00
transifex-integration[bot]
6d1d15d6e8
translate: Updates for file web/xliff/en.xlf in nl [Manual Sync] ( #16100 )
...
Translate web/xliff/en.xlf in nl [Manual Sync]
63% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'nl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 14:55:42 +00:00
transifex-integration[bot]
638dfb4d3c
translate: Updates for file web/xliff/en.xlf in ko [Manual Sync] ( #16101 )
...
Translate web/xliff/en.xlf in ko [Manual Sync]
68% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'ko'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 14:55:08 +00:00
transifex-integration[bot]
080588bb41
translate: Updates for file web/xliff/en.xlf in zh-Hans [Manual Sync] ( #16099 )
...
Translate en.xlf in zh-Hans [Manual Sync]
96% of minimum 60% translated source file: 'en.xlf'
on 'zh-Hans'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 14:54:52 +00:00
transifex-integration[bot]
6700ed8b9d
translate: Updates for file web/xliff/en.xlf in pl [Manual Sync] ( #16094 )
...
Translate web/xliff/en.xlf in pl [Manual Sync]
80% of minimum 60% translated source file: 'web/xliff/en.xlf'
on 'pl'.
Sync of partially translated files:
untranslated content is included with an empty translation
or source language content depending on file format
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 14:54:32 +00:00
Marc 'risson' Schmitt
d2da2fb966
website/docs: 2025.8 release notes ( #15975 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-08-11 14:48:32 +00:00
Jens L.
08ddd3e8d7
providers/rac: fix property mapping expression not executing ( #15819 )
...
* providers/rac: fix property mapping expression not executing
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-11 15:17:00 +01:00
Marc 'risson' Schmitt
67d9534181
packages/django-dramatiq-postgres: broker: fix infinite loop ( #16088 )
2025-08-11 13:55:46 +00:00
transifex-integration[bot]
575cf63f5b
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #16086 )
...
Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 13:29:06 +00:00
transifex-integration[bot]
1731d1e68d
translate: Updates for file web/xliff/en.xlf in fr ( #16087 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-11 13:06:53 +00:00
authentik-automation[bot]
ad29786512
core, web: update translations ( #16063 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-11 12:00:02 +01:00
dependabot[bot]
0e5d1c2983
web: bump @types/node from 22.15.19 to 24.2.1 in /web ( #16084 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.2.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:57 +01:00
dependabot[bot]
a1174192ce
website: bump @types/node from 24.2.0 to 24.2.1 in /website ( #16068 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.2.0 to 24.2.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:43 +01:00
dependabot[bot]
01b299c970
website: bump the eslint group in /website with 2 updates ( #16069 )
...
Bumps the eslint group in /website with 2 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) and [eslint](https://github.com/eslint/eslint ).
Updates `@eslint/js` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.33.0/packages/js )
Updates `eslint` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.32.0...v9.33.0 )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:39 +01:00
dependabot[bot]
16e9061468
core: bump goauthentik/fips-python from 3.13.5-slim-bookworm-fips to 3.13.6-slim-bookworm-fips ( #16070 )
...
core: bump goauthentik/fips-python
Bumps goauthentik/fips-python from 3.13.5-slim-bookworm-fips to 3.13.6-slim-bookworm-fips.
---
updated-dependencies:
- dependency-name: goauthentik/fips-python
dependency-version: 3.13.6-slim-bookworm-fips
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:36 +01:00
dependabot[bot]
0c66fe1a2c
core: bump astral-sh/uv from 0.8.6 to 0.8.8 ( #16071 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.6 to 0.8.8.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.6...0.8.8 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:33 +01:00
dependabot[bot]
dff2b871e1
core: bump goauthentik.io/api/v3 from 3.2025064.7 to 3.2025064.8 ( #16072 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025064.7 to 3.2025064.8.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025064.7...v3.2025064.8 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025064.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:29 +01:00
dependabot[bot]
510816983b
core: bump axllent/mailpit from v1.27.3 to v1.27.4 in /tests/e2e ( #16073 )
...
Bumps axllent/mailpit from v1.27.3 to v1.27.4.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.27.4
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:26 +01:00
dependabot[bot]
a936e16b68
web: bump the wdio group across 1 directory with 3 updates ( #16074 )
...
Bumps the wdio group with 3 updates in the /web directory: [@wdio/browser-runner](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-browser-runner ), [@wdio/cli](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-cli ) and [@wdio/spec-reporter](https://github.com/webdriverio/webdriverio/tree/HEAD/packages/wdio-spec-reporter ).
Updates `@wdio/browser-runner` from 9.18.4 to 9.19.0
- [Release notes](https://github.com/webdriverio/webdriverio/releases )
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.19.0/packages/wdio-browser-runner )
Updates `@wdio/cli` from 9.18.4 to 9.19.0
- [Release notes](https://github.com/webdriverio/webdriverio/releases )
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.19.0/packages/wdio-cli )
Updates `@wdio/spec-reporter` from 9.18.0 to 9.19.0
- [Release notes](https://github.com/webdriverio/webdriverio/releases )
- [Changelog](https://github.com/webdriverio/webdriverio/blob/main/CHANGELOG.md )
- [Commits](https://github.com/webdriverio/webdriverio/commits/v9.19.0/packages/wdio-spec-reporter )
---
updated-dependencies:
- dependency-name: "@wdio/browser-runner"
dependency-version: 9.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: wdio
- dependency-name: "@wdio/cli"
dependency-version: 9.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: wdio
- dependency-name: "@wdio/spec-reporter"
dependency-version: 9.19.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: wdio
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:22 +01:00
dependabot[bot]
6c8c9804ce
web: bump @goauthentik/prettier-config from 1.0.5 to 3.1.0 in /web in the goauthentik group across 1 directory ( #16075 )
...
web: bump @goauthentik/prettier-config
Bumps the goauthentik group with 1 update in the /web directory: @goauthentik/prettier-config.
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:18 +01:00
dependabot[bot]
988c339576
web: bump the eslint group across 3 directories with 2 updates ( #16076 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /packages/prettier-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /web directory: [eslint](https://github.com/eslint/eslint ).
Updates `eslint` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.32.0...v9.33.0 )
Updates `eslint` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.32.0...v9.33.0 )
Updates `@eslint/js` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.33.0/packages/js )
Updates `eslint` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.32.0...v9.33.0 )
Updates `@eslint/js` from 9.32.0 to 9.33.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.33.0/packages/js )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.33.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.33.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.33.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:15 +01:00
dependabot[bot]
1380d04480
web: bump yaml from 2.8.0 to 2.8.1 in /web ( #16077 )
...
Bumps [yaml](https://github.com/eemeli/yaml ) from 2.8.0 to 2.8.1.
- [Release notes](https://github.com/eemeli/yaml/releases )
- [Commits](https://github.com/eemeli/yaml/compare/v2.8.0...v2.8.1 )
---
updated-dependencies:
- dependency-name: yaml
dependency-version: 2.8.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:12 +01:00
dependabot[bot]
f06ebd7dc3
web: bump @types/node from 24.2.0 to 24.2.1 in /packages/esbuild-plugin-live-reload ( #16078 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.2.0 to 24.2.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:09 +01:00
dependabot[bot]
c35dff77fb
web: bump @types/node from 24.2.0 to 24.2.1 in /packages/prettier-config ( #16080 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.2.0 to 24.2.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:43:06 +01:00
dependabot[bot]
28b0c9c87b
web: bump @sentry/browser from 10.2.0 to 10.3.0 in /web in the sentry group across 1 directory ( #16081 )
...
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 10.2.0 to 10.3.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/10.2.0...10.3.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.3.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-08-11 11:43:02 +01:00
dependabot[bot]
589ee66fa1
web: bump typescript from 5.8.3 to 5.9.2 in /packages/esbuild-plugin-live-reload ( #16082 )
...
web: bump typescript in /packages/esbuild-plugin-live-reload
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.2
dependency-type: direct:development
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-08-11 11:42:59 +01:00
dependabot[bot]
b234a17e96
web: bump typedoc from 0.28.9 to 0.28.10 in /packages/esbuild-plugin-live-reload ( #16083 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.9 to 0.28.10.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.9...v0.28.10 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.10
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-11 11:42:56 +01:00
Jens L.
7d4ce2abfc
packages/django-dramatiq-postgres: run worker in the same base process, use structlog ( #16061 )
...
* run worker inline, not as subprocess
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix logging mismatch between std library and structlog
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* switch to structlog for dramatiq
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* check if we need to log error
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* don't hardcode
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* close db connections before starting worker
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix healthcheck endpoint logging
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-10 21:32:11 +00:00
Dominic R
aeb5c9a24f
core: Prevent application creation with reserved slugs ( #15930 )
...
* wip
* wip
* Update applications.py
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update authentik/core/tests/test_applications_reserved_slugs.py
Signed-off-by: Dominic R <dominic@sdko.org >
* wip
* aa
* cleanup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens L. <jens@beryju.org >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-10 18:55:39 +01:00
dependabot[bot]
38e0a5794d
web: bump tmp from 0.2.3 to 0.2.5 in /packages/prettier-config ( #16062 )
...
Bumps [tmp](https://github.com/raszi/node-tmp ) from 0.2.3 to 0.2.5.
- [Changelog](https://github.com/raszi/node-tmp/blob/master/CHANGELOG.md )
- [Commits](https://github.com/raszi/node-tmp/compare/v0.2.3...v0.2.5 )
---
updated-dependencies:
- dependency-name: tmp
dependency-version: 0.2.5
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-10 18:54:11 +01:00
authentik-automation[bot]
fdf0416ea9
web: bump API Client version ( #16060 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-10 17:29:26 +01:00
Jens L.
e771bb74ee
policies: buffered policy access view for concurrent authorization attempts when unauthenticated ( #15034 )
...
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-10 16:22:05 +00:00
Jens L.
50a22e685e
web/flows: update default flow background ( #16056 )
...
* web/flows: update default flow background
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Optimised images with calibre/image-actions
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-10 15:17:25 +01:00
Jens L.
e789818526
web/elements: fix QL autocomplete not working ( #16054 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-09 20:48:21 +01:00
Tom Neuber
7ed3fed5c3
outpost/proxyv2: add session cleanup for filesystem session store ( #15798 )
...
* proxyv2/filesystemstore: add persistent filesystem store to implement a session cleanup job
* proxyv2: add session cleanup for filesystem session store
2025-08-09 20:13:39 +01:00
Bethuel Mmbaga
8eecc537fa
website/integrations: Update netbird redirect URIs settings ( #16001 )
...
update netbird integration redirect URIs and add auth variables
2025-08-09 20:00:01 +01:00
authentik-automation[bot]
c91c97178f
core, web: update translations ( #16046 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-09 13:50:04 +01:00
Teffen Ellis
9ced8b948a
web: Clean up ak-mdx linter warnings. ( #16039 )
2025-08-09 00:11:08 +02:00
dependabot[bot]
5a9cec6c61
web: bump format-imports from 4.0.7 to 4.0.8 in /packages/prettier-config ( #15950 )
...
web: bump format-imports in /packages/prettier-config
Bumps [format-imports](https://github.com/daidodo/format-imports ) from 4.0.7 to 4.0.8.
- [Changelog](https://github.com/daidodo/format-imports/blob/main/CHANGELOG.md )
- [Commits](https://github.com/daidodo/format-imports/commits )
---
updated-dependencies:
- dependency-name: format-imports
dependency-version: 4.0.8
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 17:17:39 +01:00
dependabot[bot]
9caca181cb
web: bump typedoc from 0.28.8 to 0.28.9 in /packages/esbuild-plugin-live-reload ( #15951 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.8 to 0.28.9.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.8...v0.28.9 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.9
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 17:17:20 +01:00
dependabot[bot]
43343adfd8
web: bump react-dom and @types/react-dom in /packages/docusaurus-config ( #15864 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ). These dependencies needed to be updated together.
Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom )
Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: "@types/react-dom"
dependency-version: 19.1.7
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 15:32:19 +01:00
dependabot[bot]
f38c472eec
website: bump @types/node from 24.1.0 to 24.2.0 in /website ( #15970 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.1.0 to 24.2.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.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-08-08 15:31:35 +01:00
dependabot[bot]
9913345670
website: bump typescript from 5.8.3 to 5.9.2 in /website ( #15969 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.2
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-08-08 15:31:18 +01:00
dependabot[bot]
c705eaabca
web: bump react-dom and @types/react-dom in /web ( #15867 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom ). These dependencies needed to be updated together.
Updates `react-dom` from 19.1.0 to 19.1.1
- [Release notes](https://github.com/facebook/react/releases )
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md )
- [Commits](https://github.com/facebook/react/commits/v19.1.1/packages/react-dom )
Updates `@types/react-dom` from 19.1.6 to 19.1.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
dependency-version: 19.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
- dependency-name: "@types/react-dom"
dependency-version: 19.1.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 14:52:02 +01:00
Marc 'risson' Schmitt
87eadea92b
ci: readable workflow names ( #16036 )
2025-08-08 14:51:18 +01:00
dependabot[bot]
35c478d045
web: bump the eslint group across 2 directories with 3 updates ( #15964 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/parser )
Updates `typescript-eslint` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.39.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.39.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.39.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 14:49:44 +01:00
dependabot[bot]
c0e0fcdcb1
web: bump @types/node from 24.1.0 to 24.2.0 in /packages/esbuild-plugin-live-reload ( #15967 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.1.0 to 24.2.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.0
dependency-type: direct:development
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-08-08 14:49:37 +01:00
dependabot[bot]
3d97120cc2
web: bump the storybook group across 1 directory with 5 updates ( #15968 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.1.0 to 9.1.1
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.1/code/addons/docs )
Updates `@storybook/addon-links` from 9.1.0 to 9.1.1
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.1/code/addons/links )
Updates `@storybook/web-components` from 9.1.0 to 9.1.1
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.1/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.1.0 to 9.1.1
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.1/code/frameworks/web-components-vite )
Updates `storybook` from 9.1.0 to 9.1.1
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.1/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 14:49:27 +01:00
dependabot[bot]
29047ecf7a
web: bump @types/node from 22.15.19 to 24.2.0 in /web ( #15971 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.2.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 14:49:14 +01:00
dependabot[bot]
6cd4916d82
web: bump @types/node from 24.1.0 to 24.2.0 in /packages/prettier-config ( #15972 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.1.0 to 24.2.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.2.0
dependency-type: direct:development
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-08-08 14:49:04 +01:00
dependabot[bot]
5a24a6eef4
web: bump tmp from 0.2.3 to 0.2.4 in /packages/esbuild-plugin-live-reload ( #16008 )
...
web: bump tmp in /packages/esbuild-plugin-live-reload
Bumps [tmp](https://github.com/raszi/node-tmp ) from 0.2.3 to 0.2.4.
- [Changelog](https://github.com/raszi/node-tmp/blob/master/CHANGELOG.md )
- [Commits](https://github.com/raszi/node-tmp/compare/v0.2.3...v0.2.4 )
---
updated-dependencies:
- dependency-name: tmp
dependency-version: 0.2.4
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 14:48:47 +01:00
dependabot[bot]
f0b9cbd517
website: bump the eslint group in /website with 3 updates ( #15977 )
...
Bumps the eslint group in /website with 3 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `@typescript-eslint/eslint-plugin` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/parser )
Updates `typescript-eslint` from 8.38.0 to 8.39.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.39.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.39.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 14:47:59 +01:00
dependabot[bot]
137223f7a0
website: bump tmp from 0.2.3 to 0.2.4 in /website ( #16012 )
...
* website: bump tmp from 0.2.3 to 0.2.4 in /website
Bumps [tmp](https://github.com/raszi/node-tmp ) from 0.2.3 to 0.2.4.
- [Changelog](https://github.com/raszi/node-tmp/blob/master/CHANGELOG.md )
- [Commits](https://github.com/raszi/node-tmp/compare/v0.2.3...v0.2.4 )
---
updated-dependencies:
- dependency-name: tmp
dependency-version: 0.2.4
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
* use codecov oidc
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix perms
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-08 14:46:20 +01:00
Teffen Ellis
6b9810ebe4
web: Fix cursor using pointer in modals. ( #16009 )
2025-08-08 14:46:13 +01:00
Teffen Ellis
b873bd7c80
web: Fix wide inputs, label alignment ( #16042 )
...
* web: Remove extra-wide field groups.
* web: Fix input alignment, types.
2025-08-08 14:45:52 +01:00
Marc 'risson' Schmitt
a34cd14ad7
ci: revert: main, outpost: ignore website changes ( #16037 ) ( #16040 )
2025-08-08 13:06:19 +00:00
dependabot[bot]
2cd7e9f5ad
web: bump the sentry group across 1 directory with 2 updates ( #16023 )
...
Bumps the sentry group with 2 updates in the /web directory: [@sentry/browser](https://github.com/getsentry/sentry-javascript ) and @spotlightjs/spotlight.
Updates `@sentry/browser` from 10.0.0 to 10.2.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/10.0.0...10.2.0 )
Updates `@spotlightjs/spotlight` from 3.0.1 to 3.0.2
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
- dependency-name: "@spotlightjs/spotlight"
dependency-version: 3.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 13:35:51 +01:00
dependabot[bot]
8a5f4c3f63
core: bump astral-sh/uv from 0.8.5 to 0.8.6 ( #16033 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.5 to 0.8.6.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.5...0.8.6 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 13:35:39 +01:00
Marc 'risson' Schmitt
c0feb98635
ci: main, outpost: ignore website changes ( #16037 )
2025-08-08 12:32:59 +00:00
dependabot[bot]
745b7621ab
lifecycle/aws: bump aws-cdk from 2.1023.0 to 2.1024.0 in /lifecycle/aws ( #16025 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-08 12:27:39 +00:00
transifex-integration[bot]
2de0649898
translate: Updates for file web/xliff/en.xlf in fr ( #16035 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-08 11:03:35 +00:00
transifex-integration[bot]
a80b18cabe
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #16034 )
...
Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-08 11:01:59 +00:00
authentik-automation[bot]
f054af82dd
core, web: update translations ( #16032 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-08 10:30:02 +00:00
Dominic R
6c176e0ba5
web: providers/rac: Fix wizard confirmation ( #16013 )
...
* providers/rac: Fix wizard confirmation
* lint
* Update web/src/admin/applications/wizard/steps/SubmitStepOverviewRenderers.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
2025-08-08 06:15:29 +02:00
YapWC
2cdc741b0b
website/integrations: fix outline subject mode ( #16022 )
...
* Update index.md for Configure the Provider
Added Subject Mode which is required by Outline, default by username.
Signed-off-by: YapWC <34093361+YapWC@users.noreply.github.com >
* Update website/integrations/documentation/outline/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: YapWC <34093361+YapWC@users.noreply.github.com >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-08-07 15:25:29 -05:00
Teffen Ellis
331732ce94
web: Form error rendering ( #15874 )
...
web: Use snake case helper.
2025-08-07 21:46:23 +02:00
Teffen Ellis
7e66f0ad94
web: Fix issue where aria-owns attribute triggers Chrome crash. ( #16003 )
...
- Tidy theme colors.
2025-08-07 16:37:24 +00:00
Teffen Ellis
fa5e8f993e
web/a11y: Form Errors ( #15940 )
...
* web: Clarify client errors.
* web: Flesh out component type.
* web: Normalize field errors.
2025-08-07 12:33:53 -04:00
Ken Sternberg
b9a2722ef7
core: limit User search_field to pure text only ( #16020 )
2025-08-07 16:33:09 +00:00
Teffen Ellis
c3101fdf64
web: Bump package-lock. ( #16018 )
2025-08-07 09:15:56 -07:00
Teffen Ellis
97a2e02dcb
web: Fix initial browser color scheme. ( #16028 )
2025-08-07 16:15:40 +00:00
Marcelo Elizeche Landó
336aa7f5e9
website/docs: Add docs for oauth2 back-channel logout ( #15845 )
...
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: dewi-tik <dewi@goauthentik.io >
2025-08-07 18:13:07 +02:00
Teffen Ellis
bfe26a8b23
website: Fix Markdown link. ( #16029 )
2025-08-07 17:35:10 +02:00
dependabot[bot]
2392ccb945
core: bump goauthentik.io/api/v3 from 3.2025064.6 to 3.2025064.7 ( #16024 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025064.6 to 3.2025064.7.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025064.6...v3.2025064.7 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025064.7
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-07 12:40:25 +00:00
authentik-automation[bot]
7e46a7defc
core, web: update translations ( #16021 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-07 14:25:59 +02:00
Dominic R
2d5247f1bc
ci: move images from beryju/* to authentik/* ( #15321 )
2025-08-06 16:04:15 +00:00
authentik-automation[bot]
2c2d7c38d2
core, web: update translations ( #15985 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-06 15:38:53 +00:00
Marcelo Elizeche Landó
d3963172cc
core: bump cattrs from 24.1.3 to v25.1.1 ( #15981 )
2025-08-06 15:38:38 +00:00
authentik-automation[bot]
08abe34b81
web: bump API Client version ( #16002 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-06 15:30:54 +00:00
dependabot[bot]
47263aef3f
ci: bump actions/download-artifact from 4 to 5 ( #15995 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-06 15:29:24 +00:00
Marcelo Elizeche Landó
162934679d
core: bump certifi from 2025.7.14 to v2025.8.3 ( #15982 )
2025-08-06 17:21:07 +02:00
Marcelo Elizeche Landó
1903c35ee0
core: bump anyio from 4.9.0 to v4.10.0 ( #15979 )
2025-08-06 17:20:33 +02:00
Marcelo Elizeche Landó
b97635f710
core: bump boto3 from 1.40.1 to v1.40.2 ( #15980 )
2025-08-06 17:20:20 +02:00
dependabot[bot]
fd1f65eefc
core: bump astral-sh/uv from 0.8.4 to 0.8.5 ( #15998 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-06 17:16:39 +02:00
dependabot[bot]
1e8eff4cb2
core: bump goauthentik.io/api/v3 from 3.2025064.5 to 3.2025064.6 ( #15997 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-06 17:16:04 +02:00
dechen-authentik
cfe113b36a
stages/email: implement rate limiting for account verification ( #15531 )
...
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
2025-08-06 16:44:35 +02:00
Teffen Ellis
90274b357a
web: Fix stale application slug, missing error state. ( #15941 )
...
* web: Fix issue where application slug is outdated.
* web: Show error if application does not load.
* web: Tidy policy styling.
2025-08-05 20:10:38 +02:00
Dewi Roberts
9848e4fbe0
website/docs: change azure ad to entra id ( #15691 )
...
* Update sidebar, update doc and files
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update sidebar, update doc and files
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Update website/docs/users-sources/sources/social-logins/entra-id/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Applied suggestions
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-08-05 16:24:30 +01:00
Tana M Berry
a9deefe481
website/docs: add tips for image optimization ( #15978 )
...
* add new section for image optimization
* tweaks
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-08-05 10:19:25 -05:00
authentik-automation[bot]
d29896cfe1
web: bump API Client version ( #15976 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-05 10:59:51 -04:00
Marcelo Elizeche Landó
30670bb547
providers/oauth2: backchannel logout ( #15401 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-05 14:16:02 +02:00
authentik-automation[bot]
0f64471115
web: bump API Client version ( #15953 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-05 14:09:50 +02:00
transifex-integration[bot]
249b22963a
translate: Updates for file web/xliff/en.xlf in fr ( #15974 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-05 12:01:13 +00:00
transifex-integration[bot]
b3a513273b
translate: Updates for file locale/en/LC_MESSAGES/django.po in fr ( #15973 )
...
Translate locale/en/LC_MESSAGES/django.po in fr
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-08-05 11:55:23 +00:00
authentik-automation[bot]
7ca013d527
core, web: update translations ( #15962 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-05 12:39:11 +02:00
dependabot[bot]
2e65e307fe
core: bump goauthentik.io/api/v3 from 3.2025064.3 to 3.2025064.5 ( #15965 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025064.3 to 3.2025064.5.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025064.3...v3.2025064.5 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025064.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-05 12:37:33 +02:00
Tana M Berry
0c07bad6f6
website/docs: reword Warning in Docker install docs ( #15960 )
...
* try again
* tweak
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-08-04 17:45:37 -05:00
Teffen Ellis
eb1c56dbeb
web: Fix property name mismatch. ( #15961 )
2025-08-04 22:32:40 +00:00
Mike
766a294e55
website/docs: update instructions for Cloudflare Turnstile setup ( #15918 )
...
* Update index.md
Expanded on the instructions to setup Cloudflare Turnstile captcha
Signed-off-by: Mike <mike@cxi.nz >
* Update website/docs/add-secure-apps/flows-stages/stages/captcha/index.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
* Added period
---------
Signed-off-by: Mike <mike@cxi.nz >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-08-04 22:19:42 +00:00
Dominic R
db84a29ad7
website/integrations: home assistant: fix typo ( #15958 )
...
Update index.md
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-04 15:49:20 -05:00
Teffen Ellis
58e65e4612
web: Fix scroll-event induced tab crash ( #15939 )
...
web: Fix issue where native scroll event doesn't trigger before element
expands.
2025-08-04 20:25:05 +00:00
Dominic R
95b2d15476
website/integrations: actual budget: add info about first login fails ( #15931 )
...
* Import from PR
* wip
* wip
2025-08-04 15:24:10 -05:00
Dominic R
2bdc5ef8b1
website/integrations: mattermost ( #15922 )
...
* Import from PR
* wip
* wip
2025-08-04 15:19:06 -05:00
Dominic R
83cae926f7
website/integrations: fix build ( #15957 )
...
* Update index.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Delete website/integrations/services/home-assistant/index.mdx
Signed-off-by: Dominic R <dominic@sdko.org >
* bump build
* frustrating
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-08-04 15:02:40 -05:00
Simonyi Gergő
213cf44928
root: enhance custom middleware experience ( #15919 )
...
* enable custom middleware positioning
Users can now set up their middleware to come before or after other
middleware.
Comes with the added benefit that prometheus middlewares are ensured
to be the very first and very last to run.
* stop treating authentik.enterprise exceptionally in settings
This is the singular case where more apps are added.
* stop treating authentik.core exceptionally in settings
Uhh, fingers crossed? This has history, it goes back to 80d90b91e8
2025-08-04 21:05:05 +02:00
Timo Christeleit
3c97b081b0
website/integrations: add hass-openid instructions ( #14672 )
...
* add instructions
* Added tabs for each configuration method, changed some wording, and ran prettier.
* Changed proxy section formatting and some language
* Update website/integrations/services/home-assistant/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Timo Christeleit <timo.christeleit@cavefire.net >
* Update website/integrations/services/home-assistant/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Timo Christeleit <timo.christeleit@cavefire.net >
* Update website/integrations/services/home-assistant/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Timo Christeleit <timo.christeleit@cavefire.net >
* Update website/integrations/services/home-assistant/index.mdx
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
---------
Signed-off-by: Timo Christeleit <timo.christeleit@cavefire.net >
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-04 09:39:37 -05:00
Jose D. Gomez R.
ba725365ec
core: add updated_at field to user ( #15571 )
...
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-08-04 13:36:09 +00:00
Dominic R
e5e9708ec2
root: Add more opencontainer labels to Dockerfiles ( #15923 )
...
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-08-04 13:08:09 +00:00
dependabot[bot]
6a604e42ca
core: bump goauthentik.io/api/v3 from 3.2025064.2 to 3.2025064.3 ( #15949 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-04 12:55:18 +00:00
Daniel Adu-Gyan
ab1f87cfd6
core, providers/ldap: add parent/child groups to api and ldap results ( #14974 )
2025-08-04 14:29:16 +02:00
Teffen Ellis
de9b795c97
web: Make Webdriver optional during install. ( #15952 )
2025-08-04 12:24:34 +00:00
authentik-automation[bot]
0377e3593e
core, web: update translations ( #15945 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-04 13:22:17 +02:00
Simonyi Gergő
951c24dab5
packages/django-dramatiq-postgres: fix typo ( #15932 )
...
* fix typo
* fix typo
2025-08-04 13:05:57 +02:00
authentik-automation[bot]
707eca883e
web: bump API Client version ( #15942 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-03 18:29:37 +01:00
Jens L.
8bc64ea478
core: fix flow planner checking against wrong user when creating recovery link ( #15390 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-03 18:24:37 +01:00
Jens L.
8b1240ff0b
providers/saml: configuration for default NameID Policy ( #15109 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-08-03 18:24:12 +01:00
Marcelo Elizeche Landó
56ff8b1f97
core: bump boto3 from 1.39.15 to v1.40.1 ( #15926 )
2025-08-03 12:22:54 +02:00
Marcelo Elizeche Landó
cf26aace7b
core: bump jsii from 1.112.0 to v1.113.0 ( #15927 )
2025-08-03 12:22:39 +02:00
Marcelo Elizeche Landó
46021e904a
core: bump argon2-cffi-bindings from 21.2.0 to v25.1.0 ( #15925 )
2025-08-03 12:22:24 +02:00
Marcelo Elizeche Landó
a47196776d
core: bump aiohttp from 3.12.14 to v3.12.15 ( #15924 )
2025-08-03 12:22:12 +02:00
Marcelo Elizeche Landó
58ce20c840
core: bump opentelemetry-api from 1.35.0 to v1.36.0 ( #15928 )
2025-08-03 12:22:06 +02:00
Simonyi Gergő
29b0177235
web/admin: fix variable name ( #15934 )
...
fix variable name
2025-08-02 16:26:20 +01:00
Simonyi Gergő
f15ddfcccd
policies: fix typo ( #15933 )
...
fix typo
2025-08-02 16:23:05 +01:00
dependabot[bot]
7e4bdac093
web: bump @sentry/browser from 9.43.0 to 10.0.0 in /web in the sentry group across 1 directory ( #15911 )
...
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.43.0 to 10.0.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.43.0...10.0.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 12:42:54 +02:00
dependabot[bot]
5f16ea4718
core: bump github.com/prometheus/client_golang from 1.22.0 to 1.23.0 ( #15908 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 10:22:50 +00:00
dependabot[bot]
d50a266d74
website: bump the build group in /website with 3 updates ( #15910 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.4.10 to 1.4.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.11/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.4.10 to 1.4.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.11/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.4.10 to 1.4.11
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.11/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.4.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.4.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.4.11
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 12:14:49 +02:00
dependabot[bot]
41ebfa24da
web: bump the storybook group across 1 directory with 5 updates ( #15912 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.0.18 to 9.1.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.0/code/addons/docs )
Updates `@storybook/addon-links` from 9.0.18 to 9.1.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.0/code/addons/links )
Updates `@storybook/web-components` from 9.0.18 to 9.1.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.0/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.0.18 to 9.1.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.0/code/frameworks/web-components-vite )
Updates `storybook` from 9.0.18 to 9.1.0
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.1.0/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 12:14:23 +02:00
dependabot[bot]
8b7cc18988
web: bump typescript from 5.8.3 to 5.9.2 in /packages/docusaurus-config ( #15913 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.2
dependency-type: direct:development
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-08-01 12:14:08 +02:00
dependabot[bot]
e780b7d519
web: bump typescript from 5.8.3 to 5.9.2 in /packages/esbuild-plugin-live-reload ( #15914 )
...
web: bump typescript in /packages/esbuild-plugin-live-reload
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.2
dependency-type: direct:development
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-08-01 12:13:57 +02:00
dependabot[bot]
25894592ae
web: bump typescript from 5.8.3 to 5.9.2 in /packages/eslint-config ( #15915 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.2
dependency-type: direct:development
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-08-01 12:13:48 +02:00
dependabot[bot]
5021d08c69
web: bump typescript from 5.8.3 to 5.9.2 in /packages/prettier-config ( #15916 )
...
Bumps [typescript](https://github.com/microsoft/TypeScript ) from 5.8.3 to 5.9.2.
- [Release notes](https://github.com/microsoft/TypeScript/releases )
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml )
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2 )
---
updated-dependencies:
- dependency-name: typescript
dependency-version: 5.9.2
dependency-type: direct:development
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-08-01 12:13:35 +02:00
authentik-automation[bot]
cb74b47674
stages/authenticator_webauthn: Update FIDO MDS3 & Passkey aaguid blobs ( #15906 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-08-01 12:06:19 +02:00
dependabot[bot]
aafd81ca09
core: bump github.com/getsentry/sentry-go from 0.34.1 to 0.35.0 ( #15909 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-01 12:05:29 +02:00
Dominic R
a4f8e15f91
website/integrations: kimai: fix order and var ( #15907 )
...
Signed-off-by: Dominic R <dominic@sdko.org >
2025-08-01 08:30:31 +01:00
Jens L.
0c20169739
web/common: fix form element alignment ( #15904 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-31 18:18:01 +02:00
Jens L.
24ca89c439
web/flows: fix flow inspector button always showing ( #15893 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-31 17:19:35 +02:00
dependabot[bot]
0352d31af0
web: bump @floating-ui/dom from 1.7.2 to 1.7.3 in /web ( #15899 )
...
Bumps [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom ) from 1.7.2 to 1.7.3.
- [Release notes](https://github.com/floating-ui/floating-ui/releases )
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md )
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.7.3/packages/dom )
---
updated-dependencies:
- dependency-name: "@floating-ui/dom"
dependency-version: 1.7.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 15:54:06 +02:00
dependabot[bot]
5bdbf06351
web: bump chromedriver from 138.0.4 to 138.0.5 in /web ( #15900 )
...
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 138.0.4 to 138.0.5.
- [Commits](https://github.com/giggio/node-chromedriver/compare/138.0.4...138.0.5 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 138.0.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 15:53:55 +02:00
dependabot[bot]
b3f1e7b1a2
core: bump github.com/golang-jwt/jwt/v5 from 5.2.3 to 5.3.0 ( #15896 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 14:18:18 +02:00
dependabot[bot]
2dfda8833d
core: bump github.com/coreos/go-oidc/v3 from 3.14.1 to 3.15.0 ( #15897 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 14:18:01 +02:00
dependabot[bot]
9094b30860
core: bump astral-sh/uv from 0.8.3 to 0.8.4 ( #15898 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 14:16:39 +02:00
authentik-automation[bot]
7e52e932fc
core, web: update translations ( #15895 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-31 14:15:25 +02:00
Teffen Ellis
b5fc28a3fd
website: Ignore legacy API docs. ( #15891 )
2025-07-31 11:24:27 +00:00
dependabot[bot]
df49dd4ec8
web: bump the rollup group across 1 directory with 4 updates ( #15884 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.46.1 to 4.46.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.1...v4.46.2 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.46.1 to 4.46.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.1...v4.46.2 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.46.1 to 4.46.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.1...v4.46.2 )
Updates `rollup` from 4.46.1 to 4.46.2
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.1...v4.46.2 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.46.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 01:37:58 +02:00
dependabot[bot]
3f4c58a05b
lifecycle/aws: bump aws-cdk from 2.1022.0 to 2.1023.0 in /lifecycle/aws ( #15881 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1022.0 to 2.1023.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1023.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1023.0
dependency-type: direct:development
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-07-31 01:37:50 +02:00
dependabot[bot]
46c9bfb0aa
website: bump the build group in /website with 2 updates ( #15882 )
...
Bumps the build group in /website with 2 updates: [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) and [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ).
Updates `@swc/core-darwin-arm64` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-31 01:37:39 +02:00
dependabot[bot]
6d325d566c
web: bump @sentry/browser from 9.42.1 to 9.43.0 in /web in the sentry group across 1 directory ( #15883 )
...
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.42.1 to 9.43.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/9.43.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/9.42.1...9.43.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.43.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-07-31 01:37:21 +02:00
dependabot[bot]
5689336f61
web: bump typedoc-plugin-markdown from 4.7.1 to 4.8.0 in /packages/esbuild-plugin-live-reload ( #15885 )
...
web: bump typedoc-plugin-markdown
Bumps [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown ) from 4.7.1 to 4.8.0.
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases )
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md )
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.8.0/packages/typedoc-plugin-markdown )
---
updated-dependencies:
- dependency-name: typedoc-plugin-markdown
dependency-version: 4.8.0
dependency-type: direct:development
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-07-31 01:37:07 +02:00
Teffen Ellis
e04ca70cb2
web/a11y: Tables & Modals ( #15877 )
...
web: Prep for a11y, tables, modals.
2025-07-30 19:27:11 -04:00
Teffen Ellis
6a5342f621
web/a11y: Form Inputs ( #15878 )
...
web: Prep form inputs for a11y.
2025-07-30 19:27:03 -04:00
Teffen Ellis
e250c8f514
web/a11y: Navigation Banner ( #15880 )
...
web: Prepare navbar for a11y.
2025-07-30 19:26:34 -04:00
Teffen Ellis
a4e7aa0adc
web/a11y: License notice ARIA attributes. ( #15872 )
...
web: Add ARIA attributes.
2025-07-30 19:26:23 -04:00
authentik-automation[bot]
ac79acd2bc
core, web: update translations ( #15873 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-30 10:34:47 +02:00
Marc 'risson' Schmitt
1aea4ad8d0
tasks/schedules: fix IntegrityError on schedule update ( #15871 )
2025-07-29 18:52:51 +02:00
rattencreep
9591ea0bbc
website/integrations: add profile scope to nextcloud oidc ( #15861 )
...
Added missing OIDC scope
When configuring the OpenID Connect user backend app, the
scope profile was missing. Without that, auto-provisioned users will have the display name set to the account name - which is not easily human readable.
Signed-off-by: rattencreep <62957151+rattencreep@users.noreply.github.com >
2025-07-29 10:16:58 -05:00
Marcelo Elizeche Landó
f5af58ac68
core: bump orjson from 3.11.0 to v3.11.1 ( #15836 )
2025-07-29 13:30:44 +00:00
dependabot[bot]
84a8e3128d
web: bump the rollup group across 1 directory with 4 updates ( #15853 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.46.0 to 4.46.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.0...v4.46.1 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.46.0 to 4.46.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.0...v4.46.1 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.46.0 to 4.46.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.0...v4.46.1 )
Updates `rollup` from 4.46.0 to 4.46.1
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.46.0...v4.46.1 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.46.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 15:27:37 +02:00
dependabot[bot]
747f80e60b
website: bump the build group in /website with 4 updates ( #15852 )
...
Bumps the build group in /website with 4 updates: [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ), [@swc/html-darwin-arm64](https://github.com/swc-project/swc ), [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) and [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ).
Updates `@swc/core-linux-x64-gnu` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/html-darwin-arm64` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/html-linux-x64-gnu` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
---
updated-dependencies:
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 15:27:20 +02:00
dependabot[bot]
c17e36e71c
web: bump @sentry/browser from 9.42.0 to 9.42.1 in /web in the sentry group across 1 directory ( #15849 )
...
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.42.0 to 9.42.1
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/9.42.1/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/9.42.0...9.42.1 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.42.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 15:27:12 +02:00
dependabot[bot]
a299bae007
web: bump the goauthentik group across 4 directories with 2 updates ( #15858 )
...
Bumps the goauthentik group with 1 update in the /packages/docusaurus-config directory: @goauthentik/prettier-config.
Bumps the goauthentik group with 1 update in the /packages/esbuild-plugin-live-reload directory: @goauthentik/prettier-config.
Bumps the goauthentik group with 1 update in the /packages/eslint-config directory: @goauthentik/prettier-config.
Bumps the goauthentik group with 1 update in the /web directory: [@goauthentik/esbuild-plugin-live-reload](https://github.com/goauthentik/authentik/tree/HEAD/web/packages/esbuild-plugin-live-reload ).
Updates `@goauthentik/prettier-config` from 2.0.0 to 3.1.0
Updates `@goauthentik/prettier-config` from 3.0.0 to 3.1.0
Updates `@goauthentik/prettier-config` from 1.0.5 to 3.1.0
Updates `@goauthentik/esbuild-plugin-live-reload` from 1.0.5 to 1.1.0
- [Release notes](https://github.com/goauthentik/authentik/releases )
- [Commits](https://github.com/goauthentik/authentik/commits/HEAD/web/packages/esbuild-plugin-live-reload )
---
updated-dependencies:
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:development
update-type: version-update:semver-major
dependency-group: goauthentik
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: goauthentik
- dependency-name: "@goauthentik/prettier-config"
dependency-version: 3.1.0
dependency-type: direct:development
update-type: version-update:semver-major
dependency-group: goauthentik
- dependency-name: "@goauthentik/esbuild-plugin-live-reload"
dependency-version: 1.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: goauthentik
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 15:26:23 +02:00
Marc 'risson' Schmitt
790ee2d16f
lib/sync/outgoing: fix page sync task id ( #15828 )
2025-07-29 13:26:09 +00:00
Marcelo Elizeche Landó
7ebc585cde
core: bump cron-converter from 1.2.1 to v1.2.2 ( #15831 )
2025-07-29 13:26:06 +00:00
Marcelo Elizeche Landó
e5dfe3e64a
core: bump zope-event from 5.0 to v5.1.1 ( #15838 )
2025-07-29 13:25:37 +00:00
dependabot[bot]
0aeaa82b67
web: bump the swc group across 1 directory with 11 updates ( #15859 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-darwin-arm64` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-darwin-x64` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-linux-arm64-musl` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-linux-x64-gnu` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-linux-x64-musl` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
Updates `@swc/core-win32-x64-msvc` from 1.13.2 to 1.13.3
- [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.13.2...v1.13.3 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 15:25:18 +02:00
Marc 'risson' Schmitt
a3b59bb178
tasks: fix rel_obj being removed when task is retried ( #15862 )
2025-07-29 15:24:57 +02:00
authentik-automation[bot]
47a5582b47
core, web: update translations ( #15844 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-29 13:19:19 +00:00
Marcelo Elizeche Landó
fe4bc7d067
core: bump rich from 14.0.0 to v14.1.0 ( #15837 )
2025-07-29 15:05:15 +02:00
Marcelo Elizeche Landó
c17c7891b0
core: bump microsoft-kiota-http from 1.9.4 to v1.9.5 ( #15835 )
2025-07-29 15:05:04 +02:00
Marcelo Elizeche Landó
1eabd8ebae
core: bump microsoft-kiota-authentication-azure from 1.9.4 to v1.9.5 ( #15834 )
2025-07-29 15:04:57 +02:00
Marcelo Elizeche Landó
a2c5a36d0a
core: bump maxminddb from 2.7.0 to v2.8.2 ( #15833 )
2025-07-29 15:04:50 +02:00
Marcelo Elizeche Landó
3741d91386
core: bump greenlet from 3.2.2 to v3.2.3 ( #15832 )
2025-07-29 15:04:44 +02:00
Marcelo Elizeche Landó
44716a3c1e
core: bump boto3 from 1.39.11 to v1.39.15 ( #15830 )
2025-07-29 15:04:22 +02:00
Marcelo Elizeche Landó
074af4e7a8
core: bump channels from 4.2.2 to v4.3.0 ( #15842 )
2025-07-29 15:03:38 +02:00
dependabot[bot]
e3c68c69cc
core: bump axllent/mailpit from v1.27.2 to v1.27.3 in /tests/e2e ( #15857 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 14:59:27 +02:00
dependabot[bot]
6cb8a1c10e
core: bump goauthentik.io/api/v3 from 3.2025064.1 to 3.2025064.2 ( #15850 )
...
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-29 14:59:11 +02:00
transifex-integration[bot]
b775e3ff20
translate: Updates for file web/xliff/en.xlf in es ( #15860 )
...
Translate web/xliff/en.xlf in es
100% translated source file: 'web/xliff/en.xlf'
on 'es'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-07-29 14:16:36 +02:00
Jens L.
41416f4d16
web/admin: improve admin UI for tasks slightly ( #15829 )
...
* web/admin: fix padding, fix untranslated task elements
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix unrelated css
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-28 19:37:57 +02:00
authentik-automation[bot]
b94b281fa4
core, web: update translations ( #15827 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-28 16:32:07 +00:00
Marc 'risson' Schmitt
832777d966
packages: fix codeowners ( #15826 )
2025-07-28 16:22:05 +00:00
Marc 'risson' Schmitt
3c8bd93b3a
packages/django-dramatiq-postgres: broker: avoid exception on consumer final close ( #15824 )
2025-07-28 16:00:52 +00:00
transifex-integration[bot]
6c09255118
translate: Updates for file web/xliff/en.xlf in fr ( #15821 )
...
Translate web/xliff/en.xlf in fr
100% translated source file: 'web/xliff/en.xlf'
on 'fr'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-07-28 15:11:24 +00:00
authentik-automation[bot]
2e4c645f7e
web: bump API Client version ( #15822 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-28 17:08:39 +02:00
Marc 'risson' Schmitt
29f20a4829
*: replace Celery with Dramatiq ( #13492 )
2025-07-28 17:00:09 +02:00
Dominic R
95d8cd4ea1
website/docs: stages/mtls: Clean up stage configuration section ( #15753 )
...
* website/docs: stages/mtls: Clean up stage configuration section
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/add-secure-apps/flows-stages/stages/mtls/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/add-secure-apps/flows-stages/stages/mtls/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/add-secure-apps/flows-stages/stages/mtls/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/add-secure-apps/flows-stages/stages/mtls/index.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/add-secure-apps/flows-stages/stages/mtls/index.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-07-28 15:23:01 +01:00
transifex-integration[bot]
90fe8a1a22
translate: Updates for file locale/en/LC_MESSAGES/django.po in es ( #15818 )
...
Translate locale/en/LC_MESSAGES/django.po in es
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'es'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-07-28 13:23:57 +00:00
dependabot[bot]
3ae2831cbe
website: bump the eslint group in /website with 2 updates ( #15805 )
...
Bumps the eslint group in /website with 2 updates: [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js ) and [eslint](https://github.com/eslint/eslint ).
Updates `@eslint/js` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.32.0/packages/js )
Updates `eslint` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.31.0...v9.32.0 )
---
updated-dependencies:
- dependency-name: "@eslint/js"
dependency-version: 9.32.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.32.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-28 14:07:24 +02:00
dependabot[bot]
199e317846
web: bump typedoc from 0.28.7 to 0.28.8 in /packages/esbuild-plugin-live-reload ( #15809 )
...
web: bump typedoc in /packages/esbuild-plugin-live-reload
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc ) from 0.28.7 to 0.28.8.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases )
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TypeStrong/TypeDoc/compare/v0.28.7...v0.28.8 )
---
updated-dependencies:
- dependency-name: typedoc
dependency-version: 0.28.8
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-28 14:07:13 +02:00
dependabot[bot]
2093147f7f
core: bump axllent/mailpit from v1.27.1 to v1.27.2 in /tests/e2e ( #15813 )
...
Bumps axllent/mailpit from v1.27.1 to v1.27.2.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.27.2
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-28 14:07:00 +02:00
dependabot[bot]
0bc72574ca
web: bump the rollup group across 1 directory with 4 updates ( #15806 )
...
Bumps the rollup group with 4 updates in the /web directory: [@rollup/rollup-darwin-arm64](https://github.com/rollup/rollup ), [@rollup/rollup-linux-arm64-gnu](https://github.com/rollup/rollup ), [@rollup/rollup-linux-x64-gnu](https://github.com/rollup/rollup ) and [rollup](https://github.com/rollup/rollup ).
Updates `@rollup/rollup-darwin-arm64` from 4.45.1 to 4.46.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.45.1...v4.46.0 )
Updates `@rollup/rollup-linux-arm64-gnu` from 4.45.1 to 4.46.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.45.1...v4.46.0 )
Updates `@rollup/rollup-linux-x64-gnu` from 4.45.1 to 4.46.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.45.1...v4.46.0 )
Updates `rollup` from 4.45.1 to 4.46.0
- [Release notes](https://github.com/rollup/rollup/releases )
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rollup/rollup/compare/v4.45.1...v4.46.0 )
---
updated-dependencies:
- dependency-name: "@rollup/rollup-darwin-arm64"
dependency-version: 4.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-arm64-gnu"
dependency-version: 4.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: "@rollup/rollup-linux-x64-gnu"
dependency-version: 4.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
- dependency-name: rollup
dependency-version: 4.46.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: rollup
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-28 14:06:49 +02:00
dependabot[bot]
f3960374ad
web: bump the eslint group across 3 directories with 2 updates ( #15808 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /packages/prettier-config directory: [eslint](https://github.com/eslint/eslint ).
Bumps the eslint group with 1 update in the /web directory: [eslint](https://github.com/eslint/eslint ).
Updates `eslint` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.31.0...v9.32.0 )
Updates `@eslint/js` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.32.0/packages/js )
Updates `eslint` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.31.0...v9.32.0 )
Updates `@eslint/js` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.32.0/packages/js )
Updates `eslint` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/compare/v9.31.0...v9.32.0 )
Updates `@eslint/js` from 9.31.0 to 9.32.0
- [Release notes](https://github.com/eslint/eslint/releases )
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md )
- [Commits](https://github.com/eslint/eslint/commits/v9.32.0/packages/js )
---
updated-dependencies:
- dependency-name: eslint
dependency-version: 9.32.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.32.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.32.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.32.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint
dependency-version: 9.32.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@eslint/js"
dependency-version: 9.32.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-28 14:06:36 +02:00
dependabot[bot]
4d23fac934
lifecycle/aws: bump cross-env from 7.0.3 to 10.0.0 in /lifecycle/aws ( #15807 )
...
Bumps [cross-env](https://github.com/kentcdodds/cross-env ) from 7.0.3 to 10.0.0.
- [Release notes](https://github.com/kentcdodds/cross-env/releases )
- [Changelog](https://github.com/kentcdodds/cross-env/blob/main/CHANGELOG.md )
- [Commits](https://github.com/kentcdodds/cross-env/compare/v7.0.3...v10.0.0 )
---
updated-dependencies:
- dependency-name: cross-env
dependency-version: 10.0.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-28 14:06:24 +02:00
dependabot[bot]
925ac2f7c7
web: bump ts-pattern from 5.7.1 to 5.8.0 in /web ( #15810 )
...
Bumps [ts-pattern](https://github.com/gvergnaud/ts-pattern ) from 5.7.1 to 5.8.0.
- [Release notes](https://github.com/gvergnaud/ts-pattern/releases )
- [Commits](https://github.com/gvergnaud/ts-pattern/compare/v5.7.1...v5.8.0 )
---
updated-dependencies:
- dependency-name: ts-pattern
dependency-version: 5.8.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-07-28 14:05:54 +02:00
dependabot[bot]
480a14a066
web: bump @sentry/browser from 9.41.0 to 9.42.0 in /web in the sentry group across 1 directory ( #15811 )
...
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.41.0 to 9.42.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/9.42.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/9.41.0...9.42.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.42.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-07-28 14:05:40 +02:00
Marcelo Elizeche Landó
d71f5a2969
web: Add support for placeholder in <ak-text-input> ( #15795 )
...
Add support for placeholder in <ak-text-input>
2025-07-26 12:56:12 +02:00
Jens L.
ca75862dcb
providers/rac: fix incorrect caching ( #15779 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-25 14:57:19 +02:00
Duncan Tasker
61c3c32fc0
root: support for custom postgresql connection options ( #15577 )
...
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Staz M <staz@staz.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-07-25 12:31:43 +00:00
dependabot[bot]
c7e932c0f3
website: bump the build group in /website with 3 updates ( #15784 )
...
Bumps the build group in /website with 3 updates: [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ), [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) and [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ).
Updates `@rspack/binding-darwin-arm64` from 1.4.9 to 1.4.10
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.10/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.4.9 to 1.4.10
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.10/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.4.9 to 1.4.10
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.10/packages/rspack )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.4.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.4.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.4.10
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-25 13:59:14 +02:00
dependabot[bot]
1a2afe6176
web: bump @sentry/browser from 9.40.0 to 9.41.0 in /web in the sentry group across 1 directory ( #15785 )
...
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.40.0 to 9.41.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases )
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/9.41.0/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-javascript/compare/9.40.0...9.41.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.41.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-07-25 13:59:00 +02:00
dependabot[bot]
d7e914975b
core: bump astral-sh/uv from 0.8.2 to 0.8.3 ( #15786 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.2 to 0.8.3.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.2...0.8.3 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-25 13:58:49 +02:00
dependabot[bot]
7d635f73eb
lifecycle/aws: bump aws-cdk from 2.1021.0 to 2.1022.0 in /lifecycle/aws ( #15787 )
...
Bumps [aws-cdk](https://github.com/aws/aws-cdk-cli/tree/HEAD/packages/aws-cdk ) from 2.1021.0 to 2.1022.0.
- [Release notes](https://github.com/aws/aws-cdk-cli/releases )
- [Commits](https://github.com/aws/aws-cdk-cli/commits/aws-cdk@v2.1022.0/packages/aws-cdk )
---
updated-dependencies:
- dependency-name: aws-cdk
dependency-version: 2.1022.0
dependency-type: direct:development
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-07-25 13:58:39 +02:00
dependabot[bot]
4ea0b9608f
core: bump twilio from 9.6.5 to 9.7.0 ( #15788 )
...
Bumps [twilio](https://github.com/twilio/twilio-python ) from 9.6.5 to 9.7.0.
- [Release notes](https://github.com/twilio/twilio-python/releases )
- [Changelog](https://github.com/twilio/twilio-python/blob/main/CHANGES.md )
- [Commits](https://github.com/twilio/twilio-python/compare/9.6.5...9.7.0 )
---
updated-dependencies:
- dependency-name: twilio
dependency-version: 9.7.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-07-25 13:58:29 +02:00
Jens L.
c0e62d14cb
revert: web: Font fixes ( #15581 ) ( #15789 )
...
Revert "web: Font fixes (#15581 )"
This reverts commit f00772faf1 .
2025-07-25 13:54:15 +02:00
Jens L.
b541f0fa1d
policies/reputation: fix updated for reputation not updating ( #15782 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-24 22:54:50 +02:00
Teffen Ellis
4a933b814f
web: Update dependencies. Fix categories. ( #15748 )
...
* web: Update deps. Avoid devDependencies.
* web: Replace deprecated package with our own.
* web: Clean up dev deps.
* web: Clean up root packages.
* web: Dedupe plugin.
2025-07-24 18:11:32 +02:00
Teffen Ellis
236a6e0176
web: Clean up WebSocket lifecycle. ( #15480 )
2025-07-24 15:51:20 +00:00
Teffen Ellis
f00772faf1
web: Font fixes ( #15581 )
...
* add base element
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* web: Rewrite relative CSS asset paths. Update fonts.
Update web/bundler/css-assets-plugin/node.js
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-07-24 15:40:38 +00:00
Teffen Ellis
068bd34392
website: Flesh out package structure. ( #15773 )
...
* website: Flesh out package structure.
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
---------
Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-07-24 11:01:27 -04:00
Teffen Ellis
4161a678b8
root: Update spellcheck ignore list. ( #15772 )
...
core: Update ignore list.
2025-07-24 11:00:45 -04:00
Marc 'risson' Schmitt
bafe8a5104
blueprints: add FindObject tag ( #12415 )
2025-07-24 13:30:47 +00:00
dependabot[bot]
f4079a9e0d
core: bump google-api-python-client from 2.176.0 to 2.177.0 ( #15765 )
...
Bumps [google-api-python-client](https://github.com/googleapis/google-api-python-client ) from 2.176.0 to 2.177.0.
- [Release notes](https://github.com/googleapis/google-api-python-client/releases )
- [Commits](https://github.com/googleapis/google-api-python-client/compare/v2.176.0...v2.177.0 )
---
updated-dependencies:
- dependency-name: google-api-python-client
dependency-version: 2.177.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-07-24 15:02:57 +02:00
dependabot[bot]
62a6101ecb
web: bump @fortawesome/fontawesome-free from 6.7.2 to 7.0.0 in /web ( #15766 )
...
Bumps [@fortawesome/fontawesome-free](https://github.com/FortAwesome/Font-Awesome ) from 6.7.2 to 7.0.0.
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases )
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/7.x/CHANGELOG.md )
- [Commits](https://github.com/FortAwesome/Font-Awesome/compare/6.7.2...7.0.0 )
---
updated-dependencies:
- dependency-name: "@fortawesome/fontawesome-free"
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-24 14:29:47 +02:00
dependabot[bot]
0820e34301
web: bump chromedriver from 136.0.3 to 138.0.3 in /web ( #15767 )
...
* web: bump chromedriver from 136.0.3 to 138.0.3 in /web
Bumps [chromedriver](https://github.com/giggio/node-chromedriver ) from 136.0.3 to 138.0.3.
- [Commits](https://github.com/giggio/node-chromedriver/compare/136.0.3...138.0.3 )
---
updated-dependencies:
- dependency-name: chromedriver
dependency-version: 138.0.3
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
* only netlify deploy when token available
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: dependabot[bot] <support@github.com >
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2025-07-24 14:29:31 +02:00
Marc 'risson' Schmitt
25ee8b8b5f
sources/plex: add missing group connection type to flow manager ( #15750 )
2025-07-24 12:27:46 +00:00
Marc 'risson' Schmitt
c876b28fff
providers/oauth2: add support for OAuth 2.0 Authorization Server Metadata endpoint (RFC 8414) ( #12383 )
2025-07-24 14:11:20 +02:00
authentik-automation[bot]
7b3b9901a0
core, web: update translations ( #15764 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-24 13:28:56 +02:00
dependabot[bot]
6c56d612cf
website: bump the eslint group in /website with 3 updates ( #15705 )
...
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-24 00:38:17 +02:00
Marcelo Elizeche Landó
cc11daa7fa
core: bump microsoft-kiota-serialization-text from 1.9.4 to v1.9.5 ( #15760 )
2025-07-24 00:19:12 +02:00
Marcelo Elizeche Landó
6ea8eb84a2
core: bump s3transfer from 0.13.0 to v0.13.1 ( #15762 )
2025-07-24 00:19:09 +02:00
Marcelo Elizeche Landó
c21e920a3f
core: bump microsoft-kiota-serialization-json from 1.9.4 to v1.9.5 ( #15758 )
2025-07-23 22:01:19 +02:00
Marcelo Elizeche Landó
872704c2ab
core: bump microsoft-kiota-serialization-multipart from 1.9.4 to v1.9.5 ( #15759 )
2025-07-23 22:00:59 +02:00
Marcelo Elizeche Landó
05a6238741
core: bump microsoft-kiota-abstractions from 1.9.4 to v1.9.5 ( #15756 )
2025-07-23 22:00:33 +02:00
Marcelo Elizeche Landó
8a125d5ee8
core: bump msal from 1.32.3 to v1.33.0 ( #15761 )
2025-07-23 22:00:12 +02:00
Marcelo Elizeche Landó
902d1dd9a1
core: bump microsoft-kiota-serialization-form from 1.9.4 to v1.9.5 ( #15757 )
2025-07-23 21:59:28 +02:00
Marcelo Elizeche Landó
87ab3ed8a4
core: bump boto3 from 1.39.7 to v1.39.11 ( #15754 )
...
core: bump boto3 from 1.39.11 to v1.39.11
2025-07-23 21:58:30 +02:00
Marcelo Elizeche Landó
ae7261b75e
core: bump jsonschema from 4.24.0 to v4.25.0 ( #15755 )
2025-07-23 21:57:55 +02:00
Germán Martín
0d60b2830c
website/integrations: Update Node-RED configuration ( #15488 )
...
* Update Node-RED configuration
After playing around it for a couple days I found that Node-red uses 4 parameters in verify function. This configuration is working for me.
https://discourse.nodered.org/t/setting-up-oidc-with-authentik-gives-syntaxerror-unexpected-token-not-valid-json/97981
Signed-off-by: Germán Martín <github@gmartin.net >
* Fix format
Signed-off-by: Germán Martín <github@gmartin.net >
* rebased, tweaked to bump build
* Update website/integrations/development/node-red/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/integrations/development/node-red/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Germán Martín <github@gmartin.net >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-07-23 12:45:36 -05:00
Teffen Ellis
8766191d67
website: Docusaurus 3.8 Follow-up - API Docs ( #15751 )
...
* website: Update API build directory.
* website: Update header paths. Use separate build paths.
2025-07-23 15:54:21 +00:00
dependabot[bot]
df3ae0d1da
website: bump @types/node from 24.0.15 to 24.1.0 in /website ( #15743 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.0.15 to 24.1.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.1.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-07-23 17:17:01 +02:00
Teffen Ellis
e280159946
website: Docusaurus 3.8 ( #15097 )
...
website: Upgrade Docusaurus. Split API build.
2025-07-23 16:42:01 +02:00
Connor Peshek
35de683959
website/docs: update command formattings for easier dev usage ( #15430 )
...
* website/docs update command formattings for easier dev usage.
* website/docs update command formattings and step wordings.
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* website/docs remove comments from commands and improve surrounding wordings.
* website/docs run make website.
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* website/docs Rework full-dev-environment page for easier dev onboarding.
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/developer-docs/setup/full-dev-environment.mdx
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: connor <connor@connors-MacBook-Pro.local >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2025-07-23 09:40:09 -05:00
Dominic R
7d82fb7069
website/integrations: headscale ( #14500 )
...
* headscale
* test
* Update website/integrations/networking/headscale/index.md
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-07-23 08:32:24 +01:00
dependabot[bot]
06d4f17743
core: bump astral-sh/uv from 0.8.0 to 0.8.2 ( #15731 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.8.0 to 0.8.2.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.8.0...0.8.2 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:24:28 +02:00
dependabot[bot]
9153cfe83c
web: bump @types/node from 24.0.15 to 24.1.0 in /packages/esbuild-plugin-live-reload ( #15734 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.0.15 to 24.1.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.1.0
dependency-type: direct:development
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-07-23 08:24:15 +02:00
dependabot[bot]
709cf785a9
web: bump @types/node from 24.0.15 to 24.1.0 in /packages/prettier-config ( #15735 )
...
web: bump @types/node in /packages/prettier-config
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.0.15 to 24.1.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.1.0
dependency-type: direct:development
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-07-23 08:24:06 +02:00
dependabot[bot]
db70211754
web: bump webcomponent-qr-code from 1.2.0 to 1.3.0 in /web ( #15736 )
...
Bumps [webcomponent-qr-code](https://github.com/educastellano/qr-code ) from 1.2.0 to 1.3.0.
- [Commits](https://github.com/educastellano/qr-code/compare/v1.2.0...v1.3.0 )
---
updated-dependencies:
- dependency-name: webcomponent-qr-code
dependency-version: 1.3.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-07-23 08:23:48 +02:00
dependabot[bot]
31510bb276
web: bump the swc group across 1 directory with 11 updates ( #15733 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-darwin-arm64` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-darwin-x64` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-arm64-musl` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-x64-gnu` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-x64-musl` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-win32-x64-msvc` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.2
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:23:29 +02:00
dependabot[bot]
4bc6ba3dbe
web: bump @lit/context from 1.1.5 to 1.1.6 in /web ( #15739 )
...
Bumps [@lit/context](https://github.com/lit/lit/tree/HEAD/packages/context ) from 1.1.5 to 1.1.6.
- [Release notes](https://github.com/lit/lit/releases )
- [Changelog](https://github.com/lit/lit/blob/main/packages/context/CHANGELOG.md )
- [Commits](https://github.com/lit/lit/commits/@lit/context@1.1.6/packages/context )
---
updated-dependencies:
- dependency-name: "@lit/context"
dependency-version: 1.1.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:23:12 +02:00
dependabot[bot]
125af7daf5
web: bump the storybook group across 1 directory with 5 updates ( #15732 )
...
Bumps the storybook group with 4 updates in the /web directory: [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs ), [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links ), [@storybook/web-components](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/web-components ) and [@storybook/web-components-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/web-components-vite ).
Updates `@storybook/addon-docs` from 9.0.17 to 9.0.18
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.0.18/code/addons/docs )
Updates `@storybook/addon-links` from 9.0.17 to 9.0.18
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.0.18/code/addons/links )
Updates `@storybook/web-components` from 9.0.17 to 9.0.18
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.0.18/code/renderers/web-components )
Updates `@storybook/web-components-vite` from 9.0.17 to 9.0.18
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.0.18/code/frameworks/web-components-vite )
Updates `storybook` from 9.0.17 to 9.0.18
- [Release notes](https://github.com/storybookjs/storybook/releases )
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md )
- [Commits](https://github.com/storybookjs/storybook/commits/v9.0.18/code/core )
---
updated-dependencies:
- dependency-name: "@storybook/addon-docs"
dependency-version: 9.0.18
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/addon-links"
dependency-version: 9.0.18
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components"
dependency-version: 9.0.18
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: "@storybook/web-components-vite"
dependency-version: 9.0.18
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: storybook
- dependency-name: storybook
dependency-version: 9.0.18
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: storybook
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:23:01 +02:00
dependabot[bot]
130d0235d4
web: bump lit from 3.3.0 to 3.3.1 in /web ( #15737 )
...
Bumps [lit](https://github.com/lit/lit/tree/HEAD/packages/lit ) from 3.3.0 to 3.3.1.
- [Release notes](https://github.com/lit/lit/releases )
- [Changelog](https://github.com/lit/lit/blob/main/packages/lit/CHANGELOG.md )
- [Commits](https://github.com/lit/lit/commits/lit@3.3.1/packages/lit )
---
updated-dependencies:
- dependency-name: lit
dependency-version: 3.3.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:22:44 +02:00
dependabot[bot]
6ba97cba5a
web: bump @types/node from 22.15.19 to 24.1.0 in /web ( #15740 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.1.0.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.1.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:22:30 +02:00
dependabot[bot]
7aac9dea53
core: bump goauthentik.io/api/v3 from 3.2025063.6 to 3.2025064.1 ( #15741 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025063.6 to 3.2025064.1.
- [Release notes](https://github.com/goauthentik/client-go/releases )
- [Changelog](https://github.com/goauthentik/client-go/blob/main/model_version_history.go )
- [Commits](https://github.com/goauthentik/client-go/compare/v3.2025063.6...v3.2025064.1 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025064.1
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-07-23 08:22:05 +02:00
dependabot[bot]
3f41588dc9
core: bump msgraph-sdk from 1.38.0 to 1.39.0 ( #15744 )
...
Bumps [msgraph-sdk](https://github.com/microsoftgraph/msgraph-sdk-python ) from 1.38.0 to 1.39.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.38.0...v1.39.0 )
---
updated-dependencies:
- dependency-name: msgraph-sdk
dependency-version: 1.39.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-07-23 08:21:05 +02:00
dependabot[bot]
9caf08637e
core: bump sentry-sdk from 2.33.1 to 2.33.2 ( #15745 )
...
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python ) from 2.33.1 to 2.33.2.
- [Release notes](https://github.com/getsentry/sentry-python/releases )
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-python/compare/2.33.1...2.33.2 )
---
updated-dependencies:
- dependency-name: sentry-sdk
dependency-version: 2.33.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:19:41 +02:00
dependabot[bot]
3f2f5ba31a
core: bump channels-redis from 4.2.1 to 4.3.0 ( #15746 )
...
Bumps [channels-redis](https://github.com/django/channels_redis ) from 4.2.1 to 4.3.0.
- [Changelog](https://github.com/django/channels_redis/blob/main/CHANGELOG.txt )
- [Commits](https://github.com/django/channels_redis/compare/4.2.1...4.3.0 )
---
updated-dependencies:
- dependency-name: channels-redis
dependency-version: 4.3.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-07-23 08:19:13 +02:00
dependabot[bot]
ca48a6de48
website: bump the build group in /website with 9 updates ( #15742 )
...
Bumps the build group in /website with 9 updates:
| Package | From | To |
| --- | --- | --- |
| [@rspack/binding-darwin-arm64](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.4.8` | `1.4.9` |
| [@rspack/binding-linux-arm64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.4.8` | `1.4.9` |
| [@rspack/binding-linux-x64-gnu](https://github.com/web-infra-dev/rspack/tree/HEAD/packages/rspack ) | `1.4.8` | `1.4.9` |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.1` | `1.13.2` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.1` | `1.13.2` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.1` | `1.13.2` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.1` | `1.13.2` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.1` | `1.13.2` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.1` | `1.13.2` |
Updates `@rspack/binding-darwin-arm64` from 1.4.8 to 1.4.9
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.9/packages/rspack )
Updates `@rspack/binding-linux-arm64-gnu` from 1.4.8 to 1.4.9
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.9/packages/rspack )
Updates `@rspack/binding-linux-x64-gnu` from 1.4.8 to 1.4.9
- [Release notes](https://github.com/web-infra-dev/rspack/releases )
- [Commits](https://github.com/web-infra-dev/rspack/commits/v1.4.9/packages/rspack )
Updates `@swc/core-darwin-arm64` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/core-linux-x64-gnu` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/html-darwin-arm64` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
Updates `@swc/html-linux-x64-gnu` from 1.13.1 to 1.13.2
- [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.13.1...v1.13.2 )
---
updated-dependencies:
- dependency-name: "@rspack/binding-darwin-arm64"
dependency-version: 1.4.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-arm64-gnu"
dependency-version: 1.4.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@rspack/binding-linux-x64-gnu"
dependency-version: 1.4.9
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-23 08:17:29 +02:00
Vee Bäck
6c951efd61
website/integrations: Update Stripe docs ( #15729 )
...
website/docs: Update Stripe docs
2025-07-22 21:53:03 +01:00
Marc 'risson' Schmitt
6b5da70673
blueprints: add File tag ( #15727 )
...
Co-authored-by: Guillaume Chauveau <guillaumejchauveau.ops.gecu@outlook.com >
2025-07-22 20:09:25 +00:00
Teffen Ellis
32501266d5
web: Fix issue where base render method is not preferred. ( #15726 )
2025-07-22 10:44:39 -07:00
Michael Uray
5d6a2d27eb
website/integrations: fix netbird integration ( #15660 )
...
* Update index.md
NETBIRD_AUTH_AUDIENCE was set to <Cour Client Secret> instead of <Your Client ID>
Added:
NETBIRD_MGMT_IDP="authentik"
NETBIRD_IDP_MGMT_CLIENT_ID="<PROVIDER_CLIENT_ID>"
NETBIRD_IDP_MGMT_EXTRA_USERNAME="Netbird"
NETBIRD_IDP_MGMT_EXTRA_PASSWORD="<SERVICE_ACCOUNT_PASSWORD>"
Signed-off-by: Michael Uray <michael.uray@gmail.com >
* Update index.md
Removed duplicates
NETBIRD_IDP_MGMT_EXTRA_USERNAME
NETBIRD_IDP_MGMT_EXTRA_PASSWORD
from pull request.
Signed-off-by: Michael Uray <michael.uray@gmail.com >
* Update website/integrations/networking/netbird/index.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Michael Uray <michael.uray@gmail.com >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2025-07-22 12:22:40 -05:00
dependabot[bot]
7b8426b292
web: bump @lit/reactive-element from 2.1.0 to 2.1.1 in /web ( #15711 )
...
---
updated-dependencies:
- dependency-name: "@lit/reactive-element"
dependency-version: 2.1.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 18:02:30 +02:00
Teffen Ellis
fd8d5952d5
web: a11y -- ak-form-group part 2: type clean up, Chrome warnings ( #15721 )
...
* web: Fix elements after replacement.
* web: Clarify type.
* web: Fix alignment, browser warnings about IDs.
* web: Clean up types.
2025-07-22 17:10:09 +02:00
authentik-automation[bot]
bb1e16a3f8
web: bump API Client version ( #15724 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-22 15:42:03 +02:00
dependabot[bot]
09a4f2c9b6
web: bump knip from 5.61.3 to 5.62.0 in /web ( #15709 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.61.3 to 5.62.0.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.62.0/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.62.0
dependency-type: direct:development
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-07-22 15:40:18 +02:00
dependabot[bot]
ac2873e6f4
web: bump the eslint group across 2 directories with 3 updates ( #15706 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Bumps the eslint group with 1 update in the /web directory: [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint ).
Updates `typescript-eslint` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/parser )
Updates `typescript-eslint` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.37.0 to 8.38.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.38.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.38.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.38.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.38.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.38.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.38.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.38.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 15:40:07 +02:00
Jens L.
6d68844270
root: backport release 2025.6.4 ( #15723 )
...
release: 2025.6.4
2025-07-22 15:38:16 +02:00
dependabot[bot]
2a65579182
web: bump remark-mdx-frontmatter from 5.0.0 to 5.2.0 in /web ( #15707 )
...
Bumps [remark-mdx-frontmatter](https://github.com/remcohaszing/remark-mdx-frontmatter ) from 5.0.0 to 5.2.0.
- [Release notes](https://github.com/remcohaszing/remark-mdx-frontmatter/releases )
- [Commits](https://github.com/remcohaszing/remark-mdx-frontmatter/compare/v5.0.0...v5.2.0 )
---
updated-dependencies:
- dependency-name: remark-mdx-frontmatter
dependency-version: 5.2.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-07-22 14:33:15 +02:00
dependabot[bot]
11203f79d1
web: bump @types/codemirror from 5.60.15 to 5.60.16 in /web ( #15708 )
...
Bumps [@types/codemirror](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/codemirror ) from 5.60.15 to 5.60.16.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/codemirror )
---
updated-dependencies:
- dependency-name: "@types/codemirror"
dependency-version: 5.60.16
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 14:33:07 +02:00
dependabot[bot]
b670362168
web: bump @floating-ui/dom from 1.6.11 to 1.7.2 in /web ( #15710 )
...
Bumps [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom ) from 1.6.11 to 1.7.2.
- [Release notes](https://github.com/floating-ui/floating-ui/releases )
- [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md )
- [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.7.2/packages/dom )
---
updated-dependencies:
- dependency-name: "@floating-ui/dom"
dependency-version: 1.7.2
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-07-22 14:32:59 +02:00
dependabot[bot]
24ae1c8b03
web: bump vite-plugin-lit-css from 2.0.0 to 2.1.0 in /web ( #15712 )
...
---
updated-dependencies:
- dependency-name: vite-plugin-lit-css
dependency-version: 2.1.0
dependency-type: direct:development
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-07-22 14:32:44 +02:00
Jens L.
7a4c6b9b50
security: fix CVE-2025-53942 ( #15719 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-22 14:21:05 +02:00
dependabot[bot]
f1684882c5
web: bump globals from 15.10.0 to 16.3.0 in /web ( #15713 )
...
---
updated-dependencies:
- dependency-name: globals
dependency-version: 16.3.0
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 14:20:47 +02:00
dependabot[bot]
615cb4f9fb
core: bump sentry-sdk from 2.33.0 to 2.33.1 ( #15714 )
...
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python ) from 2.33.0 to 2.33.1.
- [Release notes](https://github.com/getsentry/sentry-python/releases )
- [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md )
- [Commits](https://github.com/getsentry/sentry-python/compare/2.33.0...2.33.1 )
---
updated-dependencies:
- dependency-name: sentry-sdk
dependency-version: 2.33.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 14:20:34 +02:00
dependabot[bot]
bbfee74cd2
website: bump the build group in /website with 6 updates ( #15673 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.0` | `1.13.1` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.0` | `1.13.1` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.0` | `1.13.1` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.13.0` | `1.13.1` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.13.0` | `1.13.1` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.13.0` | `1.13.1` |
Updates `@swc/core-darwin-arm64` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-x64-gnu` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/html-darwin-arm64` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/html-linux-arm64-gnu` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/html-linux-x64-gnu` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 14:20:21 +02:00
Rahammetoela Toekiman
af2885ab12
Bitwarden integration requires a bitwarden subscription ( #15692 )
...
Bitwarden integration requires an subscription
Signed-off-by: Rahammetoela Toekiman <fusekai@outlook.com >
2025-07-22 09:47:17 +00:00
dependabot[bot]
29799e95ce
web: bump form-data from 4.0.0 to 4.0.4 in /web ( #15703 )
...
Bumps [form-data](https://github.com/form-data/form-data ) from 4.0.0 to 4.0.4.
- [Release notes](https://github.com/form-data/form-data/releases )
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md )
- [Commits](https://github.com/form-data/form-data/compare/v4.0.0...v4.0.4 )
---
updated-dependencies:
- dependency-name: form-data
dependency-version: 4.0.4
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-22 02:20:56 +02:00
authentik-automation[bot]
b6568f322b
core, web: update translations ( #15704 )
...
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-22 02:20:45 +02:00
transifex-integration[bot]
d9bad736b5
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_CN ( #15695 )
...
Translate locale/en/LC_MESSAGES/django.po in zh_CN
100% translated source file: 'locale/en/LC_MESSAGES/django.po'
on 'zh_CN'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-07-22 00:35:17 +02:00
transifex-integration[bot]
1d57307891
translate: Updates for file locale/en/LC_MESSAGES/django.po in zh-Hans ( #15697 )
...
Translate django.po in zh-Hans
100% translated source file: 'django.po'
on 'zh-Hans'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-07-22 00:35:00 +02:00
transifex-integration[bot]
be27635788
translate: Updates for file web/xliff/en.xlf in zh-Hans ( #15698 )
...
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-07-22 00:34:47 +02:00
Ken Sternberg
8373072654
web: remove mdx and fix references to @goauthentik/elements ( #15694 )
...
* 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: fix storybook references to 'elements', remove as much MDX as possible.
# WHAT
Remove all storybook references to '@goauthentik/elements' or '@goauthentik/web/elements'. Most of
these were in MDX, which we don't need anymore.
The ApplicationEmptyState element needed a bit of updated to be more compliant with our standards,
just to storybook it at all.
* Prettier had opinions.
* Replacing empty html call with 'nothing'
* Added pragmas to help VSCode users.
2025-07-21 13:30:04 -07:00
Tana M Berry
b6c05f6852
root: update Makefile with new commands for docs and integrations ( #15689 )
...
update commands for docs and integrations
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-07-21 16:34:00 -03:00
Teffen Ellis
26766360d5
web: a11y -- ak-sidebar, ak-modal, cards ( #15690 )
...
* web: a11y -- ak-sidebar
* web: Fix paths, nesting. Allow for skipping.
* web: a11y Modal button.
* web: a11y -- alert, message
* web: Add utils.
* web: Fix types.
* web: Tidy types. Fix alignment.
2025-07-21 14:20:16 -04:00
Teffen Ellis
9d7c733024
web: a11y -- ak-form-group ( #15688 )
...
web: a11y <ak-form-group />
2025-07-21 14:19:53 -04:00
Dewi Roberts
caecf5961d
website/docs: add notification rule expression policy examples ( #15333 )
...
* WIP
* Typo fix
* Added mention of new doc in notification rules doc
* Update website/docs/sys-mgmt/events/notifications.md
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
2025-07-21 16:32:41 +01:00
Dewi Roberts
4b211190b6
website/docs: add force password reset guide ( #15654 )
...
* Adds doc
* Improved code blocks
* Wording fix
* Move location and apply suggestions
* Typos
* Wording change
* Typo
* Wording improvements and typos
* Apply suggestions
* Apply suggestion from Tana
* Typo
* Update sidebar and fix relative link
* Prettier fix
* Link fix
* Added sidebar label
2025-07-21 16:31:52 +01:00
dependabot[bot]
2f22012f0f
website: bump prettier-plugin-packagejson from 2.5.18 to 2.5.19 in /website ( #15672 )
...
website: bump prettier-plugin-packagejson in /website
Bumps [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson ) from 2.5.18 to 2.5.19.
- [Release notes](https://github.com/matzkoh/prettier-plugin-packagejson/releases )
- [Commits](https://github.com/matzkoh/prettier-plugin-packagejson/compare/v2.5.18...v2.5.19 )
---
updated-dependencies:
- dependency-name: prettier-plugin-packagejson
dependency-version: 2.5.19
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 17:31:23 +02:00
Teffen Ellis
10dffd8d13
website: Flesh out Makefile commands, usage. ( #15576 )
...
* website: Flesh out command behavior.
* restructure
* rearranged
---------
Co-authored-by: Tana M Berry <tana@goauthentik.io >
2025-07-21 10:29:58 -05:00
rattencreep
21a73fe58c
website/integrations: fix duplicate guacamole section ( #15684 )
...
Update index.mdx
Removed doubled Self Signed Certificates section.
Signed-off-by: rattencreep <62957151+rattencreep@users.noreply.github.com >
2025-07-21 12:49:53 +01:00
dependabot[bot]
b0b915061e
core: bump goauthentik.io/api/v3 from 3.2025063.5 to 3.2025063.6 ( #15671 )
...
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025063.6
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:37:38 +02:00
dependabot[bot]
6bcb758daa
web: bump typedoc-plugin-markdown from 4.7.0 to 4.7.1 in /packages/esbuild-plugin-live-reload ( #15681 )
...
web: bump typedoc-plugin-markdown
Bumps [typedoc-plugin-markdown](https://github.com/typedoc2md/typedoc-plugin-markdown/tree/HEAD/packages/typedoc-plugin-markdown ) from 4.7.0 to 4.7.1.
- [Release notes](https://github.com/typedoc2md/typedoc-plugin-markdown/releases )
- [Changelog](https://github.com/typedoc2md/typedoc-plugin-markdown/blob/main/packages/typedoc-plugin-markdown/CHANGELOG.md )
- [Commits](https://github.com/typedoc2md/typedoc-plugin-markdown/commits/typedoc-plugin-markdown@4.7.1/packages/typedoc-plugin-markdown )
---
updated-dependencies:
- dependency-name: typedoc-plugin-markdown
dependency-version: 4.7.1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:36:32 +02:00
dependabot[bot]
b051c59ec4
web: bump the esbuild group across 2 directories with 4 updates ( #15674 )
...
Bumps the esbuild group with 1 update in the /packages/esbuild-plugin-live-reload directory: [esbuild](https://github.com/evanw/esbuild ).
Bumps the esbuild group with 1 update in the /web directory: [esbuild](https://github.com/evanw/esbuild ).
Updates `esbuild` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `@esbuild/darwin-arm64` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `@esbuild/linux-arm64` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `@esbuild/linux-x64` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `esbuild` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `@esbuild/darwin-arm64` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `@esbuild/linux-arm64` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
Updates `@esbuild/linux-x64` from 0.25.6 to 0.25.8
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.25.6...v0.25.8 )
---
updated-dependencies:
- dependency-name: esbuild
dependency-version: 0.25.8
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.8
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.8
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.8
dependency-type: indirect
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: esbuild
dependency-version: 0.25.8
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/darwin-arm64"
dependency-version: 0.25.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-arm64"
dependency-version: 0.25.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
- dependency-name: "@esbuild/linux-x64"
dependency-version: 0.25.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: esbuild
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:36:21 +02:00
dependabot[bot]
35df455e3a
web: bump @types/node from 24.0.14 to 24.0.15 in /packages/prettier-config ( #15676 )
...
web: bump @types/node in /packages/prettier-config
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.0.14 to 24.0.15.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.0.15
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:35:58 +02:00
dependabot[bot]
eb19e53bf3
website: bump @types/node from 24.0.14 to 24.0.15 in /website ( #15675 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.0.14 to 24.0.15.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.0.15
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:35:50 +02:00
dependabot[bot]
3badf80295
web: bump @types/node from 24.0.14 to 24.0.15 in /packages/esbuild-plugin-live-reload ( #15677 )
...
web: bump @types/node in /packages/esbuild-plugin-live-reload
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 24.0.14 to 24.0.15.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.0.15
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:35:41 +02:00
dependabot[bot]
b038e479e2
web: bump prettier-plugin-packagejson from 2.5.18 to 2.5.19 in /packages/prettier-config ( #15678 )
...
web: bump prettier-plugin-packagejson in /packages/prettier-config
Bumps [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson ) from 2.5.18 to 2.5.19.
- [Release notes](https://github.com/matzkoh/prettier-plugin-packagejson/releases )
- [Commits](https://github.com/matzkoh/prettier-plugin-packagejson/compare/v2.5.18...v2.5.19 )
---
updated-dependencies:
- dependency-name: prettier-plugin-packagejson
dependency-version: 2.5.19
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:35:31 +02:00
dependabot[bot]
faaf4842a5
web: bump chart.js and @types/chart.js in /web ( #15679 )
...
Bumps [chart.js](https://github.com/chartjs/Chart.js ) and [@types/chart.js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chart.js ). These dependencies needed to be updated together.
Updates `chart.js` from 4.4.9 to 4.5.0
- [Release notes](https://github.com/chartjs/Chart.js/releases )
- [Commits](https://github.com/chartjs/Chart.js/compare/v4.4.9...v4.5.0 )
Updates `@types/chart.js` from 2.9.41 to 4.0.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chart.js )
---
updated-dependencies:
- dependency-name: chart.js
dependency-version: 4.5.0
dependency-type: direct:production
update-type: version-update:semver-minor
- dependency-name: "@types/chart.js"
dependency-version: 4.0.1
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:35:17 +02:00
dependabot[bot]
89ef57c68d
web: bump the swc group across 1 directory with 11 updates ( #15680 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-darwin-arm64` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-darwin-x64` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-arm64-gnu` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-arm64-musl` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-x64-gnu` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-linux-x64-musl` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-win32-arm64-msvc` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-win32-ia32-msvc` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
Updates `@swc/core-win32-x64-msvc` from 1.13.0 to 1.13.1
- [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.13.0...v1.13.1 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.1
dependency-type: direct:development
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.1
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:34:53 +02:00
dependabot[bot]
c3515299d1
web: bump prettier-plugin-packagejson from 2.5.18 to 2.5.19 in /packages/esbuild-plugin-live-reload ( #15682 )
...
web: bump prettier-plugin-packagejson
Bumps [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson ) from 2.5.18 to 2.5.19.
- [Release notes](https://github.com/matzkoh/prettier-plugin-packagejson/releases )
- [Commits](https://github.com/matzkoh/prettier-plugin-packagejson/compare/v2.5.18...v2.5.19 )
---
updated-dependencies:
- dependency-name: prettier-plugin-packagejson
dependency-version: 2.5.19
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:32:59 +02:00
dependabot[bot]
f8ff48fed9
web: bump @types/node from 22.15.19 to 24.0.15 in /web ( #15683 )
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.15.19 to 24.0.15.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-version: 24.0.15
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-21 13:32:41 +02:00
Dominic R
dcf40690e9
website/dev docs: FDE e2e: fix useless markdown lini ( #15658 )
...
It renders the same and was a mishap on my part when I copied the link in a previous pr
Signed-off-by: Dominic R <dominic@sdko.org >
2025-07-21 11:44:20 +01:00
Jens L.
4b37829f67
providers/radius: set message authenticator ( #15635 )
...
* core: fix flow planner checking against wrong user when creating recovery link
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* validate incoming message authenticator
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-07-19 22:08:58 +02:00
dependabot[bot]
bf050e19b0
web: bump @eslint/plugin-kit from 0.3.1 to 0.3.3 in /packages/eslint-config ( #15661 )
2025-07-19 16:54:29 +02:00
Dewi Roberts
8eedfe5c4e
website/docs: add e2e testing steps ( #15656 )
...
* Add e2e testing steps.
* Apply suggestion
2025-07-18 13:07:45 -05:00
Dewi Roberts
33f83bec46
website/docs: fix user ref typos ( #15653 )
...
Fixed typos
2025-07-18 13:05:51 -05:00
Teffen Ellis
b93a450b38
web: Update license mixing types to anticipate load state. ( #15634 )
...
web: Update types to anticipate load state.
2025-07-18 11:15:10 -04:00
dependabot[bot]
6c169ce6a6
web: bump on-headers and compression in /packages/docusaurus-config ( #15638 )
...
---
updated-dependencies:
- dependency-name: on-headers
dependency-version: 1.1.0
dependency-type: indirect
- dependency-name: compression
dependency-version: 1.8.1
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-18 12:45:46 +02:00
dependabot[bot]
d53bb73c91
website: bump the build group in /website with 6 updates ( #15640 )
...
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.13.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-07-18 12:45:43 +02:00
dependabot[bot]
a182d7671e
core: bump github.com/grafana/pyroscope-go from 1.2.3 to 1.2.4 ( #15641 )
...
Bumps [github.com/grafana/pyroscope-go](https://github.com/grafana/pyroscope-go ) from 1.2.3 to 1.2.4.
- [Release notes](https://github.com/grafana/pyroscope-go/releases )
- [Commits](https://github.com/grafana/pyroscope-go/compare/v1.2.3...v1.2.4 )
---
updated-dependencies:
- dependency-name: github.com/grafana/pyroscope-go
dependency-version: 1.2.4
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-18 12:45:40 +02:00
dependabot[bot]
9941cec71f
web: bump @sentry/browser from 9.39.0 to 9.40.0 in /web in the sentry group across 1 directory ( #15642 )
...
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.39.0 to 9.40.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.39.0...9.40.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.40.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-07-18 12:45:37 +02:00
dependabot[bot]
458344638f
web: bump the swc group across 1 directory with 11 updates ( #15643 )
...
Bumps the swc group with 1 update in the /web directory: [@swc/core](https://github.com/swc-project/swc ).
Updates `@swc/core` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-darwin-arm64` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-darwin-x64` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-linux-arm-gnueabihf` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-linux-arm64-gnu` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-linux-arm64-musl` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-linux-x64-gnu` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-linux-x64-musl` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-win32-arm64-msvc` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-win32-ia32-msvc` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
Updates `@swc/core-win32-x64-msvc` from 1.12.14 to 1.13.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.12.14...v1.13.0 )
---
updated-dependencies:
- dependency-name: "@swc/core"
dependency-version: 1.13.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-darwin-x64"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-arm-gnueabihf"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-arm64-musl"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-linux-x64-musl"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-win32-arm64-msvc"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-win32-ia32-msvc"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
- dependency-name: "@swc/core-win32-x64-msvc"
dependency-version: 1.13.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: swc
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-18 12:45:34 +02:00
dependabot[bot]
11ffd672ca
web: bump @lit/task from 1.0.2 to 1.0.3 in /web ( #15644 )
...
Bumps [@lit/task](https://github.com/lit/lit/tree/HEAD/packages/task ) from 1.0.2 to 1.0.3.
- [Release notes](https://github.com/lit/lit/releases )
- [Changelog](https://github.com/lit/lit/blob/main/packages/task/CHANGELOG.md )
- [Commits](https://github.com/lit/lit/commits/@lit/task@1.0.3/packages/task )
---
updated-dependencies:
- dependency-name: "@lit/task"
dependency-version: 1.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-18 12:45:31 +02:00
dependabot[bot]
4ebbf5b097
web: bump core-js from 3.42.0 to 3.44.0 in /web ( #15645 )
...
Bumps [core-js](https://github.com/zloirock/core-js/tree/HEAD/packages/core-js ) from 3.42.0 to 3.44.0.
- [Release notes](https://github.com/zloirock/core-js/releases )
- [Changelog](https://github.com/zloirock/core-js/blob/master/CHANGELOG.md )
- [Commits](https://github.com/zloirock/core-js/commits/v3.44.0/packages/core-js )
---
updated-dependencies:
- dependency-name: core-js
dependency-version: 3.44.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-07-18 12:45:28 +02:00
dependabot[bot]
1bf5688ec6
web: bump bootstrap from 4.6.2 to 5.3.7 in /web ( #15646 )
...
Bumps [bootstrap](https://github.com/twbs/bootstrap ) from 4.6.2 to 5.3.7.
- [Release notes](https://github.com/twbs/bootstrap/releases )
- [Commits](https://github.com/twbs/bootstrap/compare/v4.6.2...v5.3.7 )
---
updated-dependencies:
- dependency-name: bootstrap
dependency-version: 5.3.7
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-18 12:45:25 +02:00
dependabot[bot]
9f1e6b3ba4
web: bump codemirror from 6.0.1 to 6.0.2 in /web ( #15647 )
...
Bumps [codemirror](https://github.com/codemirror/basic-setup ) from 6.0.1 to 6.0.2.
- [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/basic-setup/compare/6.0.1...6.0.2 )
---
updated-dependencies:
- dependency-name: codemirror
dependency-version: 6.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-18 12:45:22 +02:00
dependabot[bot]
93ec4b3c17
web: bump knip from 5.58.0 to 5.61.3 in /web ( #15648 )
...
Bumps [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip ) from 5.58.0 to 5.61.3.
- [Release notes](https://github.com/webpro-nl/knip/releases )
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json )
- [Commits](https://github.com/webpro-nl/knip/commits/5.61.3/packages/knip )
---
updated-dependencies:
- dependency-name: knip
dependency-version: 5.61.3
dependency-type: direct:development
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-07-18 12:45:19 +02:00
dependabot[bot]
477fc11148
core: bump astral-sh/uv from 0.7.21 to 0.8.0 ( #15649 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.7.21 to 0.8.0.
- [Release notes](https://github.com/astral-sh/uv/releases )
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md )
- [Commits](https://github.com/astral-sh/uv/compare/0.7.21...0.8.0 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.8.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-07-18 12:45:17 +02:00
authentik-automation[bot]
4265e7b0af
core, web: update translations ( #15639 )
...
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2025-07-18 05:32:15 +02:00
Jens L.
41df11d5dc
stages/authenticator_sms: allow custom message for twilio provider, pass request ( #15629 )
...
* stages/authenticator_sms: allow custom message for twilio provider, pass request
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* remove old version
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Update web/src/admin/stages/authenticator_sms/AuthenticatorSMSStageForm.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Jens L. <jens@beryju.org >
* Update web/src/admin/stages/authenticator_sms/AuthenticatorSMSStageForm.ts
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Signed-off-by: Jens L. <jens@beryju.org >
* redo headers
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
* format
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2025-07-18 01:21:23 +02:00