Skip to content

Commit

Permalink
Merge pull request #78 from sebadob/prepare-release
Browse files Browse the repository at this point in the history
Prepare release
  • Loading branch information
sebadob authored Oct 11, 2023
2 parents 6dfd0f4 + 26c3710 commit 5dd2e9a
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v0.16.1

This is a small bugfix release.
If you had an active and valid session from a v0.15.0, did an update to v0.16.0 and your session was still valid,
it did not have valid information about the peer IP. This is mandatory for a new feature introduced with v0.16.0
though and the warning logging in that case had an unwrap for the remote IP (which can never be null from v0.16.0 on),
which then would panic.

This is a tiny bugfix release that just gets rid of the possible panic and prints `UNKNOWN` into the logs instead.

### Changes

- print `UNKNOWN` into the logs for non-readable / -existing peer IPs
[6dfd0f4](https://github.com/sebadob/rauthy/commit/6dfd0f4299b90c03d9b5a2fb4106d72f153146af)

## v0.16.0

### Breaking
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 @@ -9,7 +9,7 @@ members = [
]

[workspace.package]
version = "0.16.0"
version = "0.16.1"
edition = "2021"
authors = ["Sebastian Dobe <[email protected]>"]
license = "AGPLv3"
Expand Down
6 changes: 2 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,7 @@ build-sqlite: build-docs build-ui test-sqlite


# builds the whole application in release mode
#build-postgres: build-docs build-ui test-postgres
build-postgres: build-docs build-ui
build-postgres: build-docs build-ui test-postgres
#!/usr/bin/env bash
set -euxo pipefail
Expand Down Expand Up @@ -216,8 +215,7 @@ publish-nightly: build-sqlite build-postgres


# publishes the application images - full pipeline incl clippy and testing
#publish: build-sqlite build-postgres
publish: build-postgres
publish: build-sqlite build-postgres
#!/usr/bin/env bash
set -euxo pipefail
Expand Down
Binary file modified out/rauthy
Binary file not shown.
Binary file modified out/rauthy-lite
Binary file not shown.

0 comments on commit 5dd2e9a

Please sign in to comment.