Fletcher Heisler
8c40db3c71
docs: Americanize and minor fixes ( #22600 )
...
* typo fixes
* americanize
* made docs
2026-05-24 10:12:35 -04:00
Dominic R
37f7cc710b
website/docs: Fix release notes cards ( #22554 )
...
Render release note version labels without Docusaurus' leading digit icon split and improve the generated release index description.
Agent-thread: https://sdko.org/internal/threads/019e4d1f-3a81-7191-acba-2f1740acab52
Co-authored-by: Agent <agent@svc.sdko.net >
2026-05-22 02:19:27 +00:00
Connor Peshek
dcf575f621
website/release: Release notes updates ( #22543 )
...
* update release notes
* update changelog
* add changelog updates
* update changelog with diff
* finalize
* lint
2026-05-21 21:48:32 +00:00
Dewi Roberts
d2b73aba08
website/docs: release notes: add absorb lms to integrations ( #22534 )
...
* Add absorb lms to integrations in release notes
* Add author
2026-05-21 14:02:02 +00:00
Teffen Ellis
3537ea544d
website/docs: document npm install-script blocking ( #22461 )
...
* website/docs: document npm install-script blocking
The repo's `.npmrc` sets `ignore-scripts=true` to neutralize the
dominant npm supply-chain attack pattern (preinstall/postinstall
payloads, as used by the recent "Shai-Hulud" and "Mini Shai-Hulud"
incidents). The trade-off is that a handful of packages that ship
native binaries — esbuild, chromedriver, tree-sitter — need to be
rebuilt explicitly when their install step is required.
Today this is implicit; a new contributor whose build fails because
esbuild's binary didn't unpack has no obvious next step except to
disable the protection. Documenting it in both setup guides points
them at `npm rebuild --foreground-scripts <pkg>` and makes the
"don't flip `ignore-scripts` off" guidance explicit.
No code or config changes — docs only.
Co-authored-by: Agent <279763771+playpen-agent@users.noreply.github.com >
* Use separate file.
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Agent <279763771+playpen-agent@users.noreply.github.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-05-21 12:47:49 +00:00
Dewi Roberts
85d645d8e0
website/docs: add global to values.yaml snippets and update version ( #22524 )
...
Add global to values.yaml snippets and update version
2026-05-21 07:32:44 -04:00
Connor Peshek
2523f77d5d
website/docs: update saml source to include details on force authenti… ( #22488 )
...
website/docs: update saml source to include details on force authentication
2026-05-21 03:39:08 +00:00
Tana M Berry
bc3c12aec0
website/docs: first batch of updates for new Binding wizard ( #22393 )
...
* first batch of updates
* tweak
* more tweaks
2026-05-18 14:23:04 -05:00
Dominic R
c68c2c49a0
website/docs: add integrations to 2026.5 release notes ( #22416 )
...
* website/docs: add integrations to 2026.5 release notes
Mention the new RabbitMQ and grommunio integration guides in the 2026.5 release notes so they are included with the rest of the newly added guides.
Agent-thread: https://sdko.org/internal/threads/019e3870-7948-74c2-93ea-9a03eaeb2bb1
Co-authored-by: Agent <agent@svc.sdko.net >
* Update website/docs/releases/2026/v2026.5.md
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
Signed-off-by: Dominic R <dominic@goauthentik.io >
* website: Normalize release note thanks punctuation
Add exclamation points to contributor thanks in the 2026.2 and 2026.5 release notes for consistent wording.
Agent-thread: https://sdko.org/internal/threads/019e3b37-ead3-7b41-b53d-f37045a7671f
Co-authored-by: Agent <agent@svc.sdko.net >
---------
Signed-off-by: Dominic R <dominic@goauthentik.io >
Co-authored-by: Agent <agent@svc.sdko.net >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Connor Peshek <connor@connorpeshek.me >
2026-05-18 16:17:41 +00:00
Dewi Roberts
3412ea9d0d
website/docs: providers: update UI terms ( #22136 )
...
* Update UI terms
* Change wording
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
2026-05-18 15:56:09 +00:00
Connor Peshek
37a59e6ad1
web, website: Update name to application dashboard ( #22190 )
2026-05-15 02:55:53 +00:00
Teffen Ellis
9543b3c9f6
ci: Consistent NPM versions via Corepack ( #20400 )
...
* core: add .npmrc baseline to block dependency lifecycle scripts
Set ignore-scripts=true at the repo root, plus engine-strict, save-exact,
audit, and prefer-offline. This neutralizes the dominant npm supply-chain
attack vector — postinstall scripts in transitive dependencies — at the
cost of requiring an explicit rebuild for the handful of packages that
legitimately need install scripts (esbuild, chromedriver, tree-sitter,
tree-sitter-json). The next commit wires that rebuild into the Makefile.
Co-Authored-By: Playpen Agent <279763771+playpen-agent@users.noreply.github.com >
* core: route node installs through make to retire website preinstall hook
Make docs-install depend on a new root-node-install so the root deps
are guaranteed before the website install runs, removing the need for
the website/preinstall lifecycle script. Rebuild the small audited list
of trusted packages (esbuild, chromedriver, tree-sitter, tree-sitter-json)
after the web install so ignore-scripts=true remains the only path that
needs maintenance. web/README documents the new workflow.
Co-Authored-By: Playpen Agent <279763771+playpen-agent@users.noreply.github.com >
* Clean up install scripts.
* Track .npmrc in CODEOWNERS
* Fix formatter config. Reformat.
* Fix mounted references.
* Flesh out node scripts.
* Bump engines.
* Prep containers.
* Update makefile.
* Flesh out github actions.
* Clean up docs container.
* lint.
Bump.
Lint.
Bump NPM version.
* Add limits.
* collapse the composite's three setup-node calls to one cache restore
* Add SHA.
* Bump NPM range.
* Run formatter.
* Bump NPM.
* Remove extra install.
* Fix website deps.
* Use local prettier. Fix drift in CI.
* ci: build frontend in CI with node_env production
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* Install docusaurus config.
* Fix linter warning, order.
* Add linter commands.
* Add timeout.
* Remove pre install check.
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Playpen Agent <279763771+playpen-agent@users.noreply.github.com >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
2026-05-13 22:05:07 +00:00
Marc 'risson' Schmitt
4cfb61f83b
website/docs: fix email link in CVE-2026-40166 ( #22331 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-05-13 14:54:24 +00:00
Tana M Berry
30b82ea683
website/docs: add that the Grant Types are now on UI ( #22315 )
...
* add that the Grant Types are now on UI
* dewi edits
* tweak
* formatting
* more formatting
2026-05-13 09:31:03 -05:00
Dewi Roberts
68a6b04749
website/docs: release notes 2026.5: add section about package reduction ( #22308 )
...
* Add section about package reduction
* Suggestion from marc
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
---------
Signed-off-by: Dewi Roberts <dewi@goauthentik.io >
2026-05-13 08:27:24 +01:00
Marcelo Elizeche Landó
87a95eddea
website/docs: Add invitation wizard docs ( #22069 )
...
* Add invitation wizard docs
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* Apply suggestion from @dominic-r
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* Add title to info box
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@goauthentik.io >
* Apply suggestions from code review
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
---------
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Signed-off-by: Dominic R <dominic@goauthentik.io >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-05-12 18:35:28 -05:00
Jens L.
71025a83ad
website/docs: release notes for 2025.12.5 and 2026.2.3 ( #22310 )
...
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
2026-05-12 20:47:41 +02:00
authentik-automation[bot]
00f0cfe6e4
internal: Automated internal backport: CVE-2026-41569.sec.patch to authentik-main ( #22301 )
...
* Automated internal backport of patch CVE-2026-41569.sec.patch to authentik-main
* fix spell
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 >
2026-05-12 20:26:13 +02:00
authentik-automation[bot]
b19f43c8e1
internal: Automated internal backport: CVE-2026-42849.sec.patch to authentik-main ( #22303 )
...
* Automated internal backport of patch CVE-2026-42849.sec.patch to authentik-main
* spellcheck
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 >
2026-05-12 20:21:58 +02:00
authentik-automation[bot]
5053167a05
internal: Automated internal backport: CVE-2026-40166.sec.patch to authentik-main ( #22299 )
...
* Automated internal backport of patch CVE-2026-40166.sec.patch to authentik-main
* gen
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 >
2026-05-12 20:15:56 +02:00
Tana M Berry
69facf209f
website/docs: add mention of drop-down menu, update multiple Integration Guides ( #22269 )
...
* test format
* ran make docs
* Updated integration guides with the old label "Create with Provider" to new label of "New Application".
* mention drop-down menu
* add ellipses
2026-05-12 13:09:16 -05:00
Tana M Berry
561cd8c97b
website/docs: edit docs about how to add user/service account ( #22228 )
...
* edit procedure
* update create a user
* edit first steps doc
* punctuation
* dewi and dominic edits
* typo
* tweak
* more dominic edits
* tweak and ran make install
* tweak and ran uv lock
* edit dir to folder
* wtfci
* undo uv.lock change
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
* removed mention of selecting folder
---------
Signed-off-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Jens Langhammer <jens@goauthentik.io >
Co-authored-by: Dominic R <dominic@goauthentik.io >
2026-05-12 13:09:06 -05:00
Marc 'risson' Schmitt
d14afe242d
website/docs: 2026.5 release notes: fix performance improvements wording ( #22307 )
...
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
2026-05-12 18:02:06 +00:00
authentik-automation[bot]
78f5d85a8b
internal: Automated internal backport: GHSA-5wcc-hf24-rf5h.sec.patch to authentik-main ( #22304 )
...
Automated internal backport of patch GHSA-5wcc-hf24-rf5h.sec.patch to authentik-main
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2026-05-12 19:37:42 +02:00
authentik-automation[bot]
c2636d72a4
internal: Automated internal backport: CVE-2026-40165.sec.patch to authentik-main ( #22298 )
...
Automated internal backport of patch CVE-2026-40165.sec.patch to authentik-main
Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
2026-05-12 19:37:12 +02:00
Tana M Berry
af4ccba51e
website/docs: fix link in the 2026.8 Rel Notes to upgrade docs ( #22240 )
...
fix link to upgrade docs
2026-05-12 10:53:41 +00:00
dependabot[bot]
30495c54f5
website: bump react-dom from 19.2.5 to 19.2.6 in /website ( #22198 )
...
Bumps [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom ) from 19.2.5 to 19.2.6.
- [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.6/packages/react-dom )
---
updated-dependencies:
- dependency-name: react-dom
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>
2026-05-11 19:24:30 +02:00
dependabot[bot]
fd4d61ae9f
website: bump react from 19.2.5 to 19.2.6 in /website ( #22199 )
...
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react ) from 19.2.5 to 19.2.6.
- [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.6/packages/react )
---
updated-dependencies:
- dependency-name: 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>
2026-05-11 19:22:06 +02:00
Connor Peshek
9f2c2988a3
website/docs, integrations: SAML docs endpoint updates ( #22197 )
...
* docs/integrations: Update docs for new unified saml endpoint
Co-authored-by: Dominic R <dominic@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update zabbix cert generation wording
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Dominic R <dominic@goauthentik.io >
2026-05-10 23:30:36 -05:00
Dominic R
2c452306cf
website/docs: fix typos and style issues ( #22141 )
...
* website/docs: fix typos and style issues
* website/docs: fix additional style issues
* website/docs: fix more typos and style issues
* website/integrations: fix additional style issues
* website/integrations: fix additional doc style issues
* website/docs: fix remaining heading style
* Update website/docs/add-secure-apps/flows-stages/flow/examples/flows.md
Signed-off-by: Dominic R <dominic@goauthentik.io >
* Keep Flow Inspector capitalization
* Preserve Flow Inspector copy edits
* Use upper left as location phrase
* Capitalize Style Guide title
* Capitalize Style Guide references
* docs: restore Google Cloud position wording
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206020115
* docs: clarify Kimai admin group wording
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206021939
* docs: bold Rocket.Chat UI labels
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206026650
* docs: clarify HashiCorp Cloud domain wording
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206030894
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206031499
* docs: bold Organizr UI labels
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206035986
* docs: preserve phpIPAM IDP field labels
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206047963
* docs: preserve Salesforce JIT capitalization
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206058869
* docs: preserve Salesforce SSO capitalization
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206059734
* docs: revise Bitwarden login verification wording
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206063697
* docs: restore enterprise billing position wording
https://github.com/goauthentik/authentik/pull/22141#discussion_r3206008593
---------
Signed-off-by: Dominic R <dominic@goauthentik.io >
2026-05-09 15:58:52 +00:00
Connor Peshek
08316634fc
website/integrations: Update all guides to match auto generated issuer ( #22180 )
...
* docs/integrations: Update all guides to match auto generated issuer
* clean up audience mismatches
* clean up more
* update saml providers page
* fix url breaking build
* clean up pipeline errors
* Apply suggestion from @dominic-r
Signed-off-by: Dominic R <dominic@goauthentik.io >
---------
Signed-off-by: Dominic R <dominic@goauthentik.io >
Co-authored-by: Dominic R <dominic@goauthentik.io >
2026-05-09 13:03:40 +00:00
Connor Peshek
e03d6347a2
website/docs: add 2026.8 release notes ( #22170 )
...
* website/docs: add 2026.8 release notes
* update template for the future releases
2026-05-08 17:56:15 +00:00
Dominic R
7018c4ddbf
website/docs: update user credentials tab docs ( #22143 )
...
* website/docs: update user credentials tab docs
* Update website/docs/users-sources/user/user-interface.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@goauthentik.io >
---------
Signed-off-by: Dominic R <dominic@goauthentik.io >
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
2026-05-08 02:42:27 +00:00
Connor Peshek
e89b811ded
website/docs: release notes for 2026.5.0 ( #21997 )
...
* begin release
* add notes from meeting
* Update website/docs/releases/2026/v2026.5.md
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/releases/2026/v2026.5.md
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/releases/2026/v2026.5.md
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* Update website/docs/releases/2026/v2026.5.md
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* update release notes
* Flesh out UI improvements.
* Fix links.
* Update website/docs/releases/2026/v2026.5.md
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
* website/docs: update 2026.5 release notes
* website/docs: clarify account lockdown release note
* website/docs: add 2026.5 integration guides
* website/docs: add Anthropic integration guides
* website/docs: highlight GitHub Enterprise guide split
* website/docs: highlight integration entitlements migration
* website/docs: highlight Seerr integration rename
* website/docs: highlight Home Assistant OIDC guide update
* website/docs: add Splunk integration guide
* website/docs: highlight NetBird guide refresh
* website/docs: nest integration guide updates
* website/docs: credit integration guide updates
* website/docs: trim Seerr release note
* website/docs: simplify entitlements release note
* website/docs: clarify Home Assistant OIDC methods
* website/docs: add 2FA throttling release note
* website/docs: add tap-to-login release note
* website/docs: retitle hashed password imports
* website/docs: link feature notes to docs
* website/docs: correct Rust worker highlight
* website/docs: clarify Rust worker performance note
* website/docs: link Rust setup docs
* website/docs: apply release note style formatting
* website/docs: remove empty release note heading
* website/docs: fix release note spelling
* website/docs: fix authenticator validation link
* website/docs: use relative authenticator validation link
* website/docs: add integration guides to release notes
---------
Signed-off-by: Connor Peshek <connor@connorpeshek.me >
Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space >
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dominic R <dominic@goauthentik.io >
2026-05-07 21:34:44 -05:00
Dominic R
85091b9d46
website/docs: document cross-provider token introspection ( #22142 )
...
* website/docs: document cross-provider token introspection
* website/docs: fix service account OAuth link
2026-05-07 22:27:14 -04:00
Katsushi Kobayashi
c5c12a3f7e
website/docs: fix frontend dev environment paths and compose override usage ( #20976 )
...
* website/docs: update frontend dev. environment doc.
* Remove note sentence
Removed note about specifying arbitrary environment variables.
Signed-off-by: Katsushi Kobayashi <ikob@acm.org >
* Update website/docs/developer-docs/setup/frontend-dev-environment.md
Signed-off-by: Katsushi Kobayashi <ikob@acm.org >
---------
Signed-off-by: Katsushi Kobayashi <ikob@acm.org >
Co-authored-by: Dominic R <dominic@goauthentik.io >
2026-05-08 01:25:09 +00:00
Dominic R
100ae2b355
website/docs: add CMake to full dev environment ( #22137 )
2026-05-07 18:08:59 -04:00
Dominic R
a3a29d0648
website/docs: stages cleanup ( #21558 )
...
* website/docs: stages cleanup
* apply suggestions
* docs review
* website/docs: address review feedback for stages cleanup
Co-authored-by: Codex <codex@openai.com >
* website/docs: fix expression policy stage links
Co-authored-by: Codex <codex@openai.com >
* website/docs: fix SAML user write stage link
---------
Co-authored-by: Codex <codex@openai.com >
2026-05-07 14:36:54 -04:00
Alexander Tereshkin
93abd2e041
stage/authenticator*: expand attempt throttling to email- and sms-based 2FA ( #21751 )
...
* stages/authenticator*: enable attempt throttling for email- and sms-based second authentication factor
* stages/authenticator*: add throttling tests
* stage/authenticator_validate: add throttling documentation
* Update website/docs/add-secure-apps/flows-stages/stages/authenticator_validate/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/add-secure-apps/flows-stages/stages/authenticator_validate/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* stages/authenticator_validate: update docs wording
* Update website/docs/add-secure-apps/flows-stages/stages/authenticator_validate/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/add-secure-apps/flows-stages/stages/authenticator_validate/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
* Update website/docs/add-secure-apps/flows-stages/stages/authenticator_validate/index.mdx
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
---------
Signed-off-by: Alexander Tereshkin <96586+atereshkin@users.noreply.github.com >
Co-authored-by: Dominic R <dominic@sdko.org >
2026-05-07 12:12:06 -05:00
Dominic R
ff190847f2
website/docs: document language settings ( #21968 )
2026-05-05 08:08:00 -04:00
Dominic R
a7339c7f87
website/docs: document supported PostgreSQL versions ( #21967 )
2026-05-05 08:07:24 -04:00
Teffen Ellis
0bbe415b5b
revert: web: Consistent use of "User Dashboard" ( #22038 ) ( #22046 )
...
Revert "web: Consistent use of "User Dashboard" (#22038 )"
This reverts commit d69433b314 .
2026-05-05 13:17:40 +02:00
Dominic R
9f17d6df96
website/docs: document blueprint import options ( #21973 )
...
* website/docs: document blueprint import options
Closes: https://github.com/goauthentik/authentik/issues/21204
* Update website/docs/customize/blueprints/index.mdx
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/customize/blueprints/working_with_blueprints.md
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com >
Signed-off-by: Dominic R <dominic@sdko.org >
* Clarify blueprint docs
* 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: Tana M Berry <tanamarieberry@yahoo.com >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-05-05 01:07:23 +00:00
Marcelo Elizeche Landó
28209c03e2
docs: Improve docs on webauthn authenticator attachment ( #22045 )
...
Improve docs on webauthn authenticator attachment
2026-05-05 00:34:54 +00:00
Marcelo Elizeche Landó
f47cf08d8a
website/docs: Add docs for webauthn hints feature ( #20933 )
...
* Add docs for webauthn hints feature
* remove accidentally added file
* Apply suggestions from code review
Co-authored-by: Dominic R <dominic@sdko.org >
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
* Apply suggestions from code review
* Apply suggestions from code review
* Apply suggestions from code review
* point to our docs
---------
Signed-off-by: Marcelo Elizeche Landó <marce@melizeche.com >
Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io >
Co-authored-by: Dominic R <dominic@sdko.org >
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
2026-05-04 23:47:48 +00:00
Teffen Ellis
d69433b314
web: Consistent use of "User Dashboard" ( #22038 )
...
* Update app labels.
* Update docs.
2026-05-04 23:46:58 +02:00
Dominic R
abdbe0269f
website/docs: add webhook mapping examples ( #21971 )
...
* website/docs: add webhook mapping examples
Document event fields for generic webhook payload mappings.
Closes: https://github.com/goauthentik/authentik/issues/19335
* Update website/docs/sys-mgmt/events/transports.md
Co-authored-by: Dewi Roberts <dewi@goauthentik.io >
Signed-off-by: Dominic R <dominic@sdko.org >
* Update website/docs/sys-mgmt/events/transports.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 >
2026-05-04 18:08:54 +00:00
Dominic R
06fd68f076
website/docs: preserve blueprint download filenames ( #21969 )
...
* website/docs: preserve blueprint download filenames
Use a shared DownloadLink component for bundled blueprint downloads.
Closes: https://github.com/goauthentik/authentik/issues/20089
* website/docs: use download link for lockdown blueprint
2026-05-04 13:41:44 -04:00
Dominic R
88a545f4fb
website/docs: document SCIM custom attributes ( #21980 )
...
* website/docs: document SCIM custom attributes
Add a SCIM provider example for custom extension attributes.
Closes: https://github.com/goauthentik/authentik/issues/14202
* website/docs: clarify SCIM custom attributes mapping
* website/docs: link SCIM mapping setup guidance
* Update 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 >
2026-05-04 14:44:47 +00:00
Marc 'risson' Schmitt
ba62507fc2
root: introduce allinone mode ( #21990 )
2026-05-04 16:43:11 +02:00