From 1fc0689a43f0f6d4712d8a17bf5e269992f19a75 Mon Sep 17 00:00:00 2001 From: Chris Villa Date: Tue, 3 Oct 2023 18:52:48 +0100 Subject: [PATCH] release: v0.8.0 --- CHANGELOG.md | 34 +++++++++++++++++++ lerna.json | 2 +- package.json | 2 +- packages/adaptor-strapi/package.json | 2 +- packages/core/package.json | 2 +- packages/create-puck-app/package.json | 2 +- packages/plugin-heading-analyzer/package.json | 4 +-- 7 files changed, 41 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c62ef3cb4..5a891fbc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,40 @@ +## [0.8.0](https://github.com/measuredco/puck/compare/v0.7.0...v0.8.0) (2023-10-03) + + + ### Features + + * introduce DropZone API for nesting components and advanced layouts ([5053a84](https://github.com/measuredco/puck/commit/5053a8430de1f4bfb6fb7a4b1f194a1474ed3ae3)) + * introduce new outline UI ([e32c4ff](https://github.com/measuredco/puck/commit/e32c4ff784a2fcc5f2e2879807c045bd2742f4ac)) + * redesign action overlay and move outside of component ([5145cba](https://github.com/measuredco/puck/commit/5145cba6595e2051d14a7bfd37d9b180d9553330)) + * cast number field types to Number ([d5df959](https://github.com/measuredco/puck/commit/d5df95946dd9abf1502cb21bfc8682dd98efb1e1)) + + + ### Bug Fixes + + * add missing id type to render props ([18753cf](https://github.com/measuredco/puck/commit/18753cf1142d70f7100bc6fd5aa913813491042e)) + * add missing optional chaining operator to next recipe ([a368319](https://github.com/measuredco/puck/commit/a368319ec73adfc5bce8fb6bd31ac8e46e669400)) + * don't show margin underneath placeholder when dragging in ([2620455](https://github.com/measuredco/puck/commit/26204557b6fc92b208ee1051921965b793a78b1e)) + * don't switch between controlled/uncontrolled inputs ([b20e298](https://github.com/measuredco/puck/commit/b20e2980be6df6d57f9dfb6987b512686ccc5a7a)) + * ensure form styles override global styles ([104091a](https://github.com/measuredco/puck/commit/104091ac87c95d1395687d1785e621f5580efd87)) + * ensure hooks can always be used within render functions ([cbf8e8e](https://github.com/measuredco/puck/commit/cbf8e8e49fc5d43a8818cf41010cfba6034bbf28)) + * ensure types allow for nested arrays ([06b145b](https://github.com/measuredco/puck/commit/06b145b9089548725166fec3dd54f757b6e932cc)) + * fix unpredictable rendering of drop placeholder ([bf5f16b](https://github.com/measuredco/puck/commit/bf5f16b394ef950318949e9a440dd1bf2407636e)) + * only show sidebar scroll bars if necessary ([87c8736](https://github.com/measuredco/puck/commit/87c87369003f417600ca0a7bb38041de5c675afb)) + * prevent global styles from overwriting fieldset styles ([550bd0e](https://github.com/measuredco/puck/commit/550bd0ef9263766817709cea2c0365e9bd3e95cf)) + * respect labels for array item fields ([f2e7843](https://github.com/measuredco/puck/commit/f2e7843de0b12df4b15b1c1dd953e8b4d82ce366)) + * prevent global styles from overwriting outline styles ([1dc222c](https://github.com/measuredco/puck/commit/1dc222cfa5924aca2e5eb5ea535f77cfe2fe1281)) + * prevent styles from clashing with dark mode root element ([8506e8e](https://github.com/measuredco/puck/commit/8506e8e7f72aa8df7e69a1e7349eae273ebdee0e)) + * upgrade next version in recipe to ensure vercel builds pass ([c2d7fae](https://github.com/measuredco/puck/commit/c2d7faeed59fea5c7c795f76915cf354151d644d)) + + + ### Performance Improvements + + * reduce bundle size by 61% by removing unused react-feather icons ([f4b0563](https://github.com/measuredco/puck/commit/f4b0563e38a93a5f582b0210b0d75a846e3bada4)) + + ## [0.7.0](https://github.com/measuredco/puck/compare/v0.6.2...v0.7.0) (2023-09-14) diff --git a/lerna.json b/lerna.json index ab9674d6b..0442faddf 100644 --- a/lerna.json +++ b/lerna.json @@ -5,6 +5,6 @@ "packages/create-puck-app", "packages/plugin-heading-analyzer" ], - "version": "0.7.0", + "version": "0.8.0", "npmClient": "yarn" } diff --git a/package.json b/package.json index f378b60eb..7d25792f5 100644 --- a/package.json +++ b/package.json @@ -31,5 +31,5 @@ "recipes/*", "packages/*" ], - "version": "0.7.0" + "version": "0.8.0" } diff --git a/packages/adaptor-strapi/package.json b/packages/adaptor-strapi/package.json index d2e8c9978..3ca5e38c1 100644 --- a/packages/adaptor-strapi/package.json +++ b/packages/adaptor-strapi/package.json @@ -1,6 +1,6 @@ { "name": "@measured/puck-adaptor-strapi", - "version": "0.7.0", + "version": "0.8.0", "private": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index 6def53b20..a56d75201 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@measured/puck", - "version": "0.7.0", + "version": "0.8.0", "private": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/create-puck-app/package.json b/packages/create-puck-app/package.json index 985b85eaa..ed6e63d26 100644 --- a/packages/create-puck-app/package.json +++ b/packages/create-puck-app/package.json @@ -1,6 +1,6 @@ { "name": "create-puck-app", - "version": "0.7.0", + "version": "0.8.0", "private": false, "license": "MIT", "type": "module", diff --git a/packages/plugin-heading-analyzer/package.json b/packages/plugin-heading-analyzer/package.json index 58235a580..08c8d52a2 100644 --- a/packages/plugin-heading-analyzer/package.json +++ b/packages/plugin-heading-analyzer/package.json @@ -1,6 +1,6 @@ { "name": "@measured/puck-plugin-heading-analyzer", - "version": "0.7.0", + "version": "0.8.0", "private": false, "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -14,7 +14,7 @@ "dist" ], "devDependencies": { - "@measured/puck": "^0.7.0", + "@measured/puck": "^0.8.0", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "eslint": "^7.32.0",