Skip to content

Commit 878e4d1

Browse files
authored
Merge pull request #861 from Automattic/release/1.11.1
2 parents 31d142d + 88840bd commit 878e4d1

23 files changed

Lines changed: 2103 additions & 721 deletions

.distignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/.phpunit.cache/
88
/assets/
99
/bin/
10+
/docs/
1011
/features/
1112
/node_modules/
1213
/src/
@@ -20,6 +21,7 @@
2021
.eslintrc
2122
.gitattributes
2223
.gitignore
24+
.npmrc
2325
.nvmrc
2426
.phpcs.xml.dist
2527
.stylelintrc
@@ -41,6 +43,7 @@ package-lock.json
4143
CHANGELOG.md
4244
CONTRIBUTING.md
4345
HACKING.md
46+
TESTING_CHECKLIST.md
4447

4548
# Test configuration
4649
phpunit.xml.dist

.github/workflows/behat.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828
with:
2929
persist-credentials: false
3030

3131
- name: Setup Node.js
32-
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
32+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
3333
with:
3434
node-version: "20"
3535
cache: "npm"

.github/workflows/cs-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Setup PHP
31-
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0
31+
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # 2.37.0
3232
with:
3333
php-version: "7.4"
3434
coverage: none
@@ -45,7 +45,7 @@ jobs:
4545
uses: korelstar/xmllint-problem-matcher@1bd292d642ddf3d369d02aaa8b262834d61198c0 # v1.2.0
4646

4747
- name: Checkout code
48-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
48+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4949
with:
5050
persist-credentials: false
5151

@@ -57,7 +57,7 @@ jobs:
5757
# Install dependencies and handle caching in one go.
5858
# @link https://github.com/marketplace/actions/install-composer-dependencies
5959
- name: Install Composer dependencies
60-
uses: ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520 # 3.1.1
60+
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
6161

6262
# Lint PHP.
6363
- name: Lint PHP against parse errors

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727
with:
2828
persist-credentials: false
2929

3030
- name: Set up Node.js
31-
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
31+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
3232
with:
3333
node-version: '20'
3434
# Disabled to prevent cache poisoning in release workflows
@@ -50,7 +50,7 @@ jobs:
5050
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
5151

5252
- name: Upload release asset
53-
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
53+
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
5454
with:
5555
files: ${{ github.workspace }}/${{ github.event.repository.name }}.zip
5656
env:

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333

3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
36+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737
with:
3838
persist-credentials: false
3939

4040
- name: Install wordpress environment
4141
run: npm install -g @wordpress/env
4242

4343
- name: Setup PHP ${{ matrix.php }}
44-
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0
44+
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # 2.37.0
4545
with:
4646
php-version: ${{ matrix.php }}
4747
extensions: ${{ matrix.extensions }}
@@ -56,7 +56,7 @@ jobs:
5656
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
5757

5858
- name: Install Composer dependencies
59-
uses: ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520 # 3.1.1
59+
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
6060
with:
6161
composer-options: "${{ matrix.composer-options }}"
6262

.github/workflows/js-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
22+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2323
with:
2424
persist-credentials: false
2525

2626
- name: Setup Node.js
27-
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
27+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2828
with:
2929
node-version: "20"
3030
cache: "npm"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525

2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
28+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929
with:
3030
persist-credentials: false
3131

3232
- name: Install node
33-
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
33+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
3434
with:
3535
node-version: "20"
3636

.github/workflows/unit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
27+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828
with:
2929
persist-credentials: false
3030

3131
- name: Setup PHP ${{ matrix.php }}
32-
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0
32+
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # 2.37.0
3333
with:
3434
php-version: ${{ matrix.php }}
3535
tools: composer
@@ -42,7 +42,7 @@ jobs:
4242
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
4343

4444
- name: Install Composer dependencies
45-
uses: ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520 # 3.1.1
45+
uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
4646

4747
- name: Run unit tests
4848
run: composer test:unit

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules/
22
vendor/
3+
composer.lock
34
.phpunit.cache/
45

56
# Build output (generated by npm run build)

0 commit comments

Comments
 (0)