Skip to content

Commit

Permalink
release:
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Sep 26, 2024
1 parent 2541101 commit d223e9f
Show file tree
Hide file tree
Showing 16 changed files with 116 additions and 8 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Features

* **fetch-state-machine:** add separate requestSuccess_ for overriding ([027226c](https://github.com/Alwatr/flux/commit/027226c376e1fb318dfd9d8133cac1da4d6f6fea)) by @AliMD
* **fsm:** Add resetToInitialState() method ([86b2479](https://github.com/Alwatr/flux/commit/86b2479c0319b33c8108dfd0319b2c444dc5f6de)) by @AliMD
* **remote-context:** public clean method ([138b782](https://github.com/Alwatr/flux/commit/138b782b7c6936745bfe48de9eb4641cebdf697a)) by @AliMD

### Code Refactoring

* **fetch-state-machine:** Rename requestSuccess_ method to requestSucceeded_ ([5d0ca73](https://github.com/Alwatr/flux/commit/5d0ca73f223536676b80c34cdbb3138177b9f16f)) by @AliMD
* **fetch-state-machine:** Rename requestSuccess_ method to requestSucceeded_ ([885a8bc](https://github.com/Alwatr/flux/commit/885a8bc61a3ac3402456f93163abcd1b9bc0a17c)) by @AliMD
* **fetch-state-machine:** Rename reset method to clean in fetch-state-machine and jfsm packages ([ab20b4f](https://github.com/Alwatr/flux/commit/ab20b4feff002c2b7a88e0897058aad0a8a52115)) by @AliMD
* **fetch-state-machine:** Rename resetToInitialState_ method to clean_ ([7ffc764](https://github.com/Alwatr/flux/commit/7ffc76487444e1b4b6d746d467118e383942852e)) by @AliMD
* **fetch-state-machine:** Rename resetToInitialState_ method to clean_ ([8e31471](https://github.com/Alwatr/flux/commit/8e31471423dc92dc920ac21bed72f834d3b36810)) by @AliMD
* **fetch-state-machine:** Rename resetToInitialState_ method to clean_ ([05bb40d](https://github.com/Alwatr/flux/commit/05bb40d6005664f02bae738edf3f140fb32aeacd)) by @AliMD
* **remote-context:** Clean up context cleanup logic ([9ee9a31](https://github.com/Alwatr/flux/commit/9ee9a317ab7cd06418765e90c86c9d6b951901ab)) by @AliMD
* **remote-context:** simplify context update logic ([627b4ef](https://github.com/Alwatr/flux/commit/627b4efde45bd3a3b69eaf4d70957922c5feccec)) by @AliMD
* update action names in fetch-state-machine and fsm packages and remove `_` prefix ([a90d959](https://github.com/Alwatr/flux/commit/a90d95921b322a288c4a60671ce90ff9fe709c00)) by @AliMD

### Miscellaneous Chores

* **fetch-state-machine:** review ([207153a](https://github.com/Alwatr/flux/commit/207153af59e93e34464137e31d798d21d467aa2a)) by @AliMD

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]
* bump the github-actions group with 3 updates ([0e4eb78](https://github.com/Alwatr/flux/commit/0e4eb78642f2948faeea0fa04ea821c7b45e1db0)) by @dependabot[bot]
* update ([857ba97](https://github.com/Alwatr/flux/commit/857ba97bf64469996ad67b3342852c19599e68d2)) by @AliMD

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

### Miscellaneous Chores
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/lerna-lite/lerna-lite/main/packages/cli/schemas/lerna-schema.json",
"version": "3.0.3",
"version": "3.1.0",
"npmClient": "yarn",
"packages": [
"packages/*"
Expand Down
6 changes: 6 additions & 0 deletions packages/context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/context
Expand Down
2 changes: 1 addition & 1 deletion packages/context/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/context",
"version": "3.0.3",
"version": "3.1.0",
"description": "A simple yet powerful TypeScript library for managing application context and facilitating efficient communication between components.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
"keywords": [
Expand Down
23 changes: 23 additions & 0 deletions packages/fetch-state-machine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Features

* **fetch-state-machine:** add separate requestSuccess_ for overriding ([027226c](https://github.com/Alwatr/flux/commit/027226c376e1fb318dfd9d8133cac1da4d6f6fea)) by @AliMD

### Code Refactoring

* **fetch-state-machine:** Rename requestSuccess_ method to requestSucceeded_ ([885a8bc](https://github.com/Alwatr/flux/commit/885a8bc61a3ac3402456f93163abcd1b9bc0a17c)) by @AliMD
* **fetch-state-machine:** Rename reset method to clean in fetch-state-machine and jfsm packages ([ab20b4f](https://github.com/Alwatr/flux/commit/ab20b4feff002c2b7a88e0897058aad0a8a52115)) by @AliMD
* **fetch-state-machine:** Rename resetToInitialState_ method to clean_ ([7ffc764](https://github.com/Alwatr/flux/commit/7ffc76487444e1b4b6d746d467118e383942852e)) by @AliMD
* **fetch-state-machine:** Rename resetToInitialState_ method to clean_ ([8e31471](https://github.com/Alwatr/flux/commit/8e31471423dc92dc920ac21bed72f834d3b36810)) by @AliMD
* **fetch-state-machine:** Rename resetToInitialState_ method to clean_ ([05bb40d](https://github.com/Alwatr/flux/commit/05bb40d6005664f02bae738edf3f140fb32aeacd)) by @AliMD
* update action names in fetch-state-machine and fsm packages and remove `_` prefix ([a90d959](https://github.com/Alwatr/flux/commit/a90d95921b322a288c4a60671ce90ff9fe709c00)) by @AliMD

### Miscellaneous Chores

* **fetch-state-machine:** review ([207153a](https://github.com/Alwatr/flux/commit/207153af59e93e34464137e31d798d21d467aa2a)) by @AliMD

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/fetch-state-machine
Expand Down
2 changes: 1 addition & 1 deletion packages/fetch-state-machine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/fetch-state-machine",
"version": "3.0.3",
"version": "3.1.0",
"description": "A powerful TypeScript library for managing asynchronous fetch requests with a built-in state machine.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/flux/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/flux
Expand Down
2 changes: 1 addition & 1 deletion packages/flux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/flux",
"version": "3.0.3",
"version": "3.1.0",
"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.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
"keywords": [
Expand Down
14 changes: 14 additions & 0 deletions packages/fsm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Features

* **fsm:** Add resetToInitialState() method ([86b2479](https://github.com/Alwatr/flux/commit/86b2479c0319b33c8108dfd0319b2c444dc5f6de)) by @AliMD

### Code Refactoring

* update action names in fetch-state-machine and fsm packages and remove `_` prefix ([a90d959](https://github.com/Alwatr/flux/commit/a90d95921b322a288c4a60671ce90ff9fe709c00)) by @AliMD

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/fsm
Expand Down
2 changes: 1 addition & 1 deletion packages/fsm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/fsm",
"version": "3.0.3",
"version": "3.1.0",
"description": "A robust TypeScript library for implementing Flux (Finite) State Machines, enabling clear and organized management of application state and transitions.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/observable/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/observable
Expand Down
2 changes: 1 addition & 1 deletion packages/observable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/observable",
"version": "3.0.3",
"version": "3.1.0",
"description": "A lightweight and flexible TypeScript library for implementing the observer pattern (similar to signals) with events, subscriptions, and convenient features.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
"keywords": [
Expand Down
17 changes: 17 additions & 0 deletions packages/remote-context/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Features

* **remote-context:** public clean method ([138b782](https://github.com/Alwatr/flux/commit/138b782b7c6936745bfe48de9eb4641cebdf697a)) by @AliMD

### Code Refactoring

* **fetch-state-machine:** Rename requestSuccess_ method to requestSucceeded_ ([5d0ca73](https://github.com/Alwatr/flux/commit/5d0ca73f223536676b80c34cdbb3138177b9f16f)) by @AliMD
* **remote-context:** Clean up context cleanup logic ([9ee9a31](https://github.com/Alwatr/flux/commit/9ee9a317ab7cd06418765e90c86c9d6b951901ab)) by @AliMD
* **remote-context:** simplify context update logic ([627b4ef](https://github.com/Alwatr/flux/commit/627b4efde45bd3a3b69eaf4d70957922c5feccec)) by @AliMD
* update action names in fetch-state-machine and fsm packages and remove `_` prefix ([a90d959](https://github.com/Alwatr/flux/commit/a90d95921b322a288c4a60671ce90ff9fe709c00)) by @AliMD

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/remote-context
Expand Down
2 changes: 1 addition & 1 deletion packages/remote-context/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/remote-context",
"version": "3.0.3",
"version": "3.1.0",
"description": "A powerful TypeScript library for managing remote context data with offline-first support and automatic revalidation.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/signal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.1.0](https://github.com/Alwatr/flux/compare/v3.0.3...v3.1.0) (2024-09-26)

### Dependencies update

* bump @types/node in the development-dependencies group ([979223c](https://github.com/Alwatr/flux/commit/979223c3cdbb002a926e72e1a7f79c82ff7395d4)) by @dependabot[bot]

## [3.0.3](https://github.com/Alwatr/flux/compare/v3.0.2...v3.0.3) (2024-09-24)

**Note:** Version bump only for package @alwatr/signal
Expand Down
2 changes: 1 addition & 1 deletion packages/signal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/signal",
"version": "3.0.3",
"version": "3.1.0",
"description": "A simple and efficient TypeScript library for event-driven communication using signals.",
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
"keywords": [
Expand Down

0 comments on commit d223e9f

Please sign in to comment.