@alwatr/signal 2.0.5 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +236 -174
- package/README.md +70 -3
- package/dist/logger.d.ts +2 -0
- package/dist/logger.d.ts.map +1 -0
- package/dist/main.cjs +3 -0
- package/dist/main.cjs.map +7 -0
- package/dist/main.d.ts +3 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.mjs +3 -0
- package/dist/main.mjs.map +7 -0
- package/dist/signal.d.ts +17 -0
- package/dist/signal.d.ts.map +1 -0
- package/dist/trigger.d.ts +16 -0
- package/dist/trigger.d.ts.map +1 -0
- package/package.json +46 -15
- package/context.d.ts +0 -31
- package/context.d.ts.map +0 -1
- package/context.js +0 -40
- package/context.js.map +0 -1
- package/index.d.ts +0 -7
- package/index.d.ts.map +0 -1
- package/index.js +0 -6
- package/index.js.map +0 -1
- package/multithread-context.d.ts +0 -21
- package/multithread-context.d.ts.map +0 -1
- package/multithread-context.js +0 -50
- package/multithread-context.js.map +0 -1
- package/observable.d.ts +0 -47
- package/observable.d.ts.map +0 -1
- package/observable.js +0 -127
- package/observable.js.map +0 -1
- package/signal.d.ts +0 -19
- package/signal.d.ts.map +0 -1
- package/signal.js +0 -23
- package/signal.js.map +0 -1
- package/simple-signal.d.ts +0 -19
- package/simple-signal.d.ts.map +0 -1
- package/simple-signal.js +0 -23
- package/simple-signal.js.map +0 -1
- package/type.d.ts +0 -35
- package/type.d.ts.map +0 -1
- package/type.js +0 -2
- package/type.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,43 +3,105 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [
|
|
6
|
+
## [3.0.1](https://github.com/Alwatr/flux/compare/v3.0.0...v3.0.1) (2024-09-17)
|
|
7
|
+
|
|
8
|
+
### Miscellaneous Chores
|
|
9
|
+
|
|
10
|
+
* simple demo test ([43f9bee](https://github.com/Alwatr/flux/commit/43f9bee831d5ba4534fa80c7ff4c28f6ca65cd91)) by @
|
|
11
|
+
|
|
12
|
+
## 3.0.0 (2024-09-17)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* Add @alwatr/observable package ([e554c91](https://github.com/Alwatr/flux/commit/e554c91e8d3bf59a853e1a08692f3fa730194616)) by @AliMD
|
|
17
|
+
* bew package @alwatr/context ([9ee2204](https://github.com/Alwatr/flux/commit/9ee220484fd99654d1303851c2e03f2bd0b308a3)) by @AliMD
|
|
18
|
+
* update all repo files from alwatr ([b85a3a6](https://github.com/Alwatr/flux/commit/b85a3a62a8c19f395cf33d72329b9c0f301cddfc)) by @AliMD
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* all new repo path and packages dependencies ([21a6afa](https://github.com/Alwatr/flux/commit/21a6afa0badafe4051617d9a9e3bbfbaabd0c4ad)) by @
|
|
23
|
+
* cleanup old signal and fsm v1 ([bde0bea](https://github.com/Alwatr/flux/commit/bde0bea06a6750bebad49a127b75b57fd5e55ddd)) by @
|
|
24
|
+
* **signal:** compatible with new logger api ([0a3b1c0](https://github.com/Alwatr/flux/commit/0a3b1c02b285daa66491104a14596e6a19895e11)) by @
|
|
25
|
+
* **signal:** package name ([4791b54](https://github.com/Alwatr/flux/commit/4791b54c8da75cf43eb9c86180f1ed94b0e28c4e)) by @
|
|
26
|
+
* **signal:** signal2 name ([70b71e3](https://github.com/Alwatr/flux/commit/70b71e312cb5e5d4c54c37c5c327712200f90be5)) by @
|
|
27
|
+
* **signal:** types ([2460dc9](https://github.com/Alwatr/flux/commit/2460dc9f68c003dfbd428be23117bcacc72a5084)) by @AliMD
|
|
28
|
+
* ts refrence path ([c2baa44](https://github.com/Alwatr/flux/commit/c2baa44999c72a0015481fc8fea25439329c3f37)) by @
|
|
29
|
+
|
|
30
|
+
### Code Refactoring
|
|
31
|
+
|
|
32
|
+
* AlwatrObservable to use 'message' instead of 'data' ([67aa6e0](https://github.com/Alwatr/flux/commit/67aa6e01aebec8fae0accfb174bcf66fe72ddad7)) by @AliMD
|
|
33
|
+
* **signal:** AlwatrContext to use class property instead of calling super.getData_() ([bbe18bb](https://github.com/Alwatr/flux/commit/bbe18bbb3ca105ee34d802345105a71c874b60e5)) by @AliMD
|
|
34
|
+
* **signal:** Remove reference to api-server in tsconfig.json ([3c6b2e6](https://github.com/Alwatr/flux/commit/3c6b2e6c8e874240ba785cfafe14922637070120)) by @AliMD
|
|
35
|
+
* **signal:** Update AlwatrContext to use class property instead of calling super.getData_() ([437dbf4](https://github.com/Alwatr/flux/commit/437dbf48af845c7e8c7441566d78ff6884d1c4cc)) by @AliMD
|
|
36
|
+
* Update @alwatr/signal package ([9ec8478](https://github.com/Alwatr/flux/commit/9ec8478b956dd2dd83ea42d6ba9ed94582a318a7)) by @AliMD
|
|
37
|
+
* Update all package URLs to point to the flux repository ([e7e56d2](https://github.com/Alwatr/flux/commit/e7e56d252d4a0e1b4b1fa20c06e8b61b1b7242ae)) by @AliMD
|
|
38
|
+
* Update AlwatrContext to use 'message' instead of 'data' ([512789b](https://github.com/Alwatr/flux/commit/512789b7c0b90e71e8e1eda5fbd923e18c45731e)) by @AliMD
|
|
39
|
+
* Update AlwatrContextSignal to AlwatrContext ([44dd077](https://github.com/Alwatr/flux/commit/44dd077584669f668ab633c0e10a1d6dd6986e21)) by @AliMD
|
|
40
|
+
* Update AlwatrSignal and AlwatrSimpleSignal to use 'message' instead of 'data' ([cef6ba6](https://github.com/Alwatr/flux/commit/cef6ba64164f6569a895ef1efa8a33900c1c9cba)) by @AliMD
|
|
41
|
+
* Update AlwatrSignal and AlwatrTrigger constructors ([05da419](https://github.com/Alwatr/flux/commit/05da4191ac23ab589cc4982b383c24d9b7a8ae74)) by @AliMD
|
|
42
|
+
* Update package dependencies and references ([888f698](https://github.com/Alwatr/flux/commit/888f6987553a410e561da9fe21c0655f8f935db0)) by @AliMD
|
|
43
|
+
|
|
44
|
+
### Miscellaneous Chores
|
|
45
|
+
|
|
46
|
+
* **deps-dev:** bump the development-dependencies group with 11 updates ([60f3075](https://github.com/Alwatr/flux/commit/60f3075872d3a4a9da979c589b5aa6b84065d48b)) by @
|
|
47
|
+
* **deps-dev:** bump the development-dependencies group with 14 updates ([c6ae70e](https://github.com/Alwatr/flux/commit/c6ae70e1534469fd36386f0828a52985001e2ef6)) by @
|
|
48
|
+
* **deps-dev:** bump the development-dependencies group with 8 updates ([c853aa2](https://github.com/Alwatr/flux/commit/c853aa2730b5c256049414e302a3d2d0c58ef61e)) by @
|
|
49
|
+
* **deps:** bump the alwatr-dependencies group with 3 updates ([f2a109d](https://github.com/Alwatr/flux/commit/f2a109d9b1775b67303d9407e20a5591cc69e4a7)) by @
|
|
50
|
+
* **deps:** bump the alwatr-dependencies group with 3 updates ([e5105eb](https://github.com/Alwatr/flux/commit/e5105eb0bbc450566b1ae6aee9241d541377bf94)) by @
|
|
51
|
+
* **deps:** bump the alwatr-dependencies group with 4 updates ([0019b83](https://github.com/Alwatr/flux/commit/0019b83ed56643b634972d8a15651ef2eaa2d735)) by @
|
|
52
|
+
* **deps:** bump the alwatr-dependencies group with 4 updates ([eb7fdfa](https://github.com/Alwatr/flux/commit/eb7fdfa545b5c1e040839a427326937acdcd8cb3)) by @
|
|
53
|
+
* **deps:** bump the alwatr-dependencies group with 4 updates ([4069863](https://github.com/Alwatr/flux/commit/40698638f3825b118d8c24fa115403f3f3b564a7)) by @
|
|
54
|
+
* **deps:** fix and update ([ab83ec7](https://github.com/Alwatr/flux/commit/ab83ec789d43245a8ff109e151b054a1fecb8e2a)) by @
|
|
55
|
+
* **deps:** update ([d7e2ef1](https://github.com/Alwatr/flux/commit/d7e2ef1a9de62fff6bfb2fd32af7dcfb4fcb048d)) by @njfamirm
|
|
56
|
+
* **deps:** upgrade ([7e60a62](https://github.com/Alwatr/flux/commit/7e60a6237f8b07b72dd9afd6bbaa140b187fe882)) by @
|
|
57
|
+
* **deps:** workspace dependencies ([627938e](https://github.com/Alwatr/flux/commit/627938e38e75a5e425388c3d56837feffd6716a2)) by @
|
|
58
|
+
* rename core to packages ([9158c8e](https://github.com/Alwatr/flux/commit/9158c8e4c679d96c9b54e91ea6faa49364d47494)) by @
|
|
59
|
+
* **signal:** rename signal2 ([33adbea](https://github.com/Alwatr/flux/commit/33adbeabe9384d5de30742e4c4b00db410596e52)) by @
|
|
60
|
+
* update changelogs ([a965ecd](https://github.com/Alwatr/flux/commit/a965ecd095cb621b4a7748d2e048f4a82b0aa872)) by @
|
|
61
|
+
* **yarn:** pnp mode ([02bd406](https://github.com/Alwatr/flux/commit/02bd4064e381c483e31a8acbe7c72e7aed3e62b3)) by @
|
|
62
|
+
|
|
63
|
+
### Dependencies update
|
|
64
|
+
|
|
65
|
+
* bump the alwatr-dependencies group with 6 updates ([4470fd8](https://github.com/Alwatr/flux/commit/4470fd8be49e1a73c17bdd5a09127b9f3a67b3bb)) by @dependabot[bot]
|
|
66
|
+
* update ([e8f8281](https://github.com/Alwatr/flux/commit/e8f8281beb24988466c6e29f724a963118870933)) by @AliMD
|
|
67
|
+
|
|
68
|
+
## [2.0.5](https://github.com/Alwatr/flux/compare/@alwatr/signal@2.0.4...@alwatr/signal@2.0.5) (2023-12-19)
|
|
7
69
|
|
|
8
70
|
**Note:** Version bump only for package @alwatr/signal
|
|
9
71
|
|
|
10
|
-
## [2.0.4](https://github.com/Alwatr/
|
|
72
|
+
## [2.0.4](https://github.com/Alwatr/flux/compare/@alwatr/signal@2.0.2...@alwatr/signal@2.0.4) (2023-12-19)
|
|
11
73
|
|
|
12
74
|
**Note:** Version bump only for package @alwatr/signal
|
|
13
75
|
|
|
14
|
-
## [2.0.3](https://github.com/Alwatr/
|
|
76
|
+
## [2.0.3](https://github.com/Alwatr/flux/compare/@alwatr/signal@2.0.2...@alwatr/signal@2.0.3) (2023-11-09)
|
|
15
77
|
|
|
16
78
|
**Note:** Version bump only for package @alwatr/signal
|
|
17
79
|
|
|
18
|
-
## [2.0.2](https://github.com/
|
|
80
|
+
## [2.0.2](https://github.com/Alwatr/flux/compare/@alwatr/signal@2.0.1...@alwatr/signal@2.0.2) (2023-11-01)
|
|
19
81
|
|
|
20
82
|
**Note:** Version bump only for package @alwatr/signal
|
|
21
83
|
|
|
22
|
-
## [2.0.1](https://github.com/
|
|
84
|
+
## [2.0.1](https://github.com/Alwatr/flux/compare/@alwatr/signal@2.0.0...@alwatr/signal@2.0.1) (2023-10-23)
|
|
23
85
|
|
|
24
86
|
### Bug Fixes
|
|
25
87
|
|
|
26
|
-
- **signal:** compatible with new logger api ([0a3b1c0](https://github.com/
|
|
88
|
+
- **signal:** compatible with new logger api ([0a3b1c0](https://github.com/Alwatr/flux/commit/0a3b1c02b285daa66491104a14596e6a19895e11)) by @
|
|
27
89
|
|
|
28
90
|
# 2.0.0 (2023-09-19)
|
|
29
91
|
|
|
30
92
|
### Bug Fixes
|
|
31
93
|
|
|
32
|
-
- all new repo path and packages dependencies ([21a6afa](https://github.com/
|
|
33
|
-
- cleanup old signal and fsm v1 ([bde0bea](https://github.com/
|
|
34
|
-
- **signal:** package name ([4791b54](https://github.com/
|
|
35
|
-
- **signal:** signal2 name ([70b71e3](https://github.com/
|
|
36
|
-
- ts refrence path ([c2baa44](https://github.com/
|
|
94
|
+
- all new repo path and packages dependencies ([21a6afa](https://github.com/Alwatr/flux/commit/21a6afa0badafe4051617d9a9e3bbfbaabd0c4ad)) by @AliMD
|
|
95
|
+
- cleanup old signal and fsm v1 ([bde0bea](https://github.com/Alwatr/flux/commit/bde0bea06a6750bebad49a127b75b57fd5e55ddd)) by @AliMD
|
|
96
|
+
- **signal:** package name ([4791b54](https://github.com/Alwatr/flux/commit/4791b54c8da75cf43eb9c86180f1ed94b0e28c4e)) by @AliMD
|
|
97
|
+
- **signal:** signal2 name ([70b71e3](https://github.com/Alwatr/flux/commit/70b71e312cb5e5d4c54c37c5c327712200f90be5)) by @AliMD
|
|
98
|
+
- ts refrence path ([c2baa44](https://github.com/Alwatr/flux/commit/c2baa44999c72a0015481fc8fea25439329c3f37)) by @AliMD
|
|
37
99
|
|
|
38
|
-
## [1.1.2](https://github.com/
|
|
100
|
+
## [1.1.2](https://github.com/Alwatr/flux/compare/@alwatr/signal@1.1.1...@alwatr/signal@1.1.2) (2023-09-12)
|
|
39
101
|
|
|
40
102
|
**Note:** Version bump only for package @alwatr/signal
|
|
41
103
|
|
|
42
|
-
## [1.1.1](https://github.com/
|
|
104
|
+
## [1.1.1](https://github.com/Alwatr/flux/compare/@alwatr/signal@1.1.0...@alwatr/signal@1.1.1) (2023-09-12)
|
|
43
105
|
|
|
44
106
|
**Note:** Version bump only for package @alwatr/signal
|
|
45
107
|
|
|
@@ -53,68 +115,68 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
53
115
|
|
|
54
116
|
### Bug Fixes
|
|
55
117
|
|
|
56
|
-
- new logger api ([9d83a7d](https://github.com/
|
|
57
|
-
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/
|
|
58
|
-
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/
|
|
118
|
+
- new logger api ([9d83a7d](https://github.com/Alwatr/flux/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
119
|
+
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/Alwatr/flux/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
120
|
+
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/Alwatr/flux/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
59
121
|
|
|
60
122
|
### Features
|
|
61
123
|
|
|
62
|
-
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/
|
|
124
|
+
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/Alwatr/flux/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
63
125
|
|
|
64
126
|
# 0.30.0 (2023-03-06)
|
|
65
127
|
|
|
66
128
|
### Bug Fixes
|
|
67
129
|
|
|
68
|
-
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/
|
|
69
|
-
- **signal:** nodejs compatibility ([69d8a60](https://github.com/
|
|
70
|
-
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/
|
|
71
|
-
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/
|
|
130
|
+
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/Alwatr/flux/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
131
|
+
- **signal:** nodejs compatibility ([69d8a60](https://github.com/Alwatr/flux/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
132
|
+
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/Alwatr/flux/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
133
|
+
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/Alwatr/flux/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
72
134
|
|
|
73
135
|
### Features
|
|
74
136
|
|
|
75
|
-
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/
|
|
76
|
-
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/
|
|
77
|
-
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/
|
|
137
|
+
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/Alwatr/flux/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
138
|
+
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/Alwatr/flux/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
139
|
+
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/Alwatr/flux/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
78
140
|
|
|
79
141
|
# 0.29.0 (2023-02-10)
|
|
80
142
|
|
|
81
143
|
### Bug Fixes
|
|
82
144
|
|
|
83
|
-
- **signal/core:** \_getSignalObject ([1374188](https://github.com/
|
|
84
|
-
- **signal:** alert [#1455](https://github.com/
|
|
85
|
-
- **signal:** clean old interfaces ([b2987ad](https://github.com/
|
|
86
|
-
- **signal:** export all interfaces ([8704eac](https://github.com/
|
|
87
|
-
- **signal:** export listeners ([fb05bfb](https://github.com/
|
|
88
|
-
- **signal:** import types ([cc0b88b](https://github.com/
|
|
89
|
-
- **signal:** interface bind type ([7b6c820](https://github.com/
|
|
90
|
-
- **signal:** reported issues ([75f688f](https://github.com/
|
|
91
|
-
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/
|
|
145
|
+
- **signal/core:** \_getSignalObject ([1374188](https://github.com/Alwatr/flux/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
146
|
+
- **signal:** alert [#1455](https://github.com/Alwatr/flux/issues/1455) ([203307d](https://github.com/Alwatr/flux/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
147
|
+
- **signal:** clean old interfaces ([b2987ad](https://github.com/Alwatr/flux/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
148
|
+
- **signal:** export all interfaces ([8704eac](https://github.com/Alwatr/flux/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
149
|
+
- **signal:** export listeners ([fb05bfb](https://github.com/Alwatr/flux/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
150
|
+
- **signal:** import types ([cc0b88b](https://github.com/Alwatr/flux/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
151
|
+
- **signal:** interface bind type ([7b6c820](https://github.com/Alwatr/flux/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
152
|
+
- **signal:** reported issues ([75f688f](https://github.com/Alwatr/flux/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
153
|
+
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/Alwatr/flux/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
92
154
|
|
|
93
155
|
### Features
|
|
94
156
|
|
|
95
|
-
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/
|
|
96
|
-
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/
|
|
97
|
-
- **signal:** bind signal ([de49a13](https://github.com/
|
|
98
|
-
- **signal:** command handler/provider interface ([3d23683](https://github.com/
|
|
99
|
-
- **signal:** command signals ([98c1d90](https://github.com/
|
|
100
|
-
- **signal:** command trigger interface ([dda9466](https://github.com/
|
|
101
|
-
- **signal:** commandSignal ([5a0d7e5](https://github.com/
|
|
102
|
-
- **signal:** context prover and consumer ([081a51a](https://github.com/
|
|
103
|
-
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/
|
|
104
|
-
- **signal:** event listener interface ([4ca4079](https://github.com/
|
|
105
|
-
- **signal:** event trigger interface ([9b90597](https://github.com/
|
|
106
|
-
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/
|
|
107
|
-
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/
|
|
108
|
-
- **signal:** new manager interface ([f028306](https://github.com/
|
|
109
|
-
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/
|
|
110
|
-
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/
|
|
111
|
-
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/
|
|
112
|
-
- **signal:** new simple api ([eb1e478](https://github.com/
|
|
113
|
-
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/
|
|
114
|
-
- **signal:** separate request command with response ([47a779e](https://github.com/
|
|
115
|
-
- **signal:** signal.request ([d791b3e](https://github.com/
|
|
116
|
-
- **signal:** signal.untilNext ([9df78c0](https://github.com/
|
|
117
|
-
- **signal:** signals.expire ([3591efd](https://github.com/
|
|
157
|
+
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/Alwatr/flux/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
158
|
+
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/Alwatr/flux/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
159
|
+
- **signal:** bind signal ([de49a13](https://github.com/Alwatr/flux/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
160
|
+
- **signal:** command handler/provider interface ([3d23683](https://github.com/Alwatr/flux/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
161
|
+
- **signal:** command signals ([98c1d90](https://github.com/Alwatr/flux/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
162
|
+
- **signal:** command trigger interface ([dda9466](https://github.com/Alwatr/flux/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
163
|
+
- **signal:** commandSignal ([5a0d7e5](https://github.com/Alwatr/flux/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
164
|
+
- **signal:** context prover and consumer ([081a51a](https://github.com/Alwatr/flux/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
165
|
+
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/Alwatr/flux/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
166
|
+
- **signal:** event listener interface ([4ca4079](https://github.com/Alwatr/flux/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
167
|
+
- **signal:** event trigger interface ([9b90597](https://github.com/Alwatr/flux/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
168
|
+
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/Alwatr/flux/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
169
|
+
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/Alwatr/flux/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
170
|
+
- **signal:** new manager interface ([f028306](https://github.com/Alwatr/flux/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
171
|
+
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/Alwatr/flux/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
172
|
+
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/Alwatr/flux/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
173
|
+
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/Alwatr/flux/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
174
|
+
- **signal:** new simple api ([eb1e478](https://github.com/Alwatr/flux/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
175
|
+
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/Alwatr/flux/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
176
|
+
- **signal:** separate request command with response ([47a779e](https://github.com/Alwatr/flux/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
177
|
+
- **signal:** signal.request ([d791b3e](https://github.com/Alwatr/flux/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
178
|
+
- **signal:** signal.untilNext ([9df78c0](https://github.com/Alwatr/flux/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
179
|
+
- **signal:** signals.expire ([3591efd](https://github.com/Alwatr/flux/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
118
180
|
|
|
119
181
|
# 0.28.0 (2023-01-20)
|
|
120
182
|
|
|
@@ -124,280 +186,280 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
124
186
|
|
|
125
187
|
### Bug Fixes
|
|
126
188
|
|
|
127
|
-
- set correct path ([d01ce6f](https://github.com/
|
|
128
|
-
- tsconfig ([e96dcd3](https://github.com/
|
|
189
|
+
- set correct path ([d01ce6f](https://github.com/Alwatr/flux/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
190
|
+
- tsconfig ([e96dcd3](https://github.com/Alwatr/flux/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
129
191
|
|
|
130
192
|
### Features
|
|
131
193
|
|
|
132
|
-
- improve error debugging ([1fba504](https://github.com/
|
|
194
|
+
- improve error debugging ([1fba504](https://github.com/Alwatr/flux/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
133
195
|
|
|
134
|
-
# [1.0.0](https://github.com/
|
|
196
|
+
# [1.0.0](https://github.com/Alwatr/flux/compare/v0.32.0...v1.0.0) (2023-06-14)
|
|
135
197
|
|
|
136
198
|
**Note:** Version bump only for package @alwatr/signal
|
|
137
199
|
|
|
138
|
-
# [0.32.0](https://github.com/
|
|
200
|
+
# [0.32.0](https://github.com/Alwatr/flux/compare/v0.31.0...v0.32.0) (2023-05-27)
|
|
139
201
|
|
|
140
202
|
**Note:** Version bump only for package @alwatr/signal
|
|
141
203
|
|
|
142
|
-
# [0.31.0](https://github.com/
|
|
204
|
+
# [0.31.0](https://github.com/Alwatr/flux/compare/v0.30.0...v0.31.0) (2023-05-08)
|
|
143
205
|
|
|
144
206
|
### Bug Fixes
|
|
145
207
|
|
|
146
|
-
- new logger api ([9d83a7d](https://github.com/
|
|
147
|
-
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/
|
|
148
|
-
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/
|
|
208
|
+
- new logger api ([9d83a7d](https://github.com/Alwatr/flux/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
209
|
+
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/Alwatr/flux/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
210
|
+
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/Alwatr/flux/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
149
211
|
|
|
150
212
|
### Features
|
|
151
213
|
|
|
152
|
-
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/
|
|
214
|
+
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/Alwatr/flux/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
153
215
|
|
|
154
|
-
# [0.30.0](https://github.com/
|
|
216
|
+
# [0.30.0](https://github.com/Alwatr/flux/compare/v0.29.0...v0.30.0) (2023-03-06)
|
|
155
217
|
|
|
156
218
|
### Bug Fixes
|
|
157
219
|
|
|
158
|
-
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/
|
|
159
|
-
- **signal:** nodejs compatibility ([69d8a60](https://github.com/
|
|
160
|
-
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/
|
|
161
|
-
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/
|
|
220
|
+
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/Alwatr/flux/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
221
|
+
- **signal:** nodejs compatibility ([69d8a60](https://github.com/Alwatr/flux/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
222
|
+
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/Alwatr/flux/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
223
|
+
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/Alwatr/flux/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
162
224
|
|
|
163
225
|
### Features
|
|
164
226
|
|
|
165
|
-
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/
|
|
166
|
-
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/
|
|
167
|
-
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/
|
|
227
|
+
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/Alwatr/flux/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
228
|
+
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/Alwatr/flux/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
229
|
+
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/Alwatr/flux/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
168
230
|
|
|
169
|
-
# [0.29.0](https://github.com/
|
|
231
|
+
# [0.29.0](https://github.com/Alwatr/flux/compare/v0.28.0...v0.29.0) (2023-02-10)
|
|
170
232
|
|
|
171
233
|
### Bug Fixes
|
|
172
234
|
|
|
173
|
-
- **signal/core:** \_getSignalObject ([1374188](https://github.com/
|
|
174
|
-
- **signal:** alert [#1455](https://github.com/
|
|
175
|
-
- **signal:** clean old interfaces ([b2987ad](https://github.com/
|
|
176
|
-
- **signal:** export all interfaces ([8704eac](https://github.com/
|
|
177
|
-
- **signal:** export listeners ([fb05bfb](https://github.com/
|
|
178
|
-
- **signal:** import types ([cc0b88b](https://github.com/
|
|
179
|
-
- **signal:** interface bind type ([7b6c820](https://github.com/
|
|
180
|
-
- **signal:** reported issues ([75f688f](https://github.com/
|
|
181
|
-
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/
|
|
235
|
+
- **signal/core:** \_getSignalObject ([1374188](https://github.com/Alwatr/flux/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
236
|
+
- **signal:** alert [#1455](https://github.com/Alwatr/flux/issues/1455) ([203307d](https://github.com/Alwatr/flux/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
237
|
+
- **signal:** clean old interfaces ([b2987ad](https://github.com/Alwatr/flux/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
238
|
+
- **signal:** export all interfaces ([8704eac](https://github.com/Alwatr/flux/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
239
|
+
- **signal:** export listeners ([fb05bfb](https://github.com/Alwatr/flux/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
240
|
+
- **signal:** import types ([cc0b88b](https://github.com/Alwatr/flux/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
241
|
+
- **signal:** interface bind type ([7b6c820](https://github.com/Alwatr/flux/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
242
|
+
- **signal:** reported issues ([75f688f](https://github.com/Alwatr/flux/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
243
|
+
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/Alwatr/flux/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
182
244
|
|
|
183
245
|
### Features
|
|
184
246
|
|
|
185
|
-
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/
|
|
186
|
-
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/
|
|
187
|
-
- **signal:** bind signal ([de49a13](https://github.com/
|
|
188
|
-
- **signal:** command handler/provider interface ([3d23683](https://github.com/
|
|
189
|
-
- **signal:** command signals ([98c1d90](https://github.com/
|
|
190
|
-
- **signal:** command trigger interface ([dda9466](https://github.com/
|
|
191
|
-
- **signal:** commandSignal ([5a0d7e5](https://github.com/
|
|
192
|
-
- **signal:** context prover and consumer ([081a51a](https://github.com/
|
|
193
|
-
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/
|
|
194
|
-
- **signal:** event listener interface ([4ca4079](https://github.com/
|
|
195
|
-
- **signal:** event trigger interface ([9b90597](https://github.com/
|
|
196
|
-
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/
|
|
197
|
-
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/
|
|
198
|
-
- **signal:** new manager interface ([f028306](https://github.com/
|
|
199
|
-
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/
|
|
200
|
-
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/
|
|
201
|
-
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/
|
|
202
|
-
- **signal:** new simple api ([eb1e478](https://github.com/
|
|
203
|
-
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/
|
|
204
|
-
- **signal:** separate request command with response ([47a779e](https://github.com/
|
|
205
|
-
- **signal:** signal.request ([d791b3e](https://github.com/
|
|
206
|
-
- **signal:** signal.untilNext ([9df78c0](https://github.com/
|
|
207
|
-
- **signal:** signals.expire ([3591efd](https://github.com/
|
|
208
|
-
|
|
209
|
-
# [0.28.0](https://github.com/
|
|
247
|
+
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/Alwatr/flux/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
248
|
+
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/Alwatr/flux/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
249
|
+
- **signal:** bind signal ([de49a13](https://github.com/Alwatr/flux/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
250
|
+
- **signal:** command handler/provider interface ([3d23683](https://github.com/Alwatr/flux/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
251
|
+
- **signal:** command signals ([98c1d90](https://github.com/Alwatr/flux/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
252
|
+
- **signal:** command trigger interface ([dda9466](https://github.com/Alwatr/flux/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
253
|
+
- **signal:** commandSignal ([5a0d7e5](https://github.com/Alwatr/flux/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
254
|
+
- **signal:** context prover and consumer ([081a51a](https://github.com/Alwatr/flux/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
255
|
+
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/Alwatr/flux/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
256
|
+
- **signal:** event listener interface ([4ca4079](https://github.com/Alwatr/flux/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
257
|
+
- **signal:** event trigger interface ([9b90597](https://github.com/Alwatr/flux/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
258
|
+
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/Alwatr/flux/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
259
|
+
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/Alwatr/flux/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
260
|
+
- **signal:** new manager interface ([f028306](https://github.com/Alwatr/flux/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
261
|
+
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/Alwatr/flux/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
262
|
+
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/Alwatr/flux/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
263
|
+
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/Alwatr/flux/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
264
|
+
- **signal:** new simple api ([eb1e478](https://github.com/Alwatr/flux/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
265
|
+
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/Alwatr/flux/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
266
|
+
- **signal:** separate request command with response ([47a779e](https://github.com/Alwatr/flux/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
267
|
+
- **signal:** signal.request ([d791b3e](https://github.com/Alwatr/flux/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
268
|
+
- **signal:** signal.untilNext ([9df78c0](https://github.com/Alwatr/flux/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
269
|
+
- **signal:** signals.expire ([3591efd](https://github.com/Alwatr/flux/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
270
|
+
|
|
271
|
+
# [0.28.0](https://github.com/Alwatr/flux/compare/v0.27.0...v0.28.0) (2023-01-20)
|
|
210
272
|
|
|
211
273
|
**Note:** Version bump only for package @alwatr/signal
|
|
212
274
|
|
|
213
|
-
# [0.27.0](https://github.com/
|
|
275
|
+
# [0.27.0](https://github.com/Alwatr/flux/compare/v0.26.0...v0.27.0) (2022-12-29)
|
|
214
276
|
|
|
215
277
|
**Note:** Version bump only for package @alwatr/signal
|
|
216
278
|
|
|
217
|
-
# [0.26.0](https://github.com/
|
|
279
|
+
# [0.26.0](https://github.com/Alwatr/flux/compare/v0.25.0...v0.26.0) (2022-12-22)
|
|
218
280
|
|
|
219
281
|
### Bug Fixes
|
|
220
282
|
|
|
221
|
-
- set correct path ([d01ce6f](https://github.com/
|
|
222
|
-
- tsconfig ([e96dcd3](https://github.com/
|
|
283
|
+
- set correct path ([d01ce6f](https://github.com/Alwatr/flux/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
284
|
+
- tsconfig ([e96dcd3](https://github.com/Alwatr/flux/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
223
285
|
|
|
224
286
|
### Features
|
|
225
287
|
|
|
226
|
-
- improve error debugging ([1fba504](https://github.com/
|
|
288
|
+
- improve error debugging ([1fba504](https://github.com/Alwatr/flux/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
227
289
|
|
|
228
|
-
# [0.25.0](https://github.com/
|
|
290
|
+
# [0.25.0](https://github.com/Alwatr/flux/compare/v0.24.1...v0.25.0) (2022-12-07)
|
|
229
291
|
|
|
230
292
|
**Note:** Version bump only for package @alwatr/signal
|
|
231
293
|
|
|
232
|
-
## [0.24.1](https://github.com/
|
|
294
|
+
## [0.24.1](https://github.com/Alwatr/flux/compare/v0.24.0...v0.24.1) (2022-12-01)
|
|
233
295
|
|
|
234
296
|
**Note:** Version bump only for package @alwatr/signal
|
|
235
297
|
|
|
236
|
-
# [0.24.0](https://github.com/
|
|
298
|
+
# [0.24.0](https://github.com/Alwatr/flux/compare/v0.23.0...v0.24.0) (2022-11-28)
|
|
237
299
|
|
|
238
300
|
### Bug Fixes
|
|
239
301
|
|
|
240
|
-
- use ~ for package version ([4e027ff](https://github.com/
|
|
302
|
+
- use ~ for package version ([4e027ff](https://github.com/Alwatr/flux/commit/4e027ff63875e03b088ebcdc1bdf2495f4494eec))
|
|
241
303
|
|
|
242
|
-
# [0.23.0](https://github.com/
|
|
304
|
+
# [0.23.0](https://github.com/Alwatr/flux/compare/v0.22.1...v0.23.0) (2022-11-23)
|
|
243
305
|
|
|
244
306
|
**Note:** Version bump only for package @alwatr/signal
|
|
245
307
|
|
|
246
|
-
## [0.22.1](https://github.com/
|
|
308
|
+
## [0.22.1](https://github.com/Alwatr/flux/compare/v0.22.0...v0.22.1) (2022-11-21)
|
|
247
309
|
|
|
248
310
|
**Note:** Version bump only for package @alwatr/signal
|
|
249
311
|
|
|
250
|
-
# [0.22.0](https://github.com/
|
|
312
|
+
# [0.22.0](https://github.com/Alwatr/flux/compare/v0.21.0...v0.22.0) (2022-11-20)
|
|
251
313
|
|
|
252
314
|
**Note:** Version bump only for package @alwatr/signal
|
|
253
315
|
|
|
254
|
-
# [0.21.0](https://github.com/
|
|
316
|
+
# [0.21.0](https://github.com/Alwatr/flux/compare/v0.20.0...v0.21.0) (2022-11-13)
|
|
255
317
|
|
|
256
318
|
**Note:** Version bump only for package @alwatr/signal
|
|
257
319
|
|
|
258
|
-
# [0.20.0](https://github.com/
|
|
320
|
+
# [0.20.0](https://github.com/Alwatr/flux/compare/v0.19.0...v0.20.0) (2022-11-05)
|
|
259
321
|
|
|
260
322
|
**Note:** Version bump only for package @alwatr/signal
|
|
261
323
|
|
|
262
|
-
# [0.19.0](https://github.com/
|
|
324
|
+
# [0.19.0](https://github.com/Alwatr/flux/compare/v0.18.0...v0.19.0) (2022-11-01)
|
|
263
325
|
|
|
264
326
|
### Bug Fixes
|
|
265
327
|
|
|
266
|
-
- Import error in webpack ([1a52f67](https://github.com/
|
|
328
|
+
- Import error in webpack ([1a52f67](https://github.com/Alwatr/flux/commit/1a52f67ff2788c51abd13126f34353c26aa669c3))
|
|
267
329
|
|
|
268
|
-
# [0.18.0](https://github.com/
|
|
330
|
+
# [0.18.0](https://github.com/Alwatr/flux/compare/v0.17.0...v0.18.0) (2022-10-22)
|
|
269
331
|
|
|
270
332
|
**Note:** Version bump only for package @alwatr/signal
|
|
271
333
|
|
|
272
|
-
# [0.17.0](https://github.com/
|
|
334
|
+
# [0.17.0](https://github.com/Alwatr/flux/compare/v0.16.1...v0.17.0) (2022-10-21)
|
|
273
335
|
|
|
274
336
|
### Bug Fixes
|
|
275
337
|
|
|
276
|
-
- **signal:** default options ([bbb0d59](https://github.com/
|
|
338
|
+
- **signal:** default options ([bbb0d59](https://github.com/Alwatr/flux/commit/bbb0d59442301344781691bbecad39aed7f6ac40))
|
|
277
339
|
|
|
278
|
-
# [0.16.0](https://github.com/
|
|
340
|
+
# [0.16.0](https://github.com/Alwatr/flux/compare/v0.15.0...v0.16.0) (2022-09-08)
|
|
279
341
|
|
|
280
342
|
**Note:** Version bump only for package @alwatr/signal
|
|
281
343
|
|
|
282
|
-
# [0.15.0](https://github.com/
|
|
344
|
+
# [0.15.0](https://github.com/Alwatr/flux/compare/v0.14.0...v0.15.0) (2022-09-01)
|
|
283
345
|
|
|
284
346
|
### Bug Fixes
|
|
285
347
|
|
|
286
|
-
- get signal object of `request` signal ([eec4b62](https://github.com/
|
|
287
|
-
- **signal:** fix some issues of `review` ([36ceb8b](https://github.com/
|
|
288
|
-
- **signal:** log performance and security issue ([dbe9483](https://github.com/
|
|
348
|
+
- get signal object of `request` signal ([eec4b62](https://github.com/Alwatr/flux/commit/eec4b6201d79785aa10f4b9c777449525158a346))
|
|
349
|
+
- **signal:** fix some issues of `review` ([36ceb8b](https://github.com/Alwatr/flux/commit/36ceb8b25987621065327b4fa475a213562af8e7))
|
|
350
|
+
- **signal:** log performance and security issue ([dbe9483](https://github.com/Alwatr/flux/commit/dbe9483b672099b91c18c3a103c2878435fd6508))
|
|
289
351
|
|
|
290
|
-
# [0.14.0](https://github.com/
|
|
352
|
+
# [0.14.0](https://github.com/Alwatr/flux/compare/v0.13.0...v0.14.0) (2022-08-19)
|
|
291
353
|
|
|
292
354
|
**Note:** Version bump only for package @alwatr/signal
|
|
293
355
|
|
|
294
|
-
# [0.13.0](https://github.com/
|
|
356
|
+
# [0.13.0](https://github.com/Alwatr/flux/compare/v0.12.0...v0.13.0) (2022-08-06)
|
|
295
357
|
|
|
296
358
|
**Note:** Version bump only for package @alwatr/signal
|
|
297
359
|
|
|
298
|
-
# [0.12.0](https://github.com/
|
|
360
|
+
# [0.12.0](https://github.com/Alwatr/flux/compare/v0.11.0...v0.12.0) (2022-07-22)
|
|
299
361
|
|
|
300
362
|
**Note:** Version bump only for package @alwatr/signal
|
|
301
363
|
|
|
302
|
-
# [0.11.0](https://github.com/
|
|
364
|
+
# [0.11.0](https://github.com/Alwatr/flux/compare/v0.10.1...v0.11.0) (2022-04-16)
|
|
303
365
|
|
|
304
366
|
**Note:** Version bump only for package @alwatr/signal
|
|
305
367
|
|
|
306
|
-
# [0.10.0](https://github.com/
|
|
368
|
+
# [0.10.0](https://github.com/Alwatr/flux/compare/v0.9.0...v0.10.0) (2022-04-02)
|
|
307
369
|
|
|
308
370
|
**Note:** Version bump only for package @alwatr/signal
|
|
309
371
|
|
|
310
|
-
# [0.9.0](https://github.com/
|
|
372
|
+
# [0.9.0](https://github.com/Alwatr/flux/compare/v0.8.0...v0.9.0) (2022-03-22)
|
|
311
373
|
|
|
312
374
|
### Features
|
|
313
375
|
|
|
314
|
-
- **signal:** ListenerInterface ([38ef029](https://github.com/
|
|
376
|
+
- **signal:** ListenerInterface ([38ef029](https://github.com/Alwatr/flux/commit/38ef0291c5ba2e3619080ad89109d805d3d600f2))
|
|
315
377
|
|
|
316
|
-
# [0.8.0](https://github.com/
|
|
378
|
+
# [0.8.0](https://github.com/Alwatr/flux/compare/v0.7.2...v0.8.0) (2022-03-14)
|
|
317
379
|
|
|
318
380
|
### Bug Fixes
|
|
319
381
|
|
|
320
|
-
- **signal:** remove once listene in dispatch change imediatly the loop! ([e4d420d](https://github.com/
|
|
382
|
+
- **signal:** remove once listene in dispatch change imediatly the loop! ([e4d420d](https://github.com/Alwatr/flux/commit/e4d420d3a086558dc01dcd7a9c5fe3e96677f092))
|
|
321
383
|
|
|
322
|
-
## [0.7.2](https://github.com/
|
|
384
|
+
## [0.7.2](https://github.com/Alwatr/flux/compare/v0.7.1...v0.7.2) (2022-03-12)
|
|
323
385
|
|
|
324
386
|
### Bug Fixes
|
|
325
387
|
|
|
326
|
-
- **signal:** promise to multi requests works ([dd59f0e](https://github.com/
|
|
388
|
+
- **signal:** promise to multi requests works ([dd59f0e](https://github.com/Alwatr/flux/commit/dd59f0e5737abec72c41895b93365199fad66fcb))
|
|
327
389
|
|
|
328
|
-
# [0.7.0](https://github.com/
|
|
390
|
+
# [0.7.0](https://github.com/Alwatr/flux/compare/v0.6.1...v0.7.0) (2022-03-12)
|
|
329
391
|
|
|
330
392
|
**Note:** Version bump only for package @alwatr/signal
|
|
331
393
|
|
|
332
|
-
# [0.6.0](https://github.com/
|
|
394
|
+
# [0.6.0](https://github.com/Alwatr/flux/compare/v0.5.0...v0.6.0) (2022-03-11)
|
|
333
395
|
|
|
334
396
|
### Bug Fixes
|
|
335
397
|
|
|
336
|
-
- alalwatr ([898aa6e](https://github.com/
|
|
337
|
-
- **packages:** duplicate alwatr keyword ([77d4aa2](https://github.com/
|
|
398
|
+
- alalwatr ([898aa6e](https://github.com/Alwatr/flux/commit/898aa6ed0888eab9265c83b96a50f1b8c216d143))
|
|
399
|
+
- **packages:** duplicate alwatr keyword ([77d4aa2](https://github.com/Alwatr/flux/commit/77d4aa2105ad47515c3eee251fd6b8c281d0d1fc))
|
|
338
400
|
|
|
339
|
-
# [0.5.0](https://github.com/
|
|
401
|
+
# [0.5.0](https://github.com/Alwatr/flux/compare/v0.4.0...v0.5.0) (2022-03-11)
|
|
340
402
|
|
|
341
403
|
### Bug Fixes
|
|
342
404
|
|
|
343
|
-
- **signal:** disabled getter and optional dispatch options ([28ced3d](https://github.com/
|
|
405
|
+
- **signal:** disabled getter and optional dispatch options ([28ced3d](https://github.com/Alwatr/flux/commit/28ced3d0c4cdf44fc2aebfab98db0883fc5363fe))
|
|
344
406
|
|
|
345
407
|
### Features
|
|
346
408
|
|
|
347
|
-
- **signal:** new SignalInterface ([221701a](https://github.com/
|
|
409
|
+
- **signal:** new SignalInterface ([221701a](https://github.com/Alwatr/flux/commit/221701a54ea9edda4a3a935a7b098e235ec52691))
|
|
348
410
|
|
|
349
|
-
# [0.4.0](https://github.com/
|
|
411
|
+
# [0.4.0](https://github.com/Alwatr/flux/compare/v0.3.0...v0.4.0) (2022-03-11)
|
|
350
412
|
|
|
351
413
|
**Note:** Version bump only for package @alwatr/signal
|
|
352
414
|
|
|
353
|
-
# [0.3.0](https://github.com/
|
|
415
|
+
# [0.3.0](https://github.com/Alwatr/flux/compare/v0.2.1...v0.3.0) (2022-03-06)
|
|
354
416
|
|
|
355
417
|
### Bug Fixes
|
|
356
418
|
|
|
357
|
-
- **signal:** signal provider type ([0151c57](https://github.com/
|
|
419
|
+
- **signal:** signal provider type ([0151c57](https://github.com/Alwatr/flux/commit/0151c57d9b6d4f7e83bb9b1847ebe0ae53cd8f89))
|
|
358
420
|
|
|
359
|
-
## [0.2.1](https://github.com/
|
|
421
|
+
## [0.2.1](https://github.com/Alwatr/flux/compare/v0.2.0...v0.2.1) (2022-03-05)
|
|
360
422
|
|
|
361
423
|
### Bug Fixes
|
|
362
424
|
|
|
363
|
-
- **signal:** signal value type issue ([292a4a7](https://github.com/
|
|
425
|
+
- **signal:** signal value type issue ([292a4a7](https://github.com/Alwatr/flux/commit/292a4a7d12a2fd143761e67cd1ecd2e5e40f2ee9))
|
|
364
426
|
|
|
365
|
-
# [0.2.0](https://github.com/
|
|
427
|
+
# [0.2.0](https://github.com/Alwatr/flux/compare/v0.1.2...v0.2.0) (2022-03-05)
|
|
366
428
|
|
|
367
429
|
### Bug Fixes
|
|
368
430
|
|
|
369
|
-
- **router:** rename setSignalProvider callback detail to requestParam ([6e09f87](https://github.com/
|
|
370
|
-
- **signal:** fix dispatchSignal value parameters ([4d34cfb](https://github.com/
|
|
431
|
+
- **router:** rename setSignalProvider callback detail to requestParam ([6e09f87](https://github.com/Alwatr/flux/commit/6e09f8772d320625fb4c15ccaa0abcfa2932f992))
|
|
432
|
+
- **signal:** fix dispatchSignal value parameters ([4d34cfb](https://github.com/Alwatr/flux/commit/4d34cfbb5281d5ce4a4f06ddaaf72218dde80cdd))
|
|
371
433
|
|
|
372
434
|
### Features
|
|
373
435
|
|
|
374
|
-
- **signal:** add contributors ([64287cd](https://github.com/
|
|
375
|
-
- **signal:** improve signal provider by dispatch return content ([80c2b27](https://github.com/
|
|
436
|
+
- **signal:** add contributors ([64287cd](https://github.com/Alwatr/flux/commit/64287cd8cea95665a6ed298177df60dadda7642b))
|
|
437
|
+
- **signal:** improve signal provider by dispatch return content ([80c2b27](https://github.com/Alwatr/flux/commit/80c2b275bcc0521327400c5902f512c778f5eb3f))
|
|
376
438
|
|
|
377
|
-
## [0.1.2](https://github.com/
|
|
439
|
+
## [0.1.2](https://github.com/Alwatr/flux/compare/v0.1.1...v0.1.2) (2022-03-03)
|
|
378
440
|
|
|
379
441
|
**Note:** Version bump only for package @alwatr/signal
|
|
380
442
|
|
|
381
|
-
## [0.1.1](https://github.com/
|
|
443
|
+
## [0.1.1](https://github.com/Alwatr/flux/compare/v0.1.0...v0.1.1) (2022-03-03)
|
|
382
444
|
|
|
383
445
|
### Bug Fixes
|
|
384
446
|
|
|
385
|
-
- **packages:** add publish config to public ([9cb3710](https://github.com/
|
|
447
|
+
- **packages:** add publish config to public ([9cb3710](https://github.com/Alwatr/flux/commit/9cb37106b5a35d24d5195ff54232e5769ccc034e))
|
|
386
448
|
|
|
387
449
|
# 0.1.0 (2022-03-02)
|
|
388
450
|
|
|
389
451
|
### Bug Fixes
|
|
390
452
|
|
|
391
|
-
- **signal:** AlwatrRequestSignals global type ([228e333](https://github.com/
|
|
453
|
+
- **signal:** AlwatrRequestSignals global type ([228e333](https://github.com/Alwatr/flux/commit/228e3333326b23df51e7834872daf1349826bf09))
|
|
392
454
|
|
|
393
455
|
### Features
|
|
394
456
|
|
|
395
|
-
- **signal:** addSignalListener ([e7c5742](https://github.com/
|
|
396
|
-
- **signal:** getSignalObject ([b38954c](https://github.com/
|
|
397
|
-
- **signal:** impeliment addSignalProvider, waitForSignal, hasSignalDispatchedBefore, expireSignal ([e0b4d78](https://github.com/
|
|
398
|
-
- **signal:** impeliment dispatchSignal ([cb2dfbe](https://github.com/
|
|
399
|
-
- **signal:** ListenerObject, SignalObject types ([36d8a33](https://github.com/
|
|
400
|
-
- **signal:** make new package for manage signals ([5bf82b3](https://github.com/
|
|
401
|
-
- **signal:** register to alwatr meta ([9c850e8](https://github.com/
|
|
402
|
-
- **signal:** removeSignalListener ([0088a52](https://github.com/
|
|
403
|
-
- **signal:** requestSignal ([111ab5a](https://github.com/
|
|
457
|
+
- **signal:** addSignalListener ([e7c5742](https://github.com/Alwatr/flux/commit/e7c57427ef11e2624eb9a52a166720b1a3c5f66a))
|
|
458
|
+
- **signal:** getSignalObject ([b38954c](https://github.com/Alwatr/flux/commit/b38954cf4ae1c24eaaa79ecf513995a4678814ee))
|
|
459
|
+
- **signal:** impeliment addSignalProvider, waitForSignal, hasSignalDispatchedBefore, expireSignal ([e0b4d78](https://github.com/Alwatr/flux/commit/e0b4d7831764d4454591f5105c5512e1657a63e5))
|
|
460
|
+
- **signal:** impeliment dispatchSignal ([cb2dfbe](https://github.com/Alwatr/flux/commit/cb2dfbe23ea751cba93cb1f6516cd2bfa2ecb18e))
|
|
461
|
+
- **signal:** ListenerObject, SignalObject types ([36d8a33](https://github.com/Alwatr/flux/commit/36d8a336760bba3808cfd26a28e4d24a31c95f8f))
|
|
462
|
+
- **signal:** make new package for manage signals ([5bf82b3](https://github.com/Alwatr/flux/commit/5bf82b3f05abc89102634e9b864d81b5b5af527e))
|
|
463
|
+
- **signal:** register to alwatr meta ([9c850e8](https://github.com/Alwatr/flux/commit/9c850e8df787aa44d289929dc65439e921982dce))
|
|
464
|
+
- **signal:** removeSignalListener ([0088a52](https://github.com/Alwatr/flux/commit/0088a5269ccce8b50a50e444695c81654fda70ff))
|
|
465
|
+
- **signal:** requestSignal ([111ab5a](https://github.com/Alwatr/flux/commit/111ab5a1436bc380f5121ef8c130da7010258d90))
|