diff --git a/CHANGELOG.md b/CHANGELOG.md index a95d9460269..8001dd75923 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 🏔 [4.27.0](https://github.com/ionic-team/stencil/compare/v4.26.0...v4.27.0) (2025-02-22) + + +### Bug Fixes + +* **hydrate:** support dash-case case in hydrate mode ([#6158](https://github.com/ionic-team/stencil/issues/6158)) ([30f2a09](https://github.com/ionic-team/stencil/commit/30f2a09b1d5c282d1c6d2a99e7f19219d26e179b)), closes [#6150](https://github.com/ionic-team/stencil/issues/6150) +* **runtime:** `scoped: true` slot fallback with forwarded slot ([#6171](https://github.com/ionic-team/stencil/issues/6171)) ([57e7e58](https://github.com/ionic-team/stencil/commit/57e7e5886d81ba3c3357683415cb592e1e72740d)), closes [#6170](https://github.com/ionic-team/stencil/issues/6170) +* **runtime:** always call component lifecycle hooks ([#6167](https://github.com/ionic-team/stencil/issues/6167)) ([260ced2](https://github.com/ionic-team/stencil/commit/260ced2bdc41e499110f7e6fd89b193166285093)), closes [#6165](https://github.com/ionic-team/stencil/issues/6165) +* **runtime:** append newChild if parent node doesn't match with patched node ([#6141](https://github.com/ionic-team/stencil/issues/6141)) ([eafe1f9](https://github.com/ionic-team/stencil/commit/eafe1f9d55f964d7f4927e18f4e3f7347e30a7f2)), closes [#6140](https://github.com/ionic-team/stencil/issues/6140) + + +### Features + +* **runtime:** add `slotchange` event and `assignedNodes` / `assignedElements` methods for `scoped: true` slots ([#6151](https://github.com/ionic-team/stencil/issues/6151)) ([2a1038e](https://github.com/ionic-team/stencil/commit/2a1038e06440cf541534df9ae938bf74e0b37bb4)) + + + # 🐇 [4.26.0](https://github.com/ionic-team/stencil/compare/v4.25.3...v4.26.0) (2025-02-11) diff --git a/package-lock.json b/package-lock.json index 6d7a742b171..d90f1328ebd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@stencil/core", - "version": "4.26.0", + "version": "4.27.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@stencil/core", - "version": "4.26.0", + "version": "4.27.0", "license": "MIT", "bin": { "stencil": "bin/stencil" diff --git a/package.json b/package.json index 67715adce38..e6973cdeea8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stencil/core", - "version": "4.26.0", + "version": "4.27.0", "license": "MIT", "main": "./internal/stencil-core/index.cjs", "module": "./internal/stencil-core/index.js",