Skip to content

Commit

Permalink
[release-24.11] matomo: mark 4.x as eol, 5.1.2 -> 5.2.0 (#364633)
Browse files Browse the repository at this point in the history
  • Loading branch information
leona-ya authored Dec 20, 2024
2 parents 80deab0 + 50b107a commit ddafee7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2411.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@

- `grafana` has been updated to version 11.3. This version doesn't support setting `http_addr` to a hostname anymore, an IP address is expected.

- `matomo` 4.x reached end of life on December 19, 2024. It is recommended to upgrade to `matomo_5`.

- `deno` has been updated to Deno 2, which has breaking changes.
See the [migration guide](https://docs.deno.com/runtime/reference/migration_guide/) for details.

Expand Down
9 changes: 5 additions & 4 deletions pkgs/servers/web-apps/matomo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ let
hash = "sha256-cGnsxfpvt7FyhxFcA2/gWWe7CyanVGZVKtCDES3XLdI=";
};
matomo_5 = {
version = "5.1.2";
hash = "sha256-6kR6OOyqwQfV+pRqHO+VMLM1eZQb0om65EilAnIlW9U=";
version = "5.2.0";
hash = "sha256-0hMbcvntoOWFJ00DytkFfcP7/giqtrhmxawVNzMP2KA=";
};
matomo-beta = {
version = "5.2.0";
# `beta` examples: "b1", "rc1", null
# when updating: use null if stable version is >= latest beta or release candidate
beta = "rc1";
hash = "sha256-heAd01p8QHkrxQY2MEf//YXNplgL19Opw/WhA2cwZ+c=";
beta = null;
hash = "sha256-0hMbcvntoOWFJ00DytkFfcP7/giqtrhmxawVNzMP2KA=";
};
};
common =
Expand Down Expand Up @@ -138,6 +138,7 @@ let
boozedog
]
++ teams.flyingcircus.members;
knownVulnerabilities = lib.optional (lib.versionOlder finalAttrs.version "5.0") "Support for Matomo 4 ended on 2024-12-19. It is recommended to upgrade to `matomo_5` instead.";
};
});
in
Expand Down

0 comments on commit ddafee7

Please sign in to comment.