Skip to content

Commit 56e04df

Browse files
authored
chore: mark v1.23.2 (#15463)
1 parent a2acf76 commit 56e04df

File tree

16 files changed

+69
-69
lines changed

16 files changed

+69
-69
lines changed

docs/src/ci.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Alternatively, you can use [Command line tools](./cli.md#install-system-dependen
143143
pool:
144144
vmImage: 'ubuntu-20.04'
145145
146-
container: mcr.microsoft.com/playwright:v1.23.1-focal
146+
container: mcr.microsoft.com/playwright:v1.23.2-focal
147147
148148
steps:
149149
...
@@ -157,7 +157,7 @@ Running Playwright on CircleCI requires the following steps:
157157

158158
```yml
159159
docker:
160-
- image: mcr.microsoft.com/playwright:v1.23.1-focal
160+
- image: mcr.microsoft.com/playwright:v1.23.2-focal
161161
environment:
162162
NODE_ENV: development # Needed if playwright is in `devDependencies`
163163
```
@@ -179,7 +179,7 @@ to run tests on Jenkins.
179179

180180
```groovy
181181
pipeline {
182-
agent { docker { image 'mcr.microsoft.com/playwright:v1.23.1-focal' } }
182+
agent { docker { image 'mcr.microsoft.com/playwright:v1.23.2-focal' } }
183183
stages {
184184
stage('e2e-tests') {
185185
steps {
@@ -196,7 +196,7 @@ pipeline {
196196
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)).
197197

198198
```yml
199-
image: mcr.microsoft.com/playwright:v1.23.1-focal
199+
image: mcr.microsoft.com/playwright:v1.23.2-focal
200200
```
201201

202202
### GitLab CI
@@ -209,7 +209,7 @@ stages:
209209
210210
tests:
211211
stage: test
212-
image: mcr.microsoft.com/playwright:v1.23.1-focal
212+
image: mcr.microsoft.com/playwright:v1.23.2-focal
213213
script:
214214
...
215215
```

docs/src/docker.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ This image is published on [Docker Hub].
1414
### Pull the image
1515

1616
```bash js
17-
docker pull mcr.microsoft.com/playwright:v1.23.1-focal
17+
docker pull mcr.microsoft.com/playwright:v1.23.2-focal
1818
```
1919

2020
```bash python
21-
docker pull mcr.microsoft.com/playwright/python:v1.23.1-focal
21+
docker pull mcr.microsoft.com/playwright/python:v1.23.2-focal
2222
```
2323

2424
```bash csharp
25-
docker pull mcr.microsoft.com/playwright/dotnet:v1.23.1-focal
25+
docker pull mcr.microsoft.com/playwright/dotnet:v1.23.2-focal
2626
```
2727

2828
```bash java
29-
docker pull mcr.microsoft.com/playwright/java:v1.23.1-focal
29+
docker pull mcr.microsoft.com/playwright/java:v1.23.2-focal
3030
```
3131

3232
### Run the image
@@ -38,39 +38,39 @@ By default, the Docker image will use the `root` user to run the browsers. This
3838
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.
3939

4040
```bash js
41-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright:v1.23.1-focal /bin/bash
41+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright:v1.23.2-focal /bin/bash
4242
```
4343

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

4848
```bash csharp
49-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/dotnet:v1.23.1-focal /bin/bash
49+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/dotnet:v1.23.2-focal /bin/bash
5050
```
5151

5252
```bash java
53-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/java:v1.23.1-focal /bin/bash
53+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/java:v1.23.2-focal /bin/bash
5454
```
5555

5656
#### Crawling and scraping
5757

5858
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.
5959

6060
```bash js
61-
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright:v1.23.1-focal /bin/bash
61+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright:v1.23.2-focal /bin/bash
6262
```
6363

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

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

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

7676
[`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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Read more about [component testing with Playwright](./test-components).
106106
}
107107
});
108108
```
109-
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image `mcr.microsoft.com/playwright:v1.23.1-jammy`.
109+
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image `mcr.microsoft.com/playwright:v1.23.2-jammy`.
110110

111111
### ⚠️ Breaking Changes ⚠️
112112

docs/src/test-snapshots-js.md

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

5858
```bash
59-
docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.23.1-focal /bin/bash
59+
docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.23.2-focal /bin/bash
6060
npm install
6161
npx playwright test --update-snapshots
6262
```

package-lock.json

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "playwright-internal",
33
"private": true,
4-
"version": "1.23.1",
4+
"version": "1.23.2",
55
"description": "A high-level API to automate web browsers",
66
"repository": "github:Microsoft/playwright",
77
"homepage": "https://playwright.dev",

packages/playwright-chromium/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playwright-chromium",
3-
"version": "1.23.1",
3+
"version": "1.23.2",
44
"description": "A high-level API to automate Chromium",
55
"repository": "github:Microsoft/playwright",
66
"homepage": "https://playwright.dev",
@@ -27,6 +27,6 @@
2727
"install": "node install.js"
2828
},
2929
"dependencies": {
30-
"playwright-core": "1.23.1"
30+
"playwright-core": "1.23.2"
3131
}
3232
}

packages/playwright-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playwright-core",
3-
"version": "1.23.1",
3+
"version": "1.23.2",
44
"description": "A high-level API to automate web browsers",
55
"repository": "github:Microsoft/playwright",
66
"homepage": "https://playwright.dev",

0 commit comments

Comments
 (0)