Skip to content

Commit abdfd99

Browse files
committed
Merge branch 'master' into gloria
2 parents a444664 + 45a8182 commit abdfd99

File tree

357 files changed

+5677
-3396
lines changed

Some content is hidden

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

357 files changed

+5677
-3396
lines changed

.circleci/template.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,22 @@ commands:
100100
echo export CKE5_COMMIT_SHA1=$CIRCLE_SHA1 >> $BASH_ENV
101101
102102
jobs:
103+
cke5_manual:
104+
machine: true
105+
resource_class: large
106+
steps:
107+
- checkout_command
108+
- halt_if_short_flow
109+
- bootstrap_repository_command
110+
- prepare_environment_command
111+
- install_newest_emoji
112+
- run:
113+
name: Prepare DLL builds in CKEditor 5
114+
command: yarn run dll:build
115+
- run:
116+
name: Verify CKEditor 5 manual tests
117+
command: bash scripts/check-manual-tests.sh -r ckeditor5 -f ckeditor5
118+
103119
cke5_validators:
104120
machine: true
105121
resource_class: medium
@@ -203,6 +219,24 @@ jobs:
203219
name: Trigger the Uber CI
204220
command: yarn ckeditor5-dev-ci-trigger-circle-build
205221

222+
release_prepare:
223+
machine: true
224+
resource_class: large
225+
steps:
226+
- checkout_command
227+
- halt_if_short_flow
228+
- bootstrap_repository_command
229+
- prepare_environment_command
230+
- run:
231+
name: Check if packages are ready to be released
232+
command: npm run release:prepare-packages -- --compile-only --verbose
233+
- run:
234+
name: Lint generated packages
235+
command: yarn run release:lint-packages
236+
- run:
237+
name: Check dependencies
238+
command: yarn run check-dependencies
239+
206240
notify_ci_failure:
207241
machine: true
208242
resource_class: medium
@@ -262,12 +296,24 @@ workflows:
262296
ignore:
263297
- stable
264298
- cke5_validators
299+
- cke5_manual:
300+
filters:
301+
branches:
302+
ignore:
303+
- stable
304+
- release_prepare:
305+
filters:
306+
branches:
307+
ignore:
308+
- stable
265309
- cke5_trigger_uber_ci:
266310
requires:
267311
- cke5_tests_framework
268312
- cke5_tests_features_batch_n
269313
- cke5_coverage
270314
- cke5_validators
315+
- cke5_manual
316+
- release_prepare
271317
filters:
272318
branches:
273319
only:
@@ -277,6 +323,8 @@ workflows:
277323
- cke5_tests_framework
278324
- cke5_tests_features_batch_n
279325
- cke5_validators
326+
- cke5_manual
327+
- release_prepare
280328
filters:
281329
branches:
282330
only:
@@ -295,6 +343,8 @@ workflows:
295343
- cke5_tests_framework
296344
- cke5_tests_features_batch_n
297345
- cke5_validators
346+
- cke5_manual
347+
- release_prepare
298348
- notify_ci_failure:
299349
hideAuthor: "true"
300350
filters:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A long-requested feature has finally arrived with the [introduction of full-scre
2323

2424
#### Improved linking experience
2525

26-
Linking in CKEditor 5 has been significantly [upgraded with a redesigned user interface](https://ckeditor.com/docs/ckeditor5/latest/features/link.html), making adding and editing links more intuitive. Users can now easily link to bookmarks within the document and select links from predefined lists (defined by the developer). These improvements make inserting and managing links faster and more flexible than ever before.
26+
Linking in CKEditor 5 has been significantly [upgraded with a redesigned user interface](https://ckeditor.com/docs/ckeditor5/latest/features/link.html), making adding and editing links more intuitive. We added the possibility to add and edit the display text of a link. Users can now easily link to bookmarks within the document and select links from predefined lists (defined by the developer). These improvements make inserting and managing links faster and more flexible than ever before.
2727

2828
During this initiative, we also aligned visual and technical components of the editor. Each balloon got a header with the tile, we also unified the toolbar behavior and keystrokes of Link and Bookmarks with other widget’s toolbars like image and tables.
2929

docs/_snippets/features/wproofreader.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ const metaElement = document.createElement( 'meta' );
7272

7373
metaElement.name = 'x-cke-crawler-ignore-patterns';
7474
metaElement.content = JSON.stringify( {
75-
'request-failure': 'svc.webspellchecker.net',
7675
'console-error': [ 'Failed to load resources from' ]
7776
} );
7877

docs/_snippets/framework/tutorials/external-data-widget.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,10 @@ ClassicEditor
222222
console.error( error.stack );
223223
} );
224224

225-
// For a totally unknown reason, Travis and Binance do not like each other and the test fail on CI.
226225
const metaElement = document.createElement( 'meta' );
227226

228227
metaElement.name = 'x-cke-crawler-ignore-patterns';
229228
metaElement.content = JSON.stringify( {
230-
'request-failure': 'binance.com',
231229
'console-error': [ 'Access to fetch at', 'Failed to fetch' ]
232230
} );
233231

docs/_snippets/installation/advanced/dll-builds.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ const metaElement = document.createElement( 'meta' );
88

99
metaElement.name = 'x-cke-crawler-ignore-patterns';
1010
metaElement.content = JSON.stringify( {
11-
'response-failure': [ 'jsfiddle.net' ],
12-
'request-failure': [ 'jsfiddle.net' ],
1311
'console-error': [
1412
'The Cross-Origin-Opener-Policy header has been ignored',
15-
'jsfiddle.net'
13+
'<svg> attribute preserveAspectRatio',
14+
'transparent NaN'
1615
]
1716
} );
1817

285 KB
Loading
49.7 KB
Loading
25.4 KB
Loading
48.3 KB
Loading
30.9 KB
Loading

0 commit comments

Comments
 (0)