@alwatr/signal 1.1.2 → 2.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 +179 -163
- package/context.d.ts +31 -0
- package/context.d.ts.map +1 -0
- package/context.js +40 -0
- package/context.js.map +1 -0
- package/index.d.ts +6 -9
- package/index.d.ts.map +1 -1
- package/index.js +5 -16
- package/index.js.map +1 -1
- package/multithread-context.d.ts +21 -0
- package/multithread-context.d.ts.map +1 -0
- package/multithread-context.js +50 -0
- package/multithread-context.js.map +1 -0
- package/observable.d.ts +47 -0
- package/observable.d.ts.map +1 -0
- package/observable.js +127 -0
- package/observable.js.map +1 -0
- package/package.json +9 -9
- package/signal.d.ts +19 -0
- package/signal.d.ts.map +1 -0
- package/signal.js +23 -0
- package/signal.js.map +1 -0
- package/simple-signal.d.ts +19 -0
- package/simple-signal.d.ts.map +1 -0
- package/simple-signal.js +23 -0
- package/simple-signal.js.map +1 -0
- package/type.d.ts +15 -126
- package/type.d.ts.map +1 -1
- package/type.js.map +1 -1
- package/command-handler.d.ts +0 -25
- package/command-handler.d.ts.map +0 -1
- package/command-handler.js +0 -24
- package/command-handler.js.map +0 -1
- package/command-trigger.d.ts +0 -64
- package/command-trigger.d.ts.map +0 -1
- package/command-trigger.js +0 -64
- package/command-trigger.js.map +0 -1
- package/context-consumer.d.ts +0 -124
- package/context-consumer.d.ts.map +0 -1
- package/context-consumer.js +0 -124
- package/context-consumer.js.map +0 -1
- package/context-provider.d.ts +0 -120
- package/context-provider.d.ts.map +0 -1
- package/context-provider.js +0 -120
- package/context-provider.js.map +0 -1
- package/core.d.ts +0 -181
- package/core.d.ts.map +0 -1
- package/core.js +0 -388
- package/core.js.map +0 -1
- package/event-listener.d.ts +0 -120
- package/event-listener.d.ts.map +0 -1
- package/event-listener.js +0 -120
- package/event-listener.js.map +0 -1
- package/event-trigger.d.ts +0 -76
- package/event-trigger.d.ts.map +0 -1
- package/event-trigger.js +0 -76
- package/event-trigger.js.map +0 -1
- package/requestable-context-consumer.d.ts +0 -60
- package/requestable-context-consumer.d.ts.map +0 -1
- package/requestable-context-consumer.js +0 -54
- package/requestable-context-consumer.js.map +0 -1
- package/requestable-context-provider.d.ts +0 -69
- package/requestable-context-provider.d.ts.map +0 -1
- package/requestable-context-provider.js +0 -63
- package/requestable-context-provider.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,27 @@
|
|
|
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
|
+
## [2.0.1](https://github.com/AliMD/alwatr-signal/compare/@alwatr/signal@2.0.0...@alwatr/signal@2.0.1) (2023-10-23)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **signal:** compatible with new logger api ([0a3b1c0](https://github.com/AliMD/alwatr-signal/commit/0a3b1c02b285daa66491104a14596e6a19895e11)) by @
|
|
11
|
+
|
|
12
|
+
# 2.0.0 (2023-09-19)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- all new repo path and packages dependencies ([21a6afa](https://github.com/AliMD/alwatr-signal/commit/21a6afa0badafe4051617d9a9e3bbfbaabd0c4ad)) by @AliMD
|
|
17
|
+
- cleanup old signal and fsm v1 ([bde0bea](https://github.com/AliMD/alwatr-signal/commit/bde0bea06a6750bebad49a127b75b57fd5e55ddd)) by @AliMD
|
|
18
|
+
- **signal:** package name ([4791b54](https://github.com/AliMD/alwatr-signal/commit/4791b54c8da75cf43eb9c86180f1ed94b0e28c4e)) by @AliMD
|
|
19
|
+
- **signal:** signal2 name ([70b71e3](https://github.com/AliMD/alwatr-signal/commit/70b71e312cb5e5d4c54c37c5c327712200f90be5)) by @AliMD
|
|
20
|
+
- ts refrence path ([c2baa44](https://github.com/AliMD/alwatr-signal/commit/c2baa44999c72a0015481fc8fea25439329c3f37)) by @AliMD
|
|
21
|
+
|
|
22
|
+
## [1.1.2](https://github.com/AliMD/alwatr-signal/compare/@alwatr/signal@1.1.1...@alwatr/signal@1.1.2) (2023-09-12)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @alwatr/signal
|
|
9
25
|
|
|
10
|
-
## [1.1.1](https://github.com/AliMD/alwatr/compare/@alwatr/signal@1.1.0...@alwatr/signal@1.1.1) (2023-09-12)
|
|
26
|
+
## [1.1.1](https://github.com/AliMD/alwatr-signal/compare/@alwatr/signal@1.1.0...@alwatr/signal@1.1.1) (2023-09-12)
|
|
11
27
|
|
|
12
28
|
**Note:** Version bump only for package @alwatr/signal
|
|
13
29
|
|
|
@@ -21,68 +37,68 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
21
37
|
|
|
22
38
|
### Bug Fixes
|
|
23
39
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
40
|
+
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr-signal/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
41
|
+
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/AliMD/alwatr-signal/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
42
|
+
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/AliMD/alwatr-signal/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
27
43
|
|
|
28
44
|
### Features
|
|
29
45
|
|
|
30
|
-
|
|
46
|
+
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/AliMD/alwatr-signal/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
31
47
|
|
|
32
48
|
# 0.30.0 (2023-03-06)
|
|
33
49
|
|
|
34
50
|
### Bug Fixes
|
|
35
51
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
52
|
+
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/AliMD/alwatr-signal/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
53
|
+
- **signal:** nodejs compatibility ([69d8a60](https://github.com/AliMD/alwatr-signal/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
54
|
+
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/AliMD/alwatr-signal/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
55
|
+
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/AliMD/alwatr-signal/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
40
56
|
|
|
41
57
|
### Features
|
|
42
58
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
59
|
+
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/AliMD/alwatr-signal/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
60
|
+
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/AliMD/alwatr-signal/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
61
|
+
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/AliMD/alwatr-signal/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
46
62
|
|
|
47
63
|
# 0.29.0 (2023-02-10)
|
|
48
64
|
|
|
49
65
|
### Bug Fixes
|
|
50
66
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
67
|
+
- **signal/core:** \_getSignalObject ([1374188](https://github.com/AliMD/alwatr-signal/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
68
|
+
- **signal:** alert [#1455](https://github.com/AliMD/alwatr-signal/issues/1455) ([203307d](https://github.com/AliMD/alwatr-signal/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
69
|
+
- **signal:** clean old interfaces ([b2987ad](https://github.com/AliMD/alwatr-signal/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
70
|
+
- **signal:** export all interfaces ([8704eac](https://github.com/AliMD/alwatr-signal/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
71
|
+
- **signal:** export listeners ([fb05bfb](https://github.com/AliMD/alwatr-signal/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
72
|
+
- **signal:** import types ([cc0b88b](https://github.com/AliMD/alwatr-signal/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
73
|
+
- **signal:** interface bind type ([7b6c820](https://github.com/AliMD/alwatr-signal/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
74
|
+
- **signal:** reported issues ([75f688f](https://github.com/AliMD/alwatr-signal/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
75
|
+
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/AliMD/alwatr-signal/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
60
76
|
|
|
61
77
|
### Features
|
|
62
78
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
79
|
+
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/AliMD/alwatr-signal/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
80
|
+
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/AliMD/alwatr-signal/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
81
|
+
- **signal:** bind signal ([de49a13](https://github.com/AliMD/alwatr-signal/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
82
|
+
- **signal:** command handler/provider interface ([3d23683](https://github.com/AliMD/alwatr-signal/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
83
|
+
- **signal:** command signals ([98c1d90](https://github.com/AliMD/alwatr-signal/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
84
|
+
- **signal:** command trigger interface ([dda9466](https://github.com/AliMD/alwatr-signal/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
85
|
+
- **signal:** commandSignal ([5a0d7e5](https://github.com/AliMD/alwatr-signal/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
86
|
+
- **signal:** context prover and consumer ([081a51a](https://github.com/AliMD/alwatr-signal/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
87
|
+
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/AliMD/alwatr-signal/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
88
|
+
- **signal:** event listener interface ([4ca4079](https://github.com/AliMD/alwatr-signal/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
89
|
+
- **signal:** event trigger interface ([9b90597](https://github.com/AliMD/alwatr-signal/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
90
|
+
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/AliMD/alwatr-signal/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
91
|
+
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/AliMD/alwatr-signal/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
92
|
+
- **signal:** new manager interface ([f028306](https://github.com/AliMD/alwatr-signal/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
93
|
+
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/AliMD/alwatr-signal/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
94
|
+
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/AliMD/alwatr-signal/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
95
|
+
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/AliMD/alwatr-signal/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
96
|
+
- **signal:** new simple api ([eb1e478](https://github.com/AliMD/alwatr-signal/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
97
|
+
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/AliMD/alwatr-signal/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
98
|
+
- **signal:** separate request command with response ([47a779e](https://github.com/AliMD/alwatr-signal/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
99
|
+
- **signal:** signal.request ([d791b3e](https://github.com/AliMD/alwatr-signal/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
100
|
+
- **signal:** signal.untilNext ([9df78c0](https://github.com/AliMD/alwatr-signal/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
101
|
+
- **signal:** signals.expire ([3591efd](https://github.com/AliMD/alwatr-signal/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
86
102
|
|
|
87
103
|
# 0.28.0 (2023-01-20)
|
|
88
104
|
|
|
@@ -92,280 +108,280 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
92
108
|
|
|
93
109
|
### Bug Fixes
|
|
94
110
|
|
|
95
|
-
|
|
96
|
-
|
|
111
|
+
- set correct path ([d01ce6f](https://github.com/AliMD/alwatr-signal/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
112
|
+
- tsconfig ([e96dcd3](https://github.com/AliMD/alwatr-signal/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
97
113
|
|
|
98
114
|
### Features
|
|
99
115
|
|
|
100
|
-
|
|
116
|
+
- improve error debugging ([1fba504](https://github.com/AliMD/alwatr-signal/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
101
117
|
|
|
102
|
-
# [1.0.0](https://github.com/AliMD/alwatr/compare/v0.32.0...v1.0.0) (2023-06-14)
|
|
118
|
+
# [1.0.0](https://github.com/AliMD/alwatr-signal/compare/v0.32.0...v1.0.0) (2023-06-14)
|
|
103
119
|
|
|
104
120
|
**Note:** Version bump only for package @alwatr/signal
|
|
105
121
|
|
|
106
|
-
# [0.32.0](https://github.com/AliMD/alwatr/compare/v0.31.0...v0.32.0) (2023-05-27)
|
|
122
|
+
# [0.32.0](https://github.com/AliMD/alwatr-signal/compare/v0.31.0...v0.32.0) (2023-05-27)
|
|
107
123
|
|
|
108
124
|
**Note:** Version bump only for package @alwatr/signal
|
|
109
125
|
|
|
110
|
-
# [0.31.0](https://github.com/AliMD/alwatr/compare/v0.30.0...v0.31.0) (2023-05-08)
|
|
126
|
+
# [0.31.0](https://github.com/AliMD/alwatr-signal/compare/v0.30.0...v0.31.0) (2023-05-08)
|
|
111
127
|
|
|
112
128
|
### Bug Fixes
|
|
113
129
|
|
|
114
|
-
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
115
|
-
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/AliMD/alwatr/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
116
|
-
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/AliMD/alwatr/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
130
|
+
- new logger api ([9d83a7d](https://github.com/AliMD/alwatr-signal/commit/9d83a7dc5c103bc3bb4282dacfd85fa998915300))
|
|
131
|
+
- **signal:** dont receivePrevious when listener is disabled ([68ae207](https://github.com/AliMD/alwatr-signal/commit/68ae207ce9ecf104922b24910d8dfcedb13acde7))
|
|
132
|
+
- **signal:** requestableContextProvider.getValue ([0a7111d](https://github.com/AliMD/alwatr-signal/commit/0a7111da7b8eb004566922dc9b35edfc02a55147))
|
|
117
133
|
|
|
118
134
|
### Features
|
|
119
135
|
|
|
120
|
-
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/AliMD/alwatr/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
136
|
+
- **signal:** new RequestableContext with state ([b8a8e55](https://github.com/AliMD/alwatr-signal/commit/b8a8e550d3952863d85ba9d9d87513a668a9430d))
|
|
121
137
|
|
|
122
|
-
# [0.30.0](https://github.com/AliMD/alwatr/compare/v0.29.0...v0.30.0) (2023-03-06)
|
|
138
|
+
# [0.30.0](https://github.com/AliMD/alwatr-signal/compare/v0.29.0...v0.30.0) (2023-03-06)
|
|
123
139
|
|
|
124
140
|
### Bug Fixes
|
|
125
141
|
|
|
126
|
-
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/AliMD/alwatr/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
127
|
-
- **signal:** nodejs compatibility ([69d8a60](https://github.com/AliMD/alwatr/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
128
|
-
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/AliMD/alwatr/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
129
|
-
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/AliMD/alwatr/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
142
|
+
- **signal:** NextCycle with own detail ([01f3c79](https://github.com/AliMD/alwatr-signal/commit/01f3c79500927f6384a33abcc9b0cb2355794b3e))
|
|
143
|
+
- **signal:** nodejs compatibility ([69d8a60](https://github.com/AliMD/alwatr-signal/commit/69d8a60ad64d44ee7c3ced002e702f13408a5a50))
|
|
144
|
+
- **signal:** requestableContextConsumer bind issue ([66467f6](https://github.com/AliMD/alwatr-signal/commit/66467f6e5681d84d7f2e0b353206d4bb579b26f2))
|
|
145
|
+
- **signal:** requestContext dispatch issue ([e937ebd](https://github.com/AliMD/alwatr-signal/commit/e937ebd3a90fc6a9946f5c35ef4f6f40b6ab4b00))
|
|
130
146
|
|
|
131
147
|
### Features
|
|
132
148
|
|
|
133
|
-
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/AliMD/alwatr/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
134
|
-
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/AliMD/alwatr/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
135
|
-
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/AliMD/alwatr/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
149
|
+
- **signal:** add untilChange for contextProvider ([cb44916](https://github.com/AliMD/alwatr-signal/commit/cb4491698fd5ddfbe055032fc2cb50691de31194))
|
|
150
|
+
- **signal:** defineCommand return ListenerSpec ([21fecac](https://github.com/AliMD/alwatr-signal/commit/21fecacb6aa9423da9e3c177a4bbc59952d94e35))
|
|
151
|
+
- **signal:** dispatch NextCycle option ([b30eb31](https://github.com/AliMD/alwatr-signal/commit/b30eb316d92f594034fc40d195c4033e38e4d2e2))
|
|
136
152
|
|
|
137
|
-
# [0.29.0](https://github.com/AliMD/alwatr/compare/v0.28.0...v0.29.0) (2023-02-10)
|
|
153
|
+
# [0.29.0](https://github.com/AliMD/alwatr-signal/compare/v0.28.0...v0.29.0) (2023-02-10)
|
|
138
154
|
|
|
139
155
|
### Bug Fixes
|
|
140
156
|
|
|
141
|
-
- **signal/core:** \_getSignalObject ([1374188](https://github.com/AliMD/alwatr/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
142
|
-
- **signal:** alert [#1455](https://github.com/AliMD/alwatr/issues/1455) ([203307d](https://github.com/AliMD/alwatr/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
143
|
-
- **signal:** clean old interfaces ([b2987ad](https://github.com/AliMD/alwatr/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
144
|
-
- **signal:** export all interfaces ([8704eac](https://github.com/AliMD/alwatr/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
145
|
-
- **signal:** export listeners ([fb05bfb](https://github.com/AliMD/alwatr/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
146
|
-
- **signal:** import types ([cc0b88b](https://github.com/AliMD/alwatr/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
147
|
-
- **signal:** interface bind type ([7b6c820](https://github.com/AliMD/alwatr/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
148
|
-
- **signal:** reported issues ([75f688f](https://github.com/AliMD/alwatr/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
149
|
-
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/AliMD/alwatr/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
157
|
+
- **signal/core:** \_getSignalObject ([1374188](https://github.com/AliMD/alwatr-signal/commit/1374188bdc7e689ded11d04bf4588a1162cc6d86))
|
|
158
|
+
- **signal:** alert [#1455](https://github.com/AliMD/alwatr-signal/issues/1455) ([203307d](https://github.com/AliMD/alwatr-signal/commit/203307df308a12e6c38cb9e0e2301b2015b6ff45))
|
|
159
|
+
- **signal:** clean old interfaces ([b2987ad](https://github.com/AliMD/alwatr-signal/commit/b2987add7bfe0cf609fa355403fb9fb5de3f6b8a))
|
|
160
|
+
- **signal:** export all interfaces ([8704eac](https://github.com/AliMD/alwatr-signal/commit/8704eac6ae7a8a45e77c24ef5e602e36af3fd21e))
|
|
161
|
+
- **signal:** export listeners ([fb05bfb](https://github.com/AliMD/alwatr-signal/commit/fb05bfb9b7eb30427442783677ce1d4da5401160))
|
|
162
|
+
- **signal:** import types ([cc0b88b](https://github.com/AliMD/alwatr-signal/commit/cc0b88be420b1fe057a8640bbffb1af3bf327cef))
|
|
163
|
+
- **signal:** interface bind type ([7b6c820](https://github.com/AliMD/alwatr-signal/commit/7b6c820da2ba216f36e089bf79bdeccf208df3b1))
|
|
164
|
+
- **signal:** reported issues ([75f688f](https://github.com/AliMD/alwatr-signal/commit/75f688faf96a056a256603d05276f5731db86aee))
|
|
165
|
+
- **signal:** TSignal on SignalControllerInterface ([ac42b7c](https://github.com/AliMD/alwatr-signal/commit/ac42b7c7023549e8dd07cd3d9e189f356ffa06ee))
|
|
150
166
|
|
|
151
167
|
### Features
|
|
152
168
|
|
|
153
|
-
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/AliMD/alwatr/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
154
|
-
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/AliMD/alwatr/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
155
|
-
- **signal:** bind signal ([de49a13](https://github.com/AliMD/alwatr/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
156
|
-
- **signal:** command handler/provider interface ([3d23683](https://github.com/AliMD/alwatr/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
157
|
-
- **signal:** command signals ([98c1d90](https://github.com/AliMD/alwatr/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
158
|
-
- **signal:** command trigger interface ([dda9466](https://github.com/AliMD/alwatr/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
159
|
-
- **signal:** commandSignal ([5a0d7e5](https://github.com/AliMD/alwatr/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
160
|
-
- **signal:** context prover and consumer ([081a51a](https://github.com/AliMD/alwatr/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
161
|
-
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/AliMD/alwatr/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
162
|
-
- **signal:** event listener interface ([4ca4079](https://github.com/AliMD/alwatr/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
163
|
-
- **signal:** event trigger interface ([9b90597](https://github.com/AliMD/alwatr/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
164
|
-
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/AliMD/alwatr/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
165
|
-
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/AliMD/alwatr/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
166
|
-
- **signal:** new manager interface ([f028306](https://github.com/AliMD/alwatr/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
167
|
-
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/AliMD/alwatr/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
168
|
-
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/AliMD/alwatr/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
169
|
-
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/AliMD/alwatr/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
170
|
-
- **signal:** new simple api ([eb1e478](https://github.com/AliMD/alwatr/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
171
|
-
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/AliMD/alwatr/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
172
|
-
- **signal:** separate request command with response ([47a779e](https://github.com/AliMD/alwatr/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
173
|
-
- **signal:** signal.request ([d791b3e](https://github.com/AliMD/alwatr/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
174
|
-
- **signal:** signal.untilNext ([9df78c0](https://github.com/AliMD/alwatr/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
175
|
-
- **signal:** signals.expire ([3591efd](https://github.com/AliMD/alwatr/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
176
|
-
|
|
177
|
-
# [0.28.0](https://github.com/AliMD/alwatr/compare/v0.27.0...v0.28.0) (2023-01-20)
|
|
169
|
+
- **signal-manager:** enhance provider, docs ([c4583a3](https://github.com/AliMD/alwatr-signal/commit/c4583a3b0fcbf38b5e426aaa2bc6e0f52ccac5fd))
|
|
170
|
+
- **signal:** alias in SignalInterface & BoundSignalInterface ([053030b](https://github.com/AliMD/alwatr-signal/commit/053030b96c09d474794f32327d892f1d3690656c))
|
|
171
|
+
- **signal:** bind signal ([de49a13](https://github.com/AliMD/alwatr-signal/commit/de49a13eaffce31660849dfc63285d97e9098c0c))
|
|
172
|
+
- **signal:** command handler/provider interface ([3d23683](https://github.com/AliMD/alwatr-signal/commit/3d236837e13d8cfdcd44a1570bdc9659f48e7f47))
|
|
173
|
+
- **signal:** command signals ([98c1d90](https://github.com/AliMD/alwatr-signal/commit/98c1d90978329e4c5c584e19edb1aaa365632162))
|
|
174
|
+
- **signal:** command trigger interface ([dda9466](https://github.com/AliMD/alwatr-signal/commit/dda94666d9e8e490fea26038044df0e67c203583))
|
|
175
|
+
- **signal:** commandSignal ([5a0d7e5](https://github.com/AliMD/alwatr-signal/commit/5a0d7e5498087620d28548ea5d90036a7b17483a))
|
|
176
|
+
- **signal:** context prover and consumer ([081a51a](https://github.com/AliMD/alwatr-signal/commit/081a51a1ee88e66ebbcd0c58186c00a6aa9e1032))
|
|
177
|
+
- **signal:** contextProvider.expire ([7d0ce93](https://github.com/AliMD/alwatr-signal/commit/7d0ce937f0eadcd9019e6047fbe07aa1a3b579a7))
|
|
178
|
+
- **signal:** event listener interface ([4ca4079](https://github.com/AliMD/alwatr-signal/commit/4ca407938d444027cdbd435173c875fdd9ce8e28))
|
|
179
|
+
- **signal:** event trigger interface ([9b90597](https://github.com/AliMD/alwatr-signal/commit/9b905979a5065640981433ec7d120ba2494966bb))
|
|
180
|
+
- **signal:** new contextConsumer interface ([9ee4a62](https://github.com/AliMD/alwatr-signal/commit/9ee4a624211adb66d9c3d180470cca44ed7df382))
|
|
181
|
+
- **signal:** new contextProvider interface ([e5d29eb](https://github.com/AliMD/alwatr-signal/commit/e5d29ebaa75d71bb5a87bedddb2be7600e68b210))
|
|
182
|
+
- **signal:** new manager interface ([f028306](https://github.com/AliMD/alwatr-signal/commit/f028306f4d7932df65a1bbeade0d29377a370e2e))
|
|
183
|
+
- **signal:** new requestable context consumer interface ([bf6845f](https://github.com/AliMD/alwatr-signal/commit/bf6845f35a98bb63bcfa42196c2f977d64aea59e))
|
|
184
|
+
- **signal:** new requestable context provider interface ([2c8d576](https://github.com/AliMD/alwatr-signal/commit/2c8d57604dcb07a2831d85d4ef1e262863a5fae8))
|
|
185
|
+
- **signal:** new signal dynamic types ([0f1a38e](https://github.com/AliMD/alwatr-signal/commit/0f1a38e356ab73e4e2e1a8f852585e50e86cff0e))
|
|
186
|
+
- **signal:** new simple api ([eb1e478](https://github.com/AliMD/alwatr-signal/commit/eb1e47892d4478fb6c687f6d15e1a5c204b5666c))
|
|
187
|
+
- **signal:** refactor all generic types with Stringifyable ([bdcef63](https://github.com/AliMD/alwatr-signal/commit/bdcef632c81fa5e7c7ae595a7a77092c53821850))
|
|
188
|
+
- **signal:** separate request command with response ([47a779e](https://github.com/AliMD/alwatr-signal/commit/47a779e9a814d5d6a388f1a3e94c23e7fb977dce))
|
|
189
|
+
- **signal:** signal.request ([d791b3e](https://github.com/AliMD/alwatr-signal/commit/d791b3eef846697020b76bfecfbf25a3e31eb3a5))
|
|
190
|
+
- **signal:** signal.untilNext ([9df78c0](https://github.com/AliMD/alwatr-signal/commit/9df78c03dea243b467504fdf422388ab9d2b5660))
|
|
191
|
+
- **signal:** signals.expire ([3591efd](https://github.com/AliMD/alwatr-signal/commit/3591efd5e42f7a981814fd59d7189b5066735302))
|
|
192
|
+
|
|
193
|
+
# [0.28.0](https://github.com/AliMD/alwatr-signal/compare/v0.27.0...v0.28.0) (2023-01-20)
|
|
178
194
|
|
|
179
195
|
**Note:** Version bump only for package @alwatr/signal
|
|
180
196
|
|
|
181
|
-
# [0.27.0](https://github.com/AliMD/alwatr/compare/v0.26.0...v0.27.0) (2022-12-29)
|
|
197
|
+
# [0.27.0](https://github.com/AliMD/alwatr-signal/compare/v0.26.0...v0.27.0) (2022-12-29)
|
|
182
198
|
|
|
183
199
|
**Note:** Version bump only for package @alwatr/signal
|
|
184
200
|
|
|
185
|
-
# [0.26.0](https://github.com/AliMD/alwatr/compare/v0.25.0...v0.26.0) (2022-12-22)
|
|
201
|
+
# [0.26.0](https://github.com/AliMD/alwatr-signal/compare/v0.25.0...v0.26.0) (2022-12-22)
|
|
186
202
|
|
|
187
203
|
### Bug Fixes
|
|
188
204
|
|
|
189
|
-
- set correct path ([d01ce6f](https://github.com/AliMD/alwatr/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
190
|
-
- tsconfig ([e96dcd3](https://github.com/AliMD/alwatr/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
205
|
+
- set correct path ([d01ce6f](https://github.com/AliMD/alwatr-signal/commit/d01ce6ffa749a5e3e0e11e35b4ed61d75d61fec9))
|
|
206
|
+
- tsconfig ([e96dcd3](https://github.com/AliMD/alwatr-signal/commit/e96dcd30774a9f06f7d051e0504192cbbe019e35))
|
|
191
207
|
|
|
192
208
|
### Features
|
|
193
209
|
|
|
194
|
-
- improve error debugging ([1fba504](https://github.com/AliMD/alwatr/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
210
|
+
- improve error debugging ([1fba504](https://github.com/AliMD/alwatr-signal/commit/1fba50400a1e8ececc10bbe8ea11cc8dcea2289c))
|
|
195
211
|
|
|
196
|
-
# [0.25.0](https://github.com/AliMD/alwatr/compare/v0.24.1...v0.25.0) (2022-12-07)
|
|
212
|
+
# [0.25.0](https://github.com/AliMD/alwatr-signal/compare/v0.24.1...v0.25.0) (2022-12-07)
|
|
197
213
|
|
|
198
214
|
**Note:** Version bump only for package @alwatr/signal
|
|
199
215
|
|
|
200
|
-
## [0.24.1](https://github.com/AliMD/alwatr/compare/v0.24.0...v0.24.1) (2022-12-01)
|
|
216
|
+
## [0.24.1](https://github.com/AliMD/alwatr-signal/compare/v0.24.0...v0.24.1) (2022-12-01)
|
|
201
217
|
|
|
202
218
|
**Note:** Version bump only for package @alwatr/signal
|
|
203
219
|
|
|
204
|
-
# [0.24.0](https://github.com/AliMD/alwatr/compare/v0.23.0...v0.24.0) (2022-11-28)
|
|
220
|
+
# [0.24.0](https://github.com/AliMD/alwatr-signal/compare/v0.23.0...v0.24.0) (2022-11-28)
|
|
205
221
|
|
|
206
222
|
### Bug Fixes
|
|
207
223
|
|
|
208
|
-
- use ~ for package version ([4e027ff](https://github.com/AliMD/alwatr/commit/4e027ff63875e03b088ebcdc1bdf2495f4494eec))
|
|
224
|
+
- use ~ for package version ([4e027ff](https://github.com/AliMD/alwatr-signal/commit/4e027ff63875e03b088ebcdc1bdf2495f4494eec))
|
|
209
225
|
|
|
210
|
-
# [0.23.0](https://github.com/AliMD/alwatr/compare/v0.22.1...v0.23.0) (2022-11-23)
|
|
226
|
+
# [0.23.0](https://github.com/AliMD/alwatr-signal/compare/v0.22.1...v0.23.0) (2022-11-23)
|
|
211
227
|
|
|
212
228
|
**Note:** Version bump only for package @alwatr/signal
|
|
213
229
|
|
|
214
|
-
## [0.22.1](https://github.com/AliMD/alwatr/compare/v0.22.0...v0.22.1) (2022-11-21)
|
|
230
|
+
## [0.22.1](https://github.com/AliMD/alwatr-signal/compare/v0.22.0...v0.22.1) (2022-11-21)
|
|
215
231
|
|
|
216
232
|
**Note:** Version bump only for package @alwatr/signal
|
|
217
233
|
|
|
218
|
-
# [0.22.0](https://github.com/AliMD/alwatr/compare/v0.21.0...v0.22.0) (2022-11-20)
|
|
234
|
+
# [0.22.0](https://github.com/AliMD/alwatr-signal/compare/v0.21.0...v0.22.0) (2022-11-20)
|
|
219
235
|
|
|
220
236
|
**Note:** Version bump only for package @alwatr/signal
|
|
221
237
|
|
|
222
|
-
# [0.21.0](https://github.com/AliMD/alwatr/compare/v0.20.0...v0.21.0) (2022-11-13)
|
|
238
|
+
# [0.21.0](https://github.com/AliMD/alwatr-signal/compare/v0.20.0...v0.21.0) (2022-11-13)
|
|
223
239
|
|
|
224
240
|
**Note:** Version bump only for package @alwatr/signal
|
|
225
241
|
|
|
226
|
-
# [0.20.0](https://github.com/AliMD/alwatr/compare/v0.19.0...v0.20.0) (2022-11-05)
|
|
242
|
+
# [0.20.0](https://github.com/AliMD/alwatr-signal/compare/v0.19.0...v0.20.0) (2022-11-05)
|
|
227
243
|
|
|
228
244
|
**Note:** Version bump only for package @alwatr/signal
|
|
229
245
|
|
|
230
|
-
# [0.19.0](https://github.com/AliMD/alwatr/compare/v0.18.0...v0.19.0) (2022-11-01)
|
|
246
|
+
# [0.19.0](https://github.com/AliMD/alwatr-signal/compare/v0.18.0...v0.19.0) (2022-11-01)
|
|
231
247
|
|
|
232
248
|
### Bug Fixes
|
|
233
249
|
|
|
234
|
-
- Import error in webpack ([1a52f67](https://github.com/AliMD/alwatr/commit/1a52f67ff2788c51abd13126f34353c26aa669c3))
|
|
250
|
+
- Import error in webpack ([1a52f67](https://github.com/AliMD/alwatr-signal/commit/1a52f67ff2788c51abd13126f34353c26aa669c3))
|
|
235
251
|
|
|
236
|
-
# [0.18.0](https://github.com/AliMD/alwatr/compare/v0.17.0...v0.18.0) (2022-10-22)
|
|
252
|
+
# [0.18.0](https://github.com/AliMD/alwatr-signal/compare/v0.17.0...v0.18.0) (2022-10-22)
|
|
237
253
|
|
|
238
254
|
**Note:** Version bump only for package @alwatr/signal
|
|
239
255
|
|
|
240
|
-
# [0.17.0](https://github.com/AliMD/alwatr/compare/v0.16.1...v0.17.0) (2022-10-21)
|
|
256
|
+
# [0.17.0](https://github.com/AliMD/alwatr-signal/compare/v0.16.1...v0.17.0) (2022-10-21)
|
|
241
257
|
|
|
242
258
|
### Bug Fixes
|
|
243
259
|
|
|
244
|
-
- **signal:** default options ([bbb0d59](https://github.com/AliMD/alwatr/commit/bbb0d59442301344781691bbecad39aed7f6ac40))
|
|
260
|
+
- **signal:** default options ([bbb0d59](https://github.com/AliMD/alwatr-signal/commit/bbb0d59442301344781691bbecad39aed7f6ac40))
|
|
245
261
|
|
|
246
|
-
# [0.16.0](https://github.com/AliMD/alwatr/compare/v0.15.0...v0.16.0) (2022-09-08)
|
|
262
|
+
# [0.16.0](https://github.com/AliMD/alwatr-signal/compare/v0.15.0...v0.16.0) (2022-09-08)
|
|
247
263
|
|
|
248
264
|
**Note:** Version bump only for package @alwatr/signal
|
|
249
265
|
|
|
250
|
-
# [0.15.0](https://github.com/AliMD/alwatr/compare/v0.14.0...v0.15.0) (2022-09-01)
|
|
266
|
+
# [0.15.0](https://github.com/AliMD/alwatr-signal/compare/v0.14.0...v0.15.0) (2022-09-01)
|
|
251
267
|
|
|
252
268
|
### Bug Fixes
|
|
253
269
|
|
|
254
|
-
- get signal object of `request` signal ([eec4b62](https://github.com/AliMD/alwatr/commit/eec4b6201d79785aa10f4b9c777449525158a346))
|
|
255
|
-
- **signal:** fix some issues of `review` ([36ceb8b](https://github.com/AliMD/alwatr/commit/36ceb8b25987621065327b4fa475a213562af8e7))
|
|
256
|
-
- **signal:** log performance and security issue ([dbe9483](https://github.com/AliMD/alwatr/commit/dbe9483b672099b91c18c3a103c2878435fd6508))
|
|
270
|
+
- get signal object of `request` signal ([eec4b62](https://github.com/AliMD/alwatr-signal/commit/eec4b6201d79785aa10f4b9c777449525158a346))
|
|
271
|
+
- **signal:** fix some issues of `review` ([36ceb8b](https://github.com/AliMD/alwatr-signal/commit/36ceb8b25987621065327b4fa475a213562af8e7))
|
|
272
|
+
- **signal:** log performance and security issue ([dbe9483](https://github.com/AliMD/alwatr-signal/commit/dbe9483b672099b91c18c3a103c2878435fd6508))
|
|
257
273
|
|
|
258
|
-
# [0.14.0](https://github.com/AliMD/alwatr/compare/v0.13.0...v0.14.0) (2022-08-19)
|
|
274
|
+
# [0.14.0](https://github.com/AliMD/alwatr-signal/compare/v0.13.0...v0.14.0) (2022-08-19)
|
|
259
275
|
|
|
260
276
|
**Note:** Version bump only for package @alwatr/signal
|
|
261
277
|
|
|
262
|
-
# [0.13.0](https://github.com/AliMD/alwatr/compare/v0.12.0...v0.13.0) (2022-08-06)
|
|
278
|
+
# [0.13.0](https://github.com/AliMD/alwatr-signal/compare/v0.12.0...v0.13.0) (2022-08-06)
|
|
263
279
|
|
|
264
280
|
**Note:** Version bump only for package @alwatr/signal
|
|
265
281
|
|
|
266
|
-
# [0.12.0](https://github.com/AliMD/alwatr/compare/v0.11.0...v0.12.0) (2022-07-22)
|
|
282
|
+
# [0.12.0](https://github.com/AliMD/alwatr-signal/compare/v0.11.0...v0.12.0) (2022-07-22)
|
|
267
283
|
|
|
268
284
|
**Note:** Version bump only for package @alwatr/signal
|
|
269
285
|
|
|
270
|
-
# [0.11.0](https://github.com/AliMD/alwatr/compare/v0.10.1...v0.11.0) (2022-04-16)
|
|
286
|
+
# [0.11.0](https://github.com/AliMD/alwatr-signal/compare/v0.10.1...v0.11.0) (2022-04-16)
|
|
271
287
|
|
|
272
288
|
**Note:** Version bump only for package @alwatr/signal
|
|
273
289
|
|
|
274
|
-
# [0.10.0](https://github.com/AliMD/alwatr/compare/v0.9.0...v0.10.0) (2022-04-02)
|
|
290
|
+
# [0.10.0](https://github.com/AliMD/alwatr-signal/compare/v0.9.0...v0.10.0) (2022-04-02)
|
|
275
291
|
|
|
276
292
|
**Note:** Version bump only for package @alwatr/signal
|
|
277
293
|
|
|
278
|
-
# [0.9.0](https://github.com/AliMD/alwatr/compare/v0.8.0...v0.9.0) (2022-03-22)
|
|
294
|
+
# [0.9.0](https://github.com/AliMD/alwatr-signal/compare/v0.8.0...v0.9.0) (2022-03-22)
|
|
279
295
|
|
|
280
296
|
### Features
|
|
281
297
|
|
|
282
|
-
- **signal:** ListenerInterface ([38ef029](https://github.com/AliMD/alwatr/commit/38ef0291c5ba2e3619080ad89109d805d3d600f2))
|
|
298
|
+
- **signal:** ListenerInterface ([38ef029](https://github.com/AliMD/alwatr-signal/commit/38ef0291c5ba2e3619080ad89109d805d3d600f2))
|
|
283
299
|
|
|
284
|
-
# [0.8.0](https://github.com/AliMD/alwatr/compare/v0.7.2...v0.8.0) (2022-03-14)
|
|
300
|
+
# [0.8.0](https://github.com/AliMD/alwatr-signal/compare/v0.7.2...v0.8.0) (2022-03-14)
|
|
285
301
|
|
|
286
302
|
### Bug Fixes
|
|
287
303
|
|
|
288
|
-
- **signal:** remove once listene in dispatch change imediatly the loop! ([e4d420d](https://github.com/AliMD/alwatr/commit/e4d420d3a086558dc01dcd7a9c5fe3e96677f092))
|
|
304
|
+
- **signal:** remove once listene in dispatch change imediatly the loop! ([e4d420d](https://github.com/AliMD/alwatr-signal/commit/e4d420d3a086558dc01dcd7a9c5fe3e96677f092))
|
|
289
305
|
|
|
290
|
-
## [0.7.2](https://github.com/AliMD/alwatr/compare/v0.7.1...v0.7.2) (2022-03-12)
|
|
306
|
+
## [0.7.2](https://github.com/AliMD/alwatr-signal/compare/v0.7.1...v0.7.2) (2022-03-12)
|
|
291
307
|
|
|
292
308
|
### Bug Fixes
|
|
293
309
|
|
|
294
|
-
- **signal:** promise to multi requests works ([dd59f0e](https://github.com/AliMD/alwatr/commit/dd59f0e5737abec72c41895b93365199fad66fcb))
|
|
310
|
+
- **signal:** promise to multi requests works ([dd59f0e](https://github.com/AliMD/alwatr-signal/commit/dd59f0e5737abec72c41895b93365199fad66fcb))
|
|
295
311
|
|
|
296
|
-
# [0.7.0](https://github.com/AliMD/alwatr/compare/v0.6.1...v0.7.0) (2022-03-12)
|
|
312
|
+
# [0.7.0](https://github.com/AliMD/alwatr-signal/compare/v0.6.1...v0.7.0) (2022-03-12)
|
|
297
313
|
|
|
298
314
|
**Note:** Version bump only for package @alwatr/signal
|
|
299
315
|
|
|
300
|
-
# [0.6.0](https://github.com/AliMD/alwatr/compare/v0.5.0...v0.6.0) (2022-03-11)
|
|
316
|
+
# [0.6.0](https://github.com/AliMD/alwatr-signal/compare/v0.5.0...v0.6.0) (2022-03-11)
|
|
301
317
|
|
|
302
318
|
### Bug Fixes
|
|
303
319
|
|
|
304
|
-
- alalwatr ([898aa6e](https://github.com/AliMD/alwatr/commit/898aa6ed0888eab9265c83b96a50f1b8c216d143))
|
|
305
|
-
- **packages:** duplicate alwatr keyword ([77d4aa2](https://github.com/AliMD/alwatr/commit/77d4aa2105ad47515c3eee251fd6b8c281d0d1fc))
|
|
320
|
+
- alalwatr ([898aa6e](https://github.com/AliMD/alwatr-signal/commit/898aa6ed0888eab9265c83b96a50f1b8c216d143))
|
|
321
|
+
- **packages:** duplicate alwatr keyword ([77d4aa2](https://github.com/AliMD/alwatr-signal/commit/77d4aa2105ad47515c3eee251fd6b8c281d0d1fc))
|
|
306
322
|
|
|
307
|
-
# [0.5.0](https://github.com/AliMD/alwatr/compare/v0.4.0...v0.5.0) (2022-03-11)
|
|
323
|
+
# [0.5.0](https://github.com/AliMD/alwatr-signal/compare/v0.4.0...v0.5.0) (2022-03-11)
|
|
308
324
|
|
|
309
325
|
### Bug Fixes
|
|
310
326
|
|
|
311
|
-
- **signal:** disabled getter and optional dispatch options ([28ced3d](https://github.com/AliMD/alwatr/commit/28ced3d0c4cdf44fc2aebfab98db0883fc5363fe))
|
|
327
|
+
- **signal:** disabled getter and optional dispatch options ([28ced3d](https://github.com/AliMD/alwatr-signal/commit/28ced3d0c4cdf44fc2aebfab98db0883fc5363fe))
|
|
312
328
|
|
|
313
329
|
### Features
|
|
314
330
|
|
|
315
|
-
- **signal:** new SignalInterface ([221701a](https://github.com/AliMD/alwatr/commit/221701a54ea9edda4a3a935a7b098e235ec52691))
|
|
331
|
+
- **signal:** new SignalInterface ([221701a](https://github.com/AliMD/alwatr-signal/commit/221701a54ea9edda4a3a935a7b098e235ec52691))
|
|
316
332
|
|
|
317
|
-
# [0.4.0](https://github.com/AliMD/alwatr/compare/v0.3.0...v0.4.0) (2022-03-11)
|
|
333
|
+
# [0.4.0](https://github.com/AliMD/alwatr-signal/compare/v0.3.0...v0.4.0) (2022-03-11)
|
|
318
334
|
|
|
319
335
|
**Note:** Version bump only for package @alwatr/signal
|
|
320
336
|
|
|
321
|
-
# [0.3.0](https://github.com/AliMD/alwatr/compare/v0.2.1...v0.3.0) (2022-03-06)
|
|
337
|
+
# [0.3.0](https://github.com/AliMD/alwatr-signal/compare/v0.2.1...v0.3.0) (2022-03-06)
|
|
322
338
|
|
|
323
339
|
### Bug Fixes
|
|
324
340
|
|
|
325
|
-
- **signal:** signal provider type ([0151c57](https://github.com/AliMD/alwatr/commit/0151c57d9b6d4f7e83bb9b1847ebe0ae53cd8f89))
|
|
341
|
+
- **signal:** signal provider type ([0151c57](https://github.com/AliMD/alwatr-signal/commit/0151c57d9b6d4f7e83bb9b1847ebe0ae53cd8f89))
|
|
326
342
|
|
|
327
|
-
## [0.2.1](https://github.com/AliMD/alwatr/compare/v0.2.0...v0.2.1) (2022-03-05)
|
|
343
|
+
## [0.2.1](https://github.com/AliMD/alwatr-signal/compare/v0.2.0...v0.2.1) (2022-03-05)
|
|
328
344
|
|
|
329
345
|
### Bug Fixes
|
|
330
346
|
|
|
331
|
-
- **signal:** signal value type issue ([292a4a7](https://github.com/AliMD/alwatr/commit/292a4a7d12a2fd143761e67cd1ecd2e5e40f2ee9))
|
|
347
|
+
- **signal:** signal value type issue ([292a4a7](https://github.com/AliMD/alwatr-signal/commit/292a4a7d12a2fd143761e67cd1ecd2e5e40f2ee9))
|
|
332
348
|
|
|
333
|
-
# [0.2.0](https://github.com/AliMD/alwatr/compare/v0.1.2...v0.2.0) (2022-03-05)
|
|
349
|
+
# [0.2.0](https://github.com/AliMD/alwatr-signal/compare/v0.1.2...v0.2.0) (2022-03-05)
|
|
334
350
|
|
|
335
351
|
### Bug Fixes
|
|
336
352
|
|
|
337
|
-
- **router:** rename setSignalProvider callback detail to requestParam ([6e09f87](https://github.com/AliMD/alwatr/commit/6e09f8772d320625fb4c15ccaa0abcfa2932f992))
|
|
338
|
-
- **signal:** fix dispatchSignal value parameters ([4d34cfb](https://github.com/AliMD/alwatr/commit/4d34cfbb5281d5ce4a4f06ddaaf72218dde80cdd))
|
|
353
|
+
- **router:** rename setSignalProvider callback detail to requestParam ([6e09f87](https://github.com/AliMD/alwatr-signal/commit/6e09f8772d320625fb4c15ccaa0abcfa2932f992))
|
|
354
|
+
- **signal:** fix dispatchSignal value parameters ([4d34cfb](https://github.com/AliMD/alwatr-signal/commit/4d34cfbb5281d5ce4a4f06ddaaf72218dde80cdd))
|
|
339
355
|
|
|
340
356
|
### Features
|
|
341
357
|
|
|
342
|
-
- **signal:** add contributors ([64287cd](https://github.com/AliMD/alwatr/commit/64287cd8cea95665a6ed298177df60dadda7642b))
|
|
343
|
-
- **signal:** improve signal provider by dispatch return content ([80c2b27](https://github.com/AliMD/alwatr/commit/80c2b275bcc0521327400c5902f512c778f5eb3f))
|
|
358
|
+
- **signal:** add contributors ([64287cd](https://github.com/AliMD/alwatr-signal/commit/64287cd8cea95665a6ed298177df60dadda7642b))
|
|
359
|
+
- **signal:** improve signal provider by dispatch return content ([80c2b27](https://github.com/AliMD/alwatr-signal/commit/80c2b275bcc0521327400c5902f512c778f5eb3f))
|
|
344
360
|
|
|
345
|
-
## [0.1.2](https://github.com/AliMD/alwatr/compare/v0.1.1...v0.1.2) (2022-03-03)
|
|
361
|
+
## [0.1.2](https://github.com/AliMD/alwatr-signal/compare/v0.1.1...v0.1.2) (2022-03-03)
|
|
346
362
|
|
|
347
363
|
**Note:** Version bump only for package @alwatr/signal
|
|
348
364
|
|
|
349
|
-
## [0.1.1](https://github.com/AliMD/alwatr/compare/v0.1.0...v0.1.1) (2022-03-03)
|
|
365
|
+
## [0.1.1](https://github.com/AliMD/alwatr-signal/compare/v0.1.0...v0.1.1) (2022-03-03)
|
|
350
366
|
|
|
351
367
|
### Bug Fixes
|
|
352
368
|
|
|
353
|
-
- **packages:** add publish config to public ([9cb3710](https://github.com/AliMD/alwatr/commit/9cb37106b5a35d24d5195ff54232e5769ccc034e))
|
|
369
|
+
- **packages:** add publish config to public ([9cb3710](https://github.com/AliMD/alwatr-signal/commit/9cb37106b5a35d24d5195ff54232e5769ccc034e))
|
|
354
370
|
|
|
355
371
|
# 0.1.0 (2022-03-02)
|
|
356
372
|
|
|
357
373
|
### Bug Fixes
|
|
358
374
|
|
|
359
|
-
- **signal:** AlwatrRequestSignals global type ([228e333](https://github.com/AliMD/alwatr/commit/228e3333326b23df51e7834872daf1349826bf09))
|
|
375
|
+
- **signal:** AlwatrRequestSignals global type ([228e333](https://github.com/AliMD/alwatr-signal/commit/228e3333326b23df51e7834872daf1349826bf09))
|
|
360
376
|
|
|
361
377
|
### Features
|
|
362
378
|
|
|
363
|
-
- **signal:** addSignalListener ([e7c5742](https://github.com/AliMD/alwatr/commit/e7c57427ef11e2624eb9a52a166720b1a3c5f66a))
|
|
364
|
-
- **signal:** getSignalObject ([b38954c](https://github.com/AliMD/alwatr/commit/b38954cf4ae1c24eaaa79ecf513995a4678814ee))
|
|
365
|
-
- **signal:** impeliment addSignalProvider, waitForSignal, hasSignalDispatchedBefore, expireSignal ([e0b4d78](https://github.com/AliMD/alwatr/commit/e0b4d7831764d4454591f5105c5512e1657a63e5))
|
|
366
|
-
- **signal:** impeliment dispatchSignal ([cb2dfbe](https://github.com/AliMD/alwatr/commit/cb2dfbe23ea751cba93cb1f6516cd2bfa2ecb18e))
|
|
367
|
-
- **signal:** ListenerObject, SignalObject types ([36d8a33](https://github.com/AliMD/alwatr/commit/36d8a336760bba3808cfd26a28e4d24a31c95f8f))
|
|
368
|
-
- **signal:** make new package for manage signals ([5bf82b3](https://github.com/AliMD/alwatr/commit/5bf82b3f05abc89102634e9b864d81b5b5af527e))
|
|
369
|
-
- **signal:** register to alwatr meta ([9c850e8](https://github.com/AliMD/alwatr/commit/9c850e8df787aa44d289929dc65439e921982dce))
|
|
370
|
-
- **signal:** removeSignalListener ([0088a52](https://github.com/AliMD/alwatr/commit/0088a5269ccce8b50a50e444695c81654fda70ff))
|
|
371
|
-
- **signal:** requestSignal ([111ab5a](https://github.com/AliMD/alwatr/commit/111ab5a1436bc380f5121ef8c130da7010258d90))
|
|
379
|
+
- **signal:** addSignalListener ([e7c5742](https://github.com/AliMD/alwatr-signal/commit/e7c57427ef11e2624eb9a52a166720b1a3c5f66a))
|
|
380
|
+
- **signal:** getSignalObject ([b38954c](https://github.com/AliMD/alwatr-signal/commit/b38954cf4ae1c24eaaa79ecf513995a4678814ee))
|
|
381
|
+
- **signal:** impeliment addSignalProvider, waitForSignal, hasSignalDispatchedBefore, expireSignal ([e0b4d78](https://github.com/AliMD/alwatr-signal/commit/e0b4d7831764d4454591f5105c5512e1657a63e5))
|
|
382
|
+
- **signal:** impeliment dispatchSignal ([cb2dfbe](https://github.com/AliMD/alwatr-signal/commit/cb2dfbe23ea751cba93cb1f6516cd2bfa2ecb18e))
|
|
383
|
+
- **signal:** ListenerObject, SignalObject types ([36d8a33](https://github.com/AliMD/alwatr-signal/commit/36d8a336760bba3808cfd26a28e4d24a31c95f8f))
|
|
384
|
+
- **signal:** make new package for manage signals ([5bf82b3](https://github.com/AliMD/alwatr-signal/commit/5bf82b3f05abc89102634e9b864d81b5b5af527e))
|
|
385
|
+
- **signal:** register to alwatr meta ([9c850e8](https://github.com/AliMD/alwatr-signal/commit/9c850e8df787aa44d289929dc65439e921982dce))
|
|
386
|
+
- **signal:** removeSignalListener ([0088a52](https://github.com/AliMD/alwatr-signal/commit/0088a5269ccce8b50a50e444695c81654fda70ff))
|
|
387
|
+
- **signal:** requestSignal ([111ab5a](https://github.com/AliMD/alwatr-signal/commit/111ab5a1436bc380f5121ef8c130da7010258d90))
|
package/context.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AlwatrObservable } from './observable.js';
|
|
2
|
+
/**
|
|
3
|
+
* Alwatr context signal.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AlwatrContextSignal<T> extends AlwatrObservable<T> {
|
|
6
|
+
constructor(config: {
|
|
7
|
+
name: string;
|
|
8
|
+
loggerPrefix?: string;
|
|
9
|
+
});
|
|
10
|
+
/**
|
|
11
|
+
* Get context value.
|
|
12
|
+
*
|
|
13
|
+
* Return undefined if context not set before or expired.
|
|
14
|
+
*/
|
|
15
|
+
getValue(): T | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* Set context value and notify all subscribers.
|
|
18
|
+
*/
|
|
19
|
+
setValue(value: T): void;
|
|
20
|
+
/**
|
|
21
|
+
* Clear current context value without notify subscribers.
|
|
22
|
+
*
|
|
23
|
+
* `receivePrevious` in new subscribers not work until new context changes.
|
|
24
|
+
*/
|
|
25
|
+
expire(): void;
|
|
26
|
+
/**
|
|
27
|
+
* Get the value of the next context changes.
|
|
28
|
+
*/
|
|
29
|
+
untilChange(): Promise<T>;
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=context.d.ts.map
|
package/context.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["src/context.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAC,MAAM,iBAAiB,CAAC;AAEjD;;GAEG;AACH,qBAAa,mBAAmB,CAAC,CAAC,CAAE,SAAQ,gBAAgB,CAAC,CAAC,CAAC;gBACjD,MAAM,EAAE;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAA;KAAC;IAKzD;;;;OAIG;IACH,QAAQ,IAAI,CAAC,GAAG,SAAS;IAIzB;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,CAAC,GAAG,IAAI;IAKxB;;;;OAIG;IACH,MAAM,IAAI,IAAI;IAId;;OAEG;IACH,WAAW,IAAI,OAAO,CAAC,CAAC,CAAC;CAG1B"}
|