@ckeditor/ckeditor5-dev-changelog 54.2.3 → 54.3.1
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.
- package/LICENSE.md +1 -1
- package/bin/generate-template.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +33 -36
- package/dist/tasks/generatechangelogformonorepository.d.ts +1 -1
- package/dist/tasks/generatechangelogforsinglerepository.d.ts +1 -1
- package/dist/template.d.ts +1 -1
- package/dist/template.js +2 -2
- package/dist/types.d.ts +1 -1
- package/dist/utils/asyncarray.d.ts +1 -1
- package/dist/utils/commitchanges.d.ts +1 -1
- package/dist/utils/composechangelog.d.ts +1 -1
- package/dist/utils/composereleasesummary.d.ts +1 -1
- package/dist/utils/constants.d.ts +1 -1
- package/dist/utils/detectreleasechannel.d.ts +1 -1
- package/dist/utils/determinenextversion.d.ts +1 -1
- package/dist/utils/displaychanges.d.ts +1 -1
- package/dist/utils/filtervisiblesections.d.ts +1 -1
- package/dist/utils/findchangelogentrypaths.d.ts +1 -1
- package/dist/utils/findpackages.d.ts +1 -1
- package/dist/utils/generatechangelog.d.ts +1 -1
- package/dist/utils/getdateformatted.d.ts +1 -1
- package/dist/utils/getreleasetype.d.ts +1 -1
- package/dist/utils/groupentriesbysection.d.ts +1 -1
- package/dist/utils/internalerror.d.ts +1 -1
- package/dist/utils/linktogithubuser.d.ts +1 -1
- package/dist/utils/loginfo.d.ts +1 -1
- package/dist/utils/modifychangelog.d.ts +1 -1
- package/dist/utils/movechangelogentryfiles.d.ts +1 -1
- package/dist/utils/normalizeentry.d.ts +1 -1
- package/dist/utils/parsechangelogentries.d.ts +1 -1
- package/dist/utils/promptreleasetype.d.ts +1 -1
- package/dist/utils/providenewversion.d.ts +1 -1
- package/dist/utils/removechangelogentryfiles.d.ts +1 -1
- package/dist/utils/sortentriesbyscopeanddate.d.ts +1 -1
- package/dist/utils/truncatechangelog.d.ts +1 -1
- package/dist/utils/useraborterror.d.ts +1 -1
- package/dist/utils/validateentry.d.ts +1 -1
- package/dist/utils/validateinputversion.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Software License Agreement
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
-
Copyright (c) 2003-
|
|
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
|
|
package/bin/generate-template.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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
|
-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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';
|
package/dist/template.d.ts
CHANGED
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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';
|
package/dist/utils/loginfo.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Copyright (c) 2003-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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.
|
|
3
|
+
"version": "54.3.1",
|
|
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.
|
|
31
|
+
"@ckeditor/ckeditor5-dev-utils": "^54.3.1",
|
|
32
32
|
"date-fns": "^4.0.0",
|
|
33
33
|
"glob": "^13.0.0",
|
|
34
34
|
"gray-matter": "^4.0.3",
|
|
@@ -36,4 +36,4 @@
|
|
|
36
36
|
"semver": "^7.6.3",
|
|
37
37
|
"upath": "^2.0.1"
|
|
38
38
|
}
|
|
39
|
-
}
|
|
39
|
+
}
|