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: d39981eabc18
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7e26b5456db0
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Nov 26, 2020

  1. selenium-server-standalone: 3.6.0 -> 3.141.59

    Jonathan Ringer committed Nov 26, 2020
    Copy the full SHA
    cd0c348 View commit details
  2. chromedriver: 86.0.4240.22 -> 87.0.4280.20

    Jonathan Ringer committed Nov 26, 2020
    Copy the full SHA
    729dee1 View commit details
  3. chromium/doc: mention chromedriver when updating

    Jonathan Ringer committed Nov 26, 2020
    Copy the full SHA
    7e26b54 View commit details
3 changes: 3 additions & 0 deletions pkgs/applications/networking/browsers/chromium/README.md
Original file line number Diff line number Diff line change
@@ -36,6 +36,9 @@ update `upstream-info.json`. After updates it is important to test at least
`nixosTests.chromium` (or basic manual testing) and `google-chrome` (which
reuses `upstream-info.json`).

After updating, please also update pkgs/development/tools/selenium/chromedriver/default.nix
to a matching version.

## Backports

All updates are considered security critical and should be ported to the stable
6 changes: 3 additions & 3 deletions pkgs/development/tools/selenium/chromedriver/default.nix
Original file line number Diff line number Diff line change
@@ -6,12 +6,12 @@ let
allSpecs = {
x86_64-linux = {
system = "linux64";
sha256 = "0ndig3gq00nr3zs5f7wl1xw5vsnz1hwmjfrk73vbmb8lqjnfm66l";
sha256 = "1cpk7mb32z3a7c7cbaaxskpv91il3i8kgsdp2q8zw9w762kql953";
};

x86_64-darwin = {
system = "mac64";
sha256 = "1ipxla0d8wa2rn3872xpc5akbmk2rnplk9clrdncmdzakw7f66im";
sha256 = "06mx2yk6xy46azvkbyvhqm11prxbh67pfi50fcwxb0zqllbq7scr";
};
};

@@ -28,7 +28,7 @@ let
in
stdenv.mkDerivation rec {
pname = "chromedriver";
version = "86.0.4240.22";
version = "87.0.4280.20";

src = fetchurl {
url = "https://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip";
6 changes: 3 additions & 3 deletions pkgs/development/tools/selenium/server/default.nix
Original file line number Diff line number Diff line change
@@ -4,16 +4,16 @@
with stdenv.lib;

let
minorVersion = "3.6";
patchVersion = "0";
minorVersion = "3.141";
patchVersion = "59";

in stdenv.mkDerivation rec {
pname = "selenium-server-standalone";
version = "${minorVersion}.${patchVersion}";

src = fetchurl {
url = "http://selenium-release.storage.googleapis.com/${minorVersion}/selenium-server-standalone-${version}.jar";
sha256 = "11v340nm8vzqc2bkmbjfm9a7j4dj0bi9bfk8wdpfan0fb8prf772";
sha256 = "1jzkx0ahsb27zzzfvjqv660x9fz2pbcddgmhdzdmasxns5vipxxc";
};

dontUnpack = true;