Skip to content

Commit

Permalink
chore(release): Version 1.0.0 - Automated release [skip ci]
Browse files Browse the repository at this point in the history
See the release details: v1.0.0
  • Loading branch information
semantic-release-bot committed Jan 21, 2025
1 parent cb34408 commit b64374e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
### 🚀 Release Notes

**Version**: 1.0.0
**Date**: 2025-01-21

### ✨ Features

- Ability to read a signal value without subscribing to it via the `peek` function. ([8dc1db3](https://github.com/stanleyzapata/lwc-signals/commit/8dc1db367a24190a6746543f1c470615be0eaf3a))
- Effects and computed have a default identifier. ([74f2521](https://github.com/stanleyzapata/lwc-signals/commit/74f2521b7973e942c23d2879eb62dfe1e00c7600))
- Effects and computed have a default identifier. ([7db87fb](https://github.com/stanleyzapata/lwc-signals/commit/7db87fb2c0b3e4d82f5b553c38e3acd192b82589))
- Error handling and cyclical dependency management ([#20](https://github.com/stanleyzapata/lwc-signals/issues/20)) ([97fa7fe](https://github.com/stanleyzapata/lwc-signals/commit/97fa7fe78955e744044096e384d32d4dfa5b0922))
- Error handling for resources ([f4f7351](https://github.com/stanleyzapata/lwc-signals/commit/f4f7351c0135097bf259caa967decc6a0399636f))
- Improved error handling ([#22](https://github.com/stanleyzapata/lwc-signals/issues/22)) ([8144196](https://github.com/stanleyzapata/lwc-signals/commit/8144196460f8067b4d4f8f9e319071b105def151))
- Introduces the ability to make objects and array changes reactive by "tracking" them ([8a6bdf4](https://github.com/stanleyzapata/lwc-signals/commit/8a6bdf46aac421a1ccdc3a31fc4af5c4c4840bd1))
- isASignal function allows to check if an object is a signal ([c6be621](https://github.com/stanleyzapata/lwc-signals/commit/c6be6210c73a06e1af4332ab76de759a5c4ad4d2))
- isASignal function allows to check if an object is a signal ([06dd95b](https://github.com/stanleyzapata/lwc-signals/commit/06dd95bf48a1601e1b92f070d8fe93fea645d403))
- Signals can be identified with a symbol through the "brand" property ([17f7b10](https://github.com/stanleyzapata/lwc-signals/commit/17f7b100b9b8e098b87293c970230997e45a91bf))

### 🐞 Bug Fixes

- Computed values that return the unchanged value of a tracked signal are now recomputed when the source signal changes. ([100308e](https://github.com/stanleyzapata/lwc-signals/commit/100308ef3269e685fb212cb16d44ae70144bf27d))
- Fix issues with equality ([fef168f](https://github.com/stanleyzapata/lwc-signals/commit/fef168fab4d2f1367ca1efdb2e7a8a1af7651475))
- isASignal function renamed to isSignal ([899ba02](https://github.com/stanleyzapata/lwc-signals/commit/899ba0241494c4f9e8e0d3b650ca791956a338d1))
- Reactive cycle improvements ([2fa354a](https://github.com/stanleyzapata/lwc-signals/commit/2fa354a8bd67e12773468460d61e90b47db1891d))
- removing console logs. ([1e9aecf](https://github.com/stanleyzapata/lwc-signals/commit/1e9aecf1ff8e471119f3df2c327d214880e73387))

### 🛠️ Chores

- kitchen sink demo images ([2f3cab3](https://github.com/stanleyzapata/lwc-signals/commit/2f3cab3bd55753c88215d381275aa2300678add6))
- **release:** Version 1.0.0 - Automated release [skip ci] ([a8a9d1d](https://github.com/stanleyzapata/lwc-signals/commit/a8a9d1d2d57dc175bad832790ccb110d56b63a51))
- **release:** Version 1.0.1 - Automated release [skip ci] ([cd6b31a](https://github.com/stanleyzapata/lwc-signals/commit/cd6b31a044df22a7bec3927626d40e4f6a12cab5))
- **release:** Version 1.0.2 - Automated release [skip ci] ([9985f4a](https://github.com/stanleyzapata/lwc-signals/commit/9985f4a1433fded969a2d5a0f7ad523b0518f1ee))
- **release:** Version 1.1.0 - Automated release [skip ci] ([098d623](https://github.com/stanleyzapata/lwc-signals/commit/098d6238559c1e267f143e7c3af82551d95d2adc))
- **release:** Version 1.1.1 - Automated release [skip ci] ([edc189e](https://github.com/stanleyzapata/lwc-signals/commit/edc189e1676fb4ee0a9b93c3851401745b2cde71))
- **release:** Version 1.2.0 - Automated release [skip ci] ([917f8ab](https://github.com/stanleyzapata/lwc-signals/commit/917f8ab9b3b75406221219f40090a19243811710))
- **release:** Version 1.2.1 - Automated release [skip ci] ([cae2013](https://github.com/stanleyzapata/lwc-signals/commit/cae2013bea1de88e46ee2d70ca5c7915349e4c89))
- **release:** Version 1.3.0 - Automated release [skip ci] ([51d19a4](https://github.com/stanleyzapata/lwc-signals/commit/51d19a47496d835be20602c559813d1278c5acbd))

### 🚀 Release Notes

**Version**: 1.3.0
**Date**: 2024-12-20

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A simple yet powerful reactive state management solution for Lightning Web Compo
---

![GitHub Workflow Status](https://github.com/cesarParra/lwc-signals/actions/workflows/ci.yml/badge.svg)
![Version](https://img.shields.io/badge/version-1.3.0-blue)
![Version](https://img.shields.io/badge/version-1.0.0-blue)

Inspired by the Signals technology behind SolidJs, Preact, Svelte 5 Runes and the Vue 3 Composition API, LWC Signals is
a reactive signals implementation for Lightning Web Components.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lwc-signals",
"private": true,
"version": "1.3.0",
"version": "1.0.0",
"scripts": {
"test": "jest",
"build": "tsc",
Expand Down

0 comments on commit b64374e

Please sign in to comment.