From 40cd0bc1af7ca237dfad0da55c32a8c902ccdeb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 09:03:04 +0000 Subject: [PATCH 1/2] Bump the playwright group in /ui with 2 updates Bumps the playwright group in /ui with 2 updates: [@playwright/test](https://github.com/microsoft/playwright) and [playwright](https://github.com/microsoft/playwright). Updates `@playwright/test` from 1.46.1 to 1.47.0 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.46.1...v1.47.0) Updates `playwright` from 1.46.1 to 1.47.0 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.46.1...v1.47.0) --- updated-dependencies: - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: playwright - dependency-name: playwright dependency-type: direct:development update-type: version-update:semver-minor dependency-group: playwright ... Signed-off-by: dependabot[bot] --- ui/package-lock.json | 24 ++++++++++++------------ ui/package.json | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ui/package-lock.json b/ui/package-lock.json index 7bd6a2027..62e51aecb 100644 --- a/ui/package-lock.json +++ b/ui/package-lock.json @@ -54,7 +54,7 @@ "zod": "^3.23.8" }, "devDependencies": { - "@playwright/test": "^1.46.1", + "@playwright/test": "^1.47.0", "@storybook/addon-essentials": "^8.2.9", "@storybook/addon-interactions": "^8.2.9", "@storybook/addon-links": "^8.2.9", @@ -4254,12 +4254,12 @@ } }, "node_modules/@playwright/test": { - "version": "1.46.1", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.46.1.tgz", - "integrity": "sha512-Fq6SwLujA/DOIvNC2EL/SojJnkKf/rAwJ//APpJJHRyMi1PdKrY3Az+4XNQ51N4RTbItbIByQ0jgd1tayq1aeA==", + "version": "1.47.0", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.47.0.tgz", + "integrity": "sha512-SgAdlSwYVpToI4e/IH19IHHWvoijAYH5hu2MWSXptRypLSnzj51PcGD+rsOXFayde4P9ZLi+loXVwArg6IUkCA==", "devOptional": true, "dependencies": { - "playwright": "1.46.1" + "playwright": "1.47.0" }, "bin": { "playwright": "cli.js" @@ -18325,12 +18325,12 @@ } }, "node_modules/playwright": { - "version": "1.46.1", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.46.1.tgz", - "integrity": "sha512-oPcr1yqoXLCkgKtD5eNUPLiN40rYEM39odNpIb6VE6S7/15gJmA1NzVv6zJYusV0e7tzvkU/utBFNa/Kpxmwng==", + "version": "1.47.0", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.47.0.tgz", + "integrity": "sha512-jOWiRq2pdNAX/mwLiwFYnPHpEZ4rM+fRSQpRHwEwZlP2PUANvL3+aJOF/bvISMhFD30rqMxUB4RJx9aQbfh4Ww==", "devOptional": true, "dependencies": { - "playwright-core": "1.46.1" + "playwright-core": "1.47.0" }, "bin": { "playwright": "cli.js" @@ -18343,9 +18343,9 @@ } }, "node_modules/playwright-core": { - "version": "1.46.1", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.46.1.tgz", - "integrity": "sha512-h9LqIQaAv+CYvWzsZ+h3RsrqCStkBHlgo6/TJlFst3cOTlLghBQlJwPOZKQJTKNaD3QIB7aAVQ+gfWbN3NXB7A==", + "version": "1.47.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.47.0.tgz", + "integrity": "sha512-1DyHT8OqkcfCkYUD9zzUTfg7EfTd+6a8MkD/NWOvjo0u/SCNd5YmY/lJwFvUZOxJbWNds+ei7ic2+R/cRz/PDg==", "devOptional": true, "bin": { "playwright-core": "cli.js" diff --git a/ui/package.json b/ui/package.json index 47b8542c5..dbd48df0a 100644 --- a/ui/package.json +++ b/ui/package.json @@ -59,7 +59,7 @@ "zod": "^3.23.8" }, "devDependencies": { - "@playwright/test": "^1.46.1", + "@playwright/test": "^1.47.0", "@storybook/addon-essentials": "^8.2.9", "@storybook/addon-interactions": "^8.2.9", "@storybook/addon-links": "^8.2.9", From 8b3f7bc1f14c98927889c373e115a1fe13317bd7 Mon Sep 17 00:00:00 2001 From: Michael Edgar Date: Fri, 6 Sep 2024 09:04:26 -0400 Subject: [PATCH 2/2] Determine playwright image tag from the version of playwright in use Signed-off-by: Michael Edgar --- .github/workflows/playwright-tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/playwright-tests.yml b/.github/workflows/playwright-tests.yml index ab58f72a5..5afd51d3c 100644 --- a/.github/workflows/playwright-tests.yml +++ b/.github/workflows/playwright-tests.yml @@ -243,7 +243,6 @@ jobs: npm ls playwright --json=true PLAYWRIGHT_VERSION="$(npm ls playwright --json=true | jq -r '.dependencies.playwright.version')" - PLAYWRIGHT_VERSION="1.46.1" docker run --rm \ -v$(pwd):/app:z \