chore(deps): update ghcr.io/sebadob/rauthy docker tag to v0.35.1 #484

Merged
simon merged 1 commit from renovate/ghcr.io-sebadob-rauthy-0.x into main 2026-05-04 11:42:00 +02:00
Collaborator

This PR contains the following updates:

Package Update Change
ghcr.io/sebadob/rauthy patch 0.35.00.35.1

Release Notes

sebadob/rauthy (ghcr.io/sebadob/rauthy)

v0.35.1

Compare Source

Changes
Request Duration in Logs

The access logs in the console now contain the total requests duration. This came with a small
change when you need to debug something. The access log is not the first thing you will see for a
specific request, but actually the last thing. We can only know the total duration at the end of the
request, not at the beginning. This is just something to keep in mind.

#​1525

Connect to Postgres via UDS

You can now connect to Postgres via UDS. You can specify a path to the socket for the pg_host
config var. In addition, you can now also provide a custom root CA for Postgress connections, and
you can specifically disable, require or prefer TLS.

[database]

# If you set `hiqlite = false` and want to use Postgres as your
# database, you need to set the following variables.

# These will be ignored as long as `hiqlite = true`.
#

# overwritten by: PG_HOST
pg_host = '/var/run/postgresql'

# default: 5432
# overwritten by: PG_PORT

#pg_port = 5432
# overwritten by: PG_USER
pg_user = 'rauthy'

# overwritten by: PG_PASSWORD
pg_password = '123SuperSafe'

# default: rauthy
# overwritten by: PG_DB_NAME
pg_db_name = 'rauthy'

# You can specifically set the TLS mode for Postgres connections.

# The default 'prefer' will try TLS first and fall back to plain
# connections once it fails. However, if you connect via UDS,

# the fallback will not work, and you max have to disable it all
# together.

#
# possible values: disable, prefer, require

# default: 'prefer'
# overwritten by: PG_TLS
pg_tls = 'require'

# Provide a custom root CA for your Postgres connections.

#
# overwritten by: PG_TLS_ROOT_CA
pg_tls_root_ca = """
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
"""

#​1527

Additional i18n translations

There are 2 additional i18n translations: Russian (ru) and French (fr)

#​1503
#​1523

Optional Account Redirect

You can not configure an optional redirect from /auth/v1/ to /auth/v1/account.

[access]

# If set to `true`, requests to `/auth/v1/` will be redirected to
# `/auth/v1/account` (the account dashboard). This is useful if you want

# users to land directly on their account page when visiting the root URL.
#

# default: false
# overwritten by: REDIRECT_ROOT_TO_ACCOUNT
redirect_root_to_account = true

#​1509

Hidden Password Input

When the login form is in the first stage where you only should enter the email, there is not a
hidden password input in the hope that password managers can detect and auto-fill the login form
better in some cases.

#​1524

Book Update

The Rauthy book got ouf of sync in a few sections, and it did not mention some of the latest new
features. It was updated in lots of places.

#​1529

Bugfix
  • The prompt param during /authorize was not accepting multiple values
    #​1500
  • During an internal code rework, the ko and zh translations for the password E-Mails got
    switched around.
    #​1526
  • When deleting the very last Passkey for a user, and when you were using Postgres, there was a
    foreign key constraint which made it fail and return a DB error.
    #​1528

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between day 1 and 7 of the month (* * 1-7 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/sebadob/rauthy](https://github.com/sebadob/rauthy) | patch | `0.35.0` → `0.35.1` | --- ### Release Notes <details> <summary>sebadob/rauthy (ghcr.io/sebadob/rauthy)</summary> ### [`v0.35.1`](https://github.com/sebadob/rauthy/blob/HEAD/CHANGELOG.md#v0351) [Compare Source](https://github.com/sebadob/rauthy/compare/v0.35.0...v0.35.1) ##### Changes ##### Request Duration in Logs The access logs in the console now contain the total requests duration. This came with a small change when you need to debug something. The access log is not the first thing you will see for a specific request, but actually the last thing. We can only know the total duration at the end of the request, not at the beginning. This is just something to keep in mind. [#&#8203;1525](https://github.com/sebadob/rauthy/pull/1525) ##### Connect to Postgres via UDS You can now connect to Postgres via UDS. You can specify a path to the socket for the `pg_host` config var. In addition, you can now also provide a custom root CA for Postgress connections, and you can specifically `disable`, `require` or `prefer` TLS. ```toml [database] # If you set `hiqlite = false` and want to use Postgres as your # database, you need to set the following variables. # These will be ignored as long as `hiqlite = true`. # # overwritten by: PG_HOST pg_host = '/var/run/postgresql' # default: 5432 # overwritten by: PG_PORT #pg_port = 5432 # overwritten by: PG_USER pg_user = 'rauthy' # overwritten by: PG_PASSWORD pg_password = '123SuperSafe' # default: rauthy # overwritten by: PG_DB_NAME pg_db_name = 'rauthy' # You can specifically set the TLS mode for Postgres connections. # The default 'prefer' will try TLS first and fall back to plain # connections once it fails. However, if you connect via UDS, # the fallback will not work, and you max have to disable it all # together. # # possible values: disable, prefer, require # default: 'prefer' # overwritten by: PG_TLS pg_tls = 'require' # Provide a custom root CA for your Postgres connections. # # overwritten by: PG_TLS_ROOT_CA pg_tls_root_ca = """ -----BEGIN CERTIFICATE----- ... -----END CERTIFICATE----- """ ``` [#&#8203;1527](https://github.com/sebadob/rauthy/pull/1527) ##### Additional i18n translations There are 2 additional i18n translations: Russian (ru) and French (fr) [#&#8203;1503](https://github.com/sebadob/rauthy/pull/1503) [#&#8203;1523](https://github.com/sebadob/rauthy/pull/1523) ##### Optional Account Redirect You can not configure an optional redirect from `/auth/v1/` to `/auth/v1/account`. ```toml [access] # If set to `true`, requests to `/auth/v1/` will be redirected to # `/auth/v1/account` (the account dashboard). This is useful if you want # users to land directly on their account page when visiting the root URL. # # default: false # overwritten by: REDIRECT_ROOT_TO_ACCOUNT redirect_root_to_account = true ``` [#&#8203;1509](https://github.com/sebadob/rauthy/pull/1509) ##### Hidden Password Input When the login form is in the first stage where you only should enter the email, there is not a hidden password input in the hope that password managers can detect and auto-fill the login form better in some cases. [#&#8203;1524](https://github.com/sebadob/rauthy/pull/1524) ##### Book Update The Rauthy book got ouf of sync in a few sections, and it did not mention some of the latest new features. It was updated in lots of places. [#&#8203;1529](https://github.com/sebadob/rauthy/pull/1529) ##### Bugfix - The `prompt` param during `/authorize` was not accepting multiple values [#&#8203;1500](https://github.com/sebadob/rauthy/pull/1500) - During an internal code rework, the `ko` and `zh` translations for the password E-Mails got switched around. [#&#8203;1526](https://github.com/sebadob/rauthy/pull/1526) - When deleting the very last Passkey for a user, and when you were using Postgres, there was a foreign key constraint which made it fail and return a DB error. [#&#8203;1528](https://github.com/sebadob/rauthy/pull/1528) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Between day 1 and 7 of the month (`* * 1-7 * *`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMDkuNSIsInVwZGF0ZWRJblZlciI6IjQzLjEwOS41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJhdXRvbWF0ZWQiLCJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZSJdfQ==-->
renovate added 1 commit 2026-05-01 02:14:48 +02:00
chore(deps): update ghcr.io/sebadob/rauthy docker tag to v0.35.1
All checks were successful
continuous-integration/drone/push Build is passing
4eb044ddbf
simon merged commit 95b1bfbe18 into main 2026-05-04 11:42:00 +02:00
Sign in to join this conversation.
No description provided.