Skip to content

Commit

Permalink
v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Jun 11, 2024
1 parent 64aeff9 commit 8e1dce1
Show file tree
Hide file tree
Showing 17 changed files with 187 additions and 24 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,50 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **addon-ckeditor5-react:** update ckeditor to v41 ([ef99c10](https://github.com/p3ol/oak/commit/ef99c1002a5dba9bb318cd2c5521e7f04ed26de8))
* **core:** settings override not working ([668109a](https://github.com/p3ol/oak/commit/668109afde59a58e87dbaae26a1fb7db4ac3ca93))
* **core:** types ([0c44447](https://github.com/p3ol/oak/commit/0c44447ffced5670c112beb16ee8fea96241e00e))
* **react:** a lot of types ([8458000](https://github.com/p3ol/oak/commit/8458000b90ae59e1ce4ec081d48f2adf79deb288))
* **react:** a lot of types issues ([cdf9ef0](https://github.com/p3ol/oak/commit/cdf9ef09b737f648afbf593b067473a5de699073))
* **react:** allow more sibling fields in editable ([95a6404](https://github.com/p3ol/oak/commit/95a6404148c2758f85fb7d144b9870b2609a5be1))
* **react:** clean code ([f5079f6](https://github.com/p3ol/oak/commit/f5079f64b1d56994d251fc71fb3451b5ce721119))
* **react:** image field preview ([469391e](https://github.com/p3ol/oak/commit/469391e9cf832c87d9911feb273f51da911ba60c))
* **react:** missing exports ([51a36ed](https://github.com/p3ol/oak/commit/51a36edf9bc647d0b2a507b0193890834072c8cf))
* **react:** update and clean code ([9c19732](https://github.com/p3ol/oak/commit/9c197322c3f66f4d1247eb62151f88bf6f8267d2))
* tests typings ([f3ba27e](https://github.com/p3ol/oak/commit/f3ba27e3897f74f099b0d240ae76194f321392cc))
* **theme:** editable fields menus zindex ([0c92e1c](https://github.com/p3ol/oak/commit/0c92e1c359000d5e6ad5754f4612843541b6c049))
* update junipero ([64aeff9](https://github.com/p3ol/oak/commit/64aeff92b2add9c0262a0806748295603a929167))
* update various deps ([8b72c2a](https://github.com/p3ol/oak/commit/8b72c2a84215181363efb26e059b5056fa3e9305))
* various remaining type issues ([a975e97](https://github.com/p3ol/oak/commit/a975e975ef60e5504cef8f934ba6310560f59d07))


### Features

* add box shadow styling field ([0f635a4](https://github.com/p3ol/oak/commit/0f635a43f4a891bcc04d0892317aa5fb26e88e92))
* **core:** add border width, color & radius ([f3b990b](https://github.com/p3ol/oak/commit/f3b990bbfe2e445a8da8b1e5c9572db5983e22bf))
* **typescript-core:** lint core files ([441e4d3](https://github.com/p3ol/oak/commit/441e4d3fbf1ea1efb14cfe08dfab1ffa736c202f))
* **typescript-core:** remove react ([6ed6f20](https://github.com/p3ol/oak/commit/6ed6f2059cbca1adcfca8760a669231bc743ed4e))
* **typescript-core:** remove react ([21fa955](https://github.com/p3ol/oak/commit/21fa955ae006c01e0c849ebafd0bca160da8a7d1))
* **typescript-core:** revert react ([b973f43](https://github.com/p3ol/oak/commit/b973f437dc533c9a5ec4b795b2ee5de16aa74580))
* **typescript-react:** begin react package ([62d8dee](https://github.com/p3ol/oak/commit/62d8dee8b3cc6dae7f81653d797ca84d47daf6f8))
* **typescript-react:** rework react builder ([04bbbd7](https://github.com/p3ol/oak/commit/04bbbd7ce166114ea11f7428a5fab8ebeb131790))
* **typescript-react:** type builder react ([1ef7ff3](https://github.com/p3ol/oak/commit/1ef7ff32e962c1b256604f3bd9718a2c4bd95566))
* **typescript:** builder constructor rework ([c00ceae](https://github.com/p3ol/oak/commit/c00ceae3f3adc511ae80f13957d0d81f45493f22))
* **typescript:** rework core lib ([59a799d](https://github.com/p3ol/oak/commit/59a799d51c1e09991c9b69af06d926784df3d7a3))
* **typescript:** wip typescript ([cdd6222](https://github.com/p3ol/oak/commit/cdd6222070b88eb878579656391d7721ea1b2d28))
* **typescript:** wip typescript ([88dec47](https://github.com/p3ol/oak/commit/88dec47fce29d8e3768305b39c5fc9cdb1e67ffa))
* **typescript:** wip typescript ([1c12174](https://github.com/p3ol/oak/commit/1c12174a47c0744dcde2a8c353be6f24bef4d616))
* **typescript:** wip typescript - react package ([f4ca25f](https://github.com/p3ol/oak/commit/f4ca25f4535a6028b1ec128597cae5ad5e5f20e6))





## [3.5.6](https://github.com/p3ol/oak/compare/v3.5.5...v3.5.6) (2024-05-29)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages/*"
],
"npmClient": "yarn",
"version": "3.5.6",
"version": "3.6.0",
"command": {
"publish": {
"conventionalCommits": true
Expand Down
12 changes: 12 additions & 0 deletions packages/addon-ckeditor5-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **addon-ckeditor5-react:** update ckeditor to v41 ([ef99c10](https://github.com/p3ol/oak/commit/ef99c1002a5dba9bb318cd2c5521e7f04ed26de8))
* various remaining type issues ([a975e97](https://github.com/p3ol/oak/commit/a975e975ef60e5504cef8f934ba6310560f59d07))





## [3.5.5](https://github.com/p3ol/oak/compare/v3.5.4...v3.5.5) (2024-05-29)


Expand Down
4 changes: 2 additions & 2 deletions packages/addon-ckeditor5-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oakjs/addon-ckeditor5-react",
"version": "3.5.5",
"version": "3.6.0",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak-addon-ckeditor.cjs.js",
"module": "dist/esm/index.js",
Expand All @@ -23,7 +23,7 @@
"react-dom": "^18.0.0"
},
"dependencies": {
"@oakjs/ckeditor5-build-custom": "^3.0.0"
"@oakjs/ckeditor5-build-custom": "^3.6.0"
},
"devDependencies": {
"@oakjs/ckeditor5-build-custom": "workspace:*",
Expand Down
11 changes: 11 additions & 0 deletions packages/addon-remirror/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* various remaining type issues ([a975e97](https://github.com/p3ol/oak/commit/a975e975ef60e5504cef8f934ba6310560f59d07))





## [3.5.5](https://github.com/p3ol/oak/compare/v3.5.4...v3.5.5) (2024-05-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/addon-remirror/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oakjs/addon-remirror",
"version": "3.5.5",
"version": "3.6.0",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak-addon-remirror.cjs.js",
"module": "dist/esm/index.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/ckeditor5-build-custom/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **addon-ckeditor5-react:** update ckeditor to v41 ([ef99c10](https://github.com/p3ol/oak/commit/ef99c1002a5dba9bb318cd2c5521e7f04ed26de8))





## [3.5.5](https://github.com/p3ol/oak/compare/v3.5.4...v3.5.5) (2024-05-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-custom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@oakjs/ckeditor5-build-custom",
"author": "CKSource",
"description": "A custom CKEditor 5 build made by the CKEditor 5 online builder.",
"version": "3.5.5",
"version": "3.6.0",
"license": "SEE LICENSE IN LICENSE.md",
"main": "dist/ckeditor.js",
"types": "dist/types/index.d.ts",
Expand Down
29 changes: 29 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,35 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **core:** settings override not working ([668109a](https://github.com/p3ol/oak/commit/668109afde59a58e87dbaae26a1fb7db4ac3ca93))
* **core:** types ([0c44447](https://github.com/p3ol/oak/commit/0c44447ffced5670c112beb16ee8fea96241e00e))
* **react:** a lot of types ([8458000](https://github.com/p3ol/oak/commit/8458000b90ae59e1ce4ec081d48f2adf79deb288))
* **react:** a lot of types issues ([cdf9ef0](https://github.com/p3ol/oak/commit/cdf9ef09b737f648afbf593b067473a5de699073))
* **react:** update and clean code ([9c19732](https://github.com/p3ol/oak/commit/9c197322c3f66f4d1247eb62151f88bf6f8267d2))
* update various deps ([8b72c2a](https://github.com/p3ol/oak/commit/8b72c2a84215181363efb26e059b5056fa3e9305))
* various remaining type issues ([a975e97](https://github.com/p3ol/oak/commit/a975e975ef60e5504cef8f934ba6310560f59d07))


### Features

* add box shadow styling field ([0f635a4](https://github.com/p3ol/oak/commit/0f635a43f4a891bcc04d0892317aa5fb26e88e92))
* **core:** add border width, color & radius ([f3b990b](https://github.com/p3ol/oak/commit/f3b990bbfe2e445a8da8b1e5c9572db5983e22bf))
* **typescript-core:** lint core files ([441e4d3](https://github.com/p3ol/oak/commit/441e4d3fbf1ea1efb14cfe08dfab1ffa736c202f))
* **typescript:** builder constructor rework ([c00ceae](https://github.com/p3ol/oak/commit/c00ceae3f3adc511ae80f13957d0d81f45493f22))
* **typescript:** rework core lib ([59a799d](https://github.com/p3ol/oak/commit/59a799d51c1e09991c9b69af06d926784df3d7a3))
* **typescript:** wip typescript ([88dec47](https://github.com/p3ol/oak/commit/88dec47fce29d8e3768305b39c5fc9cdb1e67ffa))
* **typescript:** wip typescript ([1c12174](https://github.com/p3ol/oak/commit/1c12174a47c0744dcde2a8c353be6f24bef4d616))
* **typescript:** wip typescript - react package ([f4ca25f](https://github.com/p3ol/oak/commit/f4ca25f4535a6028b1ec128597cae5ad5e5f20e6))





## [3.5.5](https://github.com/p3ol/oak/compare/v3.5.4...v3.5.5) (2024-05-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oakjs/core",
"version": "3.5.5",
"version": "3.6.0",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak-core.cjs.js",
"module": "dist/esm/index.js",
Expand Down
34 changes: 34 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,40 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **react:** a lot of types ([8458000](https://github.com/p3ol/oak/commit/8458000b90ae59e1ce4ec081d48f2adf79deb288))
* **react:** a lot of types issues ([cdf9ef0](https://github.com/p3ol/oak/commit/cdf9ef09b737f648afbf593b067473a5de699073))
* **react:** allow more sibling fields in editable ([95a6404](https://github.com/p3ol/oak/commit/95a6404148c2758f85fb7d144b9870b2609a5be1))
* **react:** clean code ([f5079f6](https://github.com/p3ol/oak/commit/f5079f64b1d56994d251fc71fb3451b5ce721119))
* **react:** image field preview ([469391e](https://github.com/p3ol/oak/commit/469391e9cf832c87d9911feb273f51da911ba60c))
* **react:** missing exports ([51a36ed](https://github.com/p3ol/oak/commit/51a36edf9bc647d0b2a507b0193890834072c8cf))
* **react:** update and clean code ([9c19732](https://github.com/p3ol/oak/commit/9c197322c3f66f4d1247eb62151f88bf6f8267d2))
* update junipero ([64aeff9](https://github.com/p3ol/oak/commit/64aeff92b2add9c0262a0806748295603a929167))
* update various deps ([8b72c2a](https://github.com/p3ol/oak/commit/8b72c2a84215181363efb26e059b5056fa3e9305))
* various remaining type issues ([a975e97](https://github.com/p3ol/oak/commit/a975e975ef60e5504cef8f934ba6310560f59d07))


### Features

* add box shadow styling field ([0f635a4](https://github.com/p3ol/oak/commit/0f635a43f4a891bcc04d0892317aa5fb26e88e92))
* **typescript-core:** remove react ([6ed6f20](https://github.com/p3ol/oak/commit/6ed6f2059cbca1adcfca8760a669231bc743ed4e))
* **typescript-core:** remove react ([21fa955](https://github.com/p3ol/oak/commit/21fa955ae006c01e0c849ebafd0bca160da8a7d1))
* **typescript-core:** revert react ([b973f43](https://github.com/p3ol/oak/commit/b973f437dc533c9a5ec4b795b2ee5de16aa74580))
* **typescript-react:** begin react package ([62d8dee](https://github.com/p3ol/oak/commit/62d8dee8b3cc6dae7f81653d797ca84d47daf6f8))
* **typescript-react:** rework react builder ([04bbbd7](https://github.com/p3ol/oak/commit/04bbbd7ce166114ea11f7428a5fab8ebeb131790))
* **typescript-react:** type builder react ([1ef7ff3](https://github.com/p3ol/oak/commit/1ef7ff32e962c1b256604f3bd9718a2c4bd95566))
* **typescript:** wip typescript ([cdd6222](https://github.com/p3ol/oak/commit/cdd6222070b88eb878579656391d7721ea1b2d28))
* **typescript:** wip typescript ([88dec47](https://github.com/p3ol/oak/commit/88dec47fce29d8e3768305b39c5fc9cdb1e67ffa))
* **typescript:** wip typescript - react package ([f4ca25f](https://github.com/p3ol/oak/commit/f4ca25f4535a6028b1ec128597cae5ad5e5f20e6))





## [3.5.5](https://github.com/p3ol/oak/compare/v3.5.4...v3.5.5) (2024-05-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oakjs/react",
"version": "3.5.5",
"version": "3.6.0",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak-react.cjs.js",
"jsnext:main": "dist/esm/index.js",
Expand Down
11 changes: 11 additions & 0 deletions packages/strapi-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **addon-ckeditor5-react:** update ckeditor to v41 ([ef99c10](https://github.com/p3ol/oak/commit/ef99c1002a5dba9bb318cd2c5521e7f04ed26de8))





## [3.5.6](https://github.com/p3ol/oak/compare/v3.5.5...v3.5.6) (2024-05-29)

**Note:** Version bump only for package @oakjs/strapi-plugin
Expand Down
12 changes: 6 additions & 6 deletions packages/strapi-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oakjs/strapi-plugin",
"version": "3.5.6",
"version": "3.6.0",
"description": "🌳 Modern, lightweight & modulable page builder",
"repository": {
"type": "git",
Expand All @@ -22,11 +22,11 @@
},
"dependencies": {
"@ckeditor/ckeditor5-react": "7.0.0",
"@oakjs/addon-ckeditor5-react": "^3.5.5",
"@oakjs/addon-remirror": "^3.5.5",
"@oakjs/ckeditor5-build-custom": "^3.5.5",
"@oakjs/react": "^3.5.5",
"@oakjs/theme": "^3.5.6",
"@oakjs/addon-ckeditor5-react": "^3.6.0",
"@oakjs/addon-remirror": "^3.6.0",
"@oakjs/ckeditor5-build-custom": "^3.6.0",
"@oakjs/react": "^3.6.0",
"@oakjs/theme": "^3.6.0",
"@remirror/pm": "2.0.8",
"@remirror/react": "2.0.35",
"@strapi/design-system": "1.19.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/theme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.6.0](https://github.com/p3ol/oak/compare/v3.5.6...v3.6.0) (2024-06-11)


### Bug Fixes

* **theme:** editable fields menus zindex ([0c92e1c](https://github.com/p3ol/oak/commit/0c92e1c359000d5e6ad5754f4612843541b6c049))





## [3.5.6](https://github.com/p3ol/oak/compare/v3.5.5...v3.5.6) (2024-05-29)


Expand Down
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oakjs/theme",
"version": "3.5.6",
"version": "3.6.0",
"description": "🌳 Modern, lightweight & modulable page builder",
"main": "dist/oak.min.css",
"cdn": "dist/oak.min.css",
Expand Down
20 changes: 10 additions & 10 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4555,7 +4555,7 @@ __metadata:
languageName: node
linkType: hard

"@oakjs/addon-ckeditor5-react@npm:^3.5.5, @oakjs/addon-ckeditor5-react@workspace:packages/addon-ckeditor5-react":
"@oakjs/addon-ckeditor5-react@npm:^3.6.0, @oakjs/addon-ckeditor5-react@workspace:packages/addon-ckeditor5-react":
version: 0.0.0-use.local
resolution: "@oakjs/addon-ckeditor5-react@workspace:packages/addon-ckeditor5-react"
dependencies:
Expand All @@ -4569,7 +4569,7 @@ __metadata:
languageName: unknown
linkType: soft

"@oakjs/addon-remirror@npm:^3.5.5, @oakjs/addon-remirror@workspace:packages/addon-remirror":
"@oakjs/addon-remirror@npm:^3.6.0, @oakjs/addon-remirror@workspace:packages/addon-remirror":
version: 0.0.0-use.local
resolution: "@oakjs/addon-remirror@workspace:packages/addon-remirror"
dependencies:
Expand All @@ -4584,7 +4584,7 @@ __metadata:
languageName: unknown
linkType: soft

"@oakjs/ckeditor5-build-custom@npm:^3.5.5, @oakjs/ckeditor5-build-custom@workspace:*, @oakjs/ckeditor5-build-custom@workspace:packages/ckeditor5-build-custom":
"@oakjs/ckeditor5-build-custom@npm:^3.6.0, @oakjs/ckeditor5-build-custom@workspace:*, @oakjs/ckeditor5-build-custom@workspace:packages/ckeditor5-build-custom":
version: 0.0.0-use.local
resolution: "@oakjs/ckeditor5-build-custom@workspace:packages/ckeditor5-build-custom"
dependencies:
Expand All @@ -4605,7 +4605,7 @@ __metadata:
languageName: unknown
linkType: soft

"@oakjs/react@npm:^3.5.5, @oakjs/react@workspace:*, @oakjs/react@workspace:packages/react":
"@oakjs/react@npm:^3.6.0, @oakjs/react@workspace:*, @oakjs/react@workspace:packages/react":
version: 0.0.0-use.local
resolution: "@oakjs/react@workspace:packages/react"
dependencies:
Expand All @@ -4625,11 +4625,11 @@ __metadata:
resolution: "@oakjs/strapi-plugin@workspace:packages/strapi-plugin"
dependencies:
"@ckeditor/ckeditor5-react": "npm:7.0.0"
"@oakjs/addon-ckeditor5-react": "npm:^3.5.5"
"@oakjs/addon-remirror": "npm:^3.5.5"
"@oakjs/ckeditor5-build-custom": "npm:^3.5.5"
"@oakjs/react": "npm:^3.5.5"
"@oakjs/theme": "npm:^3.5.6"
"@oakjs/addon-ckeditor5-react": "npm:^3.6.0"
"@oakjs/addon-remirror": "npm:^3.6.0"
"@oakjs/ckeditor5-build-custom": "npm:^3.6.0"
"@oakjs/react": "npm:^3.6.0"
"@oakjs/theme": "npm:^3.6.0"
"@remirror/pm": "npm:2.0.8"
"@remirror/react": "npm:2.0.35"
"@strapi/design-system": "npm:1.19.0"
Expand All @@ -4643,7 +4643,7 @@ __metadata:
languageName: unknown
linkType: soft

"@oakjs/theme@npm:^3.5.6, @oakjs/theme@workspace:packages/theme":
"@oakjs/theme@npm:^3.6.0, @oakjs/theme@workspace:packages/theme":
version: 0.0.0-use.local
resolution: "@oakjs/theme@workspace:packages/theme"
dependencies:
Expand Down

0 comments on commit 8e1dce1

Please sign in to comment.