All changes in the package are documented in the main repository. See: https://github.com/ckeditor/ckeditor5-dev/blob/master/CHANGELOG.md.
Changes for the past releases are available below.
13.0.1 (2020-04-28)
13.0.0 (2020-04-23)
- Omitting the language property in the
CKEditorWebpackPlugin
will not have any effect from now. This means that in both cases only the mainlanguage
will be added to the main bundle and translations for other languages will be saved in separate files. - The translation process no longer creates short ids for message strings. From now, the source code will not be changed by the translation process, translations for the main language will be added to the bundle(s) and translations for other languages will be outputted to separate executable Javascript files.
- Introduced support for plural translation forms. Closes ckeditor/ckeditor5#6526. Closes ckeditor/ckeditor5#988. (305590e)
12.0.9 (2020-02-26)
Internal changes only (updated dependencies, documentation, etc.).
12.0.8 (2020-02-14)
12.0.7 (2020-01-27)
- Switched to a fork of JSDoc with version 3.4.3 patched to be compatible with NodeJS 12. Also, bumped chalk library to fix thrown error. Closes #525. (a7599ba)
12.0.6 (2020-01-09)
Internal changes only (updated dependencies, documentation, etc.).
12.0.5 (2019-08-12)
Internal changes only (updated dependencies, documentation, etc.).
12.0.4 (2019-08-12)
Internal changes only (updated dependencies, documentation, etc.).
12.0.3 (2019-07-23)
12.0.2 (2019-07-15)
- Upgraded dependencies for most of the packages. Merged Lerna + Yarn and they can work together now. Closes #527. Closes #466. (dcc3215)
12.0.1 (2019-02-28)
Internal changes only (updated dependencies, documentation, etc.).
12.0.0 (2019-02-19)
- Upgraded minimal versions of Node to
8.0.0
and npm to5.7.1
. See: ckeditor/ckeditor5#1507. (612ea3c)
11.0.2 (2019-02-12)
Internal changes only (updated dependencies, documentation, etc.).
11.0.1 (2018-09-24)
Internal changes only (updated dependencies, documentation, etc.).
11.0.0 (2018-08-23)
Updated required Node.js version to >=6.9.0
.
10.0.3 (2018-07-17)
Internal changes only (updated dependencies, documentation, etc.).
10.0.2 (2018-07-17)
Internal changes only (updated dependencies, documentation, etc.).
10.0.1 (2018-07-12)
- Fixed compatiblity with
mini-css-extract-plugin
extract-text-webpack-plugin
. Closes #425. Thanks to agentschmitt! (a235742)
10.0.0 (2018-07-05)
- This package requires
webpack@4
.
9.0.1 (2018-06-20)
- CSS
@keyframes
should not be minified by cssnano to prevent naming collisions. Closes #350. (8483615) - Deep CSS imports should be observed by the Webpack watcher. Closes #359. (3e4aa8a)
9.0.0 (2018-04-25)
- Changed the license to GPL2+ only. See ckeditor/ckeditor5#991. (e392d7d)
- The license under which CKEditor 5 is released has been changed from a triple GPL, LGPL and MPL license to GPL2+ only. See ckeditor/ckeditor5#991 for more information.
8.0.0 (2018-04-10)
- Enabled builds to work with RequireJS. Closes ckeditor/ckeditor5#914. (6c69057)
- Due to a new format of translation snippets the new version of
CKEditor5WebpackPlugin
will only be compatible with CKEditor 5 v1.0.0-beta.2 or later.
7.0.7 (2018-03-27)
Internal changes only (updated dependencies, documentation, etc.).
7.0.6 (2018-03-22)
- Theme importer should work when CKEditor 5's development repository or one of its builds is located in a path which contains a
ckeditor5-
fragment. Closes #351. Closes #381. (ec82d7a)
7.0.5 (2018-03-15)
- Added missing dependency. (f92ae28)
7.0.4 (2018-01-22)
Internal changes only (updated dependencies, documentation, etc.).
7.0.3 (2017-12-20)
- Added language directory cleaning before each webpack build. Closes ckeditor/ckeditor5#700. (07a22cf)
- Changed invalid regexp on Windows environments for importing themes (PostCSS). Closes #343. (4bf9443)
7.0.2 (2017-12-01)
Internal changes only (updated dependencies, documentation, etc.).
7.0.1 (2017-12-01)
- Theme importer PostCSS plugin should not throw when processing styles when building a documentation. (c9fcf66)
7.0.0 (2017-11-30)
- Added support for multiple themes in output builds. Migrated various utilities from SASS to PostCSS. Closes #321. (908e3af)
6.0.0 (2017-11-30)
TranslationService
v2. Closes ckeditor/ckeditor5#666. Closes ckeditor/ckeditor5#624. (ee2a1d2)
5.0.0 (2017-11-13)
-
Removed gulp dependency across the whole project. Closes #296. (723bee5)
Now all packages use only npm scripts. Depending on usage you might either create a
"script"
entry inpacakge.json
to invoke bin executables or require the library into a script.- Package
ckeditor5-dev-env
exposes newtranslations
binary. - Package
ckeditor5-dev-tests
exposes newtest:manual
binary. - Removed
gulp-jsdoc3
fromckeditor5-dev-docs
. Nowjsdoc
is invoked directly. - Removed
options
param from logger methods. Logger no longer usesgutil.log
method.
- Package
- Gulp tasks were removed. New npm scripts were introduced.
4.0.2 (2017-10-01)
Internal changes only (updated dependencies, documentation, etc.).
4.0.0 (2017-09-07)
- Changed the
bundler.createEntryFile()
output so the entry file defines a default export. Closes #275. (57c581c)
- The
bundler.createEntryFile()
's output has been changed.
3.0.6 (2017-09-01)
- Fixed invalid require() call which used package name instead of relative path which caused weird issues. (342c675)
3.0.5 (2017-09-01)
- Add better network error handling for downloading and uploading translations. Closes #265. (c12fb15)
3.0.3 (2017-08-18)
Internal changes only (updated dependencies, documentation, etc.).
3.0.0 (2017-05-29)
-
createEntryFile()
util will inline the editor config copied from the build configuration file. Closes #217. (7180dca)
createEntryFile()
function does not accept theconfigPath
argument any more. You need to pass the configuration object asoptions.config
instead of it.
2.6.2 (2017-05-24)
Internal changes only (updated dependencies, documentation, etc.).
2.6.0 (2017-04-27)
- The way how
TranslationService
resolves paths to PO files is now configurable. Closes #167. (6e04aa9)
The big bang.