diff --git a/.circleci/config.yml b/.circleci/config.yml index 82dee66c3f4fd6..705dfb0825c7da 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -348,7 +348,7 @@ jobs: <<: *defaults resource_class: 'medium+' docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -378,7 +378,7 @@ jobs: test_e2e: <<: *defaults docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -397,7 +397,7 @@ jobs: test_e2e_website: <<: *defaults docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -412,7 +412,7 @@ jobs: test_profile: <<: *defaults docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -439,7 +439,7 @@ jobs: test_regressions: <<: *defaults docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -493,7 +493,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/next-webpack4/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -517,7 +517,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/next-webpack5/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -541,7 +541,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/create-react-app/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -565,7 +565,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/snowpack/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -589,7 +589,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/vite/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -613,7 +613,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/esbuild/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -641,7 +641,7 @@ jobs: <<: *defaults working_directory: /tmp/material-ui/test/bundling/fixtures/gatsby/ docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: @@ -743,7 +743,7 @@ jobs: test_benchmark: <<: *defaults docker: - - image: mcr.microsoft.com/playwright:v1.27.1-focal + - image: mcr.microsoft.com/playwright:v1.28.1-focal environment: NODE_ENV: development # Needed if playwright is in `devDependencies` steps: diff --git a/benchmark/package.json b/benchmark/package.json index 099b97b98dd141..19d5fb65bf16c4 100644 --- a/benchmark/package.json +++ b/benchmark/package.json @@ -20,7 +20,7 @@ "@mui/system": "^5.10.15", "@styled-system/css": "^5.1.5", "benchmark": "^2.1.4", - "playwright": "^1.27.1", + "playwright": "^1.28.1", "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18.2.0", diff --git a/package.json b/package.json index a3b1b7ea60464f..d5c37971d4ffab 100644 --- a/package.json +++ b/package.json @@ -88,7 +88,7 @@ "@emotion/styled": "^11.10.5", "@mnajdova/enzyme-adapter-react-18": "^0.2.0", "@octokit/rest": "^19.0.5", - "@playwright/test": "1.27.1", + "@playwright/test": "1.28.1", "@rollup/plugin-replace": "^5.0.1", "@testing-library/dom": "^8.19.0", "@testing-library/react": "^13.4.0", @@ -164,7 +164,7 @@ "nx": "^14.8.6", "nyc": "^15.1.0", "piscina": "^3.2.0", - "playwright": "^1.27.1", + "playwright": "^1.28.1", "prettier": "^2.8.0", "pretty-quick": "^3.1.3", "process": "^0.11.10", diff --git a/test/bundling/fixtures/create-react-app/package.json b/test/bundling/fixtures/create-react-app/package.json index b163f4665567c0..9c6b122076cdd3 100644 --- a/test/bundling/fixtures/create-react-app/package.json +++ b/test/bundling/fixtures/create-react-app/package.json @@ -25,7 +25,7 @@ "devDependencies": { "concurrently": "7.4.0", "cross-env": "7.0.3", - "playwright": "1.27.1", + "playwright": "1.28.1", "serve": "14.0.1" }, "browserslist": { diff --git a/test/bundling/fixtures/esbuild/package.json b/test/bundling/fixtures/esbuild/package.json index fcd0e6a92aee2c..3ea343df0474c5 100644 --- a/test/bundling/fixtures/esbuild/package.json +++ b/test/bundling/fixtures/esbuild/package.json @@ -25,7 +25,7 @@ }, "devDependencies": { "concurrently": "7.4.0", - "playwright": "1.27.1", + "playwright": "1.28.1", "serve": "14.0.1" } } diff --git a/test/bundling/fixtures/gatsby/package.json b/test/bundling/fixtures/gatsby/package.json index 68e8156b9eefe3..b14d8d840b47a4 100644 --- a/test/bundling/fixtures/gatsby/package.json +++ b/test/bundling/fixtures/gatsby/package.json @@ -23,6 +23,6 @@ }, "devDependencies": { "concurrently": "7.4.0", - "playwright": "1.27.1" + "playwright": "1.28.1" } } diff --git a/test/bundling/fixtures/next-webpack4/package.json b/test/bundling/fixtures/next-webpack4/package.json index 2de8ad81d92b93..46b3ec8d5b90c4 100644 --- a/test/bundling/fixtures/next-webpack4/package.json +++ b/test/bundling/fixtures/next-webpack4/package.json @@ -23,6 +23,6 @@ }, "devDependencies": { "concurrently": "7.4.0", - "playwright": "1.27.1" + "playwright": "1.28.1" } } diff --git a/test/bundling/fixtures/next-webpack5/package.json b/test/bundling/fixtures/next-webpack5/package.json index dcc0496ce1196d..4dd12d5551ff4a 100644 --- a/test/bundling/fixtures/next-webpack5/package.json +++ b/test/bundling/fixtures/next-webpack5/package.json @@ -23,6 +23,6 @@ }, "devDependencies": { "concurrently": "7.4.0", - "playwright": "1.27.1" + "playwright": "1.28.1" } } diff --git a/test/bundling/fixtures/snowpack/package.json b/test/bundling/fixtures/snowpack/package.json index 961ad0883b1421..d63c9ff3e71a1e 100644 --- a/test/bundling/fixtures/snowpack/package.json +++ b/test/bundling/fixtures/snowpack/package.json @@ -24,7 +24,7 @@ }, "devDependencies": { "concurrently": "7.4.0", - "playwright": "1.27.1", + "playwright": "1.28.1", "serve": "14.0.1" } } diff --git a/test/bundling/fixtures/vite/package.json b/test/bundling/fixtures/vite/package.json index 3084534e637ea3..9262f992772da8 100644 --- a/test/bundling/fixtures/vite/package.json +++ b/test/bundling/fixtures/vite/package.json @@ -24,7 +24,7 @@ }, "devDependencies": { "concurrently": "7.4.0", - "playwright": "1.27.1", + "playwright": "1.28.1", "serve": "14.0.1" } } diff --git a/yarn.lock b/yarn.lock index 5d9e2aa05a33c7..87f9756f7b84fe 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3059,13 +3059,13 @@ dependencies: esquery "^1.0.1" -"@playwright/test@1.27.1": - version "1.27.1" - resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.27.1.tgz#9364d1e02021261211c8ff586d903faa79ce95c4" - integrity sha512-mrL2q0an/7tVqniQQF6RBL2saskjljXzqNcCOVMUjRIgE6Y38nCNaP+Dc2FBW06bcpD3tqIws/HT9qiMHbNU0A== +"@playwright/test@1.28.1": + version "1.28.1" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.28.1.tgz#e5be297e024a3256610cac2baaa9347fd57c7860" + integrity sha512-xN6spdqrNlwSn9KabIhqfZR7IWjPpFK1835tFNgjrlysaSezuX8PYUwaz38V/yI8TJLG9PkAMEXoHRXYXlpTPQ== dependencies: "@types/node" "*" - playwright-core "1.27.1" + playwright-core "1.28.1" "@polka/url@^1.0.0-next.20": version "1.0.0-next.21" @@ -12680,17 +12680,17 @@ platform@^1.3.3: resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== -playwright-core@1.27.1: - version "1.27.1" - resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.27.1.tgz#840ef662e55a3ed759d8b5d3d00a5f885a7184f4" - integrity sha512-9EmeXDncC2Pmp/z+teoVYlvmPWUC6ejSSYZUln7YaP89Z6lpAaiaAnqroUt/BoLo8tn7WYShcfaCh+xofZa44Q== +playwright-core@1.28.1: + version "1.28.1" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.28.1.tgz#8400be9f4a8d1c0489abdb9e75a4cc0ffc3c00cb" + integrity sha512-3PixLnGPno0E8rSBJjtwqTwJe3Yw72QwBBBxNoukIj3lEeBNXwbNiKrNuB1oyQgTBw5QHUhNO3SteEtHaMK6ag== -playwright@^1.27.1: - version "1.27.1" - resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.27.1.tgz#4eecac5899566c589d4220ca8acc16abe8a67450" - integrity sha512-xXYZ7m36yTtC+oFgqH0eTgullGztKSRMb4yuwLPl8IYSmgBM88QiB+3IWb1mRIC9/NNwcgbG0RwtFlg+EAFQHQ== +playwright@^1.28.1: + version "1.28.1" + resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.28.1.tgz#f23247f1de466ff73d7230d94df96271e5da6583" + integrity sha512-92Sz6XBlfHlb9tK5UCDzIFAuIkHHpemA9zwUaqvo+w7sFMSmVMGmvKcbptof/eJObq63PGnMhM75x7qxhTR78Q== dependencies: - playwright-core "1.27.1" + playwright-core "1.28.1" posix-character-classes@^0.1.0: version "0.1.1"