mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
kratos: 0.8.0-alpha.3 -> 0.8.3-alpha.1.pre.0
This commit is contained in:
parent
9c0dd18492
commit
df2327ee24
3 changed files with 58 additions and 4 deletions
|
@ -1280,6 +1280,52 @@
|
||||||
instead of <literal>configuration.nix</literal>.
|
instead of <literal>configuration.nix</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
ORY Kratos was updated to version 0.8.3-alpha.1.pre.0, which
|
||||||
|
introduces some breaking changes:
|
||||||
|
</para>
|
||||||
|
<itemizedlist spacing="compact">
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
If you are relying on the SQLite images, update your
|
||||||
|
Docker Pull commands as follows:
|
||||||
|
</para>
|
||||||
|
<itemizedlist spacing="compact">
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<literal>docker pull oryd/kratos:{version}</literal>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Additionally, all passwords now have to be at least 8
|
||||||
|
characters long.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
For more details, see:
|
||||||
|
</para>
|
||||||
|
<itemizedlist spacing="compact">
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<link xlink:href="https://github.com/ory/kratos/releases/tag/v0.8.1-alpha.1">Release
|
||||||
|
Notes for v0.8.1-alpha-1</link>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
<link xlink:href="https://github.com/ory/kratos/releases/tag/v0.8.2-alpha.1">Release
|
||||||
|
Notes for v0.8.2-alpha-1</link>
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>fetchFromSourcehut</literal> now allows fetching
|
<literal>fetchFromSourcehut</literal> now allows fetching
|
||||||
|
|
|
@ -480,6 +480,14 @@ In addition to numerous new and upgraded packages, this release has the followin
|
||||||
|
|
||||||
- `nixos-generate-config` now puts the dhcp configuration in `hardware-configuration.nix` instead of `configuration.nix`.
|
- `nixos-generate-config` now puts the dhcp configuration in `hardware-configuration.nix` instead of `configuration.nix`.
|
||||||
|
|
||||||
|
- ORY Kratos was updated to version 0.8.3-alpha.1.pre.0, which introduces some breaking changes:
|
||||||
|
- If you are relying on the SQLite images, update your Docker Pull commands as follows:
|
||||||
|
- `docker pull oryd/kratos:{version}`
|
||||||
|
- Additionally, all passwords now have to be at least 8 characters long.
|
||||||
|
- For more details, see:
|
||||||
|
- [Release Notes for v0.8.1-alpha-1](https://github.com/ory/kratos/releases/tag/v0.8.1-alpha.1)
|
||||||
|
- [Release Notes for v0.8.2-alpha-1](https://github.com/ory/kratos/releases/tag/v0.8.2-alpha.1)
|
||||||
|
|
||||||
- `fetchFromSourcehut` now allows fetching repositories recursively
|
- `fetchFromSourcehut` now allows fetching repositories recursively
|
||||||
using `fetchgit` or `fetchhg` if the argument `fetchSubmodules`
|
using `fetchgit` or `fetchhg` if the argument `fetchSubmodules`
|
||||||
is set to `true`.
|
is set to `true`.
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "kratos";
|
pname = "kratos";
|
||||||
version = "0.8.0-alpha.3";
|
version = "0.8.3-alpha.1.pre.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ory";
|
owner = "ory";
|
||||||
repo = "kratos";
|
repo = "kratos";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0ihq2kxjackicxg0hrpmx6bsgz056xbaq3j8py37z2w6mwszarcg";
|
sha256 = "1225paf0x6lb6cb3q5f4lyz0r426ifx4x8145q7nsc6v64srck2y";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "175pckj30cm5xkbvsdvwzarvwapsylyjgj4ss8v5r1sa0fjpj008";
|
vendorSha256 = "10zhxbccjsp6hbmk2lnvbag6c92hz703mcaigaj4wvlf7glpldm6";
|
||||||
|
|
||||||
subPackages = [ "." ];
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ buildGoModule rec {
|
||||||
test/e2e/run.sh
|
test/e2e/run.sh
|
||||||
script/testenv.sh
|
script/testenv.sh
|
||||||
script/test-envs.sh
|
script/test-envs.sh
|
||||||
persistence/sql/migratest/update_fixtures.sh
|
script/debug-entrypoint.sh
|
||||||
)
|
)
|
||||||
patchShebangs "''${files[@]}"
|
patchShebangs "''${files[@]}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue