From aa634993cd03aff6c07f2d48d91f6b3ce97a1965 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Fri, 25 Nov 2022 09:28:02 +0100 Subject: [PATCH] php82: 8.2.0rc6 -> 8.2.0rc7 News: https://github.com/php/php-src/blob/php-8.2.0RC7/NEWS --- .../from_md/release-notes/rl-2211.section.xml | 2 +- nixos/doc/manual/release-notes/rl-2211.section.md | 14 +++++++------- pkgs/development/interpreters/php/8.2.nix | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml index e4ed65984e67..2a58ac41161d 100644 --- a/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml +++ b/nixos/doc/manual/from_md/release-notes/rl-2211.section.xml @@ -141,7 +141,7 @@ - PHP 8.2.0 RC 6 is available. + PHP 8.2.0 RC 7 is available. diff --git a/nixos/doc/manual/release-notes/rl-2211.section.md b/nixos/doc/manual/release-notes/rl-2211.section.md index 14a1de27e951..b46c46aaa5bb 100644 --- a/nixos/doc/manual/release-notes/rl-2211.section.md +++ b/nixos/doc/manual/release-notes/rl-2211.section.md @@ -57,7 +57,7 @@ In addition to numerous new and upgraded packages, this release has the followin `mod_php` usage we still enable `ZTS` (Zend Thread Safe). This has been a common practice for a long time in other distributions. -- PHP 8.2.0 RC 6 is available. +- PHP 8.2.0 RC 7 is available. - `protonup` has been aliased to and replaced by `protonup-ng` due to upstream not maintaining it. @@ -482,12 +482,12 @@ Available as [services.patroni](options.html#opt-services.patroni.enable). - Add udev rules for the Teensy family of microcontrollers. -- The Qt QML disk cache is now disabled by default. This fixes a - long-standing issue where updating Qt/KDE apps would sometimes cause - them to crash or behave strangely without explanation. Those concerned - about the small (~10%) performance hit to application startup can - re-enable the cache (and expose themselves to gremlins) by setting the - envrionment variable `QML_FORCE_DISK_CACHE` to `1` using e.g. the +- The Qt QML disk cache is now disabled by default. This fixes a + long-standing issue where updating Qt/KDE apps would sometimes cause + them to crash or behave strangely without explanation. Those concerned + about the small (~10%) performance hit to application startup can + re-enable the cache (and expose themselves to gremlins) by setting the + envrionment variable `QML_FORCE_DISK_CACHE` to `1` using e.g. the `environment.sessionVariables` NixOS option. - systemd-oomd is enabled by default. Depending on which systemd units have diff --git a/pkgs/development/interpreters/php/8.2.nix b/pkgs/development/interpreters/php/8.2.nix index 72816da1d4b1..6ea49852a40e 100644 --- a/pkgs/development/interpreters/php/8.2.nix +++ b/pkgs/development/interpreters/php/8.2.nix @@ -1,13 +1,13 @@ { callPackage, lib, stdenv, fetchurl, ... }@_args: let - hash = "sha256-sbT8sIwle3OugXxqLZO3jKXlrOQsX1iH7WRH8G+nv8Y="; + hash = "sha256-MSBENMUl+F5k9manZvYjRDY3YWsYToZSQU9hmhJ8Xvc="; base = callPackage ./generic.nix (_args // { version = "8.2.0"; phpAttrsOverrides = attrs: attrs // { src = fetchurl { - url = "https://downloads.php.net/~sergey/php-8.2.0RC6.tar.xz"; + url = "https://downloads.php.net/~pierrick/php-8.2.0RC7.tar.xz"; inherit hash; }; };