Skip to content

web: Font fixes#15581

Merged
GirlBossRush merged 5 commits intomainfrom
font-fixes-part-2
Jul 24, 2025
Merged

web: Font fixes#15581
GirlBossRush merged 5 commits intomainfrom
font-fixes-part-2

Conversation

@GirlBossRush
Copy link
Contributor

@GirlBossRush GirlBossRush commented Jul 16, 2025

Split off from #15550

Details

This PR updates our fonts to match the variable weight variant used on docs pages.
This also corrects an issue that prevented CSS-referenced assets with relative paths from loading when a base path is configured.


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)

@GirlBossRush GirlBossRush requested review from a team as code owners July 16, 2025 04:04
@netlify
Copy link

netlify bot commented Jul 16, 2025

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit 3aecf53
🔍 Latest deploy log https://app.netlify.com/projects/authentik-docs/deploys/688248634c69af0008151ab5
😎 Deploy Preview https://deploy-preview-15581--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.

@netlify
Copy link

netlify bot commented Jul 16, 2025

Deploy Preview for authentik-storybook ready!

Name Link
🔨 Latest commit 3aecf53
🔍 Latest deploy log https://app.netlify.com/projects/authentik-storybook/deploys/6882486378217900086be378
😎 Deploy Preview https://deploy-preview-15581--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 Jul 16, 2025

Deploy Preview for authentik-integrations ready!

Name Link
🔨 Latest commit 3aecf53
🔍 Latest deploy log https://app.netlify.com/projects/authentik-integrations/deploys/68824863d655de000897166d
😎 Deploy Preview https://deploy-preview-15581--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.

@codecov
Copy link

codecov bot commented Jul 16, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 93.18%. Comparing base (bafe8a5) to head (3aecf53).
Report is 3 commits behind head on main.

✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #15581      +/-   ##
==========================================
- Coverage   93.23%   93.18%   -0.06%     
==========================================
  Files         831      831              
  Lines       44226    44226              
==========================================
- Hits        41236    41210      -26     
- Misses       2990     3016      +26     
Flag Coverage Δ
e2e 46.58% <ø> (-0.13%) ⬇️
integration 23.46% <ø> (+<0.01%) ⬆️
unit 91.28% <ø> (+<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.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@GirlBossRush GirlBossRush self-assigned this Jul 16, 2025
@GirlBossRush GirlBossRush requested a review from BeryJu July 16, 2025 04:21
@GirlBossRush GirlBossRush force-pushed the font-fixes-part-2 branch 2 times, most recently from 2693ae7 to d3ea37f Compare July 16, 2025 04:35
BeryJu and others added 2 commits July 16, 2025 19:14
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Update web/bundler/css-assets-plugin/node.js

Signed-off-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com>
@GirlBossRush GirlBossRush enabled auto-merge (squash) July 16, 2025 17:15
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Copy link
Member

@BeryJu BeryJu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Finally no more specific servers for static files 🎉

GirlBossRush and others added 2 commits July 17, 2025 18:20
Signed-off-by: Jens Langhammer <jens@goauthentik.io>

# Conflicts:
#	web/src/common/styles/authentik.css
#	web/src/elements/sidebar/SidebarItem.ts
@GirlBossRush GirlBossRush merged commit f00772f into main Jul 24, 2025
154 of 156 checks passed
@GirlBossRush GirlBossRush deleted the font-fixes-part-2 branch July 24, 2025 15:40
@github-actions
Copy link
Contributor

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-3aecf53b91b13e1baf24a8bee0a9cc3de47c1510
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-3aecf53b91b13e1baf24a8bee0a9cc3de47c1510

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

tanberry pushed a commit to stazio/authentik that referenced this pull request Jul 24, 2025
* 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>
BeryJu added a commit that referenced this pull request Jul 25, 2025
GirlBossRush pushed a commit that referenced this pull request Jul 25, 2025
Revert "web: Font fixes (#15581)"

This reverts commit f00772f.
kensternberg-authentik added a commit that referenced this pull request Aug 6, 2025
* main: (91 commits)
  *: replace Celery with Dramatiq (#13492)
  website/docs: stages/mtls: Clean up stage configuration section (#15753)
  translate: Updates for file locale/en/LC_MESSAGES/django.po in es (#15818)
  website: bump the eslint group in /website with 2 updates (#15805)
  web: bump typedoc from 0.28.7 to 0.28.8 in /packages/esbuild-plugin-live-reload (#15809)
  core: bump axllent/mailpit from v1.27.1 to v1.27.2 in /tests/e2e (#15813)
  web: bump the rollup group across 1 directory with 4 updates (#15806)
  web: bump the eslint group across 3 directories with 2 updates (#15808)
  lifecycle/aws: bump cross-env from 7.0.3 to 10.0.0 in /lifecycle/aws (#15807)
  web: bump ts-pattern from 5.7.1 to 5.8.0 in /web (#15810)
  web: bump @sentry/browser from 9.41.0 to 9.42.0 in /web in the sentry group across 1 directory (#15811)
  web: Add support for placeholder in <ak-text-input> (#15795)
  providers/rac: fix incorrect caching (#15779)
  root: support for custom postgresql connection options (#15577)
  website: bump the build group in /website with 3 updates (#15784)
  web: bump @sentry/browser from 9.40.0 to 9.41.0 in /web in the sentry group across 1 directory (#15785)
  core: bump astral-sh/uv from 0.8.2 to 0.8.3 (#15786)
  lifecycle/aws: bump aws-cdk from 2.1021.0 to 2.1022.0 in /lifecycle/aws (#15787)
  core: bump twilio from 9.6.5 to 9.7.0 (#15788)
  revert: web: Font fixes (#15581) (#15789)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants