Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 575d2d711aad
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 705cd7f814ba
Choose a head ref
  • 5 commits
  • 1 file changed
  • 4 contributors

Commits on Oct 29, 2019

  1. php73: 7.3.9 -> 7.3.10

    Changelog: https://www.php.net/ChangeLog-7.php#7.3.10
    (cherry picked from commit c1e531b)
    etu authored and talyz committed Oct 29, 2019
    Copy the full SHA
    f53cb7c View commit details
  2. php72: 7.2.22 -> 7.2.23

    Changelog: https://www.php.net/ChangeLog-7.php#7.2.23
    (cherry picked from commit b5f7312)
    etu authored and talyz committed Oct 29, 2019
    Copy the full SHA
    a935f6f View commit details
  3. php: 7.2.23 -> 7.2.24, 7.3.10 -> 7.3.11

    (cherry picked from commit a480006)
    aanderse authored and talyz committed Oct 29, 2019
    Copy the full SHA
    38e7c36 View commit details
  4. php71: 7.1.32 -> 7.1.33

    talyz committed Oct 29, 2019
    Copy the full SHA
    faae4d1 View commit details
  5. Merge pull request #72245 from talyz/php-updates-19.03

    [19.03] php: 7.1.32 -> 7.1.33, 7.2.22 -> 7.2.24, 7.3.9 -> 7.3.11
    globin authored Oct 29, 2019
    Copy the full SHA
    705cd7f View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/development/interpreters/php/default.nix
12 changes: 6 additions & 6 deletions pkgs/development/interpreters/php/default.nix
Original file line number Diff line number Diff line change
@@ -248,24 +248,24 @@ let

in {
php71 = generic {
version = "7.1.32";
sha256 = "0ymbkj8117pakcs40rkkrsrvcc2rn9nrd7ilcdzw2nn7vnns3iyp";
version = "7.1.33";
sha256 = "0jsgiwawlais8s1l38lz51h1x2ci5ildk0ksfdmkg6xpwbrfb9cm";

# https://bugs.php.net/bug.php?id=76826
extraPatches = optional stdenv.isDarwin ./php71-darwin-isfinite.patch;
};

php72 = generic {
version = "7.2.22";
sha256 = "12phn0rrd5r1j6xlz83h7v6gszmj4lb5gwj927psbbc6nn1rh2n1";
version = "7.2.24";
sha256 = "00znhjcn6k4mbxz6jqlqf6bzr4cqdf8pnbmxkg6bns1hnr6r6yd0";

# https://bugs.php.net/bug.php?id=76826
extraPatches = optional stdenv.isDarwin ./php72-darwin-isfinite.patch;
};

php73 = generic {
version = "7.3.9";
sha256 = "1i33v50rbqrfwjwch1d46mbpwbxrg1xfycs9mjl7xsy9m04rg753";
version = "7.3.11";
sha256 = "1rxm256vhnvyabfwmyv51sqrkjlid1g8lczcy4skc2f72d5zzlcj";

# https://bugs.php.net/bug.php?id=76826
extraPatches = optional stdenv.isDarwin ./php73-darwin-isfinite.patch;