Skip to content

Commit

Permalink
Update to version 1.48.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pietdevries94 authored and github-actions[bot] committed Oct 26, 2024
1 parent 566042c commit bea9fbe
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions playwright-driver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ let
{
pname = "playwright-driver";
# run ./pkgs/development/python-modules/playwright/update.sh to update
version = "1.48.1";
version = "1.48.2";

src = fetchurl {
url = "https://playwright.azureedge.net/builds/driver/${filename}";
sha256 = {
x86_64-linux = "0psc86jxn5pib21fbpfwlha8g3i934kqmy618pjzgdfs1jdb8xdq";
aarch64-linux = "1lyswxzpn0p1glqhyy1az8q4chchsbzf8vl6szmsvx0aibxzwwgh";
x86_64-darwin = "0awnkmi60l625cywaz1d9q43695s06g43r5afrlq44vxwpai90fm";
aarch64-darwin = "0dnl2z98q3l1b3h1y9h92id7ma2aiq61c3m3zcgkxgzbxb3r3pnq";
x86_64-linux = "1imv5i23fymm9zi8hsw6km166znpgd7qzzqcvfr3d60m96q6z1iq";
aarch64-linux = "08bq6xa4npzwssk00jl2p9cxvr32ijsql6qz9bx18032xj4ci2cj";
x86_64-darwin = "13ayvhgkn6613cxxiqqhnl6fk0gksdr2q7ywxzr2ny31qmdr8f9p";
aarch64-darwin = "09gr63ssdirpr666kzg73f1bans07g9hj7zwbwxxvhwvsy2p4fyr";
}.${system} or throwSystem;
};

Expand Down
2 changes: 1 addition & 1 deletion playwright-test/node-packages.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[
{"@playwright/test": "1.48.1"}
{"@playwright/test": "1.48.2"}
]
28 changes: 14 additions & 14 deletions playwright-test/node-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@

let
sources = {
"playwright-1.48.1" = {
"playwright-1.48.2" = {
name = "playwright";
packageName = "playwright";
version = "1.48.1";
version = "1.48.2";
src = fetchurl {
url = "https://registry.npmjs.org/playwright/-/playwright-1.48.1.tgz";
sha512 = "j8CiHW/V6HxmbntOfyB4+T/uk08tBy6ph0MpBXwuoofkSnLmlfdYNNkFTYD6ofzzlSqLA1fwH4vwvVFvJgLN0w==";
url = "https://registry.npmjs.org/playwright/-/playwright-1.48.2.tgz";
sha512 = "NjYvYgp4BPmiwfe31j4gHLa3J7bD2WiBz8Lk2RoSsmX38SVIARZ18VYjxLjAcDsAhA+F4iSEXTSGgjua0rrlgQ==";
};
};
"playwright-core-1.48.1" = {
"playwright-core-1.48.2" = {
name = "playwright-core";
packageName = "playwright-core";
version = "1.48.1";
version = "1.48.2";
src = fetchurl {
url = "https://registry.npmjs.org/playwright-core/-/playwright-core-1.48.1.tgz";
sha512 = "Yw/t4VAFX/bBr1OzwCuOMZkY1Cnb4z/doAFSwf4huqAGWmf9eMNjmK7NiOljCdLmxeRYcGPPmcDgU0zOlzP0YA==";
url = "https://registry.npmjs.org/playwright-core/-/playwright-core-1.48.2.tgz";
sha512 = "sjjw+qrLFlriJo64du+EK0kJgZzoQPsabGF4lBvsid+3CNIZIYLgnMj9V6JY5VhM2Peh20DJWIVpVljLLnlawA==";
};
};
};
in
{
"@playwright/test-1.48.1" = nodeEnv.buildNodePackage {
"@playwright/test-1.48.2" = nodeEnv.buildNodePackage {
name = "_at_playwright_slash_test";
packageName = "@playwright/test";
version = "1.48.1";
version = "1.48.2";
src = fetchurl {
url = "https://registry.npmjs.org/@playwright/test/-/test-1.48.1.tgz";
sha512 = "s9RtWoxkOLmRJdw3oFvhFbs9OJS0BzrLUc8Hf6l2UdCNd1rqeEyD4BhCJkvzeEoD1FsK4mirsWwGerhVmYKtZg==";
url = "https://registry.npmjs.org/@playwright/test/-/test-1.48.2.tgz";
sha512 = "54w1xCWfXuax7dz4W2M9uw0gDyh+ti/0K/MxcCUxChFh37kkdxPdfZDw5QBbuPUJHr1CiHJ1hXgSs+GgeQc5Zw==";
};
dependencies = [
sources."playwright-1.48.1"
sources."playwright-core-1.48.1"
sources."playwright-1.48.2"
sources."playwright-core-1.48.2"
];
buildInputs = globalBuildInputs;
meta = {
Expand Down

0 comments on commit bea9fbe

Please sign in to comment.