bf4e8dbedc
core: include more authenticator details when possible ( #15224 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-24 23:52:06 +02:00
d09b7757b6
root: fix some cases of invalid data triggering exceptions ( #14799 )
...
* sentry: separate checker if exception should be ignored
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* use should_ignore_exception in flow executor (fix ParseError)
fix system exceptions for unsupported media type, json decode error
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* improve API validation
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-24 22:42:59 +02:00
ca2f0439f6
website/docs: add links to Customer Portal ( #15223 )
...
* add direct link to Portal, remove screenshot
* fix link
* Update website/docs/enterprise/get-started.md
Signed-off-by: Jens L. <jens@beryju.org >
---------
Signed-off-by: Jens L. <jens@beryju.org >
Co-authored-by: Tana M Berry <tana@goauthentik.io >
Co-authored-by: Jens L. <jens@goauthentik.io >
2025-06-24 15:34:37 -05:00
27b7b0b0e7
web/elements/empty-state: Fix issues with EmptyState and Loading Overlay ( #15152 )
...
* 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/element: empty-state should not have a default label when used as a loading indicator
* .
* web/bug/empty-state: Fix issues with EmptyState and Loading Overlay
- Add a method, `hasSlotted()`, to the Base component.
- Revise `EmptyState` to use `hasSlotted()`.
- Revise `LoadingOverlay` to use `hasSlotted()`.
- Provide (hopefully complete) Storybook stories for both
- Revise use of these components throughout the codebase.
The essential problem here was mine: I misunderstood what the Patternfly `SlotController` does (and,
yikes, how it does it). Slots aren't magical; they're just named containers, in which lightDOM
elements that appear between the opening and closing tags of a web component can be strategically
placed, shown or hidden, and to some extent styled, within the rendered and visible results of the
shadowDOM component that will fill the browser's RECT allocated to that component.
SlotController tries to associate the template with slots by creating the shadowDOM *first*, then
working backwards to see if there are lightDOM components to put into those slots. That's not what
we want; we want to see if there are lightDOM components that meet our slot requirements and, if
there are, create corresponding slots for them.
That's what `hasSlotted()` does: it returns true or false to the question, "Is there currently in
the lightDOM for this component an entry requesting a known slot name?" Components are free to do
what they want with that knowledge.
`<ak-empty-state>` now has several modes, all well-documented in the Storybook story. But in short,
the Title is now a default slot; any HTML Element not sent to one of the named slots are put into
the Title. The two named slots are `body` and `primary`. The header is bold and large; body is
just text, and primary is boxed to indicate that one or more buttons should be placed there, to
allow interaction.
The extra modes are controlled by boolean attributes:
- `loading`: Shows the loading spinner, overriding the `icon` attribute
- `default`: Shows the loading spinner *and* the word "Loading" (i18n-aware).
The priority for all of these is:
- Has something in the default (header) slot: That text will be shown. Overrides both
- `default` overrides `loading`
- `loading`
q`<ak-loading-overlay>` is a specialized variant of `<ak-empty-state>` over what will become
`<ak-backdrop>`, but for now is just internal. It allows only for the heading and primary slots,
forwarding them `<ak-empty-state>`. Since this is literally the *Loading*Overlay, showing the
`loading` spinner is the default; to prevent it, pass `no-spinner` as an attribute.
* Grammatical error.
* Prettier had opinions that shouldn't have been aired in public.
* Prettier had opinions that shouldn't have been aired in public.
* Collapsing unnecessary boolean nest.
* fix typo
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* always render icon
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* missing default in flow exec
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* unrelated: fix loading interface
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* rename default attr
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix jsdoc
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-06-24 21:33:07 +02:00
94867aaebf
task retries from admin ui
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 20:24:38 +02:00
0e67c1d818
rework event trigger tasks
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 20:04:29 +02:00
2a460201bb
fix blueprints not applying correctly
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 19:47:20 +02:00
f99cb3e9fb
use correct watch folder
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 18:32:08 +02:00
88073305eb
*: remove redundant user_logged_out signals ( #15221 )
2025-06-24 18:29:05 +02:00
e4bd05f444
more rework
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 17:47:46 +02:00
80c4eb9bef
do not remove systemtask model
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 17:37:07 +02:00
96b4d5aee4
outposts
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 17:34:15 +02:00
37657e47a3
web: bump the eslint group across 2 directories with 3 updates ( #15215 )
...
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.34.1 to 8.35.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.35.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.34.1 to 8.35.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.35.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.34.1 to 8.35.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.35.0/packages/parser )
Updates `typescript-eslint` from 8.34.1 to 8.35.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.35.0/packages/typescript-eslint )
Updates `@typescript-eslint/eslint-plugin` from 8.34.1 to 8.35.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.35.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.34.1 to 8.35.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.35.0/packages/parser )
---
updated-dependencies:
- dependency-name: typescript-eslint
dependency-version: 8.35.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.35.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.35.0
dependency-type: indirect
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.35.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.35.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.35.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-06-24 16:51:10 +02:00
0d649a70c9
core: bump github.com/getsentry/sentry-go from 0.33.0 to 0.34.0 ( #15213 )
...
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go ) from 0.33.0 to 0.34.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.33.0...v0.34.0 )
---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-go
dependency-version: 0.34.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-24 16:51:00 +02:00
7ec3055018
web: bump @sentry/browser from 9.30.0 to 9.31.0 in /web in the sentry group across 1 directory ( #15214 )
...
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.30.0 to 9.31.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.30.0...9.31.0 )
---
updated-dependencies:
- dependency-name: "@sentry/browser"
dependency-version: 9.31.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: sentry
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-06-24 16:50:48 +02:00
50ffce87c4
website: bump the eslint group in /website with 3 updates ( #15216 )
...
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.34.1 to 8.35.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.35.0/packages/eslint-plugin )
Updates `@typescript-eslint/parser` from 8.34.1 to 8.35.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.35.0/packages/parser )
Updates `typescript-eslint` from 8.34.1 to 8.35.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.35.0/packages/typescript-eslint )
---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
dependency-version: 8.35.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: "@typescript-eslint/parser"
dependency-version: 8.35.0
dependency-type: direct:development
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: typescript-eslint
dependency-version: 8.35.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-06-24 16:50:33 +02:00
a4393ac9f0
core: bump astral-sh/uv from 0.7.13 to 0.7.14 ( #15217 )
...
Bumps [astral-sh/uv](https://github.com/astral-sh/uv ) from 0.7.13 to 0.7.14.
- [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.13...0.7.14 )
---
updated-dependencies:
- dependency-name: astral-sh/uv
dependency-version: 0.7.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-06-24 16:50:14 +02:00
e235c854a5
website: bump the build group in /website with 6 updates ( #15218 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.12.5` | `1.12.6` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.12.5` | `1.12.6` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.12.5` | `1.12.6` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.12.5` | `1.12.6` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.12.5` | `1.12.6` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.12.5` | `1.12.6` |
Updates `@swc/core-darwin-arm64` from 1.12.5 to 1.12.6
- [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.5...v1.12.6 )
Updates `@swc/core-linux-arm64-gnu` from 1.12.5 to 1.12.6
- [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.5...v1.12.6 )
Updates `@swc/core-linux-x64-gnu` from 1.12.5 to 1.12.6
- [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.5...v1.12.6 )
Updates `@swc/html-darwin-arm64` from 1.12.5 to 1.12.6
- [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.5...v1.12.6 )
Updates `@swc/html-linux-arm64-gnu` from 1.12.5 to 1.12.6
- [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.5...v1.12.6 )
Updates `@swc/html-linux-x64-gnu` from 1.12.5 to 1.12.6
- [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.5...v1.12.6 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.12.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.12.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.12.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.12.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.12.6
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.12.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-06-24 16:50:04 +02:00
910b69f89d
translate: Updates for file web/xliff/en.xlf in it ( #15219 )
...
Translate web/xliff/en.xlf in it
100% translated source file: 'web/xliff/en.xlf'
on 'it'.
Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com>
2025-06-24 16:49:41 +02:00
f89cc98014
sources/scim: add group patch support ( #15212 )
...
* set auth_via
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* allow requests with json content type
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* fix group schema
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* start improving error handling
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add scim group patch for members
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* unrelated #1 : fix debug check on startup
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* unrelated fix #2 : fix path for user page
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add group view tests
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* add more user tests too
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-24 16:48:48 +02:00
6321537c8d
actually reintroduce tasksmodel
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 16:10:16 +02:00
43975ec231
separate current and previous execution logs
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 16:01:40 +02:00
9b13922fc2
remove syncstatus leftovers
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 15:44:12 +02:00
031456629b
add more tasks in ui
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 15:38:30 +02:00
2433ed1c9b
blueprints fixup
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 15:10:33 +02:00
9868d54320
show tasks/schedules for ldap source
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 15:00:30 +02:00
747a3ed6e9
show tasks/schedules for notif transports
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 14:35:56 +02:00
527e849ce2
show tasks/schedules for blueprints and ssf provider
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 14:29:55 +02:00
cfcd54ca19
sources: sync: use send_on_save
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 14:01:52 +02:00
faed9cd66e
remove description from schedulespec
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 13:45:58 +02:00
897d0dbcbd
show tasks/schedules for outpost service connections
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-24 13:43:31 +02:00
91a675a5a1
web/admin: point create application to wizard ( #15211 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-24 01:36:20 +02:00
71be3acd1a
web/elements: typing error when variables are not converted to string ( #15169 )
...
fix: typing error when variables are not converted to string
Co-authored-by: leandro.saraiva <leandro.saraiva@adonite.com >
2025-06-23 23:40:36 +02:00
0b6ab171ce
website: bump prettier from 3.5.3 to 3.6.0 in /website ( #15199 )
...
* website: bump prettier from 3.5.3 to 3.6.0 in /website
Bumps [prettier](https://github.com/prettier/prettier ) from 3.5.3 to 3.6.0.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.5.3...3.6.0 )
---
updated-dependencies:
- dependency-name: prettier
dependency-version: 3.6.0
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* format
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-06-23 21:29:14 +02:00
0c73572b0c
ci: update daily tested versions ( #15196 )
...
* ci: update daily tested versions
Signed-off-by: Dominic R <dominic@sdko.org >
* Update ci-main-daily.yml
Co-authored-by: Jens L. <jens@beryju.org >
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
Co-authored-by: Jens L. <jens@beryju.org >
2025-06-23 21:16:47 +02:00
03d0899a76
website/docs: sys mgmt: clean up certificates and add steps to download saml certs ( #14497 )
...
* website/docs: sys mgmt: clean up certificates and add steps to download
saml certs
* fix broken link
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Dewi review comments
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Apply suggestions from code review
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com >
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/certificates.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/certificates.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/certificates.md
Signed-off-by: Dominic R <dominic@sdko.org >
* lint fix following header rm
---------
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 M Berry <tanamarieberry@yahoo.com >
2025-06-23 18:56:50 +00:00
a12e991798
tasks results
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-23 17:27:58 +02:00
e5b86c3578
watch is now cmd line arg
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-23 17:18:23 +02:00
91f79c97d8
ci: fix CodeQL failing on cherry-pick PRs ( #15205 )
2025-06-23 16:55:08 +02:00
07ff433134
Merge branch 'main' into celery-2-dramatiq
2025-06-23 16:54:44 +02:00
21b3e0c8cb
ensure descirptions'
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-23 16:54:13 +02:00
cbdec236dd
run scheduler in broker
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-23 16:47:23 +02:00
2509ccde1c
fix logs when task fails, make more options configurable
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2025-06-23 16:40:22 +02:00
19324c61a3
root: add system check for database encoding ( #15186 )
...
* root: add system check for database encoding
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* oops
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-23 15:17:48 +02:00
d297733614
enterprise/stages/source: update outer flow with context from inner flow ( #15177 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2025-06-23 15:13:27 +02:00
f201f41a1b
website: bump the build group in /website with 6 updates ( #15200 )
...
Bumps the build group in /website with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [@swc/core-darwin-arm64](https://github.com/swc-project/swc ) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.12.4` | `1.12.5` |
| [@swc/core-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.12.4` | `1.12.5` |
| [@swc/html-darwin-arm64](https://github.com/swc-project/swc ) | `1.12.4` | `1.12.5` |
| [@swc/html-linux-arm64-gnu](https://github.com/swc-project/swc ) | `1.12.4` | `1.12.5` |
| [@swc/html-linux-x64-gnu](https://github.com/swc-project/swc ) | `1.12.4` | `1.12.5` |
Updates `@swc/core-darwin-arm64` from 1.12.4 to 1.12.5
- [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.4...v1.12.5 )
Updates `@swc/core-linux-arm64-gnu` from 1.12.4 to 1.12.5
- [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.4...v1.12.5 )
Updates `@swc/core-linux-x64-gnu` from 1.12.4 to 1.12.5
- [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.4...v1.12.5 )
Updates `@swc/html-darwin-arm64` from 1.12.4 to 1.12.5
- [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.4...v1.12.5 )
Updates `@swc/html-linux-arm64-gnu` from 1.12.4 to 1.12.5
- [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.4...v1.12.5 )
Updates `@swc/html-linux-x64-gnu` from 1.12.4 to 1.12.5
- [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.4...v1.12.5 )
---
updated-dependencies:
- dependency-name: "@swc/core-darwin-arm64"
dependency-version: 1.12.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-arm64-gnu"
dependency-version: 1.12.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/core-linux-x64-gnu"
dependency-version: 1.12.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-darwin-arm64"
dependency-version: 1.12.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-arm64-gnu"
dependency-version: 1.12.5
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: build
- dependency-name: "@swc/html-linux-x64-gnu"
dependency-version: 1.12.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-06-23 13:54:27 +02:00
f58f679171
web: bump the eslint group across 2 directories with 1 update ( #15198 )
...
Bumps the eslint group with 1 update in the /packages/eslint-config directory: [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import ).
Bumps the eslint group with 1 update in the /web directory: [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import ).
Updates `eslint-plugin-import` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases )
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md )
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.31.0...v2.32.0 )
Updates `eslint-plugin-import` from 2.31.0 to 2.32.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases )
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md )
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.31.0...v2.32.0 )
---
updated-dependencies:
- dependency-name: eslint-plugin-import
dependency-version: 2.32.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: eslint
- dependency-name: eslint-plugin-import
dependency-version: 2.32.0
dependency-type: indirect
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-06-23 13:54:16 +02:00
1bea5e38a1
core: bump goauthentik.io/api/v3 from 3.2025062.3 to 3.2025062.4 ( #15197 )
...
Bumps [goauthentik.io/api/v3](https://github.com/goauthentik/client-go ) from 3.2025062.3 to 3.2025062.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.2025062.3...v3.2025062.4 )
---
updated-dependencies:
- dependency-name: goauthentik.io/api/v3
dependency-version: 3.2025062.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-06-23 13:54:08 +02:00
4d1c63e7fa
core: bump axllent/mailpit from v1.26.1 to v1.26.2 in /tests/e2e ( #15201 )
...
Bumps axllent/mailpit from v1.26.1 to v1.26.2.
---
updated-dependencies:
- dependency-name: axllent/mailpit
dependency-version: v1.26.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-06-23 13:52:03 +02:00
e341032bf9
website/integrations: bitwarden: fix certificate download section ( #15184 )
...
* website/integrations: bitwarden: fix certificate download section
Fix whatever happened here
Signed-off-by: Dominic R <dominic@sdko.org >
* keep it as it was before I copy-pasted from stripe
Signed-off-by: Dominic R <dominic@sdko.org >
---------
Signed-off-by: Dominic R <dominic@sdko.org >
2025-06-23 10:28:38 +01:00