diff --git a/CHANGELOG.md b/CHANGELOG.md index 19d3a1c8..9d183d71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v0.14.1 + +Bugfix release for the Dockerfiles and Pagination in some places + +- Split the Dockerfiles into separate files because the `ARG` introduced access rights problems +[25e3918](https://github.com/sebadob/rauthy/commit/25e39189f95d21e84e24f6d21670709a7ee1effd) +- Small bugfix for the pagination component in some places +[317dbad](https://github.com/sebadob/rauthy/commit/317dbadb0391b78aca0cdadc65dff79d9bf74717) + ## v0.14.0 This release is mostly about UI / UX improvements and some smaller bugfixes. diff --git a/Cargo.lock b/Cargo.lock index cf3a887d..461be09d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2868,7 +2868,7 @@ dependencies = [ [[package]] name = "rauthy" -version = "0.14.0" +version = "0.14.1" dependencies = [ "actix-files", "actix-service", @@ -2904,7 +2904,7 @@ dependencies = [ [[package]] name = "rauthy-common" -version = "0.14.0" +version = "0.14.1" dependencies = [ "actix-multipart", "actix-web", @@ -2935,7 +2935,7 @@ dependencies = [ [[package]] name = "rauthy-handlers" -version = "0.14.0" +version = "0.14.1" dependencies = [ "actix", "actix-multipart", @@ -2965,7 +2965,7 @@ dependencies = [ [[package]] name = "rauthy-models" -version = "0.14.0" +version = "0.14.1" dependencies = [ "accept-language", "actix", @@ -3012,7 +3012,7 @@ dependencies = [ [[package]] name = "rauthy-service" -version = "0.14.0" +version = "0.14.1" dependencies = [ "actix-web", "argon2", diff --git a/Cargo.toml b/Cargo.toml index 59814f35..3e4386d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.14.0" +version = "0.14.1" edition = "2021" authors = ["Sebastian Dobe "] license = "AGPLv3" diff --git a/README.md b/README.md index acb76749..ecd8cffe 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,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 +docker run --rm -p 8080:8080 sdobedev/rauthy:0.14.1-lite ``` **NOTE:** diff --git a/frontend/src/components/admin/groups/Groups.svelte b/frontend/src/components/admin/groups/Groups.svelte index 4ece3a9f..50d1bff7 100644 --- a/frontend/src/components/admin/groups/Groups.svelte +++ b/frontend/src/components/admin/groups/Groups.svelte @@ -9,7 +9,7 @@ let err = ''; let groups = []; let resGroups = []; - let resClientsPaginated = []; + let resGroupsPaginated = []; let searchOptions = [ { @@ -65,7 +65,7 @@
- {#each resClientsPaginated as group (group.id)} + {#each resGroupsPaginated as group (group.id)}
@@ -74,7 +74,7 @@
diff --git a/frontend/src/components/admin/roles/Roles.svelte b/frontend/src/components/admin/roles/Roles.svelte index 09c6e196..f6d184c7 100644 --- a/frontend/src/components/admin/roles/Roles.svelte +++ b/frontend/src/components/admin/roles/Roles.svelte @@ -9,7 +9,7 @@ let err = ''; let roles = []; let resRoles = []; - let resItemsPaginated = []; + let resRolesPaginated = []; let searchOptions = [ { @@ -65,7 +65,7 @@
- {#each resItemsPaginated as role (role.id)} + {#each resRolesPaginated as role (role.id)}
@@ -74,7 +74,7 @@
diff --git a/justfile b/justfile index b6f2025a..57318623 100644 --- a/justfile +++ b/justfile @@ -197,9 +197,8 @@ release: git push origin "v$TAG" -# publishes the application images -#publish: build-sqlite build-postgres -publish: +# publishes the application images - full pipeline incl clippy and testing +publish: build-sqlite build-postgres #!/usr/bin/env bash set -euxo pipefail diff --git a/out/rauthy b/out/rauthy index 5b49897f..33165078 100755 Binary files a/out/rauthy and b/out/rauthy differ diff --git a/out/rauthy-lite b/out/rauthy-lite index 7d9aaa68..089cc206 100755 Binary files a/out/rauthy-lite and b/out/rauthy-lite differ diff --git a/rauthy-book/src/getting_started/docker.md b/rauthy-book/src/getting_started/docker.md index 3bc6b142..626ce411 100644 --- a/rauthy-book/src/getting_started/docker.md +++ b/rauthy-book/src/getting_started/docker.md @@ -9,7 +9,7 @@ The image contains a basic default config which is sufficient for local testing. docker run --rm \ -p 8080:8080 \ --name rauthy \ - sdobedev/rauthy:0.14.0-lite + sdobedev/rauthy:0.14.1-lite ``` This will start the container in interactive mode with an in-memory SQLite database. Just take a look at the log at the @@ -22,7 +22,7 @@ docker run -d \ -e DATABASE_URL=sqlite:data/rauthy.db \ -p 8080:8080 \ --name rauthy \ - sdobedev/rauthy:0.14.0-lite + sdobedev/rauthy:0.14.1-lite ``` ```admonish note @@ -108,7 +108,7 @@ docker run -d \ -v $(pwd)/rauthy/data:/app/data \ -p 8080:8080 \ --name rauthy \ - sdobedev/rauthy:0.14.0-lite + sdobedev/rauthy:0.14.1-lite ``` **6. Restrict DB files access even more** diff --git a/rauthy-book/src/getting_started/k8s.md b/rauthy-book/src/getting_started/k8s.md index 58fdbbf2..cb655bcd 100644 --- a/rauthy-book/src/getting_started/k8s.md +++ b/rauthy-book/src/getting_started/k8s.md @@ -196,7 +196,7 @@ spec: # 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.0-lite + image: sdobedev/rauthy:0.14.1-lite imagePullPolicy: IfNotPresent securityContext: # User ID 10001 is actually built into the container at the creation for