Skip to content
Closed
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
4 changes: 4 additions & 0 deletions nixos/doc/manual/release-notes/rl-2505.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@

- `zammad` has had its support for MySQL removed, since it was never working correctly and is now deprecated upstream. Check the [migration guide](https://docs.zammad.org/en/latest/appendix/migrate-to-postgresql.html) for how to convert your database to PostgreSQL.

- `teleport` has been upgraded from major version 16 to major version 17.
Refer to upstream [upgrade instructions](https://goteleport.com/docs/ver/17.x/upgrading/upgrading-reference/)
and [release notes for v17](https://github.com/gravitational/teleport/releases/tag/v17.0.1).

- `kanata` was updated to v1.7.0, which introduces several breaking changes.
See the release notes of
[v1.7.0](https://github.com/jtroo/kanata/releases/tag/v1.7.0)
Expand Down
1 change: 1 addition & 0 deletions nixos/tests/teleport.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ let
packages = with pkgs; {
"default" = teleport;
"15" = teleport_15;
"16" = teleport_16;
};

minimal = package: {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/servers/teleport/15/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ wasm-bindgen-cli, ... }@args:
import ../generic.nix (args // {
version = "15.4.21";
hash = "sha256-n5dAJ5ilq5nHo3neQzCUFnDRwLhArwleMSho4/g0MT4=";
version = "15.4.22";
hash = "sha256-CgHu45r2IHydPoaI/chPQ6WoWITcOKzJoAApdXACa28=";
vendorHash = "sha256-bW8ztNeSzxUNtbuBtxIya9TeGfktC+/fz9iXB0GL0Mg=";
yarnHash = "sha256-ZaLLrcwAeq6TQ1SaA2few4s0HqktOZEpxCTcNGloGfk=";
cargoLock = {
Expand Down
8 changes: 4 additions & 4 deletions pkgs/servers/teleport/16/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{ wasm-bindgen-cli, ... }@args:
import ../generic.nix (args // {
version = "16.4.6";
hash = "sha256-TdOCFs6YeqINM8aPryrjYPaXEjc/gIqu7kzVYDnMsjg=";
vendorHash = "sha256-iyYfht0aB9Vv2hsaqrieFHXbDhlotKQYfLn4JFqpve8=";
pnpmHash = "sha256-NF45Wp4itYud01VzxC8bRHZ3xZ1T1du1QmZTDMS5nOk=";
version = "16.4.8";
hash = "sha256-izOmea4FP93OvGWi/JlLUZJ9e38d4AfhvusVHj0MWVU=";
vendorHash = "sha256-xA8Pbf6D2DKU8wztU+pCh3fizIfBVp9wc1zzAg48YcY=";
pnpmHash = "sha256-+/5dgjxevJwos35txvu+R53FMp3Pp9yxv8YFCuBaNCU=";
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
Expand Down
Loading