Skip to content

web, website: compress images#6121

Merged
rissson merged 5 commits intomainfrom
compress-images
Aug 2, 2023
Merged

web, website: compress images#6121
rissson merged 5 commits intomainfrom
compress-images

Conversation

@rissson
Copy link
Member

@rissson rissson commented Jul 3, 2023

Details

Compress images. This should be lossless. Size gain: 88M -> 16M.

Somewhat part of https://github.com/goauthentik/meta/issues/20, as I'll also be excluding the .git folder from the docker build.

Changes

New Features

  • Adds feature which does x, y, and z.

Breaking Changes

  • Adds breaking change which causes <issue>.

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)
  • The translation files have been updated (make i18n-extract)

If applicable

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

@rissson rissson requested a review from a team as a code owner July 3, 2023 05:48
@rissson rissson requested review from tanberry and removed request for a team July 3, 2023 05:48
@netlify
Copy link

netlify bot commented Jul 3, 2023

Deploy Preview for authentik-storybook canceled.

Name Link
🔨 Latest commit 479bd55
🔍 Latest deploy log https://app.netlify.com/sites/authentik-storybook/deploys/64ca436977ca940008c5202a

@netlify
Copy link

netlify bot commented Jul 3, 2023

Deploy Preview for authentik ready!

Name Link
🔨 Latest commit 841d792
🔍 Latest deploy log https://app.netlify.com/sites/authentik/deploys/64a2611cbd58830008c6357b
😎 Deploy Preview https://deploy-preview-6121--authentik.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 site configuration.

@codecov
Copy link

codecov bot commented Jul 3, 2023

Codecov Report

Patch coverage has no change and project coverage change: -0.01% ⚠️

Comparison is base (90f4ebf) 92.49% compared to head (479bd55) 92.47%.
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #6121      +/-   ##
==========================================
- Coverage   92.49%   92.47%   -0.01%     
==========================================
  Files         561      561              
  Lines       27075    27075              
==========================================
- Hits        25039    25034       -5     
- Misses       2036     2041       +5     
Flag Coverage Δ
e2e 51.69% <ø> (-0.02%) ⬇️
integration 26.56% <ø> (ø)
unit 89.27% <ø> (ø)

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

see 3 files with indirect coverage changes

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

@rissson rissson force-pushed the compress-images branch from 8933b54 to e916078 Compare July 3, 2023 06:00
@rissson
Copy link
Member Author

rissson commented Jul 3, 2023

Do we want to automatically push those changes on the PR branch?

on:
pull_request:
branches:
- main
Copy link
Member Author

Choose a reason for hiding this comment

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

Suggested change
- main
- main
paths:
- "**/*.jpg"
- "**/*.png"

@netlify
Copy link

netlify bot commented Jul 3, 2023

Deploy Preview for authentik ready!

Name Link
🔨 Latest commit 985c3cc
🔍 Latest deploy log https://app.netlify.com/sites/authentik/deploys/64ca3f495f573f00085df1b7
😎 Deploy Preview https://deploy-preview-6121--authentik.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 site configuration.

@github-actions
Copy link
Contributor

github-actions bot commented Jul 3, 2023

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-compress-images-1690977763-6429764
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

For arm64, use these values:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-compress-images-1690977763-6429764-arm64
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
image:
    repository: ghcr.io/goauthentik/dev-server
    tag: gh-compress-images-1690977763-6429764

For arm64, use these values:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
image:
    repository: ghcr.io/goauthentik/dev-server
    tag: gh-compress-images-1690977763-6429764-arm64

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

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.

I don't think we'll get much of a size improvement from the image compression (at least from the potential pain of making a CI pipeline for that), I'm curious of how much of a difference ignoring .git makes with docker

@rissson
Copy link
Member Author

rissson commented Jul 4, 2023

I don't think we'll get much of a size improvement from the image compression

The size reduction by compressing images is 72M, which makes our docker image go from 832M to 760M, i.e. a 9% improvement.

at least from the potential pain of making a CI pipeline for that

We can also not make a CI pipeline and just have this as a one-off.

I'm curious of how much of a difference ignoring .git makes with docker

Nothing in terms of image size now that I looked at it more closely, as we don't do COPY ./ ./, it would just be an improvement of not copying the .git directory over to the docker daemon when building.

@rissson
Copy link
Member Author

rissson commented Jul 27, 2023

@BeryJu BeryJu marked this pull request as draft July 28, 2023 20:56
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
rissson and others added 2 commits August 2, 2023 13:32
@authentik-automation
Copy link
Contributor

Images automagically compressed by Calibre's image-actions

Compression reduced images by 53.7%, saving 13.32 MB.

Filename Before After Improvement Visual comparison
web/icons/brand.png 7.30 KB 6.06 KB -17.0% View diff
web/icons/icon_christmas.png 47.10 KB 36.99 KB -21.5% View diff
web/icons/icon_discord.png 17.24 KB 7.49 KB -56.6% View diff
web/icons/icon_left_brand.png 8.24 KB 6.54 KB -20.6% View diff
web/icons/icon_pride_lgbt.png 18.15 KB 7.99 KB -55.9% View diff
web/icons/icon_pride_trans.png 18.19 KB 8.04 KB -55.8% View diff
web/icons/icon_top_brand.png 14.62 KB 12.40 KB -15.2% View diff
web/icons/icon.png 15.39 KB 12.59 KB -18.2% View diff
website/blog/2023-01-24-saas-should-not-be-the-default/image1.png 238.11 KB 219.96 KB -7.6% View diff
website/blog/2023-01-24-saas-should-not-be-the-default/image2.png 161.19 KB 87.63 KB -45.6% View diff
website/blog/2023-01-24-saas-should-not-be-the-default/image3.png 170.37 KB 95.58 KB -43.9% View diff
website/blog/2023-03-07-becoming-openid-certified-why-standards-matter/failed-detail.png 114.19 KB 79.69 KB -30.2% View diff
website/blog/2023-03-07-becoming-openid-certified-why-standards-matter/failed-overview.png 204.92 KB 133.78 KB -34.7% View diff
website/blog/2023-03-07-becoming-openid-certified-why-standards-matter/summary-green.png 9.20 KB 4.30 KB -53.3% View diff
website/blog/2023-03-16-authentik-on-django-500-slower-to-run-but-200-faster-to-build/image1.png 194.55 KB 139.87 KB -28.1% View diff
website/blog/2023-03-16-authentik-on-django-500-slower-to-run-but-200-faster-to-build/image2.png 119.58 KB 63.46 KB -46.9% View diff
website/blog/2023-03-16-authentik-on-django-500-slower-to-run-but-200-faster-to-build/image3.png 115.12 KB 109.30 KB -5.1% View diff
website/blog/2023-03-16-authentik-on-django-500-slower-to-run-but-200-faster-to-build/image4.png 51.39 KB 48.16 KB -6.3% View diff
website/blog/2023-03-30-JWTs-a-token-that-changed-how-we-see-identity/image1.png 52.30 KB 22.76 KB -56.5% View diff
website/blog/2023-03-30-JWTs-a-token-that-changed-how-we-see-identity/table.png 84.40 KB 51.04 KB -39.5% View diff
website/blog/2023-05-04-i-gambled-against-react-and-lost/image1.png 130.88 KB 58.12 KB -55.6% View diff
website/blog/2023-05-04-i-gambled-against-react-and-lost/image2.png 65.60 KB 63.01 KB -3.9% View diff
website/blog/2023-05-04-i-gambled-against-react-and-lost/image3.png 168.39 KB 145.71 KB -13.5% View diff
website/blog/2023-05-25-join-us-for-an-authentik-hackathon/hackathon-image.jpg 5.93 MB 888.72 KB -85.4% View diff
website/blog/2023-06-21-demystifying-security/Demystify-Security.jpg 31.73 KB 16.53 KB -47.9% View diff
website/blog/2023-07-11-july-authentik-hackathon/image1.jpg 16.42 KB 13.68 KB -16.7% View diff
website/blog/2023-07-20-multi-user-locale-management-using-lit/image1.jpg 362.59 KB 179.65 KB -50.5% View diff
website/blog/2023-07-28-securing-the-future-of-saas/image1.jpg 194.96 KB 95.99 KB -50.8% View diff
website/developer-docs/hackathon/horizontal-brandon-frie-rdHeGGn7rwQ-unsplash.jpg 3.07 MB 379.92 KB -87.9% View diff
website/docs/events/event_matcher.png 75.04 KB 46.24 KB -38.4% View diff
website/docs/flow/inspector.png 100.91 KB 66.02 KB -34.6% View diff
website/docs/flow/stages/captcha/captcha-admin.png 115.21 KB 78.04 KB -32.3% View diff
website/docs/flow/stages/email/custom_template.png 60.59 KB 38.85 KB -35.9% View diff
website/docs/flow/stages/email/email_recovery.png 39.73 KB 23.35 KB -41.2% View diff
website/docs/installation/dashboard.png 455.55 KB 283.71 KB -37.7% View diff
website/docs/outposts/outposts.png 318.37 KB 170.98 KB -46.3% View diff
website/docs/outposts/upgrading_outdated.png 36.60 KB 20.84 KB -43.1% View diff
website/docs/providers/ldap/general_setup1.png 69.67 KB 48.65 KB -30.2% View diff
website/docs/providers/ldap/general_setup10.png 62.79 KB 39.18 KB -37.6% View diff
website/docs/providers/ldap/general_setup11.png 61.56 KB 38.55 KB -37.4% View diff
website/docs/providers/ldap/general_setup12.png 38.90 KB 26.86 KB -30.9% View diff
website/docs/providers/ldap/general_setup13.png 56.94 KB 40.11 KB -29.6% View diff
website/docs/providers/ldap/general_setup14.png 57.58 KB 38.05 KB -33.9% View diff
website/docs/providers/ldap/general_setup15.png 74.13 KB 51.99 KB -29.9% View diff
website/docs/providers/ldap/general_setup16.png 59.75 KB 41.36 KB -30.8% View diff
website/docs/providers/ldap/general_setup17.png 58.35 KB 41.19 KB -29.4% View diff
website/docs/providers/ldap/general_setup2.png 45.01 KB 32.69 KB -27.4% View diff
website/docs/providers/ldap/general_setup3.png 74.92 KB 52.12 KB -30.4% View diff
website/docs/providers/ldap/general_setup4.png 62.46 KB 41.55 KB -33.5% View diff
website/docs/providers/ldap/general_setup5.png 74.57 KB 51.65 KB -30.7% View diff
website/docs/providers/ldap/general_setup6.png 47.70 KB 31.68 KB -33.6% View diff
website/docs/providers/ldap/general_setup7.png 82.60 KB 52.26 KB -36.7% View diff
website/docs/providers/ldap/general_setup8.png 46.56 KB 32.04 KB -31.2% View diff
website/docs/providers/ldap/general_setup9.png 62.03 KB 38.77 KB -37.5% View diff
website/docs/providers/radius/protocols.png 31.39 KB 15.32 KB -51.2% View diff
website/docs/troubleshooting/access_denied_message.png 79.43 KB 62.05 KB -21.9% View diff
website/docs/troubleshooting/authentik_user_debug.png 9.61 KB 7.37 KB -23.4% View diff
website/integrations/services/bookstack/authentik_saml_bookstack.png 71.45 KB 65.80 KB -7.9% View diff
website/integrations/services/bookstack/metadataurl.png 63.67 KB 54.26 KB -14.8% View diff
website/integrations/services/dokuwiki/dokuwiki_oauth_generic.png 92.34 KB 55.71 KB -39.7% View diff
website/integrations/services/gitea/gitea1.png 424.78 KB 242.29 KB -43.0% View diff
website/integrations/services/github-enterprise-cloud/ghec_saml_settings.png 718.37 KB 416.32 KB -42.0% View diff
website/integrations/services/github-enterprise-server/ghes_saml_settings.png 621.63 KB 352.79 KB -43.2% View diff
website/integrations/services/github-organization/ghorg_saml_settings.png 920.96 KB 543.71 KB -41.0% View diff
website/integrations/services/harbor/harbor.png 157.20 KB 84.95 KB -46.0% View diff
website/integrations/services/opnsense/opnsense1.png 61.47 KB 33.55 KB -45.4% View diff
website/integrations/services/opnsense/opnsense2.png 21.89 KB 10.23 KB -53.3% View diff
website/integrations/services/organizr/organizr1.png 77.95 KB 48.67 KB -37.6% View diff
website/integrations/services/organizr/organizr2.png 61.62 KB 43.69 KB -29.1% View diff
website/integrations/services/organizr/organizr3.png 76.83 KB 53.45 KB -30.4% View diff
website/integrations/services/organizr/organizr4.png 50.24 KB 42.58 KB -15.2% View diff
website/integrations/services/organizr/organizr5.png 26.98 KB 17.82 KB -34.0% View diff
website/integrations/services/organizr/organizr6.png 67.67 KB 50.69 KB -25.1% View diff
website/integrations/services/organizr/organizr7.png 109.14 KB 73.65 KB -32.5% View diff
website/integrations/services/pfsense/pfsense-certificate-export.png 6.19 KB 2.02 KB -67.4% View diff
website/integrations/services/phpipam/ipam-saml-application-bindings.png 53.52 KB 40.46 KB -24.4% View diff
website/integrations/services/phpipam/ipam-saml2-login-location.png 22.32 KB 16.11 KB -27.8% View diff
website/integrations/services/phpipam/phpipam-auth-method-config.png 49.86 KB 31.94 KB -35.9% View diff
website/integrations/services/phpipam/phpipam-automatic-user-creation-permissions.png 52.76 KB 36.61 KB -30.6% View diff
website/integrations/services/phpipam/phpipam-property-mappings.png 28.10 KB 20.01 KB -28.8% View diff
website/integrations/services/phpipam/phpipam-saml-advanced-provider-protocol-settings.png 109.91 KB 75.58 KB -31.2% View diff
website/integrations/services/phpipam/phpipam-saml-provider-protocol-settings.png 27.39 KB 18.71 KB -31.7% View diff
website/integrations/services/portainer/port1.png 81.04 KB 73.82 KB -8.9% View diff
website/integrations/services/qnap-nas/qnap-ldap-configuration.png 197.67 KB 153.59 KB -22.3% View diff
website/integrations/services/rancher/rancher.png 320.39 KB 161.56 KB -49.6% View diff
website/integrations/services/rocketchat/rocketchat1.png 90.83 KB 60.57 KB -33.3% View diff
website/integrations/services/rocketchat/rocketchat10.png 21.41 KB 14.90 KB -30.4% View diff
website/integrations/services/rocketchat/rocketchat2.png 56.61 KB 38.78 KB -31.5% View diff
website/integrations/services/rocketchat/rocketchat3.png 12.93 KB 7.38 KB -42.9% View diff
website/integrations/services/rocketchat/rocketchat4.png 13.29 KB 6.95 KB -47.7% View diff
website/integrations/services/rocketchat/rocketchat5.png 10.28 KB 7.99 KB -22.3% View diff
website/integrations/services/rocketchat/rocketchat6.png 7.08 KB 4.33 KB -38.9% View diff
website/integrations/services/rocketchat/rocketchat7.png 30.57 KB 19.21 KB -37.2% View diff
website/integrations/services/rocketchat/rocketchat8.png 25.94 KB 16.98 KB -34.6% View diff
website/integrations/services/rocketchat/rocketchat9.png 32.50 KB 22.47 KB -30.9% View diff
website/integrations/services/sentry/auth.png 316.31 KB 166.50 KB -47.4% View diff
website/integrations/services/tautulli/tautulli.png 89.90 KB 57.79 KB -35.7% View diff
website/integrations/services/vikunja/vikunja1.png 82.83 KB 58.17 KB -29.8% View diff
website/integrations/services/vmware-vcenter/authentik_setup.png 173.07 KB 116.41 KB -32.7% View diff
website/integrations/services/vmware-vcenter/vcenter_post_setup.png 98.31 KB 58.91 KB -40.1% View diff
website/integrations/services/wiki-js/authentik_application.png 67.27 KB 41.43 KB -38.4% View diff
website/integrations/services/wiki-js/authentik_provider.png 88.88 KB 53.24 KB -40.1% View diff
website/integrations/services/wiki-js/wiki-js_strategy.png 217.08 KB 187.15 KB -13.8% View diff
website/integrations/sources/active-directory/01_user_create.png 41.08 KB 27.11 KB -34.0% View diff
website/integrations/sources/active-directory/02_delegate.png 58.65 KB 39.77 KB -32.2% View diff
website/integrations/sources/active-directory/03_additional_perms.png 79.98 KB 54.60 KB -31.7% View diff
website/integrations/sources/active-directory/10_ak_status.png 64.30 KB 40.77 KB -36.6% View diff
website/integrations/sources/active-directory/11_ak_stage.png 52.29 KB 32.80 KB -37.3% View diff
website/integrations/sources/apple/app_id.png 61.64 KB 40.20 KB -34.8% View diff
website/integrations/sources/apple/app_service_config.png 120.17 KB 86.01 KB -28.4% View diff
website/integrations/sources/apple/key.png 70.92 KB 46.46 KB -34.5% View diff
website/integrations/sources/apple/service_id.png 52.70 KB 33.62 KB -36.2% View diff
website/integrations/sources/azure-ad/aad_01.png 77.61 KB 51.46 KB -33.7% View diff
website/integrations/sources/azure-ad/authentik_01.png 96.48 KB 59.55 KB -38.3% View diff
website/integrations/sources/discord/discord1.png 24.09 KB 21.62 KB -10.3% View diff
website/integrations/sources/discord/discord2.png 33.00 KB 22.35 KB -32.3% View diff
website/integrations/sources/discord/discord3.png 68.24 KB 47.86 KB -29.9% View diff
website/integrations/sources/discord/discord4.png 31.50 KB 22.77 KB -27.7% View diff
website/integrations/sources/freeipa/01_user_create.png 45.26 KB 35.92 KB -20.6% View diff
website/integrations/sources/freeipa/02_user_roles.png 27.42 KB 22.43 KB -18.2% View diff
website/integrations/sources/freeipa/03_add_user_role.png 48.99 KB 38.31 KB -21.8% View diff
website/integrations/sources/freeipa/04_source_settings_1.png 188.58 KB 143.28 KB -24.0% View diff
website/integrations/sources/freeipa/05_source_settings_2.png 233.69 KB 180.89 KB -22.6% View diff
website/integrations/sources/freeipa/06_sync_source.png 121.76 KB 97.67 KB -19.8% View diff
website/integrations/sources/freeipa/07_password_stage.png 125.23 KB 100.25 KB -19.9% View diff
website/integrations/sources/github/github_org_membership.png 138.01 KB 124.44 KB -9.8% View diff
website/integrations/sources/github/githubdeveloper1.png 12.86 KB 11.70 KB -9.0% View diff
website/integrations/sources/github/githubdeveloperexample.png 28.30 KB 24.19 KB -14.5% View diff
website/integrations/sources/github/githubexample2.png 52.52 KB 50.17 KB -4.5% View diff
website/integrations/sources/google/authentiksource.png 33.82 KB 31.70 KB -6.2% View diff
website/integrations/sources/google/googledeveloper1.png 103.29 KB 86.02 KB -16.7% View diff
website/integrations/sources/google/googledeveloper2.png 22.34 KB 20.14 KB -9.8% View diff
website/integrations/sources/google/googledeveloper3.png 25.95 KB 23.30 KB -10.2% View diff
website/integrations/sources/google/googledeveloper4.png 51.10 KB 47.68 KB -6.7% View diff
website/integrations/sources/google/googledeveloper5.png 34.54 KB 31.45 KB -9.0% View diff
website/integrations/sources/google/googledeveloper6.png 55.57 KB 51.38 KB -7.5% View diff
website/integrations/sources/mailcow/mailcow1.png 7.35 KB 5.17 KB -29.7% View diff
website/integrations/sources/mailcow/mailcow2.png 27.05 KB 21.62 KB -20.1% View diff
website/integrations/sources/mailcow/mailcow3.png 24.04 KB 17.03 KB -29.1% View diff
website/integrations/sources/mailcow/mailcow4.png 33.72 KB 25.58 KB -24.1% View diff
website/integrations/sources/mailcow/mailcow5.png 77.70 KB 59.62 KB -23.3% View diff
website/integrations/sources/twitch/twitch1.png 84.84 KB 73.53 KB -13.3% View diff
website/integrations/sources/twitch/twitch2.png 66.58 KB 45.37 KB -31.9% View diff
website/integrations/sources/twitch/twitch3.png 43.03 KB 30.45 KB -29.2% View diff
website/integrations/sources/twitch/twitch4.png 89.49 KB 61.98 KB -30.7% View diff
website/integrations/sources/twitch/twitch5.png 96.65 KB 72.78 KB -24.7% View diff
website/integrations/sources/twitter/twitter1.png 36.42 KB 20.22 KB -44.5% View diff
website/integrations/sources/twitter/twitter2.png 93.47 KB 55.80 KB -40.3% View diff
website/static/img/landing_login_card.jpg 32.41 KB 19.13 KB -41.0% View diff
website/static/img/landing_screen_admin_dark.jpg 140.35 KB 77.44 KB -44.8% View diff
website/static/img/landing_screen_admin_light.jpg 145.84 KB 79.65 KB -45.4% View diff
website/static/img/landing_screen_apps_dark.jpg 77.20 KB 38.70 KB -49.9% View diff
website/static/img/landing_screen_apps_light.jpg 93.79 KB 49.61 KB -47.1% View diff
website/static/img/screen_admin_dark.jpg 235.98 KB 149.37 KB -36.7% View diff
website/static/img/screen_admin_light.jpg 253.51 KB 159.34 KB -37.1% View diff
website/static/img/screen_apps_dark.jpg 155.74 KB 90.44 KB -41.9% View diff
website/static/img/screen_apps_light.jpg 190.07 KB 113.51 KB -40.3% View diff
website/static/img/screen_flow_dark.jpg 442.23 KB 233.67 KB -47.2% View diff
website/static/img/screen_flow_light.jpg 444.83 KB 236.06 KB -46.9% View diff

12 images did not require optimisation.

@rissson
Copy link
Member Author

rissson commented Aug 2, 2023

Unfortunately, I cannot customize the commit message :/

@rissson rissson requested a review from BeryJu August 2, 2023 11:36
@rissson rissson marked this pull request as ready for review August 2, 2023 11:37
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.

LGTM, commit message doesn't really matter since we squash merge anyways

I copied all the current state icons/etc to https://github.com/goauthentik/brand-assets to keep the original copies (not that it matters too much since we have svgs but anyways)

@rissson rissson enabled auto-merge (squash) August 2, 2023 11:50
@rissson rissson disabled auto-merge August 2, 2023 11:51
Signed-off-by: risson <18313093+rissson@users.noreply.github.com>
@rissson rissson enabled auto-merge (squash) August 2, 2023 11:52
@rissson rissson merged commit c7537f9 into main Aug 2, 2023
@rissson rissson deleted the compress-images branch August 2, 2023 12:06
kensternberg-authentik added a commit that referenced this pull request Aug 7, 2023
* main: (36 commits)
  website/blog: add github user name links (#6468)
  website/developer-docs: add new template for procedures (#6390)
  website/blogs: blog to celebrate hackathon (#6457)
  web/flows: add more stories (#6444)
  web: bump prettier from 3.0.0 to 3.0.1 in /web (#6465)
  core: bump debugpy from 1.6.7 to 1.6.8 (#6458)
  ci: bump peter-evans/create-pull-request from 4 to 5 (#6459)
  web: bump lit from 2.7.6 to 2.8.0 in /web (#6460)
  web: bump @fortawesome/fontawesome-free from 6.4.0 to 6.4.2 in /web (#6461)
  web: bump chart.js from 4.3.2 to 4.3.3 in /web (#6462)
  web: bump @lit-labs/task from 2.1.2 to 3.0.0 in /web (#6463)
  web, website: compress images (#6121)
  core: bump cryptography from 41.0.2 to 41.0.3 (#6456)
  root: replace builtin psycopg libpq binary implementation with distro… (#6448)
  website: fix broken links in NewsBar
  core: bump github.com/getsentry/sentry-go from 0.22.0 to 0.23.0 (#6449)
  core: bump goauthentik.io/api/v3 from 3.2023061.6 to 3.2023061.7 (#6450)
  web: bump pyright from 1.1.319 to 1.1.320 in /web (#6451)
  core: bump ruff from 0.0.281 to 0.0.282 (#6453)
  core: bump golang from 1.20.6-bullseye to 1.20.7-bullseye (#6454)
  ...
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