Skip to content

Commit 824042a

Browse files
committed
Update to TinyMCE 8.2.2
1 parent ab38b85 commit 824042a

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

app/assets/source/tinymce/tinymce.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* TinyMCE version 8.2.1 (2025-11-06)
2+
* TinyMCE version 8.2.2 (2025-11-17)
33
*/
44

55
(function () {
@@ -24643,7 +24643,10 @@
2464324643
const determineStrategy = (editor) => {
2464424644
const onlineStatus = getOnlineStatus(editor);
2464524645
const licenseKeyType = getLicenseKeyType(editor);
24646-
const forcePlugin = (new Set(getPlugins(editor))).has(PLUGIN_CODE$1);
24646+
const forcePlugin = new Set([
24647+
...getPlugins(editor),
24648+
...keys(getExternalPlugins$1(editor)),
24649+
]).has(PLUGIN_CODE$1);
2464724650
if (licenseKeyType !== 'gpl' || onlineStatus === 'online' || forcePlugin) {
2464824651
return {
2464924652
type: 'use_plugin',
@@ -24694,7 +24697,8 @@
2469424697
const load = (editor, suffix) => {
2469524698
const strategy = determineStrategy(editor);
2469624699
if (strategy.type === 'use_plugin') {
24697-
const url = `plugins/${PLUGIN_CODE}/plugin${suffix}.js`;
24700+
const externalUrl = get$a(getExternalPlugins$1(editor), PLUGIN_CODE).map(trim$4).filter(isNotEmpty);
24701+
const url = externalUrl.getOr(`plugins/${PLUGIN_CODE}/plugin${suffix}.js`);
2469824702
addOnManager.load(ADDON_KEY, url).catch(() => {
2469924703
licenseKeyManagerLoadError(editor, url);
2470024704
});
@@ -40543,14 +40547,14 @@
4054340547
* @property minorVersion
4054440548
* @type String
4054540549
*/
40546-
minorVersion: '2.1',
40550+
minorVersion: '2.2',
4054740551
/**
4054840552
* Release date of TinyMCE build.
4054940553
*
4055040554
* @property releaseDate
4055140555
* @type String
4055240556
*/
40553-
releaseDate: '2025-11-06',
40557+
releaseDate: '2025-11-17',
4055440558
/**
4055540559
* Collection of language pack data.
4055640560
*

lib/tinymce/rails/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module TinyMCE
22
module Rails
3-
VERSION = "8.2.1"
4-
TINYMCE_VERSION = "8.2.1"
3+
VERSION = "8.2.2"
4+
TINYMCE_VERSION = "8.2.2"
55
end
66
end

0 commit comments

Comments
 (0)