Skip to content

Commit 0baabb8

Browse files
Merge changes published in the Gutenberg plugin "release/7.8" branch
1 parent 99595af commit 0baabb8

946 files changed

Lines changed: 36061 additions & 11554 deletions

File tree

Some content is hidden

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

.github/CODEOWNERS

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
/packages/block-editor @youknowriad @ellatrix
2222
/packages/block-serialization-spec-parser @dmsnell
2323
/packages/block-serialization-default-parser @dmsnell
24-
/packages/blocks @youknowriad @ellatrix
24+
/packages/blocks @youknowriad @ellatrix @aduth
2525
/packages/edit-post
2626
/packages/editor
2727
/packages/list-reusable-blocks @youknowriad @noisysocks
28-
/packages/shortcode @aduth
28+
/packages/shortcode
2929

3030
# Widgets
3131
/packages/edit-widgets @youknowriad
@@ -63,18 +63,18 @@
6363
# Utilities
6464
/packages/a11y @youknowriad @aduth
6565
/packages/blob @aduth
66-
/packages/date @aduth
66+
/packages/date
6767
/packages/deprecated @aduth
6868
/packages/dom @ellatrix
6969
/packages/dom-ready @aduth
70-
/packages/escape-html @aduth
71-
/packages/html-entities @aduth
70+
/packages/escape-html
71+
/packages/html-entities
7272
/packages/i18n @swissspidy
7373
/packages/is-shallow-equal @aduth
7474
/packages/keycodes @talldan @ellatrix
7575
/packages/priority-queue @youknowriad @aduth
7676
/packages/token-list @aduth
77-
/packages/url @talldan
77+
/packages/url @talldan @aduth
7878
/packages/wordcount @aduth
7979

8080
# Extensibility
@@ -86,6 +86,9 @@
8686
/packages/rich-text @ellatrix @jorgefilipecosta @daniloercoli @sergioestevao @etoledom
8787
/packages/block-editor/src/components/rich-text @ellatrix @jorgefilipecosta @daniloercoli @sergioestevao @etoledom
8888

89+
# wp-env
90+
/packages/env @epiqueras @noahtallen @noisysocks
91+
8992
# PHP
9093
/lib @timothybjacobs
9194

.github/workflows/bundle-size.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Compressed Size
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2-beta
12+
with:
13+
fetch-depth: 1
14+
- uses: preactjs/compressed-size-action@v1
15+
with:
16+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
17+
pattern: "{build/**/*.js,build/**/*.css}"

.travis.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@ branches:
1919
only:
2020
- master
2121
- rnmobile/master
22-
- rnmobile/releases
22+
- /rnmobile\/release.*/
2323
- /wp\/.*/
2424

2525
env:
2626
global:
27+
- PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
2728
- WP_DEVELOP_DIR: ./wordpress
2829
- LOCAL_SCRIPT_DEBUG: false
2930
- INSTALL_COMPOSER: false
@@ -161,49 +162,49 @@ jobs:
161162
- npm run test-php && npm run test-unit-php-multisite
162163

163164
- name: E2E tests (Admin) (1/4)
164-
env: FORCE_REDUCED_MOTION=true
165+
env: FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
165166
script:
166167
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
167168
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 0' < ~/.jest-e2e-tests )
168169

169170
- name: E2E tests (Admin) (2/4)
170-
env: FORCE_REDUCED_MOTION=true
171+
env: FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
171172
script:
172173
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
173174
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 1' < ~/.jest-e2e-tests )
174175

175176
- name: E2E tests (Admin) (3/4)
176-
env: FORCE_REDUCED_MOTION=true
177+
env: FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
177178
script:
178179
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
179180
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 2' < ~/.jest-e2e-tests )
180181

181182
- name: E2E tests (Admin) (4/4)
182-
env: FORCE_REDUCED_MOTION=true
183+
env: FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
183184
script:
184185
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
185186
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 3' < ~/.jest-e2e-tests )
186187

187188
- name: E2E tests (Author) (1/4)
188-
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true
189+
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
189190
script:
190191
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
191192
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 0' < ~/.jest-e2e-tests )
192193

193194
- name: E2E tests (Author) (2/4)
194-
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true
195+
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
195196
script:
196197
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
197198
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 1' < ~/.jest-e2e-tests )
198199

199200
- name: E2E tests (Author) (3/4)
200-
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true
201+
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
201202
script:
202203
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
203204
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 2' < ~/.jest-e2e-tests )
204205

205206
- name: E2E tests (Author) (4/4)
206-
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true
207+
env: E2E_ROLE=author FORCE_REDUCED_MOTION=true PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
207208
script:
208209
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --listTests > ~/.jest-e2e-tests
209210
- $( npm bin )/wp-scripts test-e2e --config=./packages/e2e-tests/jest.config.js --cacheDirectory="$HOME/.jest-cache" --runTestsByPath $( awk 'NR % 4 == 3' < ~/.jest-e2e-tests )

CONTRIBUTORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,5 @@ This list is manually curated to include valuable contributions by volunteers th
143143
| @SergioEstevao | |
144144
| @mzorz | @mzorz |
145145
| @akkspros | @passoniate |
146+
| @anthonyledesma | @paranoia1906 |
147+
| @richtabor | @richtabor |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The block editor first became available in December 2018, and we're still hard a
1414

1515
## Getting Started
1616

17-
Get hands on: check out the [Block Editor live demo](https://wordpress.org/gutenberg/) to play with a test instance of the editor.
17+
Get hands on: check out the [block editor live demo](https://wordpress.org/gutenberg/) to play with a test instance of the editor.
1818

1919
### Using Gutenberg
2020

bin/build-plugin-zip.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,7 @@ build_files=$(ls build/*/*.{js,css,asset.php} build/block-library/blocks/*.php b
115115
status "Creating archive... 🎁"
116116
zip -r gutenberg.zip \
117117
gutenberg.php \
118-
lib/*.php \
119-
lib/demo-block-templates/*.html \
118+
lib \
120119
packages/block-serialization-default-parser/*.php \
121120
post-content.php \
122121
$vendor_scripts \

0 commit comments

Comments
 (0)