Skip to content

Commit 7e6d5fa

Browse files
authored
Prepare v0.33.1 (#1277)
* update book * bump version * update changelog and version tags * rebuild docs * rebuild static HTML
1 parent b73c2e7 commit 7e6d5fa

File tree

14 files changed

+43
-35
lines changed

14 files changed

+43
-35
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v0.33.1
4+
5+
### Bugfix
6+
7+
- The new feature "Rauthy Logo as client fallback" from `v0.33.0` was working fine for the branding
8+
page, but not during `/authorize`.
9+
[#1276](https://github.com/sebadob/rauthy/pull/1276)
10+
311
## v0.33.0
412

513
### Breaking
@@ -120,9 +128,9 @@ blacklist_cleanup_days = 730
120128
# debugging, but should generally be disabled to not
121129
# disclose any possibly somewhat "internal" information.
122130
#
123-
# default: false
131+
# default: true
124132
# overwritten by: PAM_SSH_INCLUDE_COMMENTS
125-
include_comments = false
133+
include_comments = true
126134

127135
# You can enforce an SSH key expiry in days. After this time,
128136
# users must generate new keys. This enforces a key rotation

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["src/*"]
44
exclude = ["rauthy-client"]
55

66
[workspace.package]
7-
version = "0.33.0"
7+
version = "0.33.1"
88
edition = "2024"
99
authors = ["Sebastian Dobe <sebastiandobe@mailbox.org>"]
1010
license = "Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ setting for very quick and easy local testing and taking a first look. By settin
226226
a demo config is being loaded at startup.
227227

228228
```
229-
docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.33.0
229+
docker run -it --rm -e LOCAL_TEST=true -p 8443:8443 ghcr.io/sebadob/rauthy:0.33.1
230230
```
231231

232232
> [!CAUTION]
-1.55 KB
Binary file not shown.
-118 Bytes
Binary file not shown.

book/src/config/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1903,9 +1903,9 @@ admin_force_mfa = true
19031903
# debugging, but should generally be disabled to not
19041904
# disclose any possibly somewhat "internal" information.
19051905
#
1906-
# default: false
1906+
# default: true
19071907
# overwritten by: PAM_SSH_INCLUDE_COMMENTS
1908-
#include_comments = false
1908+
#include_comments = true
19091909

19101910
# You can enforce an SSH key expiry in days. After this time,
19111911
# users must generate new keys. This enforces a key rotation

book/src/getting_started/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ your localhost. The image contains a basic default config which is sufficient fo
77
don't use it in production, it contains hardcoded secrets).
88

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

1313
To proceed, go to **[First Start](first_start.md)**, or do the production setup below to have
@@ -32,7 +32,7 @@ services:
3232
- "1080:1080"
3333

3434
rauthy:
35-
image: ghcr.io/sebadob/rauthy:0.33.0
35+
image: ghcr.io/sebadob/rauthy:0.33.1
3636
environment:
3737
- LOCAL_TEST=true
3838
- SMTP_URL=mailcrab
@@ -161,7 +161,7 @@ docker run -d \
161161
-v $(pwd)/rauthy/data:/app/data \
162162
-p 8443:8443 \
163163
--name rauthy \
164-
ghcr.io/sebadob/rauthy:0.33.0
164+
ghcr.io/sebadob/rauthy:0.33.1
165165
```
166166

167167
- `-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
@@ -210,7 +210,7 @@ spec:
210210
fsGroup: 10001
211211
containers:
212212
- name: rauthy
213-
image: ghcr.io/sebadob/rauthy:0.33.0
213+
image: ghcr.io/sebadob/rauthy:0.33.1
214214
securityContext:
215215
# User ID 10001 is actually built into the container
216216
# at the creation for better security

docs/config/config.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2076,9 +2076,9 @@ <h1 id="reference-config"><a class="header" href="#reference-config">Reference C
20762076
# debugging, but should generally be disabled to not
20772077
# disclose any possibly somewhat "internal" information.
20782078
#
2079-
# default: false
2079+
# default: true
20802080
# overwritten by: PAM_SSH_INCLUDE_COMMENTS
2081-
#include_comments = false
2081+
#include_comments = true
20822082

20832083
# You can enforce an SSH key expiry in days. After this time,
20842084
# users must generate new keys. This enforces a key rotation

0 commit comments

Comments
 (0)