UNPKG

3.65 kBMarkdownView Raw
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10## 6.0.0 - 2024-06-05
11
12### Added
13- Add missing events: `onInput`, `onCommentChange`, `onCompositionEnd`, `onCompositionStart`, `onCompositionUpdate`
14
15### Changed
16- Default cloud channel to '7'
17
18## 5.1.0 - 2023-04-05
19
20### Added
21- Exposed method `getEditor()` that return the current editor
22
23## 5.0.1 - 2022-10-24
24
25### Changed
26- Use target element instead of selector for Editor configuration
27
28### Fixed
29- Updated dependencies
30- Updated CI library to latest
31
32## 5.0.0 - 2022-04-08
33
34### Changed
35- License changed to MIT
36- Default cloud channel to '6'
37
38## 4.0.7 - 2022-03-09
39
40### Changed
41- Storybook examples
42
43## 4.0.6 - 2022-02-17
44
45### Added
46- Exposed method `rerender(initObject)` to change the editor configuration
47- Watcher for tag name
48
49## 4.0.5 - 2021-11-22
50
51### Added
52- Correct proptypes
53
54### Fixed
55- Update dependencies
56
57## 4.0.2 - 2021-11-05
58
59### Fixed
60- Update dependencies
61
62## 4.0.1 - 2021-11-05
63
64### Added
65- Adopt beehive-flow release process
66
67## 4.0.0 - 2020-11-05
68
69### Added
70- Vue 3 support
71
72## 3.2.4 - 2020-10-16
73
74### Fixed
75- Fixed handling of inline template event bindings
76
77## 3.2.3 - 2020-09-16
78
79### Changed
80- Update dependencies
81- Changed `keyup` to `input` for the events triggering sending out content to `v-model`.
82
83## 3.2.2 - 2020-05-22
84
85### Fixed
86- Fixed v-model `outputFormat` resetting the editor content on every change
87
88## 3.2.1 - 2020-04-30
89
90### Fixed
91- Upgraded jquery in dev dependencies in response to security alert.
92
93## 3.2.0 - 2020-02-24
94
95### Added
96- Added new `tinymceScriptSrc` prop for specifying an external version of TinyMCE to lazy load
97
98## 3.1.0 - 2020-01-31
99
100### Added
101- Added new `outputFormat` prop for specifying the format of the content emitted via the `input` event
102
103## 3.0.1 - 2019-08-19
104
105### Fixed
106- Fixed incorrect module paths
107
108## 3.0.0 - 2019-08-16
109
110### Added
111- Changed referrer policy to origin to allow cloud caching
112
113### Changed
114- Removed Vue as a dependency and added vue@^2.4.3 as a peer dependency
115
116## 2.1.0 - 2019-06-05
117
118### Changed
119- Changed the CDN URL to use `cdn.tiny.cloud`
120
121## 2.0.0 - 2019-02-11
122
123### Changed
124- Changed default cloudChannel to `'5'`.
125
126## 1.1.2 - 2019-01-09
127
128### Added
129- Updated changelog to show how you have to add `.default` to commonjs require.
130
131## 1.1.1 - 2019-01-09
132
133### Changed
134- Improved uuid function. Patch contributed by fureweb-com.
135
136## 1.1.0 - 2018-10-01
137
138### Added
139- Added functionality to bind to `disabled` property to set editor into readonly state.
140
141## 1.0.9 - 2018-09-03
142
143### Fixed
144- Fixed broken links in readme.
145
146## 1.0.8 - 2018-05-10
147
148### Added
149- Added `undo` and `redo` to the events triggering sending out content to `v-model`.
150
151## 1.0.7 - 2018-04-26
152
153### Fixed
154- Added null check before removing editor to check that tinymce is actually available.
155
156## 1.0.6 - 2018-04-11
157
158### Removed
159- Removed `cloudChannel` prop validation.
160
161## 1.0.5 - 2018-04-06
162
163### Removed
164- Removed onPreInit shorthand as it never worked.
165
166## 1.0.4 - 2018-04-06
167
168### Fixed
169- Fixed bug with onInit never firing.
170
171## 1.0.3 - 2018-04-03
172
173### Fixed
174- Fixed bug with value watcher getting out of sync.
175
176## 1.0.2 - 2018-02-16
177
178### Fixed
179- Fixed bug where is wasn't possible to set inline in the init object, only on the shorthand.
180
181## 1.0.1 - 2018-02-08
182
183### Fixed
184- Fixed binding timing issues by moving the binding to after the editor has initialized.
185
186## 1.0.0 - 2018-01-16
187
188### Added
189- Initial release