Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/deployment-nixos.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Every release attaches the following artifacts to the GitHub release:
| `helpwave-privacy-<VER>.jar` | `privacy/` | `FormAction` SPI: privacy checkbox + acceptance attrs. |
| `helpwave-picture-<VER>.jar` | `picture/` | `RealmResourceProvider` SPI: avatar upload to S3 / R2. |

`<VER>` is the SPI Maven version (`keycloak-extensions/pom.xml`, currently `0.1.0`),
`<VER>` is the SPI Maven version (`keycloak-extensions/pom.xml`, currently `0.2.0`),
which is independent from the theme/npm version in `package.json`. All four jars go into
Keycloak's `providers/` directory — `services.keycloak.plugins` does that for you.

Expand All @@ -28,8 +28,8 @@ Keycloak's `providers/` directory — `services.keycloak.plugins` does that for
let
domain = "id.helpwave.de";

themeVersion = "0.4.0"; # ⇄ package.json version → release tag v0.4.0
spiVersion = "0.1.0"; # ⇄ keycloak-extensions/pom.xml
themeVersion = "0.5.0"; # ⇄ package.json version → release tag v0.5.0
spiVersion = "0.2.0"; # ⇄ keycloak-extensions/pom.xml

release = file: sha:
pkgs.fetchurl {
Expand Down Expand Up @@ -119,7 +119,7 @@ in
>
> ```sh
> nix-prefetch-url --type sha256 \
> "https://github.com/helpwave/id.helpwave.de/releases/download/v0.4.0/helpwave-picture-0.1.0.jar"
> "https://github.com/helpwave/id.helpwave.de/releases/download/v0.5.0/helpwave-picture-0.2.0.jar"
> ```
>
> Or just run `nixos-rebuild switch` once with all four `sha256-AAA…` placeholders, copy
Expand Down
2 changes: 1 addition & 1 deletion keycloak-extensions/captcha/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.helpwave.keycloak</groupId>
<artifactId>helpwave-keycloak-extensions</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</parent>

<artifactId>helpwave-captcha</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion keycloak-extensions/picture/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.helpwave.keycloak</groupId>
<artifactId>helpwave-keycloak-extensions</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</parent>

<artifactId>helpwave-picture</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion keycloak-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.helpwave.keycloak</groupId>
<artifactId>helpwave-keycloak-extensions</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
<packaging>pom</packaging>
<name>helpwave Keycloak Extensions</name>
<description>Keycloak SPI extensions used by id.helpwave.de</description>
Expand Down
2 changes: 1 addition & 1 deletion keycloak-extensions/privacy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>de.helpwave.keycloak</groupId>
<artifactId>helpwave-keycloak-extensions</artifactId>
<version>0.1.0</version>
<version>0.2.0</version>
</parent>

<artifactId>helpwave-privacy</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "id.helpwave.de",
"version": "0.4.0",
"version": "0.5.0",
"repository": {
"type": "git",
"url": "git://github.com/helpwave/id.helpwave.de.git"
Expand Down
Loading