Skip to content

Commit e5dc4c1

Browse files
Merge pull request #4573 from serlo/new-versions
chore(editor): release new version (breaking)
2 parents a049f8f + bd0caf4 commit e5dc4c1

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

packages/editor/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Changelog for version 0.26.0
2+
3+
- refactor(editor): simplify editor plugin config, remove testingsecret image upload. Thank you [@elbotho](https://github.com/elbotho) in https://github.com/serlo/frontend/pull/4572
4+
- chore(deps-dev): bump vite from 5.4.17 to 5.4.18. Thank you [@dependabot[bot]](https://github.com/dependabot[bot]) in https://github.com/serlo/frontend/pull/4567
5+
- fix(editor): fix hydration and suspense errors. Thank you [@elbotho](https://github.com/elbotho) in https://github.com/serlo/frontend/pull/4564
6+
- e2e: fix courses tests, increase waits. Thank you [@elbotho](https://github.com/elbotho) in https://github.com/serlo/frontend/pull/4555
7+
- chore(deps-dev): bump vite from 5.4.15 to 5.4.17. Thank you [@dependabot[bot]](https://github.com/dependabot[bot]) in https://github.com/serlo/frontend/pull/4553
8+
9+
**Full Changelog**: https://github.com/serlo/frontend/compare/v0.25.1-editor...v0.26.0-editor
10+
111
## Changelog for version 0.25.1
212

313
- refactor: remove `serloContext`. Thank you [@elbotho](https://github.com/elbotho) in https://github.com/serlo/frontend/pull/4550

packages/editor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ See below for the current API specification.
130130

131131
- **`showUndoRedoButtons`(optional)**: Set to true to show the default undo/redo buttons. (Defaults to false).
132132

133-
- **`_testingSecret` (optional)**: A key used by integrations for uploading files into the serlo-editor-testing bucket, while testing the Editor. **Deprecated**
133+
- **`disableMediaUpload` (optional)**: Set to true to disable file upload in all image and video plugins. Plugins are still usable by pasting urls of existing media content.
134134

135135
- **`_ltik` (optional)**: Required by the custom plugin `edusharingAsset` only used in `serlo-editor-for-edusharing`. **To be removed once a better solution is found or the plugin is removed.**
136136

packages/editor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@serlo/editor",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"homepage": "https://de.serlo.org/editor",
55
"bugs": {
66
"url": "https://github.com/serlo/frontend/issues"

packages/editor/src/package/editor.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ export interface SerloEditorProps {
4545
styleReset?: boolean
4646
/** Shows default Undo/Redo UI. Defaults to false for now */
4747
showUndoRedoButtons?: boolean
48+
/** Removes upload buttons from all image and video plugins if you opt to not use the serlo.org asset buckets. Plugins can still be used by pasting urls to existing media content. */
4849
disableMediaUpload?: boolean
50+
/** only interally used for `serlo-editor-as-lti-tool` */
4951
_ltik?: string
5052
/** @deprecated Only temporarily allowed for serlo.org. */
5153
extraSerloPlugins?: ExtraSerloPlugins

0 commit comments

Comments
 (0)