@ckeditor/ckeditor5-dev-changelog 54.2.2 → 54.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/LICENSE.md +1 -1
  2. package/bin/generate-template.js +1 -1
  3. package/dist/index.d.ts +1 -1
  4. package/dist/index.js +33 -36
  5. package/dist/tasks/generatechangelogformonorepository.d.ts +1 -1
  6. package/dist/tasks/generatechangelogforsinglerepository.d.ts +1 -1
  7. package/dist/template.d.ts +1 -1
  8. package/dist/template.js +2 -2
  9. package/dist/types.d.ts +1 -1
  10. package/dist/utils/asyncarray.d.ts +1 -1
  11. package/dist/utils/commitchanges.d.ts +1 -1
  12. package/dist/utils/composechangelog.d.ts +1 -1
  13. package/dist/utils/composereleasesummary.d.ts +1 -1
  14. package/dist/utils/constants.d.ts +1 -1
  15. package/dist/utils/detectreleasechannel.d.ts +1 -1
  16. package/dist/utils/determinenextversion.d.ts +1 -1
  17. package/dist/utils/displaychanges.d.ts +1 -1
  18. package/dist/utils/filtervisiblesections.d.ts +1 -1
  19. package/dist/utils/findchangelogentrypaths.d.ts +1 -1
  20. package/dist/utils/findpackages.d.ts +1 -1
  21. package/dist/utils/generatechangelog.d.ts +1 -1
  22. package/dist/utils/getdateformatted.d.ts +1 -1
  23. package/dist/utils/getreleasetype.d.ts +1 -1
  24. package/dist/utils/groupentriesbysection.d.ts +1 -1
  25. package/dist/utils/internalerror.d.ts +1 -1
  26. package/dist/utils/linktogithubuser.d.ts +1 -1
  27. package/dist/utils/loginfo.d.ts +1 -1
  28. package/dist/utils/modifychangelog.d.ts +1 -1
  29. package/dist/utils/movechangelogentryfiles.d.ts +1 -1
  30. package/dist/utils/normalizeentry.d.ts +1 -1
  31. package/dist/utils/parsechangelogentries.d.ts +1 -1
  32. package/dist/utils/promptreleasetype.d.ts +1 -1
  33. package/dist/utils/providenewversion.d.ts +1 -1
  34. package/dist/utils/removechangelogentryfiles.d.ts +1 -1
  35. package/dist/utils/sortentriesbyscopeanddate.d.ts +1 -1
  36. package/dist/utils/truncatechangelog.d.ts +1 -1
  37. package/dist/utils/useraborterror.d.ts +1 -1
  38. package/dist/utils/validateentry.d.ts +1 -1
  39. package/dist/utils/validateinputversion.d.ts +1 -1
  40. package/package.json +2 -2
package/LICENSE.md CHANGED
@@ -1,7 +1,7 @@
1
1
  Software License Agreement
2
2
  ==========================
3
3
 
4
- Copyright (c) 2003-2025, [CKSource](http://cksource.com) Holding sp. z o.o. All rights reserved.
4
+ Copyright (c) 2003-2026, [CKSource](http://cksource.com) Holding sp. z o.o. All rights reserved.
5
5
 
6
6
  Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
7
7
 
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  /**
4
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
4
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
5
5
  * For licensing, see LICENSE.md.
6
6
  */
7
7
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  export { generateChangelogForMonoRepository } from './tasks/generatechangelogformonorepository.js';
package/dist/index.js CHANGED
@@ -10,7 +10,7 @@ import { glob } from 'glob';
10
10
  import matter from 'gray-matter';
11
11
 
12
12
  /**
13
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
13
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
14
14
  * For licensing, see LICENSE.md.
15
15
  */
16
16
  const CHANGELOG_FILE = 'CHANGELOG.md';
@@ -56,7 +56,7 @@ const TYPES = [
56
56
  ];
57
57
 
58
58
  /**
59
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
59
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
60
60
  * For licensing, see LICENSE.md.
61
61
  */
62
62
  /**
@@ -72,7 +72,7 @@ function linkToGitHubUser(comment) {
72
72
  }
73
73
 
74
74
  /**
75
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
75
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
76
76
  * For licensing, see LICENSE.md.
77
77
  */
78
78
  /**
@@ -176,7 +176,7 @@ function getAllowedTypesList() {
176
176
  }
177
177
 
178
178
  /**
179
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
179
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
180
180
  * For licensing, see LICENSE.md.
181
181
  */
182
182
  /**
@@ -340,7 +340,7 @@ function normalizeListMarker(line) {
340
340
  }
341
341
 
342
342
  /**
343
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
343
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
344
344
  * For licensing, see LICENSE.md.
345
345
  */
346
346
  /**
@@ -353,7 +353,7 @@ function logInfo(text, { indent } = { indent: 0 }) {
353
353
  }
354
354
 
355
355
  /**
356
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
356
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
357
357
  * For licensing, see LICENSE.md.
358
358
  */
359
359
  /**
@@ -449,7 +449,7 @@ function displayValidEntry(entry, sectionName, isSinglePackage, transformScope)
449
449
  }
450
450
 
451
451
  /**
452
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
452
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
453
453
  * For licensing, see LICENSE.md.
454
454
  */
455
455
  /**
@@ -489,7 +489,7 @@ function saveChangelog(content, cwd) {
489
489
  }
490
490
 
491
491
  /**
492
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
492
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
493
493
  * For licensing, see LICENSE.md.
494
494
  */
495
495
  /**
@@ -531,7 +531,7 @@ function prepareChangelogContent(existingChangelog, newChangelog) {
531
531
  }
532
532
 
533
533
  /**
534
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
534
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
535
535
  * For licensing, see LICENSE.md.
536
536
  */
537
537
  /**
@@ -541,7 +541,7 @@ class UserAbortError extends Error {
541
541
  }
542
542
 
543
543
  /**
544
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
544
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
545
545
  * For licensing, see LICENSE.md.
546
546
  */
547
547
  async function validateInputVersion(options) {
@@ -584,7 +584,7 @@ async function validateInputVersion(options) {
584
584
  }
585
585
 
586
586
  /**
587
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
587
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
588
588
  * For licensing, see LICENSE.md.
589
589
  */
590
590
  const CLI_INDENT_SIZE = 3;
@@ -706,7 +706,7 @@ function getChoices$1({ version, bumpType, releaseChannel, releaseType }) {
706
706
  }
707
707
 
708
708
  /**
709
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
709
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
710
710
  * For licensing, see LICENSE.md.
711
711
  */
712
712
  /**
@@ -732,7 +732,7 @@ function detectReleaseChannel(version, promotePrerelease = false) {
732
732
  }
733
733
 
734
734
  /**
735
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
735
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
736
736
  * For licensing, see LICENSE.md.
737
737
  */
738
738
  /**
@@ -742,7 +742,7 @@ class InternalError extends Error {
742
742
  }
743
743
 
744
744
  /**
745
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
745
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
746
746
  * For licensing, see LICENSE.md.
747
747
  */
748
748
  /**
@@ -799,7 +799,7 @@ async function determineNextVersion(options) {
799
799
  }
800
800
 
801
801
  /**
802
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
802
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
803
803
  * For licensing, see LICENSE.md.
804
804
  */
805
805
  /**
@@ -853,7 +853,7 @@ class AsyncArray {
853
853
  }
854
854
 
855
855
  /**
856
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
856
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
857
857
  * For licensing, see LICENSE.md.
858
858
  */
859
859
  /**
@@ -877,7 +877,7 @@ async function findPackages(options) {
877
877
  }
878
878
 
879
879
  /**
880
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
880
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
881
881
  * For licensing, see LICENSE.md.
882
882
  */
883
883
  /**
@@ -940,7 +940,7 @@ function getPackageName(value) {
940
940
  }
941
941
 
942
942
  /**
943
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
943
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
944
944
  * For licensing, see LICENSE.md.
945
945
  */
946
946
  /**
@@ -987,7 +987,7 @@ function getLinkFilter(options) {
987
987
  }
988
988
 
989
989
  /**
990
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
990
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
991
991
  * For licensing, see LICENSE.md.
992
992
  */
993
993
  /**
@@ -1020,7 +1020,7 @@ function sortEntriesByScopeAndDate(entries) {
1020
1020
  }
1021
1021
 
1022
1022
  /**
1023
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1023
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1024
1024
  * For licensing, see LICENSE.md.
1025
1025
  */
1026
1026
  function normalizeEntry(entry, isSinglePackage) {
@@ -1076,14 +1076,11 @@ function toArray(input) {
1076
1076
  if (!input) {
1077
1077
  return [];
1078
1078
  }
1079
- if (typeof input === 'string') {
1080
- return [input];
1081
- }
1082
- return input;
1079
+ return Array.isArray(input) ? input : [input];
1083
1080
  }
1084
1081
 
1085
1082
  /**
1086
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1083
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1087
1084
  * For licensing, see LICENSE.md.
1088
1085
  */
1089
1086
  /**
@@ -1130,7 +1127,7 @@ function extractDateFromFilename(changesetPath) {
1130
1127
  }
1131
1128
 
1132
1129
  /**
1133
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1130
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1134
1131
  * For licensing, see LICENSE.md.
1135
1132
  */
1136
1133
  /**
@@ -1159,7 +1156,7 @@ function filterVisibleSections(sectionsWithEntries) {
1159
1156
  }
1160
1157
 
1161
1158
  /**
1162
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1159
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1163
1160
  * For licensing, see LICENSE.md.
1164
1161
  */
1165
1162
  /**
@@ -1170,7 +1167,7 @@ function getDateFormatted(date) {
1170
1167
  }
1171
1168
 
1172
1169
  /**
1173
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1170
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1174
1171
  * For licensing, see LICENSE.md.
1175
1172
  */
1176
1173
  /**
@@ -1213,7 +1210,7 @@ async function composeChangelog(options) {
1213
1210
  }
1214
1211
 
1215
1212
  /**
1216
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1213
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1217
1214
  * For licensing, see LICENSE.md.
1218
1215
  */
1219
1216
  /**
@@ -1228,7 +1225,7 @@ async function removeChangelogEntryFiles(entryPaths) {
1228
1225
  }
1229
1226
 
1230
1227
  /**
1231
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1228
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1232
1229
  * For licensing, see LICENSE.md.
1233
1230
  */
1234
1231
  /**
@@ -1262,7 +1259,7 @@ async function moveChangelogEntryFiles(entryPaths) {
1262
1259
  }
1263
1260
 
1264
1261
  /**
1265
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1262
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1266
1263
  * For licensing, see LICENSE.md.
1267
1264
  */
1268
1265
  async function commitChanges(version, repositories) {
@@ -1284,7 +1281,7 @@ async function commitChanges(version, repositories) {
1284
1281
  }
1285
1282
 
1286
1283
  /**
1287
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1284
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1288
1285
  * For licensing, see LICENSE.md.
1289
1286
  */
1290
1287
  /**
@@ -1340,7 +1337,7 @@ function getChoices(currentVersion) {
1340
1337
  }
1341
1338
 
1342
1339
  /**
1343
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1340
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1344
1341
  * For licensing, see LICENSE.md.
1345
1342
  */
1346
1343
  function getReleaseType(currentVersion, nextVersion) {
@@ -1356,7 +1353,7 @@ function getReleaseType(currentVersion, nextVersion) {
1356
1353
  }
1357
1354
 
1358
1355
  /**
1359
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1356
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1360
1357
  * For licensing, see LICENSE.md.
1361
1358
  */
1362
1359
  /**
@@ -1489,7 +1486,7 @@ function isExpectedError(error) {
1489
1486
  }
1490
1487
 
1491
1488
  /**
1492
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1489
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1493
1490
  * For licensing, see LICENSE.md.
1494
1491
  */
1495
1492
  const generateChangelogForMonoRepository = async (options) => {
@@ -1512,7 +1509,7 @@ const generateChangelogForMonoRepository = async (options) => {
1512
1509
  };
1513
1510
 
1514
1511
  /**
1515
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
1512
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
1516
1513
  * For licensing, see LICENSE.md.
1517
1514
  */
1518
1515
  const generateChangelogForSingleRepository = async (options) => {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ConfigBase, GenerateChangelogEntryPoint, MonoRepoConfigBase } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ConfigBase, GenerateChangelogEntryPoint } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
package/dist/template.js CHANGED
@@ -5,14 +5,14 @@ import path from 'upath';
5
5
  import { format } from 'date-fns';
6
6
 
7
7
  /**
8
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
8
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
9
9
  * For licensing, see LICENSE.md.
10
10
  */
11
11
  const CHANGESET_DIRECTORY = '.changelog';
12
12
  const TEMPLATE_FILE = path.join(import.meta.dirname, '../template/template.md');
13
13
 
14
14
  /**
15
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
15
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
16
16
  * For licensing, see LICENSE.md.
17
17
  */
18
18
  /**
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { SECTIONS } from './utils/constants.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangesetPathsWithGithubUrl } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ReleaseInfo, Section } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ReleaseInfo, SectionsWithEntries } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  export declare const CHANGELOG_FILE = "CHANGELOG.md";
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ReleaseChannel } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangelogReleaseType, SectionsWithEntries } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { SectionsWithEntries, TransformScope } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { Section, SectionsWithEntries } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangesetPathsWithGithubUrl, LinkFilter, RepositoryConfig } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { RepositoryConfig } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ConfigBase, GenerateChangelogEntryPoint, MonoRepoConfigBase } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import { type ChangelogReleaseType } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ParsedFile, SectionsWithEntries, TransformScope } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangesetPathsWithGithubUrl } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { FileMetadata, ParsedFile } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangesetPathsWithGithubUrl, ParsedFile } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangelogReleaseType } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import { type ReleaseType } from 'semver';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangesetPathsWithGithubUrl } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ParsedFile } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ParsedFile } from '../types.js';
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md.
4
4
  */
5
5
  import type { ChangelogReleaseType } from '../types.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-dev-changelog",
3
- "version": "54.2.2",
3
+ "version": "54.3.0",
4
4
  "description": "A CKEditor 5 development tool for handling changelogs.",
5
5
  "keywords": [],
6
6
  "author": "CKSource (http://cksource.com/)",
@@ -28,7 +28,7 @@
28
28
  "ckeditor5-dev-changelog-create-entry": "bin/generate-template.js"
29
29
  },
30
30
  "dependencies": {
31
- "@ckeditor/ckeditor5-dev-utils": "^54.2.2",
31
+ "@ckeditor/ckeditor5-dev-utils": "^54.3.0",
32
32
  "date-fns": "^4.0.0",
33
33
  "glob": "^13.0.0",
34
34
  "gray-matter": "^4.0.3",