Skip to content

Add support for the Watchdog features #217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7d84f1f
starting updates
Apr 27, 2022
9fb6015
updating tests
Apr 27, 2022
2b9d45c
updates based on linting
Apr 27, 2022
5531ca7
code cleanup + listener for crashedPermanetly
Apr 28, 2022
df35df7
adding some defensive coding
Apr 28, 2022
22bcec5
adding more defensive coding and more logging
May 2, 2022
7e0709b
being smarter
May 2, 2022
fb50628
actually building it this time
May 2, 2022
f16f624
linting
May 2, 2022
810797e
Docs: Changelog. [skip ci]
jeffnorris1 May 13, 2022
d0f8465
updating changes
jeffnorris1 May 13, 2022
753cde8
updating changelog
jeffnorris1 May 13, 2022
1b1857e
adding more unit tests
jeffnorris1 May 13, 2022
35356a7
remove console.log
jeffnorris1 May 13, 2022
7476710
more tests
jeffnorris1 May 13, 2022
5e0ad1c
adding last unit test
jeffnorris1 May 13, 2022
b9933f3
starting updates
Apr 27, 2022
dd64a47
updating tests
Apr 27, 2022
d84184a
updates based on linting
Apr 27, 2022
40b1cc7
code cleanup + listener for crashedPermanetly
Apr 28, 2022
48391b9
adding some defensive coding
Apr 28, 2022
8a3cabd
adding more defensive coding and more logging
May 2, 2022
5fdc0ab
being smarter
May 2, 2022
102cdb3
actually building it this time
May 2, 2022
09f6471
linting
May 2, 2022
64f6530
Docs: Changelog. [skip ci]
jeffnorris1 May 13, 2022
f6da52b
updating changes
jeffnorris1 May 13, 2022
f722d5a
adding more unit tests
jeffnorris1 May 13, 2022
0941c2c
more tests
jeffnorris1 May 13, 2022
4e49206
adding last unit test
jeffnorris1 May 13, 2022
585ab54
final updates
jeffnorris1 Oct 25, 2022
a6f7293
Merge branch 'master' of https://github.com/catalystio/ckeditor5-vue
jeffnorris1 Oct 25, 2022
ea8beea
update build
jeffnorris1 Oct 25, 2022
92036a5
fix lint
jeffnorris1 Oct 25, 2022
3445927
Merge remote-tracking branch 'upstream/master'
jeffnorris1 Jan 31, 2023
d1c98c3
update package, update license, add more logging, and remove yarn.lock
jeffnorris1 Jan 31, 2023
c61982f
update build
jeffnorris1 Feb 3, 2023
d508c07
added debounce props (#1)
NemSavic Aug 14, 2023
6e87f41
update files
jeffnorris1 Aug 16, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
=========

## [5.0.0](https://github.com/ckeditor/ckeditor5-vue/compare/v4.0.0...v5.0.0) (2022-05-13)

### Features

Feature: The <CKEditor> component contains the built-in watchdog feature.

Feature: The `onError()` callback will be called with two arguments. The first one will be an error object (as it was before the release 3+). A second argument is an object that contains two properties:

* `{String} phase`: `'initialization'|'runtime'` - Informs when the error has occurred (during the editor/context initialization or after the initialization).
* `{Boolean} willEditorRestart` - When `true`, it means that the editor component will restart itself.

The `willEditorRestart` property will not appear when the error has occurred in the context feature.

## [4.0.1](https://github.com/ckeditor/ckeditor5-vue/compare/v4.0.0...v4.0.1) (2022-05-18)

### Bug fixes
Expand Down
4 changes: 2 additions & 2 deletions dist/ckeditor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ckeditor.js.map

Large diffs are not rendered by default.

Loading