Skip to content

ci: pull latest changes before tagging new version#20413

Merged
rissson merged 3 commits intomainfrom
ci-release-pull-before-tag
Mar 4, 2026
Merged

ci: pull latest changes before tagging new version#20413
rissson merged 3 commits intomainfrom
ci-release-pull-before-tag

Conversation

@rissson
Copy link
Member

@rissson rissson commented Feb 19, 2026

Details

REPLACE ME


Checklist

  • Local tests pass (ak test authentik/)
  • The code has been formatted (make lint-fix)

If an API change has been made

  • The API schema has been updated (make gen-build)

If changes to the frontend have been made

  • The code has been formatted (make web)

If applicable

  • The documentation has been updated
  • The documentation has been formatted (make docs)

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
@rissson rissson self-assigned this Feb 19, 2026
@rissson rissson requested a review from a team as a code owner February 19, 2026 13:15
@rissson rissson added backport/version-2025.8 Add this label to PRs to backport changes to version-2025.8 backport/version-2025.10 Add this label to PRs to backport changes to version-2025.10 backport/version-2025.12 Add this label to PRs to backport changes to version-2025.12 backport/version-2026.2 Add this label to PRs to backport changes to version-2026.2 labels Feb 19, 2026
@netlify
Copy link

netlify bot commented Feb 19, 2026

Deploy Preview for authentik-storybook ready!

Name Link
🔨 Latest commit cfbc0d5
🔍 Latest deploy log https://app.netlify.com/projects/authentik-storybook/deploys/69a831fc2843f4000874631b
😎 Deploy Preview https://deploy-preview-20413--authentik-storybook.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Feb 19, 2026

Deploy Preview for authentik-integrations ready!

Name Link
🔨 Latest commit cfbc0d5
🔍 Latest deploy log https://app.netlify.com/projects/authentik-integrations/deploys/69a831fc52e2000008b6524f
😎 Deploy Preview https://deploy-preview-20413--authentik-integrations.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Feb 19, 2026

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit cfbc0d5
🔍 Latest deploy log https://app.netlify.com/projects/authentik-docs/deploys/69a831fc6d2bd000087d188c
😎 Deploy Preview https://deploy-preview-20413--authentik-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@codecov
Copy link

codecov bot commented Feb 19, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.38%. Comparing base (0334bcd) to head (cfbc0d5).
⚠️ Report is 1 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #20413      +/-   ##
==========================================
- Coverage   93.39%   93.38%   -0.02%     
==========================================
  Files         983      983              
  Lines       55477    55477              
==========================================
- Hits        51813    51805       -8     
- Misses       3664     3672       +8     
Flag Coverage Δ
conformance 37.69% <ø> (+<0.01%) ⬆️
e2e 42.64% <ø> (-0.63%) ⬇️
integration 22.44% <ø> (+<0.01%) ⬆️
unit 91.54% <ø> (+<0.01%) ⬆️
unit-migrate 91.63% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

rissson added a commit that referenced this pull request Feb 19, 2026
rissson added a commit that referenced this pull request Feb 19, 2026
rissson added a commit that referenced this pull request Feb 19, 2026
rissson added a commit that referenced this pull request Feb 19, 2026
@rissson rissson enabled auto-merge (squash) February 19, 2026 13:32
@gergosimonyi
Copy link
Collaborator

Is this a possible scenario?

  1. Version branch is in state A. Workflow is initiated, testing state A.
  2. While the tests run, a new commit is merged to the version branch, placing it into state B.
  3. Tests pass for state A. They wouldn't pass for state B.
  4. State B is tagged as the release.

((Also, just to note: this PR is in a weird spot. It's already been merged to version-2026.2, but not to main.))

@rissson
Copy link
Member Author

rissson commented Mar 4, 2026

Is this a possible scenario?

1. Version branch is in state A. Workflow is initiated, testing state A.

2. While the tests run, a new commit is merged to the version branch, placing it into state B.

3. Tests pass for state A. They wouldn't pass for state B.

4. State B is tagged as the release.

((Also, just to note: this PR is in a weird spot. It's already been merged to version-2026.2, but not to main.))

technically yes. But that's up to the release manager to ensure that nothing gets merged that shouldn't get in. The use case we want to support is still being able to merge website updates while doing the release (for release notes for instance).

@rissson rissson merged commit e8c845d into main Mar 4, 2026
102 checks passed
@rissson rissson deleted the ci-release-pull-before-tag branch March 4, 2026 13:53
@github-actions
Copy link
Contributor

github-actions bot commented Mar 4, 2026

authentik PR Installation instructions

Instructions for docker-compose

Add the following block to your .env file:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-cfbc0d54d770b21b3152086bd73f6ee91627ab68
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

Afterwards, run the upgrade commands from the latest release notes.

Instructions for Kubernetes

Add the following block to your values.yml file:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
    image:
        repository: ghcr.io/goauthentik/dev-server
        tag: gh-cfbc0d54d770b21b3152086bd73f6ee91627ab68

Afterwards, run the upgrade commands from the latest release notes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport/version-2025.8 Add this label to PRs to backport changes to version-2025.8 backport/version-2025.10 Add this label to PRs to backport changes to version-2025.10 backport/version-2025.12 Add this label to PRs to backport changes to version-2025.12 backport/version-2026.2 Add this label to PRs to backport changes to version-2026.2

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants