Skip to content

Commit

Permalink
Updated default CDN CKEditor 4 dependency to 4.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacekbogdanski committed Feb 7, 2024
1 parent 6ff03b7 commit c89c723
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

If you would like to keep access to future CKEditor 4 security patches, check the [Extended Support Model](https://ckeditor.com/ckeditor-4-support/), which guarantees **security updates and critical bug fixes until December 2026**. Alternatively, [upgrade to CKEditor 5](https://ckeditor.com/docs/ckeditor5/latest/updating/ckeditor4/migration-from-ckeditor-4.html).

## ckeditor4-react 5.1.0

⚠️️️ CKEditor 4 CDN dependency has been upgraded to the latest secure version. All editor versions below 4.24.0-lts can no longer be considered as secure! ⚠️

Other Changes:

* Updated default CDN CKEditor 4 dependency to [4.24.0-lts](https://github.com/ckeditor/ckeditor4/blob/master/CHANGES.md#ckeditor-4240-lts).

## ckeditor4-react 5.0.0

This release introduces a support for the LTS (”Long Term Support”) version of the editor, available under commercial terms (["Extended Support Model"](https://ckeditor.com/ckeditor-4-support/)).
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"homepage": "https://github.com/ckeditor/ckeditor4-react#readme",
"peerDependencies": {
"ckeditor4": "^4.23.0",
"ckeditor4": "^4.24.0",
"react": "^18"
},
"devDependencies": {
Expand All @@ -73,7 +73,7 @@
"@typescript-eslint/parser": "^5.52.0",
"browserstack-local": "^1.5.1",
"chalk": "^4.1.2",
"ckeditor4": "^4.23.0",
"ckeditor4": "^4.24.0",
"eslint": "^8.34.0",
"eslint-config-ckeditor5": "^4.1.1",
"eslint-plugin-react": "^7.32.2",
Expand Down
2 changes: 1 addition & 1 deletion src/useCKEditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {

const { useEffect, useReducer, useRef } = React;

const defEditorUrl = 'https://cdn.ckeditor.com/4.23.0-lts/standard-all/ckeditor.js';
const defEditorUrl = 'https://cdn.ckeditor.com/4.24.0-lts/standard-all/ckeditor.js';
const defConfig: CKEditorConfig = {};

/**
Expand Down

0 comments on commit c89c723

Please sign in to comment.