diff --git a/doc/release-notes/rl-2605.section.md b/doc/release-notes/rl-2605.section.md index 300d50e91013..40a0566a9f8e 100644 --- a/doc/release-notes/rl-2605.section.md +++ b/doc/release-notes/rl-2605.section.md @@ -32,6 +32,18 @@ - `nodePackages.prebuild-install` was removed because it appeared to be unmaintained upstream. See [upstream's recommendations for alternatives](https://github.com/prebuild/prebuild-install#note). +- `davis` made changes to the `IMAP_AUTH_URL` option. The flags are now standalone parameters that you need to fill: + - Before: + ```env + IMAP_AUTH_URL={imap.gmail.com:993/imap/ssl/novalidate-cert} + ``` + - After: + ```env + IMAP_AUTH_URL=imap.mydomain.com:993 + IMAP_ENCRYPTION_METHOD=ssl + IMAP_CERTIFICATE_VALIDATION=false + ``` + - `python3packages.pillow-avif-plugin` has been removed as the functionality is included in `python3packages.pillow` directly since version 11.3. ## Other Notable Changes {#sec-nixpkgs-release-26.05-notable-changes} diff --git a/pkgs/by-name/da/davis/package.nix b/pkgs/by-name/da/davis/package.nix index 91fb72806781..26b24ee51bfa 100644 --- a/pkgs/by-name/da/davis/package.nix +++ b/pkgs/by-name/da/davis/package.nix @@ -7,16 +7,16 @@ php.buildComposerProject2 (finalAttrs: { pname = "davis"; - version = "5.2.0"; + version = "5.3.0"; src = fetchFromGitHub { owner = "tchapi"; repo = "davis"; tag = "v${finalAttrs.version}"; - hash = "sha256-Ih06CKwgR2ljw3w9YfgVUdBCjt5Nbs34fMsErRUkfcc="; + hash = "sha256-okysA35sdtvbyn90fqGbhGr2yWYAw1DBJYBBhPep6T0="; }; - vendorHash = "sha256-e0qSI5naqM/mUSMduiku0yQkYMGw1y9Uwa5oYlxaDzs="; + vendorHash = "sha256-j28IsT7tdTg7+M8KwBa1LDWw0YGgv9EGnaCQNeTJZyw="; composerNoPlugins = false; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 83f5c07ec7d3..8a2f0994dbad 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14171,10 +14171,6 @@ with pkgs; libsoup = libsoup_3; }; - davis = callPackage ../by-name/da/davis/package.nix { - php = php83; # https://github.com/tchapi/davis/issues/195 - }; - gpac-unstable = callPackage ../by-name/gp/gpac/package.nix { releaseChannel = "unstable"; };