Skip to content

Commit c3e1c38

Browse files
Merge changes published in the Gutenberg plugin "release/20.5" branch
1 parent d6b0b20 commit c3e1c38

File tree

144 files changed

+2334
-1250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2334
-1250
lines changed

.github/setup-node/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ runs:
2525

2626
- name: Cache node_modules
2727
id: cache-node_modules
28-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
28+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
2929
with:
3030
path: '**/node_modules'
3131
key: node_modules-${{ runner.os }}-${{ runner.arch }}-${{ steps.node-version.outputs.NODE_VERSION }}-${{ hashFiles('package-lock.json') }}

.github/workflows/rnmobile-android-runner.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: ./.github/setup-node
3939

4040
- name: Restore tests setup cache
41-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
41+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
4242
with:
4343
path: |
4444
~/.appium
@@ -53,7 +53,7 @@ jobs:
5353
# AVD cache disabled as it caused emulator termination to hang indefinitely.
5454
# https://github.com/ReactiveCircus/android-emulator-runner/issues/385
5555
# - name: AVD cache
56-
# uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
56+
# uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
5757
# id: avd-cache
5858
# with:
5959
# path: |

.github/workflows/rnmobile-ios-runner.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
uses: ./.github/setup-node
4444

4545
- name: Restore tests setup cache
46-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
46+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
4747
with:
4848
path: |
4949
~/.appium
@@ -56,15 +56,15 @@ jobs:
5656
run: find package-lock.json packages/react-native-editor/ios packages/react-native-aztec/ios packages/react-native-bridge/ios -type f -print0 | sort -z | xargs -0 shasum | tee ios-checksums.txt
5757

5858
- name: Restore build cache
59-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
59+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6060
with:
6161
path: |
6262
packages/react-native-editor/ios/build/GutenbergDemo/Build/Products/Release-iphonesimulator/GutenbergDemo.app
6363
packages/react-native-editor/ios/build/WDA
6464
key: ${{ runner.os }}-ios-build-${{ matrix.xcode }}-${{ matrix.device }}-${{ hashFiles('ios-checksums.txt') }}
6565

6666
- name: Restore pods cache
67-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
67+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
6868
with:
6969
path: |
7070
packages/react-native-editor/ios/Pods

.github/workflows/unit-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ jobs:
201201
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
202202
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
203203
- name: Install Composer dependencies
204-
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # v3.0.0
204+
uses: ramsey/composer-install@a2636af0004d1c0499ffca16ac0b4cc94df70565 # v3.1.0
205205
with:
206206
custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F")
207207

@@ -296,15 +296,15 @@ jobs:
296296
run: echo "date=$(/bin/date -u --date='last Mon' "+%F")" >> $GITHUB_OUTPUT
297297

298298
- name: Cache PHPCS scan cache
299-
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
299+
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2
300300
with:
301301
path: .cache/phpcs.json
302302
key: ${{ runner.os }}-date-${{ steps.get-date.outputs.date }}-phpcs-cache-${{ hashFiles('**/composer.json', 'phpcs.xml.dist') }}
303303

304304
# Since Composer dependencies are installed using `composer update` and no lock file is in version control,
305305
# passing a custom cache suffix ensures that the cache is flushed at least once per week.
306306
- name: Install Composer dependencies
307-
uses: ramsey/composer-install@57532f8be5bda426838819c5ee9afb8af389d51a # v3.0.0
307+
uses: ramsey/composer-install@a2636af0004d1c0499ffca16ac0b4cc94df70565 # v3.1.0
308308
with:
309309
custom-cache-suffix: ${{ steps.get-date.outputs.date }}
310310

backport-changelog/6.8/8353.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
https://github.com/WordPress/wordpress-develop/pull/8353
2+
3+
* https://github.com/WordPress/gutenberg/pull/68210

backport-changelog/6.8/8372.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
https://github.com/WordPress/wordpress-develop/pull/8372
2+
3+
* https://github.com/WordPress/gutenberg/pull/69271

backport-changelog/6.8/8441.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
https://github.com/WordPress/wordpress-develop/pull/8441
2+
3+
* https://github.com/WordPress/gutenberg/pull/69400
4+
* https://github.com/WordPress/gutenberg/pull/69454

backport-changelog/6.8/8475.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
https://github.com/WordPress/wordpress-develop/pull/8475
2+
3+
* https://github.com/WordPress/gutenberg/pull/69514

backport-changelog/6.8/8480.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
https://github.com/WordPress/wordpress-develop/pull/8480
2+
3+
* https://github.com/WordPress/gutenberg/pull/69417
File renamed without changes.

0 commit comments

Comments
 (0)