Skip to content

Commit

Permalink
Merge pull request #17 from sebadob/prepare-0.14.1
Browse files Browse the repository at this point in the history
prepare release
  • Loading branch information
sebadob authored Aug 12, 2023
2 parents 317dbad + 9d58b99 commit 1922d3c
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 20 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
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.0"
version = "0.14.1"
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 @@ -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:**
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/admin/groups/Groups.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
let err = '';
let groups = [];
let resGroups = [];
let resClientsPaginated = [];
let resGroupsPaginated = [];
let searchOptions = [
{
Expand Down Expand Up @@ -65,7 +65,7 @@
<GroupTileAddNew onSave={onSave}/>

<div id="groups">
{#each resClientsPaginated as group (group.id)}
{#each resGroupsPaginated as group (group.id)}
<div>
<GroupTile bind:group onSave={onSave}/>
</div>
Expand All @@ -74,7 +74,7 @@

<Pagination
bind:items={resGroups}
bind:resItems={resClientsPaginated}
bind:resItems={resGroupsPaginated}
/>

<div style="height: 20px"></div>
Expand Down
Loading

0 comments on commit 1922d3c

Please sign in to comment.