diff --git a/CHANGELOG.md b/CHANGELOG.md index a785bc7a3..fbb231181 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.7](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.6...v2.30.7) (2024-11-27) + +### Bug Fixes + +- Float box may appear twice at page break (Regression in v2.30.5) ([4d7caa5](https://github.com/vivliostyle/vivliostyle.js/commit/4d7caa5b6fe783e7fe58a391b7d5df9d81344e96)), closes [#1422](https://github.com/vivliostyle/vivliostyle.js/issues/1422) +- prevent breaking inside SVG ([f58e457](https://github.com/vivliostyle/vivliostyle.js/commit/f58e4570d666300e03c6627408b327ed1929e5d8)), closes [#1406](https://github.com/vivliostyle/vivliostyle.js/issues/1406) +- prevent wrong break at beginning of paragraph ([3cfca03](https://github.com/vivliostyle/vivliostyle.js/commit/3cfca030b428d74f984621942b9177ad4c8ee1cc)), closes [#1401](https://github.com/vivliostyle/vivliostyle.js/issues/1401) + ## [2.30.6](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.5...v2.30.6) (2024-11-17) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 09f4aac66..74b95469e 100644 --- a/lerna.json +++ b/lerna.json @@ -3,6 +3,6 @@ "packages/*" ], "npmClient": "yarn", - "version": "2.30.6", + "version": "2.30.7", "includeMergedTags": true } \ No newline at end of file diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index a465503a8..ff08fa28d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.7](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.6...v2.30.7) (2024-11-27) + +### Bug Fixes + +- Float box may appear twice at page break (Regression in v2.30.5) ([4d7caa5](https://github.com/vivliostyle/vivliostyle.js/commit/4d7caa5b6fe783e7fe58a391b7d5df9d81344e96)), closes [#1422](https://github.com/vivliostyle/vivliostyle.js/issues/1422) +- prevent breaking inside SVG ([f58e457](https://github.com/vivliostyle/vivliostyle.js/commit/f58e4570d666300e03c6627408b327ed1929e5d8)), closes [#1406](https://github.com/vivliostyle/vivliostyle.js/issues/1406) +- prevent wrong break at beginning of paragraph ([3cfca03](https://github.com/vivliostyle/vivliostyle.js/commit/3cfca030b428d74f984621942b9177ad4c8ee1cc)), closes [#1401](https://github.com/vivliostyle/vivliostyle.js/issues/1401) + ## [2.30.6](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.5...v2.30.6) (2024-11-17) ### Bug Fixes diff --git a/packages/core/package.json b/packages/core/package.json index 2a2828a52..f3ad0caa2 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@vivliostyle/core", "description": "Vivliostyle Core library for HTML+CSS typesetting with EPUB/Web publications support", - "version": "2.30.6", + "version": "2.30.7", "author": "Vivliostyle Foundation", "scripts": { "build": "tsc --emitDeclarationOnly && esbuild src/vivliostyle.ts --bundle --outfile=lib/vivliostyle.js --format=cjs --define:VIVLIOSTYLE_DEBUG=false --minify --sourcemap --target=es2018", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 91989ef8f..75892fdb7 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.7](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.6...v2.30.7) (2024-11-27) + +**Note:** Version bump only for package @vivliostyle/react + ## [2.30.6](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.5...v2.30.6) (2024-11-17) ### Bug Fixes diff --git a/packages/react/package.json b/packages/react/package.json index 0f50ceee7..f179f8523 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@vivliostyle/react", "description": "React component for Vivliostyle", - "version": "2.30.6", + "version": "2.30.7", "author": "Yasuaki Uechi ", "scripts": { "build": "microbundle --format modern,cjs && shx rm -rf dist/stories", @@ -18,7 +18,7 @@ "dependencies": { "@emotion/core": "^10.0.28", "@emotion/styled": "^10.0.27", - "@vivliostyle/core": "^2.30.6" + "@vivliostyle/core": "^2.30.7" }, "peerDependencies": { "react": "^18.2.0", diff --git a/packages/viewer/CHANGELOG.md b/packages/viewer/CHANGELOG.md index 3714357bd..2c9843854 100644 --- a/packages/viewer/CHANGELOG.md +++ b/packages/viewer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.7](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.6...v2.30.7) (2024-11-27) + +**Note:** Version bump only for package @vivliostyle/viewer + ## [2.30.6](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.5...v2.30.6) (2024-11-17) **Note:** Version bump only for package @vivliostyle/viewer diff --git a/packages/viewer/package.json b/packages/viewer/package.json index 772b7cba0..99907f631 100644 --- a/packages/viewer/package.json +++ b/packages/viewer/package.json @@ -1,7 +1,7 @@ { "name": "@vivliostyle/viewer", "description": "Vivliostyle Viewer - HTML+CSS typesetting and rich paged viewing with EPUB/Web publications support", - "version": "2.30.6", + "version": "2.30.7", "author": "Vivliostyle Foundation", "scripts": { "build": "gulp build && cross-env NODE_ENV=production rollup -c", @@ -19,7 +19,7 @@ "test-sauce": "echo 'Tests for Vivliostyle Viewer has been disabled. See #618.'" }, "dependencies": { - "@vivliostyle/core": "^2.30.6", + "@vivliostyle/core": "^2.30.7", "i18next-ko": "^3.0.1", "knockout": "^3.5.0" },