Skip to content

Commit 912fe33

Browse files
authored
Prepare v0.32.6 (#1234)
* rebuild docs * rebuild ui * update readme + changelog * compress static UI
1 parent ef1eae8 commit 912fe33

File tree

12 files changed

+352
-352
lines changed

12 files changed

+352
-352
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
- In `hiqlite` as an external dependency, it was possible to get into a situation where the WAL cleanup of not anymore
88
needed logs / files was not working as expected. This could lead to an endlessly filling up volume. This version
9-
bumps `hiqlite` to the latest, fixed version. With the next snapshot creation (by default every 10k logs), all old
10-
WAL files will be cleaned up.
11-
[]()
9+
bumps `hiqlite` to the latest, fixed version. With the next snapshot creation for existing instances (every 10k Raft
10+
logs), all old WAL files will be cleaned up.
11+
[#1233](https://github.com/sebadob/rauthy/pull/1233)
1212

1313
## v0.32.5
1414

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ the application yourself with docker on your localhost. Rauthy comes with a sett
206206
testing and taking a first look. By setting `LOCAL_TEST=true`, a demo config is being loaded at startup.
207207

208208
```
209-
docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.5
209+
docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.6
210210
```
211211

212212
> [!CAUTION]
-1.22 KB
Binary file not shown.
2.5 KB
Binary file not shown.

book/src/getting_started/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The image contains a basic default config which is sufficient for local testing
77
contains hardcoded secrets).
88

99
```
10-
docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.5
10+
docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.6
1111
```
1212

1313
To proceed, go to **[First Start](first_start.md)**, or do the production setup below to have persistence.
@@ -36,7 +36,7 @@ services:
3636
3737
rauthy:
3838
container_name: rauthy-test
39-
image: ghcr.io/sebadob/rauthy:0.32.5
39+
image: ghcr.io/sebadob/rauthy:0.32.6
4040
environment:
4141
- LOCAL_TEST=true
4242
- SMTP_URL=mailcrab
@@ -150,7 +150,7 @@ docker run -d \
150150
-v $(pwd)/rauthy/data:/app/data \
151151
-p 8443:8443 \
152152
--name rauthy \
153-
ghcr.io/sebadob/rauthy:0.32.5
153+
ghcr.io/sebadob/rauthy:0.32.6
154154
```
155155

156156
- `-v $(pwd)/rauthy/config.toml:/app/config.toml` mounts the config in the correct place

book/src/getting_started/k8s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ spec:
200200
fsGroup: 10001
201201
containers:
202202
- name: rauthy
203-
image: ghcr.io/sebadob/rauthy:0.32.5
203+
image: ghcr.io/sebadob/rauthy:0.32.6
204204
securityContext:
205205
# User ID 10001 is actually built into the container
206206
# at the creation for better security

docs/config/config.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
286286
#session_validate_ip = true
287287

288288
# By default, Rauthy will log a warning into the logs, if an active
289-
# password reset form is being access multiple times from different
289+
# password reset form is being accessed multiple times from different
290290
# hosts. You can set this to `true` to actually block any following
291291
# request after the initial one. This hardens the security of the
292292
# password reset form a bit more, but will create problems with
@@ -380,7 +380,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
380380
#
381381
# default: false
382382
# overwritten by: AUTH_HEADERS_ENABLE
383-
#enable = true
383+
#enable = false
384384

385385
# Configure the header names being used for the different values. You
386386
# can change them to your needs, if you cannot easily change your
@@ -566,7 +566,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
566566
nodes = ["1 localhost:8100 localhost:8200"]
567567

568568
# You can set the listen addresses for both the API and Raft servers.
569-
# These need to somewaht match the definition for the `nodes` above,
569+
# These need to somewhat match the definition for the `nodes` above,
570570
# with the difference, that a `node` address can be resolved via DNS,
571571
# while the listen addresses must be IP addresses.
572572
#
@@ -1026,7 +1026,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
10261026
#
10271027
# default: false
10281028
# overwritten by: ENABLE_DYN_CLIENT_REG
1029-
#enable = true
1029+
#enable = false
10301030

10311031
# If specified, this secret token will be expected during
10321032
# dynamic client registrations to be given as a
@@ -1910,7 +1910,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
19101910
#
19111911
# default: text
19121912
# overwritten by: LOG_FMT
1913-
#log_fmt = 'json'
1913+
#log_fmt = 'text'
19141914

19151915
[mfa]
19161916
# If 'true', MFA for an account must be enabled to access the
@@ -2014,7 +2014,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
20142014
#
20152015
# default: http_https
20162016
# overwritten by: LISTEN_SCHEME
2017-
scheme = 'http'
2017+
scheme = 'http_https'
20182018

20192019
# The Public URL of the whole deployment
20202020
# The LISTEN_SCHEME + PUB_URL must match the HTTP ORIGIN HEADER
@@ -2389,7 +2389,7 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
23892389
#
23902390
# default: false
23912391
# overwritten by: WEBAUTHN_FORCE_UV
2392-
#force_uv = true
2392+
#force_uv = false
23932393

23942394
# Can be set to 'true' to disable password expiry for users that
23952395
# have at least one active passkey. When set to 'false', the same

docs/getting_started/docker.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
172172
<p>For getting a first look at Rauthy, you can start it with docker (or any other container runtime) on your localhost.
173173
The image contains a basic default config which is sufficient for local testing (don't use it in production, it
174174
contains hardcoded secrets).</p>
175-
<pre><code>docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.5
175+
<pre><code>docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.6
176176
</code></pre>
177177
<p>To proceed, go to <strong><a href="first_start.html">First Start</a></strong>, or do the production setup below to have persistence.</p>
178178
<h2 id="testing--evaluation-with-e-mail"><a class="header" href="#testing--evaluation-with-e-mail">Testing / Evaluation with E-Mail</a></h2>
@@ -195,7 +195,7 @@ <h2 id="testing--evaluation-with-e-mail"><a class="header" href="#testing--evalu
195195

196196
rauthy:
197197
container_name: rauthy-test
198-
image: ghcr.io/sebadob/rauthy:0.32.5
198+
image: ghcr.io/sebadob/rauthy:0.32.6
199199
environment:
200200
- LOCAL_TEST=true
201201
- SMTP_URL=mailcrab
@@ -290,7 +290,7 @@ <h2 id="production-setup"><a class="header" href="#production-setup">Production
290290
-v $(pwd)/rauthy/data:/app/data \
291291
-p 8443:8443 \
292292
--name rauthy \
293-
ghcr.io/sebadob/rauthy:0.32.5
293+
ghcr.io/sebadob/rauthy:0.32.6
294294
</code></pre>
295295
<ul>
296296
<li><code>-v $(pwd)/rauthy/config.toml:/app/config.toml</code> mounts the config in the correct place</li>

docs/getting_started/k8s.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ <h3 id="create-and-apply-the-stateful-set"><a class="header" href="#create-and-a
348348
fsGroup: 10001
349349
containers:
350350
- name: rauthy
351-
image: ghcr.io/sebadob/rauthy:0.32.5
351+
image: ghcr.io/sebadob/rauthy:0.32.6
352352
securityContext:
353353
# User ID 10001 is actually built into the container
354354
# at the creation for better security

docs/print.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
404404
<p>For getting a first look at Rauthy, you can start it with docker (or any other container runtime) on your localhost.
405405
The image contains a basic default config which is sufficient for local testing (don't use it in production, it
406406
contains hardcoded secrets).</p>
407-
<pre><code>docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.5
407+
<pre><code>docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.32.6
408408
</code></pre>
409409
<p>To proceed, go to <strong><a href="getting_started/first_start.html">First Start</a></strong>, or do the production setup below to have persistence.</p>
410410
<h2 id="testing--evaluation-with-e-mail"><a class="header" href="#testing--evaluation-with-e-mail">Testing / Evaluation with E-Mail</a></h2>
@@ -427,7 +427,7 @@ <h2 id="testing--evaluation-with-e-mail"><a class="header" href="#testing--evalu
427427

428428
rauthy:
429429
container_name: rauthy-test
430-
image: ghcr.io/sebadob/rauthy:0.32.5
430+
image: ghcr.io/sebadob/rauthy:0.32.6
431431
environment:
432432
- LOCAL_TEST=true
433433
- SMTP_URL=mailcrab
@@ -522,7 +522,7 @@ <h2 id="production-setup"><a class="header" href="#production-setup">Production
522522
-v $(pwd)/rauthy/data:/app/data \
523523
-p 8443:8443 \
524524
--name rauthy \
525-
ghcr.io/sebadob/rauthy:0.32.5
525+
ghcr.io/sebadob/rauthy:0.32.6
526526
</code></pre>
527527
<ul>
528528
<li><code>-v $(pwd)/rauthy/config.toml:/app/config.toml</code> mounts the config in the correct place</li>
@@ -713,7 +713,7 @@ <h3 id="create-and-apply-the-stateful-set"><a class="header" href="#create-and-a
713713
fsGroup: 10001
714714
containers:
715715
- name: rauthy
716-
image: ghcr.io/sebadob/rauthy:0.32.5
716+
image: ghcr.io/sebadob/rauthy:0.32.6
717717
securityContext:
718718
# User ID 10001 is actually built into the container
719719
# at the creation for better security
@@ -5101,7 +5101,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
51015101
#session_validate_ip = true
51025102

51035103
# By default, Rauthy will log a warning into the logs, if an active
5104-
# password reset form is being access multiple times from different
5104+
# password reset form is being accessed multiple times from different
51055105
# hosts. You can set this to `true` to actually block any following
51065106
# request after the initial one. This hardens the security of the
51075107
# password reset form a bit more, but will create problems with
@@ -5195,7 +5195,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
51955195
#
51965196
# default: false
51975197
# overwritten by: AUTH_HEADERS_ENABLE
5198-
#enable = true
5198+
#enable = false
51995199

52005200
# Configure the header names being used for the different values. You
52015201
# can change them to your needs, if you cannot easily change your
@@ -5381,7 +5381,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
53815381
nodes = ["1 localhost:8100 localhost:8200"]
53825382

53835383
# You can set the listen addresses for both the API and Raft servers.
5384-
# These need to somewaht match the definition for the `nodes` above,
5384+
# These need to somewhat match the definition for the `nodes` above,
53855385
# with the difference, that a `node` address can be resolved via DNS,
53865386
# while the listen addresses must be IP addresses.
53875387
#
@@ -5841,7 +5841,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
58415841
#
58425842
# default: false
58435843
# overwritten by: ENABLE_DYN_CLIENT_REG
5844-
#enable = true
5844+
#enable = false
58455845

58465846
# If specified, this secret token will be expected during
58475847
# dynamic client registrations to be given as a
@@ -6725,7 +6725,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
67256725
#
67266726
# default: text
67276727
# overwritten by: LOG_FMT
6728-
#log_fmt = 'json'
6728+
#log_fmt = 'text'
67296729

67306730
[mfa]
67316731
# If 'true', MFA for an account must be enabled to access the
@@ -6829,7 +6829,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
68296829
#
68306830
# default: http_https
68316831
# overwritten by: LISTEN_SCHEME
6832-
scheme = 'http'
6832+
scheme = 'http_https'
68336833

68346834
# The Public URL of the whole deployment
68356835
# The LISTEN_SCHEME + PUB_URL must match the HTTP ORIGIN HEADER
@@ -7204,7 +7204,7 @@ <h2 id="apparmor"><a class="header" href="#apparmor">AppArmor</a></h2>
72047204
#
72057205
# default: false
72067206
# overwritten by: WEBAUTHN_FORCE_UV
7207-
#force_uv = true
7207+
#force_uv = false
72087208

72097209
# Can be set to 'true' to disable password expiry for users that
72107210
# have at least one active passkey. When set to 'false', the same

0 commit comments

Comments
 (0)