Skip to content

Commit a33cc8b

Browse files
committed
chore(release): 9.0.0
1 parent 97f8843 commit a33cc8b

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

docs/CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [9.0.0](https://github.com/hybridsjs/hybrids/compare/v8.2.23...v9.0.0) (2024-06-13)
6+
7+
This major release comes with several breaking changes, which may affect your code. Follow the instructions from the [Migration Guide](/migration.md) section in the documentation.
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* The `content` property is no longer supported. The `render` property must be used. In some cases, usage of the `shadow` option might be required.
12+
* `get` and `set` methods must be replaced with `value` option. Properties no longer
13+
reflect value to the corresponding attribute by default. The new `reflect` option must be set to `true`.
14+
15+
### Features
16+
17+
* remove `content` property & add shadow mode detection to render property ([#258](https://github.com/hybridsjs/hybrids/issues/258)) ([97f8843](https://github.com/hybridsjs/hybrids/commit/97f88439189e4d86c727d532b60fe92a2b0b9e9e))
18+
* replace `get` and `set` methods with unified `value` option ([#232](https://github.com/hybridsjs/hybrids/issues/232)) ([258e41f](https://github.com/hybridsjs/hybrids/commit/258e41f6527672772dd9fbb6324da25cfc8e9f85))
19+
20+
21+
### Bug Fixes
22+
23+
* **cache:** refactor access to cached model for `get` method ([57e2b72](https://github.com/hybridsjs/hybrids/commit/57e2b72d63891454641a5cb0fdf9ee4aed8a5b77))
24+
* **router:** prevent from throwing when browser pushes null state ([3208959](https://github.com/hybridsjs/hybrids/commit/3208959e0911ba702e67f109deb19c20effbb3aa))
25+
* **store:** sync method should not trigger storage get of the model ([36d6e39](https://github.com/hybridsjs/hybrids/commit/36d6e398dd315d676f896e8751f7c09a21b5b222))
26+
527
### [8.2.23](https://github.com/hybridsjs/hybrids/compare/v8.2.22...v8.2.23) (2024-05-06)
628

729

@@ -425,6 +447,7 @@ All notable changes to this project will be documented in this file. See [standa
425447

426448
## [8.0.0](https://github.com/hybridsjs/hybrids/compare/v7.1.0...v8.0.0) (2022-04-28)
427449

450+
This major release comes with several breaking changes, which may affect your code. Follow the instructions from the [Migration Guide](/migration.md) section in the documentation.
428451

429452
### ⚠ BREAKING CHANGES
430453

@@ -493,10 +516,11 @@ All notable changes to this project will be documented in this file. See [standa
493516

494517
## [7.0.0](https://github.com/hybridsjs/hybrids/compare/v6.1.0...v7.0.0) (2021-12-08)
495518

496-
### ⚠ BREAKING CHANGES
497519

498520
This major release comes with several breaking changes, which may affect your code. Follow the instructions from the [Migration Guide](/migration.md) section in the documentation.
499521

522+
### ⚠ BREAKING CHANGES
523+
500524
### Features
501525

502526
* **router:** add debug mode ([991e46b](https://github.com/hybridsjs/hybrids/commit/991e46bbc5de1b22d6197efaa2c8f0607e256ecb))

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hybrids",
3-
"version": "8.2.23",
3+
"version": "9.0.0",
44
"description": "A JavaScript framework for creating fully-featured web applications, components libraries, and single web components with unique declarative and functional architecture",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)