Skip to content

Commit

Permalink
Merge pull request #35 from sebadob/prepare-v0.14.4
Browse files Browse the repository at this point in the history
Release v0.14.4
  • Loading branch information
sebadob authored Aug 25, 2023
2 parents 3d9fd63 + f653c75 commit d550bdc
Show file tree
Hide file tree
Showing 16 changed files with 55 additions and 35 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## v0.14.4

This release mostly finishes the translation / i18n part of rauthy for now and adds some other
smaller improvements.
Container Images will be published with ghcr.io as well from now on. Since I am on the free plan
here, storage is limited and too old versions will be deleted at some point in the future.
However, I will keep pushing all of them to docker hub as well, where you then should be able
to find older versions too. ghcr.io is just preferred, because it is not so hardly rate limited
than the docker hub free tier is.

- Added translations for E-Mails
[11544ac](https://github.com/sebadob/rauthy/commit/11544ac46fcddeb53a511b8ad702b1ad2868148e)
- Made all UI parts work on mobile (except for the Admin UI itself)
[a4f31f2](https://github.com/sebadob/rauthy/commit/a4f31f22396b5767c5a2c20e0253171910296447)
[4ee3540](https://github.com/sebadob/rauthy/commit/4ee3540d9b32e6f0e2fbd5cf5eabcd7736179da8)
- Images will be published on Github Container Registry as well from now on
[cc15ea9](https://github.com/sebadob/rauthy/commit/cc15ea9cb5d7c0bd6d3cad1fea908e656f488e50)
- All dependencies have been updates in various places. This just keeps everything up to date
and fixed some potential security issues in third party libraries

## v0.14.3

- UI: UX Improvements to Webauthn Login when the user lets the request time out
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "0.14.3"
version = "0.14.4"
edition = "2021"
authors = ["Sebastian Dobe <[email protected]>"]
license = "AGPLv3"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Either just take a look at the [Rauthy Book](https://sebadob.github.io/rauthy/),
the application yourself with docker on your localhost:

```
docker run --rm -p 8080:8080 sdobedev/rauthy:0.14.3-lite
docker run --rm -p 8080:8080 sdobedev/rauthy:0.14.4-lite
```

**NOTE:**
Expand Down
1 change: 0 additions & 1 deletion dev_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ in another terminal:

### Stage 2 - features - do before v1.0.0

- translate landing + logout + registration page
- cleanup
- benchmarks and performance tuning
- double check against https://openid.net/specs/openid-connect-core-1_0.html that everything is implemented correctly one more time
Expand Down
4 changes: 2 additions & 2 deletions docs/getting_started/docker.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
<pre><code>docker run --rm \
-p 8080:8080 \
--name rauthy \
sdobedev/rauthy:0.14.3-lite
sdobedev/rauthy:0.14.4-lite
</code></pre>
<p>This will start the container in interactive mode with an in-memory SQLite database. Just take a look at the log at the
logs to see the URL and first password.</p>
Expand All @@ -161,7 +161,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
-e DATABASE_URL=sqlite:data/rauthy.db \
-p 8080:8080 \
--name rauthy \
sdobedev/rauthy:0.14.3-lite
sdobedev/rauthy:0.14.4-lite
</code></pre>
<div id="admonition-note" class="admonition note">
<div class="admonition-title">
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/k8s.html
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ <h3 id="create-and-apply-the-stateful-set"><a class="header" href="#create-and-a
# hash for the latest version at this
# point. The latest image with the correct hash will always be shown for the
# [Github Releases](https://github.com/sebadob/rauthy/releases)
image: sdobedev/rauthy:0.14.3-lite
image: sdobedev/rauthy:0.14.4-lite
imagePullPolicy: IfNotPresent
securityContext:
# User ID 10001 is actually built into the container at the creation for
Expand Down
6 changes: 3 additions & 3 deletions docs/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
<pre><code>docker run --rm \
-p 8080:8080 \
--name rauthy \
sdobedev/rauthy:0.14.3-lite
sdobedev/rauthy:0.14.4-lite
</code></pre>
<p>This will start the container in interactive mode with an in-memory SQLite database. Just take a look at the log at the
logs to see the URL and first password.</p>
Expand All @@ -272,7 +272,7 @@ <h2 id="testing--local-evaluation"><a class="header" href="#testing--local-evalu
-e DATABASE_URL=sqlite:data/rauthy.db \
-p 8080:8080 \
--name rauthy \
sdobedev/rauthy:0.14.3-lite
sdobedev/rauthy:0.14.4-lite
</code></pre>
<div id="admonition-note" class="admonition note">
<div class="admonition-title">
Expand Down Expand Up @@ -529,7 +529,7 @@ <h3 id="create-and-apply-the-stateful-set"><a class="header" href="#create-and-a
# hash for the latest version at this
# point. The latest image with the correct hash will always be shown for the
# [Github Releases](https://github.com/sebadob/rauthy/releases)
image: sdobedev/rauthy:0.14.3-lite
image: sdobedev/rauthy:0.14.4-lite
imagePullPolicy: IfNotPresent
securityContext:
# User ID 10001 is actually built into the container at the creation for
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

Loading

0 comments on commit d550bdc

Please sign in to comment.