|
1 | 1 | Changelog |
2 | 2 | ========= |
3 | 3 |
|
| 4 | +## [4.1.0](https://github.com/ckeditor/ckeditor5-package-generator/compare/v4.0.2...v4.1.0) (September 16, 2025) |
| 5 | + |
| 6 | +### Features |
| 7 | + |
| 8 | +* **[generator](https://www.npmjs.com/package/ckeditor5-package-generator)**: Added comprehensive support for `pnpm` alongside existing `npm` and `yarn` options in the CKEditor 5 package generator. Closes [#247](https://github.com/ckeditor/ckeditor5-package-generator/issues/247). |
| 9 | + |
| 10 | + You can now use the `--use-pnpm` CLI flag to specify `pnpm` as your package manager when generating a new package. |
| 11 | + |
| 12 | +### Released packages |
| 13 | + |
| 14 | +Check out the [Versioning policy](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html) guide for more information. |
| 15 | + |
| 16 | +<details> |
| 17 | +<summary>Released packages (summary)</summary> |
| 18 | + |
| 19 | +Releases containing new features: |
| 20 | + |
| 21 | +* [ckeditor5-package-generator](https://www.npmjs.com/package/ckeditor5-package-generator/v/4.1.0): v4.0.2 => v4.1.0 |
| 22 | + |
| 23 | +Other releases: |
| 24 | + |
| 25 | +* [@ckeditor/ckeditor5-package-tools](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools/v/4.1.0): v4.0.2 => v4.1.0 |
| 26 | +</details> |
| 27 | + |
| 28 | + |
4 | 29 | ## [4.0.2](https://github.com/ckeditor/ckeditor5-package-generator/compare/v4.0.1...v4.0.2) (July 23, 2025) |
5 | 30 |
|
6 | 31 | ### Bug fixes |
@@ -88,47 +113,6 @@ Other releases: |
88 | 113 | * [ckeditor5-package-generator](https://www.npmjs.com/package/ckeditor5-package-generator/v/3.0.1): v3.0.0 => v3.0.1 |
89 | 114 | </details> |
90 | 115 |
|
91 | | - |
92 | | -## [3.0.0](https://github.com/ckeditor/ckeditor5-package-generator/compare/v2.1.1...v3.0.0) (2024-11-04) |
93 | | - |
94 | | -We are excited to announce an update to the package generator for CKEditor 5 plugins. Starting this release, the created packages use [Vitest](https://vitest.dev/) as a testing environment for automated tests. |
95 | | - |
96 | | -Taking the occasion, we decided to drop the Transifex integration. Right now, translation entries (if needed) can be modified via pull requests instead of an external service. This change reflects the translation updates in CKEditor 5. |
97 | | - |
98 | | -Last but not least, the generator follows the ESM standard. However, this change should not affect the integrators, as the [`@ckeditor/ckeditor5-package-tools`](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools) package exposes a binary script that is aligned to the new API. |
99 | | - |
100 | | -### MAJOR BREAKING CHANGES [ℹ️](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html#major-and-minor-breaking-changes) |
101 | | - |
102 | | -* **[generator](https://www.npmjs.com/package/ckeditor5-package-generator)**: Removed the `translations:collect`, `translations:download` and `translations:upload` scripts from the generated package. Instead, the `translations:synchronize` and `translations:validate` scripts are introduced. These two new scripts do not provide an integration with Transifex service anymore, but they help preparing translation files (`*.po` files) which must be handled by the integrator himself. |
103 | | -* **[tools](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools)**: Removed the `translations:collect`, `translations:download` and `translations:upload` tasks. Instead, the `translations:synchronize` task is introduced. It helps preparing translation files (`*.po` files) in the generated package. |
104 | | - |
105 | | -### MINOR BREAKING CHANGES [ℹ️](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html#major-and-minor-breaking-changes) |
106 | | - |
107 | | -* **[generator](https://www.npmjs.com/package/ckeditor5-package-generator)**: The generated package no longer uses Karma as the test runner. Instead, Vitest is used. |
108 | | -* **[tools](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools)**: The `test` script is removed, because unit tests in the generated package are executed directly by Vitest. Hence, the previous custom support for the `--coverage` (`-c`) and `--source-map` (`-s`) flags is no longer needed and has been also removed. The `yarn run test` (or `npm run test`) script is still available in the generated package, but it executes Vitest. See [CLI flags](https://vitest.dev/guide/cli.html) supported in Vitest. |
109 | | - |
110 | | -### Other changes |
111 | | - |
112 | | -* **[generator](https://www.npmjs.com/package/ckeditor5-package-generator)**: Lock to the last compatible version of the `@ckeditor/ckeditor5-dev-build-tools` package due to the upcoming release of breaking changes in the `@ckeditor/ckeditor5-dev-*` packages. Closes [#191](https://github.com/ckeditor/ckeditor5-package-generator/issues/191). ([commit](https://github.com/ckeditor/ckeditor5-package-generator/commit/c5beffb74f5a481c3d51fed0db78fd64e6110728)) |
113 | | -* **[generator](https://www.npmjs.com/package/ckeditor5-package-generator)**: Replaced Karma with Vitest as the testing framework in the generated package. ([commit](https://github.com/ckeditor/ckeditor5-package-generator/commit/7e7c6afd1aa80f30394b37475dea9129ed11dbfe)) |
114 | | -* **[tools](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools)**: Removed support for the `--coverage` (`-c`) and `--source-map` (`-s`) flags. ([commit](https://github.com/ckeditor/ckeditor5-package-generator/commit/7e7c6afd1aa80f30394b37475dea9129ed11dbfe)) |
115 | | -* **[tools](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools)**: Removed `test` script from the tools, because unit tests in the generated package are executed now directly by Vitest. ([commit](https://github.com/ckeditor/ckeditor5-package-generator/commit/7e7c6afd1aa80f30394b37475dea9129ed11dbfe)) |
116 | | -* The generated package no longer integrates with the Transifex service. Thanks to that, a community can provide translation entries directly via pull requests. ([commit](https://github.com/ckeditor/ckeditor5-package-generator/commit/c812fa0502f31e0534814dda06bbb05174e89a21)) |
117 | | -* Converted the project repository to ESM. Closes [#192](https://github.com/ckeditor/ckeditor5-package-generator/issues/192). ([commit](https://github.com/ckeditor/ckeditor5-package-generator/commit/30f0ada815ba196e6069e04dc316ef567bbb0f3c)) |
118 | | - |
119 | | -### Released packages |
120 | | - |
121 | | -Check out the [Versioning policy](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html) guide for more information. |
122 | | - |
123 | | -<details> |
124 | | -<summary>Released packages (summary)</summary> |
125 | | - |
126 | | -Other releases: |
127 | | - |
128 | | -* [@ckeditor/ckeditor5-package-tools](https://www.npmjs.com/package/@ckeditor/ckeditor5-package-tools/v/3.0.0): v2.1.1 => v3.0.0 |
129 | | -* [ckeditor5-package-generator](https://www.npmjs.com/package/ckeditor5-package-generator/v/3.0.0): v2.1.1 => v3.0.0 |
130 | | -</details> |
131 | | - |
132 | 116 | --- |
133 | 117 |
|
134 | 118 | To see all releases, visit the [release page](https://github.com/ckeditor/ckeditor5-package-generator/releases). |
0 commit comments