Skip to content

Commit a649cea

Browse files
committed
release:
1 parent 2bb77b6 commit a649cea

16 files changed

+94
-8
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Bug Fixes
9+
10+
* **observable:** improve subscription logic for 'once' option and streamline unsubscribe handling ([d8516a0](https://github.com/Alwatr/flux/commit/d8516a098a9033bfb0780afdf84f4a0667660047)) by @alimd
11+
12+
### Dependencies update
13+
14+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
15+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
16+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
17+
* **deps:** bump @octokit/endpoint from 10.1.1 to 10.1.3 ([5c4a949](https://github.com/Alwatr/flux/commit/5c4a949920ebefce64ace26b8bdbde40e2fc5271)) by @dependabot[bot]
18+
* **deps:** bump @octokit/plugin-paginate-rest from 11.3.3 to 11.4.2 ([e185af9](https://github.com/Alwatr/flux/commit/e185af957d3aa4fdcb17bb9f8cfa93e9429cd4ef)) by @dependabot[bot]
19+
* **deps:** bump @octokit/request from 9.1.1 to 9.2.2 ([7d9b6ce](https://github.com/Alwatr/flux/commit/7d9b6ce22da7949829bd84f82548be34c1ea813a)) by @dependabot[bot]
20+
* **deps:** bump @octokit/request-error from 6.1.1 to 6.1.7 ([e702fa7](https://github.com/Alwatr/flux/commit/e702fa7b8b27d1a59ccaa696430a3a2dec6b7f0a)) by @dependabot[bot]
21+
* **deps:** bump cross-spawn from 7.0.3 to 7.0.6 ([9659263](https://github.com/Alwatr/flux/commit/9659263e16fd58194f2ba6fb85258f8fd160c460)) by @dependabot[bot]
22+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
23+
* **deps:** bump the github-actions group across 1 directory with 4 updates ([e9c2451](https://github.com/Alwatr/flux/commit/e9c2451a8c8babdc486bbe9bfc00ccbf84607d99)) by @dependabot[bot]
24+
* update TypeScript to 5.7.3-sdk and Prettier to 3.5.1-sdk; bump [@lerna-lite](https://github.com/lerna-lite) packages to 3.12.1; upgrade Yarn to 4.6.0 ([2bb77b6](https://github.com/Alwatr/flux/commit/2bb77b609bf7cab5e29014528d36055308a7757a)) by @alimd
25+
626
## [4.0.2](https://github.com/Alwatr/flux/compare/v4.0.1...v4.0.2) (2024-11-06)
727

828
### Bug Fixes

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/lerna-lite/lerna-lite/main/packages/cli/schemas/lerna-schema.json",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"npmClient": "yarn",
55
"packages": [
66
"packages/*"

packages/context/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Dependencies update
9+
10+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
11+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
12+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
13+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
14+
615
## [4.0.0](https://github.com/Alwatr/flux/compare/v3.2.2...v4.0.0) (2024-11-06)
716

817
### Dependencies update

packages/context/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/context",
3-
"version": "4.0.0",
3+
"version": "4.0.3",
44
"description": "A simple yet powerful TypeScript library for managing application context and facilitating efficient communication between components.",
55
"author": "S. Ali Mihandoost <[email protected]>",
66
"keywords": [

packages/fetch-state-machine/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Dependencies update
9+
10+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
11+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
12+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
13+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
14+
615
## [4.0.2](https://github.com/Alwatr/flux/compare/v4.0.1...v4.0.2) (2024-11-06)
716

817
**Note:** Version bump only for package @alwatr/fetch-state-machine

packages/fetch-state-machine/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/fetch-state-machine",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "A powerful TypeScript library for managing asynchronous fetch requests with a built-in state machine.",
55
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
66
"keywords": [

packages/flux/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Dependencies update
9+
10+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
11+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
12+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
13+
614
## [4.0.2](https://github.com/Alwatr/flux/compare/v4.0.1...v4.0.2) (2024-11-06)
715

816
**Note:** Version bump only for package @alwatr/flux

packages/flux/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/flux",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "Flux empowers your applications with elegant and powerful state management and event handling capabilities. Built on the observable design pattern, Flux provides a lightweight yet robust foundation for managing global signals and states.",
55
"author": "S. Ali Mihandoost <[email protected]>",
66
"keywords": [

packages/fsm/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Dependencies update
9+
10+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
11+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
12+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
13+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
14+
615
## [4.0.2](https://github.com/Alwatr/flux/compare/v4.0.1...v4.0.2) (2024-11-06)
716

817
### Bug Fixes

packages/fsm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/fsm",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "A robust TypeScript library for implementing Flux (Finite) State Machines, enabling clear and organized management of application state and transitions.",
55
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
66
"keywords": [

packages/observable/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Bug Fixes
9+
10+
* **observable:** improve subscription logic for 'once' option and streamline unsubscribe handling ([d8516a0](https://github.com/Alwatr/flux/commit/d8516a098a9033bfb0780afdf84f4a0667660047)) by @alimd
11+
12+
### Dependencies update
13+
14+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
15+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
16+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
17+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
18+
619
## [4.0.0](https://github.com/Alwatr/flux/compare/v3.2.2...v4.0.0) (2024-11-06)
720

821
### Bug Fixes

packages/observable/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/observable",
3-
"version": "4.0.0",
3+
"version": "4.0.3",
44
"description": "A lightweight and flexible TypeScript library for implementing the observer pattern (similar to signals) with events, subscriptions, and convenient features.",
55
"author": "S. Ali Mihandoost <[email protected]>",
66
"keywords": [

packages/remote-context/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Dependencies update
9+
10+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
11+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
12+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
13+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
14+
615
## [4.0.2](https://github.com/Alwatr/flux/compare/v4.0.1...v4.0.2) (2024-11-06)
716

817
**Note:** Version bump only for package @alwatr/remote-context

packages/remote-context/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/remote-context",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
44
"description": "A powerful TypeScript library for managing remote context data with offline-first support and automatic revalidation.",
55
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
66
"keywords": [

packages/signal/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [4.0.3](https://github.com/Alwatr/flux/compare/v4.0.2...v4.0.3) (2025-02-18)
7+
8+
### Dependencies update
9+
10+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([18e3479](https://github.com/Alwatr/flux/commit/18e34795f826270a407d77440b946f8101513ba9)) by @dependabot[bot]
11+
* **deps-dev:** bump the dependencies group with 10 updates ([b70907b](https://github.com/Alwatr/flux/commit/b70907bcb78b664c80e7d7acec9acf04c805cb2f)) by @dependabot[bot]
12+
* **deps:** bump @alwatr/nanolib in the alwatr group across 1 directory ([2f52985](https://github.com/Alwatr/flux/commit/2f52985a74d4c5719dcb5d8d0440e3c2fac9be72)) by @dependabot[bot]
13+
* **deps:** bump the alwatr group with 4 updates ([7e1b5fd](https://github.com/Alwatr/flux/commit/7e1b5fdde606bd76a443356c74f332015beed275)) by @dependabot[bot]
14+
615
## [4.0.0](https://github.com/Alwatr/flux/compare/v3.2.2...v4.0.0) (2024-11-06)
716

817
### Dependencies update

packages/signal/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alwatr/signal",
3-
"version": "4.0.0",
3+
"version": "4.0.3",
44
"description": "A simple and efficient TypeScript library for event-driven communication using signals.",
55
"author": "S. Ali Mihandoost <[email protected]>",
66
"keywords": [

0 commit comments

Comments
 (0)