Skip to content

Commit ed7a560

Browse files
authored
chore: mark 1.32.2 (#22172)
1 parent b139ffc commit ed7a560

File tree

19 files changed

+89
-89
lines changed

19 files changed

+89
-89
lines changed

docs/src/ci.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
name: 'Playwright Tests'
177177
runs-on: ubuntu-latest
178178
container:
179-
image: mcr.microsoft.com/playwright:v1.32.1-focal
179+
image: mcr.microsoft.com/playwright:v1.32.2-focal
180180
steps:
181181
- uses: actions/checkout@v3
182182
- uses: actions/setup-node@v3
@@ -194,7 +194,7 @@ jobs:
194194
name: 'Playwright Tests'
195195
runs-on: ubuntu-latest
196196
container:
197-
image: mcr.microsoft.com/playwright:v1.32.1-focal
197+
image: mcr.microsoft.com/playwright:v1.32.2-focal
198198
steps:
199199
- uses: actions/checkout@v3
200200
- name: Set up Python
@@ -218,7 +218,7 @@ jobs:
218218
name: 'Playwright Tests'
219219
runs-on: ubuntu-latest
220220
container:
221-
image: mcr.microsoft.com/playwright:v1.32.1-focal
221+
image: mcr.microsoft.com/playwright:v1.32.2-focal
222222
steps:
223223
- uses: actions/checkout@v3
224224
- uses: actions/setup-java@v3
@@ -239,7 +239,7 @@ jobs:
239239
name: 'Playwright Tests'
240240
runs-on: ubuntu-latest
241241
container:
242-
image: mcr.microsoft.com/playwright:v1.32.1-focal
242+
image: mcr.microsoft.com/playwright:v1.32.2-focal
243243
steps:
244244
- uses: actions/checkout@v3
245245
- name: Setup dotnet
@@ -264,7 +264,7 @@ jobs:
264264
name: 'Playwright Tests - ${{ matrix.project }} - Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }}'
265265
runs-on: ubuntu-latest
266266
container:
267-
image: mcr.microsoft.com/playwright:v1.32.1-focal
267+
image: mcr.microsoft.com/playwright:v1.32.2-focal
268268
strategy:
269269
fail-fast: false
270270
matrix:
@@ -299,7 +299,7 @@ jobs:
299299
- deployment: Run_E2E_Tests
300300
pool:
301301
vmImage: ubuntu-20.04
302-
container: mcr.microsoft.com/playwright:v1.32.1-focal
302+
container: mcr.microsoft.com/playwright:v1.32.2-focal
303303
environment: testing
304304
strategy:
305305
runOnce:
@@ -325,7 +325,7 @@ jobs:
325325
- deployment: Run_E2E_Tests
326326
pool:
327327
vmImage: ubuntu-20.04
328-
container: mcr.microsoft.com/playwright:v1.32.1-focal
328+
container: mcr.microsoft.com/playwright:v1.32.2-focal
329329
environment: testing
330330
strategy:
331331
runOnce:
@@ -369,7 +369,7 @@ Running Playwright on CircleCI is very similar to running on GitHub Actions. In
369369
executors:
370370
pw-focal-development:
371371
docker:
372-
- image: mcr.microsoft.com/playwright:v1.32.1-focal
372+
- image: mcr.microsoft.com/playwright:v1.32.2-focal
373373
```
374374

375375
Note: When using the docker agent definition, you are specifying the resource class of where playwright runs to the 'medium' tier [here](https://circleci.com/docs/configuration-reference?#docker-execution-environment). The default behavior of Playwright is to set the number of workers to the detected core count (2 in the case of the medium tier). Overriding the number of workers to greater than this number will cause unnecessary timeouts and failures.
@@ -403,7 +403,7 @@ to run tests on Jenkins.
403403

404404
```groovy
405405
pipeline {
406-
agent { docker { image 'mcr.microsoft.com/playwright:v1.32.1-focal' } }
406+
agent { docker { image 'mcr.microsoft.com/playwright:v1.32.2-focal' } }
407407
stages {
408408
stage('e2e-tests') {
409409
steps {
@@ -421,7 +421,7 @@ pipeline {
421421
Bitbucket Pipelines can use public [Docker images as build environments](https://confluence.atlassian.com/bitbucket/use-docker-images-as-build-environments-792298897.html). To run Playwright tests on Bitbucket, use our public Docker image ([see Dockerfile](./docker.md)).
422422

423423
```yml
424-
image: mcr.microsoft.com/playwright:v1.32.1-focal
424+
image: mcr.microsoft.com/playwright:v1.32.2-focal
425425
```
426426

427427
### GitLab CI
@@ -434,7 +434,7 @@ stages:
434434
435435
tests:
436436
stage: test
437-
image: mcr.microsoft.com/playwright:v1.32.1-focal
437+
image: mcr.microsoft.com/playwright:v1.32.2-focal
438438
script:
439439
...
440440
```
@@ -450,7 +450,7 @@ stages:
450450
451451
tests:
452452
stage: test
453-
image: mcr.microsoft.com/playwright:v1.32.1-focal
453+
image: mcr.microsoft.com/playwright:v1.32.2-focal
454454
parallel: 7
455455
script:
456456
- npm ci
@@ -465,7 +465,7 @@ stages:
465465
466466
tests:
467467
stage: test
468-
image: mcr.microsoft.com/playwright:v1.32.1-focal
468+
image: mcr.microsoft.com/playwright:v1.32.2-focal
469469
parallel:
470470
matrix:
471471
- PROJECT: ['chromium', 'webkit']

docs/src/docker.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ This Docker image is intended to be used for testing and development purposes on
1818
### Pull the image
1919

2020
```bash js
21-
docker pull mcr.microsoft.com/playwright:v1.32.1-focal
21+
docker pull mcr.microsoft.com/playwright:v1.32.2-focal
2222
```
2323

2424
```bash python
25-
docker pull mcr.microsoft.com/playwright/python:v1.32.1-focal
25+
docker pull mcr.microsoft.com/playwright/python:v1.32.2-focal
2626
```
2727

2828
```bash csharp
29-
docker pull mcr.microsoft.com/playwright/dotnet:v1.32.1-focal
29+
docker pull mcr.microsoft.com/playwright/dotnet:v1.32.2-focal
3030
```
3131

3232
```bash java
33-
docker pull mcr.microsoft.com/playwright/java:v1.32.1-focal
33+
docker pull mcr.microsoft.com/playwright/java:v1.32.2-focal
3434
```
3535

3636
### Run the image
@@ -42,39 +42,39 @@ By default, the Docker image will use the `root` user to run the browsers. This
4242
On trusted websites, you can avoid creating a separate user and use root for it since you trust the code which will run on the browsers.
4343

4444
```bash js
45-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright:v1.32.1-focal /bin/bash
45+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright:v1.32.2-focal /bin/bash
4646
```
4747

4848
```bash python
49-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/python:v1.32.1-focal /bin/bash
49+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/python:v1.32.2-focal /bin/bash
5050
```
5151

5252
```bash csharp
53-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/dotnet:v1.32.1-focal /bin/bash
53+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/dotnet:v1.32.2-focal /bin/bash
5454
```
5555

5656
```bash java
57-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/java:v1.32.1-focal /bin/bash
57+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/java:v1.32.2-focal /bin/bash
5858
```
5959

6060
#### Crawling and scraping
6161

6262
On untrusted websites, it's recommended to use a separate user for launching the browsers in combination with the seccomp profile. Inside the container or if you are using the Docker image as a base image you have to use `adduser` for it.
6363

6464
```bash js
65-
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright:v1.32.1-focal /bin/bash
65+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright:v1.32.2-focal /bin/bash
6666
```
6767

6868
```bash python
69-
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/python:v1.32.1-focal /bin/bash
69+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/python:v1.32.2-focal /bin/bash
7070
```
7171

7272
```bash csharp
73-
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/dotnet:v1.32.1-focal /bin/bash
73+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/dotnet:v1.32.2-focal /bin/bash
7474
```
7575

7676
```bash java
77-
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/java:v1.32.1-focal /bin/bash
77+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/java:v1.32.2-focal /bin/bash
7878
```
7979

8080
[`seccomp_profile.json`](https://github.com/microsoft/playwright/blob/main/utils/docker/seccomp_profile.json) is needed to run Chromium with sandbox. This is a [default Docker seccomp profile](https://github.com/docker/engine/blob/d0d99b04cf6e00ed3fc27e81fc3d94e7eda70af3/profiles/seccomp/default.json) with extra user namespace cloning permissions:

docs/src/release-notes-js.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ This version was also tested against the following stable channels:
474474
475475
### Announcements
476476
477-
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright:v1.32.1-jammy`.
477+
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright:v1.32.2-jammy`.
478478
* 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
479479
* 🪦 This is the last release with Node.js 12 support, we recommend upgrading to Node.js LTS (16).
480480
* ⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
@@ -725,7 +725,7 @@ Read more about [component testing with Playwright](./test-components).
725725
}
726726
});
727727
```
728-
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image `mcr.microsoft.com/playwright:v1.32.1-jammy`.
728+
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image `mcr.microsoft.com/playwright:v1.32.2-jammy`.
729729
730730
### ⚠️ Breaking Changes ⚠️
731731

docs/src/release-notes-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ This version was also tested against the following stable channels:
258258

259259
### Announcements
260260

261-
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright/python:v1.32.1-jammy`.
261+
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright/python:v1.32.2-jammy`.
262262
* 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
263263
* ⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
264264

docs/src/test-snapshots-js.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The snapshot name `example-test-1-chromium-darwin.png` consists of a few parts:
4343
If you are not on the same operating system as your CI system, you can use Docker to generate/update the screenshots:
4444

4545
```bash
46-
docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.32.1-focal /bin/bash
46+
docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.32.2-focal /bin/bash
4747
npm install
4848
npx playwright test --update-snapshots
4949
```

0 commit comments

Comments
 (0)