Skip to content

Commit b5fe47b

Browse files
Merge changes published in the Gutenberg plugin "release/16.8" branch
1 parent cc35f51 commit b5fe47b

File tree

1,012 files changed

+19053
-9126
lines changed

Some content is hidden

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

1,012 files changed

+19053
-9126
lines changed

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ const restrictedImports = [
5151
message:
5252
'Please use Reakit API through `@wordpress/components` instead.',
5353
},
54+
{
55+
name: '@ariakit/react',
56+
message:
57+
'Please use Ariakit API through `@wordpress/components` instead.',
58+
},
5459
{
5560
name: 'redux',
5661
importNames: [ 'combineReducers' ],

.git-blame-ignore-revs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ f63053cace3c02e284f00918e1854284c85b9132
66

77
# Prettier upgrade to 2.6.2.
88
33d84b036592a5bf31af05b7710f3b2b14163dc4
9+
10+
# Prettier upgrade to 2.8.5.
11+
c56e8a1910ed74f405b74bbb12fe81dea974e5c3
12+
13+
# Prettier upgrade to 3.0.3.
14+
0bee15148fe4330c20cf372cb46a33693e45cb5f

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
/packages/block-library/src/comment-template @michalczaplinski
2323
/packages/block-library/src/comments @michalczaplinski
2424
/packages/block-library/src/table-of-contents @ZebulanStanphill
25+
/packages/block-library/src/image @artemiomorales @michalczaplinski
2526

2627
# Duotone
2728
/lib/block-supports/duotone.php @ajlende

.github/workflows/build-plugin-zip.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
steps:
7171
- name: Checkout code
72-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
72+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
7373
with:
7474
token: ${{ secrets.GUTENBERG_TOKEN }}
7575
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
@@ -165,7 +165,7 @@ jobs:
165165

166166
steps:
167167
- name: Checkout code
168-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
168+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
169169
with:
170170
ref: ${{ needs.bump-version.outputs.release_branch || github.ref }}
171171
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
@@ -221,7 +221,7 @@ jobs:
221221
222222
steps:
223223
- name: Checkout code
224-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
224+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
225225
with:
226226
fetch-depth: 2
227227
ref: ${{ needs.bump-version.outputs.release_branch }}
@@ -310,14 +310,14 @@ jobs:
310310
if: ${{ endsWith( needs.bump-version.outputs.new_version, '-rc.1' ) }}
311311
steps:
312312
- name: Checkout (for CLI)
313-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
313+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
314314
with:
315315
path: main
316316
ref: trunk
317317
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
318318

319319
- name: Checkout (for publishing)
320-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
320+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
321321
with:
322322
path: publish
323323
# Later, we switch this branch in the script that publishes packages.

.github/workflows/bundle-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838

3939
steps:
40-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
40+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
4141
with:
4242
fetch-depth: 1
4343
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}

.github/workflows/check-components-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: 'Get PR commit count'
2121
run: echo "PR_COMMIT_COUNT=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> "${GITHUB_ENV}"
2222
- name: Checkout code
23-
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
23+
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
2424
with:
2525
ref: ${{ github.event.pull_request.head.ref }}
2626
repository: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/create-block.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
os: [macos-latest, ubuntu-latest, windows-latest]
2525

2626
steps:
27-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
27+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
2828
with:
2929
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
3030

.github/workflows/end2end-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
totalParts: [3]
2828

2929
steps:
30-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
30+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
3131
with:
3232
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
3333

@@ -73,7 +73,7 @@ jobs:
7373
totalParts: [4]
7474

7575
steps:
76-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
76+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
7777
with:
7878
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
7979

@@ -119,7 +119,7 @@ jobs:
119119
steps:
120120
# Checkout defaults to using the branch which triggered the event, which
121121
# isn't necessarily `trunk` (e.g. in the case of a merge).
122-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
122+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
123123
with:
124124
ref: trunk
125125
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}

.github/workflows/enforce-pr-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
with:
1313
mode: exactly
1414
count: 1
15-
labels: '[Type] Accessibility (a11y), [Type] Automated Testing, [Type] Breaking Change, [Type] Bug, [Type] Build Tooling, [Type] Code Quality, [Type] Copy, [Type] Developer Documentation, [Type] Enhancement, [Type] Experimental, [Type] Feature, [Type] New API, [Type] Task, [Type] Performance, [Type] Project Management, [Type] Regression, [Type] Security, [Type] WP Core Ticket, Backport from WordPress Core'
15+
labels: '[Type] Automated Testing, [Type] Breaking Change, [Type] Bug, [Type] Build Tooling, [Type] Code Quality, [Type] Copy, [Type] Developer Documentation, [Type] Enhancement, [Type] Experimental, [Type] Feature, [Type] New API, [Type] Task, [Type] Performance, [Type] Project Management, [Type] Regression, [Type] Security, [Type] WP Core Ticket, Backport from WordPress Core'
1616
add_comment: true
1717
message: "**Warning: Type of PR label error**\n\n To merge this PR, it requires {{ errorString }} {{ count }} label indicating the type of PR. Other labels are optional and not being checked here. \n- **Type-related labels to choose from**: {{ provided }}.\n- **Labels found**: {{ applied }}.\n\nRead more about [Type labels in Gutenberg](https://github.com/WordPress/gutenberg/labels?q=type)."
1818
exit_type: failure

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: 'Validation'
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
9+
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
1010
with:
1111
show-progress: ${{ runner.debug == '1' && 'true' || 'false' }}
1212
- uses: gradle/wrapper-validation-action@v1

0 commit comments

Comments
 (0)