diff --git a/CHANGELOG.md b/CHANGELOG.md index ab6541697..172669c62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## [0.16.1](https://github.com/measuredco/puck/compare/v0.16.0...v0.16.1) (2024-10-07) + + +### Bug Fixes + +* don't delete array field on click in FieldLabel ([ed282b9](https://github.com/measuredco/puck/commit/ed282b98ebe8574258444ba91716d8da7e8117d1)) +* don't overwrite user input when field recently changed ([6126040](https://github.com/measuredco/puck/commit/61260407c5c87cc8c5c4fe925835f2d0d2a6f9ff)) +* don't show field loader if no resolver defined ([8c706cd](https://github.com/measuredco/puck/commit/8c706cda92474114faffc7ed77f4b4024f75bf68)) +* hide ActionBar.Group border when empty ([4345165](https://github.com/measuredco/puck/commit/4345165ee71b9762e6bca9baaa53d0c53144d0c4)) +* prevent item click before iframe load ([61e1653](https://github.com/measuredco/puck/commit/61e1653020b9e272133c70fa9494f1a81782531e)) +* prevent flash of field loader when no data changed ([20d7309](https://github.com/measuredco/puck/commit/20d730924d2f235871bfec4f0467a6652a518704)) +* respect readOnly styles in AutoField ([9ffe817](https://github.com/measuredco/puck/commit/9ffe8176c1c437524fd9f7b2912f1a5846fc5e55)) + + + + ## [0.16.0](https://github.com/measuredco/puck/compare/v0.15.0...v0.16.0) (2024-09-16) diff --git a/apps/docs/package.json b/apps/docs/package.json index 0b8483ba9..f0e985f95 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "0.16.0", + "version": "0.16.1", "private": true, "scripts": { "dev": "next dev", diff --git a/lerna.json b/lerna.json index 7075b8af9..b6972fa9a 100644 --- a/lerna.json +++ b/lerna.json @@ -7,6 +7,6 @@ "packages/plugin-emotion-cache", "packages/plugin-heading-analyzer" ], - "version": "0.16.0", + "version": "0.16.1", "npmClient": "yarn" } diff --git a/package.json b/package.json index d050604db..e9f08b457 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "recipes/*", "packages/*" ], - "version": "0.16.0", + "version": "0.16.1", "engines": { "node": ">=18" } diff --git a/packages/core/package.json b/packages/core/package.json index 9c8ff4d52..40d58a295 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@measured/puck", - "version": "0.16.0", + "version": "0.16.1", "author": "Measured Corporation Ltd ", "repository": "measuredco/puck", "bugs": "https://github.com/measuredco/puck/issues", diff --git a/packages/create-puck-app/package.json b/packages/create-puck-app/package.json index dbda06c81..9c0c19f38 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.16.0", + "version": "0.16.1", "author": "Measured Corporation Ltd ", "repository": "measuredco/puck", "bugs": "https://github.com/measuredco/puck/issues", diff --git a/packages/field-contentful/package.json b/packages/field-contentful/package.json index 7b7f5c16e..dcc5b7c4f 100644 --- a/packages/field-contentful/package.json +++ b/packages/field-contentful/package.json @@ -1,6 +1,6 @@ { "name": "@measured/puck-field-contentful", - "version": "0.16.0", + "version": "0.16.1", "author": "Measured Corporation Ltd ", "repository": "measuredco/puck", "bugs": "https://github.com/measuredco/puck/issues", @@ -22,7 +22,7 @@ "dist" ], "devDependencies": { - "@measured/puck": "^0.16.0", + "@measured/puck": "^0.16.1", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "contentful": "^10.8.6", diff --git a/packages/plugin-emotion-cache/package.json b/packages/plugin-emotion-cache/package.json index 4357c5038..34bfbc8e3 100644 --- a/packages/plugin-emotion-cache/package.json +++ b/packages/plugin-emotion-cache/package.json @@ -1,6 +1,6 @@ { "name": "@measured/puck-plugin-emotion-cache", - "version": "0.16.0", + "version": "0.16.1", "author": "Measured Corporation Ltd ", "repository": "measuredco/puck", "bugs": "https://github.com/measuredco/puck/issues", @@ -23,7 +23,7 @@ ], "devDependencies": { "@emotion/react": "^11.13.3", - "@measured/puck": "^0.16.0", + "@measured/puck": "^0.16.1", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "eslint": "^7.32.0", diff --git a/packages/plugin-heading-analyzer/package.json b/packages/plugin-heading-analyzer/package.json index 0397c2ab4..7168fac83 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.16.0", + "version": "0.16.1", "author": "Measured Corporation Ltd ", "repository": "measuredco/puck", "bugs": "https://github.com/measuredco/puck/issues", @@ -25,7 +25,7 @@ "dist" ], "devDependencies": { - "@measured/puck": "^0.16.0", + "@measured/puck": "^0.16.1", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "eslint": "^7.32.0",