Skip to content

Commit 46fb26d

Browse files
authored
chore: mark v1.26.1 (#17606)
1 parent 4b22c3f commit 46fb26d

File tree

18 files changed

+84
-84
lines changed

18 files changed

+84
-84
lines changed

docs/src/ci.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ steps:
176176
name: 'Playwright Tests'
177177
runs-on: ubuntu-latest
178178
container:
179-
image: mcr.microsoft.com/playwright:v1.26.0-focal
179+
image: mcr.microsoft.com/playwright:v1.26.1-focal
180180
steps:
181181
- uses: actions/checkout@v3
182182
- uses: actions/setup-node@v2
@@ -194,7 +194,7 @@ steps:
194194
name: 'Playwright Tests'
195195
runs-on: ubuntu-latest
196196
container:
197-
image: mcr.microsoft.com/playwright:v1.26.0-focal
197+
image: mcr.microsoft.com/playwright:v1.26.1-focal
198198
steps:
199199
- uses: actions/checkout@v3
200200
- name: Set up Python
@@ -218,7 +218,7 @@ steps:
218218
name: 'Playwright Tests'
219219
runs-on: ubuntu-latest
220220
container:
221-
image: mcr.microsoft.com/playwright:v1.26.0-focal
221+
image: mcr.microsoft.com/playwright:v1.26.1-focal
222222
steps:
223223
- uses: actions/checkout@v3
224224
- uses: actions/setup-java@v3
@@ -239,7 +239,7 @@ steps:
239239
name: 'Playwright Tests'
240240
runs-on: ubuntu-latest
241241
container:
242-
image: mcr.microsoft.com/playwright:v1.26.0-focal
242+
image: mcr.microsoft.com/playwright:v1.26.1-focal
243243
steps:
244244
- uses: actions/checkout@v3
245245
- name: Setup dotnet
@@ -264,7 +264,7 @@ steps:
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.26.0-focal
267+
image: mcr.microsoft.com/playwright:v1.26.1-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.26.0-focal
302+
container: mcr.microsoft.com/playwright:v1.26.1-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.26.0-focal
328+
container: mcr.microsoft.com/playwright:v1.26.1-focal
329329
environment: testing
330330
strategy:
331331
runOnce:
@@ -368,7 +368,7 @@ Running Playwright on Circle CI is very similar to running on Github Actions. In
368368
executors:
369369
pw-focal-development:
370370
docker:
371-
- image: mcr.microsoft.com/playwright:v1.26.0-focal
371+
- image: mcr.microsoft.com/playwright:v1.26.1-focal
372372
environment:
373373
NODE_ENV: development # Needed if playwright is in `devDependencies`
374374
```
@@ -404,7 +404,7 @@ to run tests on Jenkins.
404404

405405
```groovy
406406
pipeline {
407-
agent { docker { image 'mcr.microsoft.com/playwright:v1.26.0-focal' } }
407+
agent { docker { image 'mcr.microsoft.com/playwright:v1.26.1-focal' } }
408408
stages {
409409
stage('e2e-tests') {
410410
steps {
@@ -422,7 +422,7 @@ pipeline {
422422
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)).
423423

424424
```yml
425-
image: mcr.microsoft.com/playwright:v1.26.0-focal
425+
image: mcr.microsoft.com/playwright:v1.26.1-focal
426426
```
427427

428428
### GitLab CI
@@ -435,7 +435,7 @@ stages:
435435
436436
tests:
437437
stage: test
438-
image: mcr.microsoft.com/playwright:v1.26.0-focal
438+
image: mcr.microsoft.com/playwright:v1.26.1-focal
439439
script:
440440
...
441441
```
@@ -451,7 +451,7 @@ stages:
451451
452452
tests:
453453
stage: test
454-
image: mcr.microsoft.com/playwright:v1.26.0-focal
454+
image: mcr.microsoft.com/playwright:v1.26.1-focal
455455
parallel: 7
456456
script:
457457
- npm ci
@@ -466,7 +466,7 @@ stages:
466466
467467
tests:
468468
stage: test
469-
image: mcr.microsoft.com/playwright:v1.26.0-focal
469+
image: mcr.microsoft.com/playwright:v1.26.1-focal
470470
parallel:
471471
matrix:
472472
- PROJECT: ['chromium', 'webkit']

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.26.0-focal
17+
docker pull mcr.microsoft.com/playwright:v1.26.1-focal
1818
```
1919

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

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

2828
```bash java
29-
docker pull mcr.microsoft.com/playwright/java:v1.26.0-focal
29+
docker pull mcr.microsoft.com/playwright/java:v1.26.1-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.26.0-focal /bin/bash
41+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright:v1.26.1-focal /bin/bash
4242
```
4343

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

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

5252
```bash java
53-
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/java:v1.26.0-focal /bin/bash
53+
docker run -it --rm --ipc=host mcr.microsoft.com/playwright/java:v1.26.1-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.26.0-focal /bin/bash
61+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright:v1.26.1-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.26.0-focal /bin/bash
65+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/python:v1.26.1-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.26.0-focal /bin/bash
69+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/dotnet:v1.26.1-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.26.0-focal /bin/bash
73+
docker run -it --rm --ipc=host --user pwuser --security-opt seccomp=seccomp_profile.json mcr.microsoft.com/playwright/java:v1.26.1-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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ This version was also tested against the following stable channels:
8181

8282
### Announcements
8383

84-
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright:v1.26.0-jammy`.
84+
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright:v1.26.1-jammy`.
8585
* 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
8686
* 🪦 This is the last release with Node.js 12 support, we recommend upgrading to Node.js LTS (16).
8787
* ⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
@@ -331,7 +331,7 @@ Read more about [component testing with Playwright](./test-components).
331331
}
332332
});
333333
```
334-
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image `mcr.microsoft.com/playwright:v1.26.0-jammy`.
334+
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64. We also publish new docker image `mcr.microsoft.com/playwright:v1.26.1-jammy`.
335335

336336
### ⚠️ Breaking Changes ⚠️
337337

docs/src/release-notes-python.md

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

4949
### Announcements
5050

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

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.26.0-focal /bin/bash
59+
docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.26.1-focal /bin/bash
6060
npm install
6161
npx playwright test --update-snapshots
6262
```

0 commit comments

Comments
 (0)