Skip to content

Commit

Permalink
Merge branch 'master' into epic/ck/17361
Browse files Browse the repository at this point in the history
  • Loading branch information
pomek committed Dec 17, 2024
2 parents ef9ddc2 + aa1ea78 commit c7a4dfa
Show file tree
Hide file tree
Showing 129 changed files with 2,133 additions and 1,570 deletions.
267 changes: 154 additions & 113 deletions CHANGELOG.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions docs/getting-started/licensing/license-key-and-activation.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,7 @@ This key grants access to your subscription features. It does not consume editor

* **Features**: Grants access to subscription features.
* **Functionality**:
* Similar to the trial license, the editor is limited functionally, including session time and the number of changes allowed.
* Additionally, there are limitations on development domains. The editor can be used in the following domains: `localhost`, `*.test`, `*.localhost`, `*.local`, and IP addresses: `127.0.0.1`, `192.168.*.*`, `10.*.*.*`, `172.*.*.*`.
* Limitations on development domains apply on usage-based plans. The editor can be used in the following domains: `localhost`, `*.test`, `*.localhost`, `*.local`, and IP addresses: `127.0.0.1`, `192.168.*.*`, `10.*.*.*`, `172.*.*.*`.
* The editor will show a banner informing it was launched for development purposes.
* **Intended use**: Designed for development environments such as local work, continuous integration (CI), and end-to-end (E2E) tests.
* **Usage limitation**: Must not be used for production environments.
Expand Down
5 changes: 4 additions & 1 deletion docs/tutorials/crash-course/editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ import 'ckeditor5/ckeditor5.css';
const element = document.querySelector( '#app' );

// Instantiate the editor using the `create` method.
const editor = await ClassicEditor.create( element );
const editor = await ClassicEditor.create( element, {
licenseKey: 'GPL' // Or '<YOUR_LICENSE_KEY>'.
} );
```

As you can see, the {@link module:core/editor/editor~Editor.create `create()`} method creates a new editor instance. It replaces the DOM element passed as the first argument with the editor UI, and sets the initial state of the editor to the content of that DOM element.
Expand All @@ -63,6 +65,7 @@ import { Essentials, Paragraph } from 'ckeditor5';

// Update the call to the `create()` method.
const editor = await ClassicEditor.create( element, {
licenseKey: 'GPL', // Or '<YOUR_LICENSE_KEY>'.
plugins: [
Essentials,
Paragraph
Expand Down
2 changes: 2 additions & 0 deletions docs/tutorials/crash-course/plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ In this tutorial, we will add a single option to the `highlight` plugin to confi

```js
const editor = await ClassicEditor.create( element, {
licenseKey: 'GPL', // Or '<YOUR_LICENSE_KEY>'.
// Other options are omitted for readability - do not remove them.
highlight: {

Expand Down Expand Up @@ -71,6 +72,7 @@ Then, open the `src/main.js` file and update the editor's configuration to chang

```js
const editor = await ClassicEditor.create( element, {
licenseKey: 'GPL', // Or '<YOUR_LICENSE_KEY>'.
// Other options are omitted for readability - do not remove them.
highlight: {
keystroke: 'Ctrl+Alt+9'
Expand Down
2 changes: 2 additions & 0 deletions docs/tutorials/crash-course/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ In the previous chapter of this tutorial, we learned that the editor is just an
import { Essentials, Paragraph } from 'ckeditor5';

const editor = await ClassicEditor.create( element, {
licenseKey: 'GPL', // Or '<YOUR_LICENSE_KEY>'.
plugins: [
Essentials,
Paragraph
Expand Down Expand Up @@ -69,6 +70,7 @@ Then, in the `src/main.js` file, import and register this function as an editor
import { Highlight } from './plugin';

const editor = await ClassicEditor.create( element, {
licenseKey: 'GPL', // Or '<YOUR_LICENSE_KEY>'.
plugins: [
// Other plugins are omitted for readability - do not remove them.
Highlight
Expand Down
166 changes: 83 additions & 83 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ckeditor5",
"version": "44.0.0",
"version": "44.1.0",
"description": "The development environment of CKEditor 5 - the best browser-based rich text editor.",
"private": true,
"keywords": [
Expand All @@ -21,77 +21,77 @@
"framework"
],
"dependencies": {
"@ckeditor/ckeditor5-adapter-ckfinder": "44.0.0",
"@ckeditor/ckeditor5-alignment": "44.0.0",
"@ckeditor/ckeditor5-autoformat": "44.0.0",
"@ckeditor/ckeditor5-autosave": "44.0.0",
"@ckeditor/ckeditor5-basic-styles": "44.0.0",
"@ckeditor/ckeditor5-block-quote": "44.0.0",
"@ckeditor/ckeditor5-bookmark": "44.0.0",
"@ckeditor/ckeditor5-ckbox": "44.0.0",
"@ckeditor/ckeditor5-ckfinder": "44.0.0",
"@ckeditor/ckeditor5-clipboard": "44.0.0",
"@ckeditor/ckeditor5-cloud-services": "44.0.0",
"@ckeditor/ckeditor5-code-block": "44.0.0",
"@ckeditor/ckeditor5-core": "44.0.0",
"@ckeditor/ckeditor5-easy-image": "44.0.0",
"@ckeditor/ckeditor5-editor-balloon": "44.0.0",
"@ckeditor/ckeditor5-editor-classic": "44.0.0",
"@ckeditor/ckeditor5-editor-decoupled": "44.0.0",
"@ckeditor/ckeditor5-editor-inline": "44.0.0",
"@ckeditor/ckeditor5-editor-multi-root": "44.0.0",
"@ckeditor/ckeditor5-adapter-ckfinder": "44.1.0",
"@ckeditor/ckeditor5-alignment": "44.1.0",
"@ckeditor/ckeditor5-autoformat": "44.1.0",
"@ckeditor/ckeditor5-autosave": "44.1.0",
"@ckeditor/ckeditor5-basic-styles": "44.1.0",
"@ckeditor/ckeditor5-block-quote": "44.1.0",
"@ckeditor/ckeditor5-bookmark": "44.1.0",
"@ckeditor/ckeditor5-ckbox": "44.1.0",
"@ckeditor/ckeditor5-ckfinder": "44.1.0",
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-cloud-services": "44.1.0",
"@ckeditor/ckeditor5-code-block": "44.1.0",
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-easy-image": "44.1.0",
"@ckeditor/ckeditor5-editor-balloon": "44.1.0",
"@ckeditor/ckeditor5-editor-classic": "44.1.0",
"@ckeditor/ckeditor5-editor-decoupled": "44.1.0",
"@ckeditor/ckeditor5-editor-inline": "44.1.0",
"@ckeditor/ckeditor5-editor-multi-root": "44.1.0",
"@ckeditor/ckeditor5-emoji": "0.0.1",
"@ckeditor/ckeditor5-engine": "44.0.0",
"@ckeditor/ckeditor5-enter": "44.0.0",
"@ckeditor/ckeditor5-essentials": "44.0.0",
"@ckeditor/ckeditor5-find-and-replace": "44.0.0",
"@ckeditor/ckeditor5-font": "44.0.0",
"@ckeditor/ckeditor5-heading": "44.0.0",
"@ckeditor/ckeditor5-highlight": "44.0.0",
"@ckeditor/ckeditor5-horizontal-line": "44.0.0",
"@ckeditor/ckeditor5-html-embed": "44.0.0",
"@ckeditor/ckeditor5-html-support": "44.0.0",
"@ckeditor/ckeditor5-image": "44.0.0",
"@ckeditor/ckeditor5-indent": "44.0.0",
"@ckeditor/ckeditor5-language": "44.0.0",
"@ckeditor/ckeditor5-link": "44.0.0",
"@ckeditor/ckeditor5-list": "44.0.0",
"@ckeditor/ckeditor5-markdown-gfm": "44.0.0",
"@ckeditor/ckeditor5-media-embed": "44.0.0",
"@ckeditor/ckeditor5-mention": "44.0.0",
"@ckeditor/ckeditor5-minimap": "44.0.0",
"@ckeditor/ckeditor5-page-break": "44.0.0",
"@ckeditor/ckeditor5-paragraph": "44.0.0",
"@ckeditor/ckeditor5-paste-from-office": "44.0.0",
"@ckeditor/ckeditor5-remove-format": "44.0.0",
"@ckeditor/ckeditor5-restricted-editing": "44.0.0",
"@ckeditor/ckeditor5-select-all": "44.0.0",
"@ckeditor/ckeditor5-show-blocks": "44.0.0",
"@ckeditor/ckeditor5-source-editing": "44.0.0",
"@ckeditor/ckeditor5-special-characters": "44.0.0",
"@ckeditor/ckeditor5-style": "44.0.0",
"@ckeditor/ckeditor5-table": "44.0.0",
"@ckeditor/ckeditor5-theme-lark": "44.0.0",
"@ckeditor/ckeditor5-typing": "44.0.0",
"@ckeditor/ckeditor5-ui": "44.0.0",
"@ckeditor/ckeditor5-undo": "44.0.0",
"@ckeditor/ckeditor5-upload": "44.0.0",
"@ckeditor/ckeditor5-utils": "44.0.0",
"@ckeditor/ckeditor5-watchdog": "44.0.0",
"@ckeditor/ckeditor5-widget": "44.0.0",
"@ckeditor/ckeditor5-word-count": "44.0.0"
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-enter": "44.1.0",
"@ckeditor/ckeditor5-essentials": "44.1.0",
"@ckeditor/ckeditor5-find-and-replace": "44.1.0",
"@ckeditor/ckeditor5-font": "44.1.0",
"@ckeditor/ckeditor5-heading": "44.1.0",
"@ckeditor/ckeditor5-highlight": "44.1.0",
"@ckeditor/ckeditor5-horizontal-line": "44.1.0",
"@ckeditor/ckeditor5-html-embed": "44.1.0",
"@ckeditor/ckeditor5-html-support": "44.1.0",
"@ckeditor/ckeditor5-image": "44.1.0",
"@ckeditor/ckeditor5-indent": "44.1.0",
"@ckeditor/ckeditor5-language": "44.1.0",
"@ckeditor/ckeditor5-link": "44.1.0",
"@ckeditor/ckeditor5-list": "44.1.0",
"@ckeditor/ckeditor5-markdown-gfm": "44.1.0",
"@ckeditor/ckeditor5-media-embed": "44.1.0",
"@ckeditor/ckeditor5-mention": "44.1.0",
"@ckeditor/ckeditor5-minimap": "44.1.0",
"@ckeditor/ckeditor5-page-break": "44.1.0",
"@ckeditor/ckeditor5-paragraph": "44.1.0",
"@ckeditor/ckeditor5-paste-from-office": "44.1.0",
"@ckeditor/ckeditor5-remove-format": "44.1.0",
"@ckeditor/ckeditor5-restricted-editing": "44.1.0",
"@ckeditor/ckeditor5-select-all": "44.1.0",
"@ckeditor/ckeditor5-show-blocks": "44.1.0",
"@ckeditor/ckeditor5-source-editing": "44.1.0",
"@ckeditor/ckeditor5-special-characters": "44.1.0",
"@ckeditor/ckeditor5-style": "44.1.0",
"@ckeditor/ckeditor5-table": "44.1.0",
"@ckeditor/ckeditor5-theme-lark": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-undo": "44.1.0",
"@ckeditor/ckeditor5-upload": "44.1.0",
"@ckeditor/ckeditor5-utils": "44.1.0",
"@ckeditor/ckeditor5-watchdog": "44.1.0",
"@ckeditor/ckeditor5-widget": "44.1.0",
"@ckeditor/ckeditor5-word-count": "44.1.0"
},
"devDependencies": {
"@babel/parser": "^7.23.3",
"@ckeditor/ckeditor5-ai": "44.0.0",
"@ckeditor/ckeditor5-build-balloon": "44.0.0",
"@ckeditor/ckeditor5-build-balloon-block": "44.0.0",
"@ckeditor/ckeditor5-build-classic": "44.0.0",
"@ckeditor/ckeditor5-build-decoupled-document": "44.0.0",
"@ckeditor/ckeditor5-build-inline": "44.0.0",
"@ckeditor/ckeditor5-build-multi-root": "44.0.0",
"@ckeditor/ckeditor5-case-change": "44.0.0",
"@ckeditor/ckeditor5-comments": "44.0.0",
"@ckeditor/ckeditor5-ai": "44.1.0",
"@ckeditor/ckeditor5-build-balloon": "44.1.0",
"@ckeditor/ckeditor5-build-balloon-block": "44.1.0",
"@ckeditor/ckeditor5-build-classic": "44.1.0",
"@ckeditor/ckeditor5-build-decoupled-document": "44.1.0",
"@ckeditor/ckeditor5-build-inline": "44.1.0",
"@ckeditor/ckeditor5-build-multi-root": "44.1.0",
"@ckeditor/ckeditor5-case-change": "44.1.0",
"@ckeditor/ckeditor5-comments": "44.1.0",
"@ckeditor/ckeditor5-dev-build-tools": "^45.0.0",
"@ckeditor/ckeditor5-dev-bump-year": "^45.0.0",
"@ckeditor/ckeditor5-dev-ci": "^45.0.0",
Expand All @@ -103,23 +103,23 @@
"@ckeditor/ckeditor5-dev-translations": "^45.0.0",
"@ckeditor/ckeditor5-dev-utils": "^45.0.0",
"@ckeditor/ckeditor5-dev-web-crawler": "^45.0.0",
"@ckeditor/ckeditor5-document-outline": "44.0.0",
"@ckeditor/ckeditor5-export-pdf": "44.0.0",
"@ckeditor/ckeditor5-export-word": "44.0.0",
"@ckeditor/ckeditor5-format-painter": "44.0.0",
"@ckeditor/ckeditor5-import-word": "44.0.0",
"@ckeditor/ckeditor5-document-outline": "44.1.0",
"@ckeditor/ckeditor5-export-pdf": "44.1.0",
"@ckeditor/ckeditor5-export-word": "44.1.0",
"@ckeditor/ckeditor5-format-painter": "44.1.0",
"@ckeditor/ckeditor5-import-word": "44.1.0",
"@ckeditor/ckeditor5-inspector": "^4.0.0",
"@ckeditor/ckeditor5-list-multi-level": "44.0.0",
"@ckeditor/ckeditor5-merge-fields": "44.0.0",
"@ckeditor/ckeditor5-list-multi-level": "44.1.0",
"@ckeditor/ckeditor5-merge-fields": "44.1.0",
"@ckeditor/ckeditor5-mermaid": "ckeditor/ckeditor5-mermaid#v0.0.3",
"@ckeditor/ckeditor5-pagination": "44.0.0",
"@ckeditor/ckeditor5-paste-from-office-enhanced": "44.0.0",
"@ckeditor/ckeditor5-pagination": "44.1.0",
"@ckeditor/ckeditor5-paste-from-office-enhanced": "44.1.0",
"@ckeditor/ckeditor5-react": "^6.0.0",
"@ckeditor/ckeditor5-real-time-collaboration": "44.0.0",
"@ckeditor/ckeditor5-revision-history": "44.0.0",
"@ckeditor/ckeditor5-slash-command": "44.0.0",
"@ckeditor/ckeditor5-template": "44.0.0",
"@ckeditor/ckeditor5-track-changes": "44.0.0",
"@ckeditor/ckeditor5-real-time-collaboration": "44.1.0",
"@ckeditor/ckeditor5-revision-history": "44.1.0",
"@ckeditor/ckeditor5-slash-command": "44.1.0",
"@ckeditor/ckeditor5-template": "44.1.0",
"@ckeditor/ckeditor5-track-changes": "44.1.0",
"@inquirer/prompts": "^6.0.0",
"@listr2/prompt-adapter-inquirer": "^2.0.16",
"@ocular-d/vale-bin": "^2.29.1",
Expand All @@ -129,7 +129,7 @@
"assert": "^2.0.0",
"babel-standalone": "^6.26.0",
"chalk": "^5.0.0",
"ckeditor5-premium-features": "44.0.0",
"ckeditor5-premium-features": "44.1.0",
"coveralls": "^3.1.0",
"date-fns": "2.30.0",
"eslint": "^8.21.0",
Expand Down
30 changes: 15 additions & 15 deletions packages/ckeditor5-adapter-ckfinder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ckeditor/ckeditor5-adapter-ckfinder",
"version": "44.0.0",
"version": "44.1.0",
"description": "CKFinder adapter for CKEditor 5.",
"keywords": [
"ckeditor",
Expand All @@ -13,23 +13,23 @@
"type": "module",
"main": "src/index.ts",
"dependencies": {
"@ckeditor/ckeditor5-core": "44.0.0",
"@ckeditor/ckeditor5-upload": "44.0.0",
"ckeditor5": "44.0.0"
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-upload": "44.1.0",
"ckeditor5": "44.1.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "44.0.0",
"@ckeditor/ckeditor5-clipboard": "44.0.0",
"@ckeditor/ckeditor5-basic-styles": "44.1.0",
"@ckeditor/ckeditor5-clipboard": "44.1.0",
"@ckeditor/ckeditor5-dev-utils": "^45.0.0",
"@ckeditor/ckeditor5-editor-classic": "44.0.0",
"@ckeditor/ckeditor5-enter": "44.0.0",
"@ckeditor/ckeditor5-heading": "44.0.0",
"@ckeditor/ckeditor5-image": "44.0.0",
"@ckeditor/ckeditor5-list": "44.0.0",
"@ckeditor/ckeditor5-paragraph": "44.0.0",
"@ckeditor/ckeditor5-theme-lark": "44.0.0",
"@ckeditor/ckeditor5-typing": "44.0.0",
"@ckeditor/ckeditor5-undo": "44.0.0",
"@ckeditor/ckeditor5-editor-classic": "44.1.0",
"@ckeditor/ckeditor5-enter": "44.1.0",
"@ckeditor/ckeditor5-heading": "44.1.0",
"@ckeditor/ckeditor5-image": "44.1.0",
"@ckeditor/ckeditor5-list": "44.1.0",
"@ckeditor/ckeditor5-paragraph": "44.1.0",
"@ckeditor/ckeditor5-theme-lark": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"@ckeditor/ckeditor5-undo": "44.1.0",
"typescript": "5.0.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
Expand Down
30 changes: 15 additions & 15 deletions packages/ckeditor5-alignment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ckeditor/ckeditor5-alignment",
"version": "44.0.0",
"version": "44.1.0",
"description": "Text alignment feature for CKEditor 5.",
"keywords": [
"ckeditor",
Expand All @@ -13,23 +13,23 @@
"type": "module",
"main": "src/index.ts",
"dependencies": {
"@ckeditor/ckeditor5-core": "44.0.0",
"@ckeditor/ckeditor5-ui": "44.0.0",
"@ckeditor/ckeditor5-utils": "44.0.0",
"ckeditor5": "44.0.0"
"@ckeditor/ckeditor5-core": "44.1.0",
"@ckeditor/ckeditor5-ui": "44.1.0",
"@ckeditor/ckeditor5-utils": "44.1.0",
"ckeditor5": "44.1.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-block-quote": "44.0.0",
"@ckeditor/ckeditor5-block-quote": "44.1.0",
"@ckeditor/ckeditor5-dev-utils": "^45.0.0",
"@ckeditor/ckeditor5-editor-classic": "44.0.0",
"@ckeditor/ckeditor5-engine": "44.0.0",
"@ckeditor/ckeditor5-enter": "44.0.0",
"@ckeditor/ckeditor5-heading": "44.0.0",
"@ckeditor/ckeditor5-image": "44.0.0",
"@ckeditor/ckeditor5-list": "44.0.0",
"@ckeditor/ckeditor5-paragraph": "44.0.0",
"@ckeditor/ckeditor5-theme-lark": "44.0.0",
"@ckeditor/ckeditor5-typing": "44.0.0",
"@ckeditor/ckeditor5-editor-classic": "44.1.0",
"@ckeditor/ckeditor5-engine": "44.1.0",
"@ckeditor/ckeditor5-enter": "44.1.0",
"@ckeditor/ckeditor5-heading": "44.1.0",
"@ckeditor/ckeditor5-image": "44.1.0",
"@ckeditor/ckeditor5-list": "44.1.0",
"@ckeditor/ckeditor5-paragraph": "44.1.0",
"@ckeditor/ckeditor5-theme-lark": "44.1.0",
"@ckeditor/ckeditor5-typing": "44.1.0",
"typescript": "5.0.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
Expand Down
Loading

0 comments on commit c7a4dfa

Please sign in to comment.