@effect-app/vue 4.0.0-beta.17 → 4.0.0-beta.171
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 +1098 -0
- package/dist/commander.d.ts +370 -0
- package/dist/commander.d.ts.map +1 -0
- package/dist/commander.js +591 -0
- package/dist/confirm.d.ts +19 -0
- package/dist/confirm.d.ts.map +1 -0
- package/dist/confirm.js +24 -0
- package/dist/errorReporter.d.ts +4 -4
- package/dist/errorReporter.d.ts.map +1 -1
- package/dist/errorReporter.js +12 -18
- package/dist/form.d.ts +13 -4
- package/dist/form.d.ts.map +1 -1
- package/dist/form.js +41 -12
- package/dist/index.d.ts +1 -1
- package/dist/intl.d.ts +15 -0
- package/dist/intl.d.ts.map +1 -0
- package/dist/intl.js +9 -0
- package/dist/lib.d.ts +8 -9
- package/dist/lib.d.ts.map +1 -1
- package/dist/lib.js +34 -7
- package/dist/makeClient.d.ts +120 -277
- package/dist/makeClient.d.ts.map +1 -1
- package/dist/makeClient.js +155 -359
- package/dist/makeContext.d.ts +1 -1
- package/dist/makeContext.d.ts.map +1 -1
- package/dist/makeIntl.d.ts +1 -1
- package/dist/makeIntl.d.ts.map +1 -1
- package/dist/makeUseCommand.d.ts +8 -0
- package/dist/makeUseCommand.d.ts.map +1 -0
- package/dist/makeUseCommand.js +13 -0
- package/dist/mutate.d.ts +4 -4
- package/dist/mutate.d.ts.map +1 -1
- package/dist/mutate.js +7 -7
- package/dist/query.d.ts +11 -15
- package/dist/query.d.ts.map +1 -1
- package/dist/query.js +19 -27
- package/dist/routeParams.d.ts +1 -1
- package/dist/runtime.d.ts +5 -2
- package/dist/runtime.d.ts.map +1 -1
- package/dist/runtime.js +27 -17
- package/dist/toast.d.ts +46 -0
- package/dist/toast.d.ts.map +1 -0
- package/dist/toast.js +32 -0
- package/dist/withToast.d.ts +26 -0
- package/dist/withToast.d.ts.map +1 -0
- package/dist/withToast.js +49 -0
- package/eslint.config.mjs +2 -2
- package/package.json +48 -48
- package/src/{experimental/commander.ts → commander.ts} +930 -255
- package/src/{experimental/confirm.ts → confirm.ts} +10 -14
- package/src/errorReporter.ts +60 -72
- package/src/form.ts +55 -16
- package/src/intl.ts +12 -0
- package/src/lib.ts +50 -13
- package/src/makeClient.ts +454 -1023
- package/src/{experimental/makeUseCommand.ts → makeUseCommand.ts} +3 -3
- package/src/mutate.ts +40 -32
- package/src/query.ts +39 -50
- package/src/runtime.ts +39 -18
- package/src/{experimental/toast.ts → toast.ts} +11 -25
- package/src/{experimental/withToast.ts → withToast.ts} +15 -6
- package/test/Mutation.test.ts +130 -10
- package/test/dist/form.test.d.ts.map +1 -1
- package/test/dist/lib.test.d.ts.map +1 -0
- package/test/dist/stubs.d.ts +2162 -118
- package/test/dist/stubs.d.ts.map +1 -1
- package/test/dist/stubs.js +80 -23
- package/test/form-validation-errors.test.ts +23 -19
- package/test/form.test.ts +20 -2
- package/test/lib.test.ts +240 -0
- package/test/makeClient.test.ts +217 -38
- package/test/stubs.ts +117 -40
- package/tsconfig.json +0 -1
- package/tsconfig.json.bak +2 -2
- package/tsconfig.src.json +34 -34
- package/tsconfig.test.json +2 -2
- package/vitest.config.ts +5 -5
- package/dist/experimental/commander.d.ts +0 -359
- package/dist/experimental/commander.d.ts.map +0 -1
- package/dist/experimental/commander.js +0 -557
- package/dist/experimental/confirm.d.ts +0 -19
- package/dist/experimental/confirm.d.ts.map +0 -1
- package/dist/experimental/confirm.js +0 -28
- package/dist/experimental/intl.d.ts +0 -16
- package/dist/experimental/intl.d.ts.map +0 -1
- package/dist/experimental/intl.js +0 -5
- package/dist/experimental/makeUseCommand.d.ts +0 -8
- package/dist/experimental/makeUseCommand.d.ts.map +0 -1
- package/dist/experimental/makeUseCommand.js +0 -13
- package/dist/experimental/toast.d.ts +0 -47
- package/dist/experimental/toast.d.ts.map +0 -1
- package/dist/experimental/toast.js +0 -41
- package/dist/experimental/withToast.d.ts +0 -25
- package/dist/experimental/withToast.d.ts.map +0 -1
- package/dist/experimental/withToast.js +0 -45
- package/src/experimental/intl.ts +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,1103 @@
|
|
|
1
1
|
# @effect-app/vue
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.171
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d71d976: fix
|
|
8
|
+
- Updated dependencies [d71d976]
|
|
9
|
+
- effect-app@4.0.0-beta.171
|
|
10
|
+
|
|
11
|
+
## 4.0.0-beta.170
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 8f09f77: fix
|
|
16
|
+
- Updated dependencies [8f09f77]
|
|
17
|
+
- effect-app@4.0.0-beta.170
|
|
18
|
+
|
|
19
|
+
## 4.0.0-beta.169
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 8ae8b53: input mess
|
|
24
|
+
- Updated dependencies [8ae8b53]
|
|
25
|
+
- effect-app@4.0.0-beta.169
|
|
26
|
+
|
|
27
|
+
## 4.0.0-beta.168
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [178480a]
|
|
32
|
+
- effect-app@4.0.0-beta.168
|
|
33
|
+
|
|
34
|
+
## 4.0.0-beta.167
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 140e192: Relax invalidation resource value constraints to allow arbitrary values while preserving query-only filtering in invalidation handling.
|
|
39
|
+
- Updated dependencies [140e192]
|
|
40
|
+
- effect-app@4.0.0-beta.167
|
|
41
|
+
|
|
42
|
+
## 4.0.0-beta.166
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- dbcc53b: Refactor command invalidation typing: declare resources via `Command<Self, Resources>()`, pass `invalidatesQueries` as the optional 4th argument, and enforce exact `clientFor` invalidation resources when required.
|
|
47
|
+
- Updated dependencies [dbcc53b]
|
|
48
|
+
- effect-app@4.0.0-beta.166
|
|
49
|
+
|
|
50
|
+
## 4.0.0-beta.165
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- f88ea34: Move `makeQueryKey` into `effect-app/client` and update Vue source and tests to import it from the shared client module. Vue still re-exports `makeQueryKey` from `src/lib` for compatibility.
|
|
55
|
+
- 66fd718: Require `clientFor` invalidation resources when any command in the client configures them.
|
|
56
|
+
- Updated dependencies [f88ea34]
|
|
57
|
+
- effect-app@4.0.0-beta.165
|
|
58
|
+
|
|
59
|
+
## 4.0.0-beta.164
|
|
60
|
+
|
|
61
|
+
### Minor Changes
|
|
62
|
+
|
|
63
|
+
- 8cb3de4: Add command invalidation helpers that preserve query-only resource types and pass mutation input and `Exit` results into invalidation callbacks. Update Vue `clientFor` to merge request-level invalidation config with call-site invalidation and require matching invalidation resources.
|
|
64
|
+
|
|
65
|
+
### Patch Changes
|
|
66
|
+
|
|
67
|
+
- Updated dependencies [8cb3de4]
|
|
68
|
+
- effect-app@4.0.0-beta.164
|
|
69
|
+
|
|
70
|
+
## 4.0.0-beta.163
|
|
71
|
+
|
|
72
|
+
### Patch Changes
|
|
73
|
+
|
|
74
|
+
- b952f19: bye cruft
|
|
75
|
+
- Updated dependencies [b952f19]
|
|
76
|
+
- effect-app@4.0.0-beta.163
|
|
77
|
+
|
|
78
|
+
## 4.0.0-beta.162
|
|
79
|
+
|
|
80
|
+
### Patch Changes
|
|
81
|
+
|
|
82
|
+
- Updated dependencies [b52b424]
|
|
83
|
+
- effect-app@4.0.0-beta.162
|
|
84
|
+
|
|
85
|
+
## 4.0.0-beta.161
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- aa5ef5c: Improve `deepToRaw` to support any root input type, correctly unwrap refs/computed values, and preserve collection/date shapes (`Array`, `Map`, `Set`, `Date`) while deeply removing Vue reactivity wrappers.
|
|
90
|
+
- effect-app@4.0.0-beta.161
|
|
91
|
+
|
|
92
|
+
## 4.0.0-beta.160
|
|
93
|
+
|
|
94
|
+
### Patch Changes
|
|
95
|
+
|
|
96
|
+
- 505bfa9: Add concurrent decode helper APIs and migrate decode callsites to use them.
|
|
97
|
+
|
|
98
|
+
- Add `withDefaultParseOptions` and keep `DefaultParseOptions` centralized.
|
|
99
|
+
- Export `decodeEffectConcurrently` and `decodeUnknownEffectConcurrently` from Schema and SchemaParser modules.
|
|
100
|
+
- Update repository, queue, client, form, and CLI decode paths to use concurrent decode helpers.
|
|
101
|
+
- Keep schema constructors free of hardcoded parse concurrency overrides.
|
|
102
|
+
|
|
103
|
+
- Updated dependencies [505bfa9]
|
|
104
|
+
- effect-app@4.0.0-beta.160
|
|
105
|
+
|
|
106
|
+
## 4.0.0-beta.159
|
|
107
|
+
|
|
108
|
+
### Patch Changes
|
|
109
|
+
|
|
110
|
+
- c1e73de:
|
|
111
|
+
- Updated dependencies [c1e73de]
|
|
112
|
+
- effect-app@4.0.0-beta.159
|
|
113
|
+
|
|
114
|
+
## 4.0.0-beta.158
|
|
115
|
+
|
|
116
|
+
### Patch Changes
|
|
117
|
+
|
|
118
|
+
- Updated dependencies [3c1f52d]
|
|
119
|
+
- Updated dependencies [6ae3050]
|
|
120
|
+
- effect-app@4.0.0-beta.158
|
|
121
|
+
|
|
122
|
+
## 4.0.0-beta.157
|
|
123
|
+
|
|
124
|
+
### Patch Changes
|
|
125
|
+
|
|
126
|
+
- Updated dependencies [6fff09c]
|
|
127
|
+
- effect-app@4.0.0-beta.157
|
|
128
|
+
|
|
129
|
+
## 4.0.0-beta.156
|
|
130
|
+
|
|
131
|
+
### Patch Changes
|
|
132
|
+
|
|
133
|
+
- 4bc4a27: Constrain `project` schema to require matching `Encoded` type with original success schema
|
|
134
|
+
- effect-app@4.0.0-beta.156
|
|
135
|
+
|
|
136
|
+
## 4.0.0-beta.155
|
|
137
|
+
|
|
138
|
+
### Patch Changes
|
|
139
|
+
|
|
140
|
+
- 2e4c018: feat: add client projection
|
|
141
|
+
- Updated dependencies [c215db8]
|
|
142
|
+
- effect-app@4.0.0-beta.155
|
|
143
|
+
|
|
144
|
+
## 4.0.0-beta.154
|
|
145
|
+
|
|
146
|
+
### Patch Changes
|
|
147
|
+
|
|
148
|
+
- 3200fa8: apply the remaining formatting and autofix cleanup across the vue packages
|
|
149
|
+
- effect-app@4.0.0-beta.154
|
|
150
|
+
|
|
151
|
+
## 4.0.0-beta.153
|
|
152
|
+
|
|
153
|
+
### Patch Changes
|
|
154
|
+
|
|
155
|
+
- effect-app@4.0.0-beta.153
|
|
156
|
+
|
|
157
|
+
## 4.0.0-beta.152
|
|
158
|
+
|
|
159
|
+
### Patch Changes
|
|
160
|
+
|
|
161
|
+
- effect-app@4.0.0-beta.152
|
|
162
|
+
|
|
163
|
+
## 4.0.0-beta.151
|
|
164
|
+
|
|
165
|
+
### Patch Changes
|
|
166
|
+
|
|
167
|
+
- effect-app@4.0.0-beta.151
|
|
168
|
+
|
|
169
|
+
## 4.0.0-beta.150
|
|
170
|
+
|
|
171
|
+
### Patch Changes
|
|
172
|
+
|
|
173
|
+
- Updated dependencies [85a8275]
|
|
174
|
+
- effect-app@4.0.0-beta.150
|
|
175
|
+
|
|
176
|
+
## 4.0.0-beta.149
|
|
177
|
+
|
|
178
|
+
### Patch Changes
|
|
179
|
+
|
|
180
|
+
- Updated dependencies [f317c5e]
|
|
181
|
+
- effect-app@4.0.0-beta.149
|
|
182
|
+
|
|
183
|
+
## 4.0.0-beta.148
|
|
184
|
+
|
|
185
|
+
### Patch Changes
|
|
186
|
+
|
|
187
|
+
- Updated dependencies [199e9a5]
|
|
188
|
+
- effect-app@4.0.0-beta.148
|
|
189
|
+
|
|
190
|
+
## 4.0.0-beta.147
|
|
191
|
+
|
|
192
|
+
### Patch Changes
|
|
193
|
+
|
|
194
|
+
- Updated dependencies [47e3742]
|
|
195
|
+
- effect-app@4.0.0-beta.147
|
|
196
|
+
|
|
197
|
+
## 4.0.0-beta.146
|
|
198
|
+
|
|
199
|
+
### Patch Changes
|
|
200
|
+
|
|
201
|
+
- Updated dependencies [a4dff57]
|
|
202
|
+
- effect-app@4.0.0-beta.146
|
|
203
|
+
|
|
204
|
+
## 4.0.0-beta.145
|
|
205
|
+
|
|
206
|
+
### Patch Changes
|
|
207
|
+
|
|
208
|
+
- Updated dependencies [12abb55]
|
|
209
|
+
- effect-app@4.0.0-beta.145
|
|
210
|
+
|
|
211
|
+
## 4.0.0-beta.144
|
|
212
|
+
|
|
213
|
+
### Patch Changes
|
|
214
|
+
|
|
215
|
+
- 11422f8: Update request helper typing and runtime invocation to rely on schema `.make` instead of class constructors, avoiding `new`-based assumptions for request schemas.
|
|
216
|
+
- Updated dependencies [11422f8]
|
|
217
|
+
- Updated dependencies [d31253f]
|
|
218
|
+
- effect-app@4.0.0-beta.144
|
|
219
|
+
|
|
220
|
+
## 4.0.0-beta.143
|
|
221
|
+
|
|
222
|
+
### Patch Changes
|
|
223
|
+
|
|
224
|
+
- Updated dependencies [79eb019]
|
|
225
|
+
- effect-app@4.0.0-beta.143
|
|
226
|
+
|
|
227
|
+
## 4.0.0-beta.142
|
|
228
|
+
|
|
229
|
+
### Patch Changes
|
|
230
|
+
|
|
231
|
+
- Updated dependencies [3436d44]
|
|
232
|
+
- Updated dependencies [025de47]
|
|
233
|
+
- effect-app@4.0.0-beta.142
|
|
234
|
+
|
|
235
|
+
## 4.0.0-beta.141
|
|
236
|
+
|
|
237
|
+
### Patch Changes
|
|
238
|
+
|
|
239
|
+
- Updated dependencies [7c25dbb]
|
|
240
|
+
- effect-app@4.0.0-beta.141
|
|
241
|
+
|
|
242
|
+
## 4.0.0-beta.140
|
|
243
|
+
|
|
244
|
+
### Patch Changes
|
|
245
|
+
|
|
246
|
+
- effect-app@4.0.0-beta.140
|
|
247
|
+
|
|
248
|
+
## 4.0.0-beta.139
|
|
249
|
+
|
|
250
|
+
### Patch Changes
|
|
251
|
+
|
|
252
|
+
- ba61aad: raw dog
|
|
253
|
+
- effect-app@4.0.0-beta.139
|
|
254
|
+
|
|
255
|
+
## 4.0.0-beta.138
|
|
256
|
+
|
|
257
|
+
### Patch Changes
|
|
258
|
+
|
|
259
|
+
- 9be71e1: fix: double guard
|
|
260
|
+
- effect-app@4.0.0-beta.138
|
|
261
|
+
|
|
262
|
+
## 4.0.0-beta.137
|
|
263
|
+
|
|
264
|
+
### Patch Changes
|
|
265
|
+
|
|
266
|
+
- effect-app@4.0.0-beta.137
|
|
267
|
+
|
|
268
|
+
## 4.0.0-beta.136
|
|
269
|
+
|
|
270
|
+
### Patch Changes
|
|
271
|
+
|
|
272
|
+
- effect-app@4.0.0-beta.136
|
|
273
|
+
|
|
274
|
+
## 4.0.0-beta.135
|
|
275
|
+
|
|
276
|
+
### Patch Changes
|
|
277
|
+
|
|
278
|
+
- Updated dependencies [c7bbc41]
|
|
279
|
+
- effect-app@4.0.0-beta.135
|
|
280
|
+
|
|
281
|
+
## 4.0.0-beta.134
|
|
282
|
+
|
|
283
|
+
### Patch Changes
|
|
284
|
+
|
|
285
|
+
- Updated dependencies [9d3495e]
|
|
286
|
+
- Updated dependencies [f353d48]
|
|
287
|
+
- effect-app@4.0.0-beta.134
|
|
288
|
+
|
|
289
|
+
## 4.0.0-beta.133
|
|
290
|
+
|
|
291
|
+
### Patch Changes
|
|
292
|
+
|
|
293
|
+
- 99a2e9b: Use warning toasts for expected commander failures, while keeping unexpected errors as error toasts.
|
|
294
|
+
- c3299f7: update packages
|
|
295
|
+
- Updated dependencies [c3299f7]
|
|
296
|
+
- effect-app@4.0.0-beta.133
|
|
297
|
+
|
|
298
|
+
## 4.0.0-beta.132
|
|
299
|
+
|
|
300
|
+
### Patch Changes
|
|
301
|
+
|
|
302
|
+
- 8753c52: render
|
|
303
|
+
- effect-app@4.0.0-beta.132
|
|
304
|
+
|
|
305
|
+
## 4.0.0-beta.131
|
|
306
|
+
|
|
307
|
+
### Patch Changes
|
|
308
|
+
|
|
309
|
+
- 1b57aa4: Add a `Commander` error-renderer registry via `Context.Reference` and apply registered guarded renderers before default error formatting.
|
|
310
|
+
- effect-app@4.0.0-beta.131
|
|
311
|
+
|
|
312
|
+
## 4.0.0-beta.130
|
|
313
|
+
|
|
314
|
+
### Patch Changes
|
|
315
|
+
|
|
316
|
+
- fc41dcf: add trace id and span id to toasts
|
|
317
|
+
- Updated dependencies [ea1bd46]
|
|
318
|
+
- effect-app@4.0.0-beta.130
|
|
319
|
+
|
|
320
|
+
## 4.0.0-beta.129
|
|
321
|
+
|
|
322
|
+
### Patch Changes
|
|
323
|
+
|
|
324
|
+
- 34f6a97: fix missing fn
|
|
325
|
+
- effect-app@4.0.0-beta.129
|
|
326
|
+
|
|
327
|
+
## 4.0.0-beta.128
|
|
328
|
+
|
|
329
|
+
### Patch Changes
|
|
330
|
+
|
|
331
|
+
- 57db551: Split `TaggedRequestFor` into `Query` and `Command` factories, and mark generated request classes with `type: "query" | "command"`.
|
|
332
|
+
|
|
333
|
+
Vue client helpers now expose query-only helpers (`query`, `suspense`, `fetch`) for query requests and mutation-only helpers (`mutate`, `fetch`) for command requests.
|
|
334
|
+
|
|
335
|
+
- Updated dependencies [57db551]
|
|
336
|
+
- effect-app@4.0.0-beta.128
|
|
337
|
+
|
|
338
|
+
## 4.0.0-beta.127
|
|
339
|
+
|
|
340
|
+
### Minor Changes
|
|
341
|
+
|
|
342
|
+
- 6a3d364: Client entries are now plain objects; use `.request` to invoke the request.
|
|
343
|
+
|
|
344
|
+
`client.Xxx` no longer is callable or an `Effect` itself. Call `client.Xxx.request(input)` (or `client.Xxx.request` for input-less requests) instead. `.mutate`, `.query`, `.suspense`, `.wrap`, and `.fn` are unchanged.
|
|
345
|
+
|
|
346
|
+
### Patch Changes
|
|
347
|
+
|
|
348
|
+
- effect-app@4.0.0-beta.127
|
|
349
|
+
|
|
350
|
+
## 4.0.0-beta.126
|
|
351
|
+
|
|
352
|
+
### Patch Changes
|
|
353
|
+
|
|
354
|
+
- Updated dependencies [458bb1b]
|
|
355
|
+
- effect-app@4.0.0-beta.126
|
|
356
|
+
|
|
357
|
+
## 4.0.0-beta.125
|
|
358
|
+
|
|
359
|
+
### Patch Changes
|
|
360
|
+
|
|
361
|
+
- effect-app@4.0.0-beta.125
|
|
362
|
+
|
|
363
|
+
## 4.0.0-beta.124
|
|
364
|
+
|
|
365
|
+
### Patch Changes
|
|
366
|
+
|
|
367
|
+
- 256ae85: cleanup
|
|
368
|
+
- Updated dependencies [256ae85]
|
|
369
|
+
- effect-app@4.0.0-beta.124
|
|
370
|
+
|
|
371
|
+
## 4.0.0-beta.123
|
|
372
|
+
|
|
373
|
+
### Patch Changes
|
|
374
|
+
|
|
375
|
+
- Updated dependencies [14aba14]
|
|
376
|
+
- effect-app@4.0.0-beta.123
|
|
377
|
+
|
|
378
|
+
## 4.0.0-beta.122
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- 07a57b6: Limit `client.method.mutate` extensions to only expose the mutation call and `wrap`.
|
|
383
|
+
- f052d38: Replace `(...) => Effect.gen` with `Effect.fnUntraced` in commander `withDefaultToast`.
|
|
384
|
+
- Updated dependencies [f052d38]
|
|
385
|
+
- effect-app@4.0.0-beta.122
|
|
386
|
+
|
|
387
|
+
## 4.0.0-beta.121
|
|
388
|
+
|
|
389
|
+
### Patch Changes
|
|
390
|
+
|
|
391
|
+
- Updated dependencies [5ac46cb]
|
|
392
|
+
- effect-app@4.0.0-beta.121
|
|
393
|
+
|
|
394
|
+
## 4.0.0-beta.120
|
|
395
|
+
|
|
396
|
+
### Patch Changes
|
|
397
|
+
|
|
398
|
+
- Updated dependencies [f21190c]
|
|
399
|
+
- effect-app@4.0.0-beta.120
|
|
400
|
+
|
|
401
|
+
## 4.0.0-beta.119
|
|
402
|
+
|
|
403
|
+
### Patch Changes
|
|
404
|
+
|
|
405
|
+
- effect-app@4.0.0-beta.119
|
|
406
|
+
|
|
407
|
+
## 4.0.0-beta.118
|
|
408
|
+
|
|
409
|
+
### Patch Changes
|
|
410
|
+
|
|
411
|
+
- Update effect packages to 4.0.0-beta.52
|
|
412
|
+
- Updated dependencies [bd26832]
|
|
413
|
+
- Updated dependencies [08d2e70]
|
|
414
|
+
- Updated dependencies
|
|
415
|
+
- effect-app@4.0.0-beta.118
|
|
416
|
+
|
|
417
|
+
## 4.0.0-beta.117
|
|
418
|
+
|
|
419
|
+
### Patch Changes
|
|
420
|
+
|
|
421
|
+
- effect-app@4.0.0-beta.117
|
|
422
|
+
|
|
423
|
+
## 4.0.0-beta.116
|
|
424
|
+
|
|
425
|
+
### Patch Changes
|
|
426
|
+
|
|
427
|
+
- effect-app@4.0.0-beta.116
|
|
428
|
+
|
|
429
|
+
## 4.0.0-beta.115
|
|
430
|
+
|
|
431
|
+
### Patch Changes
|
|
432
|
+
|
|
433
|
+
- effect-app@4.0.0-beta.115
|
|
434
|
+
|
|
435
|
+
## 4.0.0-beta.114
|
|
436
|
+
|
|
437
|
+
### Patch Changes
|
|
438
|
+
|
|
439
|
+
- effect-app@4.0.0-beta.114
|
|
440
|
+
|
|
441
|
+
## 4.0.0-beta.113
|
|
442
|
+
|
|
443
|
+
### Patch Changes
|
|
444
|
+
|
|
445
|
+
- effect-app@4.0.0-beta.113
|
|
446
|
+
|
|
447
|
+
## 4.0.0-beta.112
|
|
448
|
+
|
|
449
|
+
### Patch Changes
|
|
450
|
+
|
|
451
|
+
- effect-app@4.0.0-beta.112
|
|
452
|
+
|
|
453
|
+
## 4.0.0-beta.111
|
|
454
|
+
|
|
455
|
+
### Patch Changes
|
|
456
|
+
|
|
457
|
+
- Updated dependencies [ca94edf]
|
|
458
|
+
- effect-app@4.0.0-beta.111
|
|
459
|
+
|
|
460
|
+
## 4.0.0-beta.110
|
|
461
|
+
|
|
462
|
+
### Patch Changes
|
|
463
|
+
|
|
464
|
+
- effect-app@4.0.0-beta.110
|
|
465
|
+
|
|
466
|
+
## 4.0.0-beta.109
|
|
467
|
+
|
|
468
|
+
### Patch Changes
|
|
469
|
+
|
|
470
|
+
- effect-app@4.0.0-beta.109
|
|
471
|
+
|
|
472
|
+
## 4.0.0-beta.108
|
|
473
|
+
|
|
474
|
+
### Patch Changes
|
|
475
|
+
|
|
476
|
+
- Updated dependencies [3e46e7b]
|
|
477
|
+
- effect-app@4.0.0-beta.108
|
|
478
|
+
|
|
479
|
+
## 4.0.0-beta.107
|
|
480
|
+
|
|
481
|
+
### Patch Changes
|
|
482
|
+
|
|
483
|
+
- effect-app@4.0.0-beta.107
|
|
484
|
+
|
|
485
|
+
## 4.0.0-beta.106
|
|
486
|
+
|
|
487
|
+
### Patch Changes
|
|
488
|
+
|
|
489
|
+
- effect-app@4.0.0-beta.106
|
|
490
|
+
|
|
491
|
+
## 4.0.0-beta.105
|
|
492
|
+
|
|
493
|
+
### Patch Changes
|
|
494
|
+
|
|
495
|
+
- effect-app@4.0.0-beta.105
|
|
496
|
+
|
|
497
|
+
## 4.0.0-beta.104
|
|
498
|
+
|
|
499
|
+
### Patch Changes
|
|
500
|
+
|
|
501
|
+
- Updated dependencies [e944bca]
|
|
502
|
+
- effect-app@4.0.0-beta.104
|
|
503
|
+
|
|
504
|
+
## 4.0.0-beta.103
|
|
505
|
+
|
|
506
|
+
### Patch Changes
|
|
507
|
+
|
|
508
|
+
- Updated dependencies [7119320]
|
|
509
|
+
- effect-app@4.0.0-beta.103
|
|
510
|
+
|
|
511
|
+
## 4.0.0-beta.102
|
|
512
|
+
|
|
513
|
+
### Patch Changes
|
|
514
|
+
|
|
515
|
+
- effect-app@4.0.0-beta.102
|
|
516
|
+
|
|
517
|
+
## 4.0.0-beta.101
|
|
518
|
+
|
|
519
|
+
### Patch Changes
|
|
520
|
+
|
|
521
|
+
- effect-app@4.0.0-beta.101
|
|
522
|
+
|
|
523
|
+
## 4.0.0-beta.100
|
|
524
|
+
|
|
525
|
+
### Patch Changes
|
|
526
|
+
|
|
527
|
+
- effect-app@4.0.0-beta.100
|
|
528
|
+
|
|
529
|
+
## 4.0.0-beta.99
|
|
530
|
+
|
|
531
|
+
### Patch Changes
|
|
532
|
+
|
|
533
|
+
- effect-app@4.0.0-beta.99
|
|
534
|
+
|
|
535
|
+
## 4.0.0-beta.98
|
|
536
|
+
|
|
537
|
+
### Patch Changes
|
|
538
|
+
|
|
539
|
+
- effect-app@4.0.0-beta.98
|
|
540
|
+
|
|
541
|
+
## 4.0.0-beta.97
|
|
542
|
+
|
|
543
|
+
### Patch Changes
|
|
544
|
+
|
|
545
|
+
- effect-app@4.0.0-beta.97
|
|
546
|
+
|
|
547
|
+
## 4.0.0-beta.96
|
|
548
|
+
|
|
549
|
+
### Patch Changes
|
|
550
|
+
|
|
551
|
+
- Updated dependencies [5615e47]
|
|
552
|
+
- effect-app@4.0.0-beta.96
|
|
553
|
+
|
|
554
|
+
## 4.0.0-beta.95
|
|
555
|
+
|
|
556
|
+
### Patch Changes
|
|
557
|
+
|
|
558
|
+
- Updated dependencies [88838fb]
|
|
559
|
+
- effect-app@4.0.0-beta.95
|
|
560
|
+
|
|
561
|
+
## 4.0.0-beta.94
|
|
562
|
+
|
|
563
|
+
### Patch Changes
|
|
564
|
+
|
|
565
|
+
- effect-app@4.0.0-beta.94
|
|
566
|
+
|
|
567
|
+
## 4.0.0-beta.93
|
|
568
|
+
|
|
569
|
+
### Patch Changes
|
|
570
|
+
|
|
571
|
+
- effect-app@4.0.0-beta.93
|
|
572
|
+
|
|
573
|
+
## 4.0.0-beta.92
|
|
574
|
+
|
|
575
|
+
### Patch Changes
|
|
576
|
+
|
|
577
|
+
- effect-app@4.0.0-beta.92
|
|
578
|
+
|
|
579
|
+
## 4.0.0-beta.91
|
|
580
|
+
|
|
581
|
+
### Patch Changes
|
|
582
|
+
|
|
583
|
+
- Updated dependencies [738b482]
|
|
584
|
+
- effect-app@4.0.0-beta.91
|
|
585
|
+
|
|
586
|
+
## 4.0.0-beta.90
|
|
587
|
+
|
|
588
|
+
### Patch Changes
|
|
589
|
+
|
|
590
|
+
- effect-app@4.0.0-beta.90
|
|
591
|
+
|
|
592
|
+
## 4.0.0-beta.89
|
|
593
|
+
|
|
594
|
+
### Patch Changes
|
|
595
|
+
|
|
596
|
+
- effect-app@4.0.0-beta.89
|
|
597
|
+
|
|
598
|
+
## 4.0.0-beta.88
|
|
599
|
+
|
|
600
|
+
### Patch Changes
|
|
601
|
+
|
|
602
|
+
- effect-app@4.0.0-beta.88
|
|
603
|
+
|
|
604
|
+
## 4.0.0-beta.87
|
|
605
|
+
|
|
606
|
+
### Patch Changes
|
|
607
|
+
|
|
608
|
+
- effect-app@4.0.0-beta.87
|
|
609
|
+
|
|
610
|
+
## 4.0.0-beta.86
|
|
611
|
+
|
|
612
|
+
### Patch Changes
|
|
613
|
+
|
|
614
|
+
- effect-app@4.0.0-beta.86
|
|
615
|
+
|
|
616
|
+
## 4.0.0-beta.85
|
|
617
|
+
|
|
618
|
+
### Patch Changes
|
|
619
|
+
|
|
620
|
+
- effect-app@4.0.0-beta.85
|
|
621
|
+
|
|
622
|
+
## 4.0.0-beta.84
|
|
623
|
+
|
|
624
|
+
### Patch Changes
|
|
625
|
+
|
|
626
|
+
- effect-app@4.0.0-beta.84
|
|
627
|
+
|
|
628
|
+
## 4.0.0-beta.83
|
|
629
|
+
|
|
630
|
+
### Patch Changes
|
|
631
|
+
|
|
632
|
+
- effect-app@4.0.0-beta.83
|
|
633
|
+
|
|
634
|
+
## 4.0.0-beta.82
|
|
635
|
+
|
|
636
|
+
### Patch Changes
|
|
637
|
+
|
|
638
|
+
- effect-app@4.0.0-beta.82
|
|
639
|
+
|
|
640
|
+
## 4.0.0-beta.81
|
|
641
|
+
|
|
642
|
+
### Patch Changes
|
|
643
|
+
|
|
644
|
+
- effect-app@4.0.0-beta.81
|
|
645
|
+
|
|
646
|
+
## 4.0.0-beta.80
|
|
647
|
+
|
|
648
|
+
### Patch Changes
|
|
649
|
+
|
|
650
|
+
- effect-app@4.0.0-beta.80
|
|
651
|
+
|
|
652
|
+
## 4.0.0-beta.79
|
|
653
|
+
|
|
654
|
+
### Patch Changes
|
|
655
|
+
|
|
656
|
+
- d16845e: Remove `TaggedRequest` from `makeRpcClient`, now only `TaggedRequestFor` is returned. Remove all legacy `meta.moduleName` support — `id` and `moduleName` are now required on `Req` type. Remove `makeRpcGroup` (use `makeRpcGroupFromRequestsAndModuleName` instead).
|
|
657
|
+
- Updated dependencies [d16845e]
|
|
658
|
+
- effect-app@4.0.0-beta.79
|
|
659
|
+
|
|
660
|
+
## 4.0.0-beta.78
|
|
661
|
+
|
|
662
|
+
### Patch Changes
|
|
663
|
+
|
|
664
|
+
- effect-app@4.0.0-beta.78
|
|
665
|
+
|
|
666
|
+
## 4.0.0-beta.77
|
|
667
|
+
|
|
668
|
+
### Patch Changes
|
|
669
|
+
|
|
670
|
+
- Updated dependencies [3613e87]
|
|
671
|
+
- effect-app@4.0.0-beta.77
|
|
672
|
+
|
|
673
|
+
## 4.0.0-beta.76
|
|
674
|
+
|
|
675
|
+
### Patch Changes
|
|
676
|
+
|
|
677
|
+
- 08d30af: Fix Commander combinator type inference for void Arg and withDefaultToast callbacks
|
|
678
|
+
|
|
679
|
+
- Use `ArgForCombinator` helper to properly resolve `void` args to `undefined` in combinator positions, enabling correct type inference for `withDefaultToast` and other curried combinators
|
|
680
|
+
- Use explicit positional params in `withDefaultToast` options callbacks instead of rest spread, allowing users to omit trailing parameters
|
|
681
|
+
|
|
682
|
+
- fac725d: update effect to latest beta
|
|
683
|
+
- Updated dependencies [a5248a9]
|
|
684
|
+
- Updated dependencies [fac725d]
|
|
685
|
+
- effect-app@4.0.0-beta.76
|
|
686
|
+
|
|
687
|
+
## 4.0.0-beta.75
|
|
688
|
+
|
|
689
|
+
### Patch Changes
|
|
690
|
+
|
|
691
|
+
- Updated dependencies [24f0a5a]
|
|
692
|
+
- effect-app@4.0.0-beta.75
|
|
693
|
+
|
|
694
|
+
## 4.0.0-beta.74
|
|
695
|
+
|
|
696
|
+
### Patch Changes
|
|
697
|
+
|
|
698
|
+
- Updated dependencies [54ec1ef]
|
|
699
|
+
- effect-app@4.0.0-beta.74
|
|
700
|
+
|
|
701
|
+
## 4.0.0-beta.73
|
|
702
|
+
|
|
703
|
+
### Patch Changes
|
|
704
|
+
|
|
705
|
+
- effect-app@4.0.0-beta.73
|
|
706
|
+
|
|
707
|
+
## 4.0.0-beta.72
|
|
708
|
+
|
|
709
|
+
### Patch Changes
|
|
710
|
+
|
|
711
|
+
- Updated dependencies [0541f0d]
|
|
712
|
+
- effect-app@4.0.0-beta.72
|
|
713
|
+
|
|
714
|
+
## 4.0.0-beta.71
|
|
715
|
+
|
|
716
|
+
### Patch Changes
|
|
717
|
+
|
|
718
|
+
- Updated dependencies [beae3a0]
|
|
719
|
+
- effect-app@4.0.0-beta.71
|
|
720
|
+
|
|
721
|
+
## 4.0.0-beta.70
|
|
722
|
+
|
|
723
|
+
### Patch Changes
|
|
724
|
+
|
|
725
|
+
- effect-app@4.0.0-beta.70
|
|
726
|
+
|
|
727
|
+
## 4.0.0-beta.69
|
|
728
|
+
|
|
729
|
+
### Patch Changes
|
|
730
|
+
|
|
731
|
+
- dc465e3: update to latest effect beta
|
|
732
|
+
- Updated dependencies [dc465e3]
|
|
733
|
+
- effect-app@4.0.0-beta.69
|
|
734
|
+
|
|
735
|
+
## 4.0.0-beta.68
|
|
736
|
+
|
|
737
|
+
### Patch Changes
|
|
738
|
+
|
|
739
|
+
- Updated dependencies [e6f2341]
|
|
740
|
+
- effect-app@4.0.0-beta.68
|
|
741
|
+
|
|
742
|
+
## 4.0.0-beta.67
|
|
743
|
+
|
|
744
|
+
### Patch Changes
|
|
745
|
+
|
|
746
|
+
- effect-app@4.0.0-beta.67
|
|
747
|
+
|
|
748
|
+
## 4.0.0-beta.66
|
|
749
|
+
|
|
750
|
+
### Patch Changes
|
|
751
|
+
|
|
752
|
+
- Updated dependencies [edc52e4]
|
|
753
|
+
- effect-app@4.0.0-beta.66
|
|
754
|
+
|
|
755
|
+
## 4.0.0-beta.65
|
|
756
|
+
|
|
757
|
+
### Minor Changes
|
|
758
|
+
|
|
759
|
+
- 1f103b2: Replace `proxify` with explicit service accessor helpers: `accessFn`, `accessEffectFn`, `accessCn`, `accessEffectCn`.
|
|
760
|
+
|
|
761
|
+
### Patch Changes
|
|
762
|
+
|
|
763
|
+
- Updated dependencies [31739d7]
|
|
764
|
+
- Updated dependencies [1f103b2]
|
|
765
|
+
- effect-app@4.0.0-beta.65
|
|
766
|
+
|
|
767
|
+
## 4.0.0-beta.64
|
|
768
|
+
|
|
769
|
+
### Patch Changes
|
|
770
|
+
|
|
771
|
+
- Updated dependencies [c1a6fdc]
|
|
772
|
+
- effect-app@4.0.0-beta.64
|
|
773
|
+
|
|
774
|
+
## 4.0.0-beta.63
|
|
775
|
+
|
|
776
|
+
### Minor Changes
|
|
777
|
+
|
|
778
|
+
- b3ed68a: Remove `legacy` from `makeClient` return and clean up `LegacyMutation`, `LegacyMutationImpl`, and related types.
|
|
779
|
+
|
|
780
|
+
### Patch Changes
|
|
781
|
+
|
|
782
|
+
- effect-app@4.0.0-beta.63
|
|
783
|
+
|
|
784
|
+
## 4.0.0-beta.62
|
|
785
|
+
|
|
786
|
+
### Patch Changes
|
|
787
|
+
|
|
788
|
+
- Updated dependencies [0b21a02]
|
|
789
|
+
- effect-app@4.0.0-beta.62
|
|
790
|
+
|
|
791
|
+
## 4.0.0-beta.61
|
|
792
|
+
|
|
793
|
+
### Patch Changes
|
|
794
|
+
|
|
795
|
+
- effect-app@4.0.0-beta.61
|
|
796
|
+
|
|
797
|
+
## 4.0.0-beta.60
|
|
798
|
+
|
|
799
|
+
### Patch Changes
|
|
800
|
+
|
|
801
|
+
- effect-app@4.0.0-beta.60
|
|
802
|
+
|
|
803
|
+
## 4.0.0-beta.59
|
|
804
|
+
|
|
805
|
+
### Patch Changes
|
|
806
|
+
|
|
807
|
+
- cec026d: update packages
|
|
808
|
+
- Updated dependencies [cec026d]
|
|
809
|
+
- effect-app@4.0.0-beta.59
|
|
810
|
+
|
|
811
|
+
## 4.0.0-beta.58
|
|
812
|
+
|
|
813
|
+
### Patch Changes
|
|
814
|
+
|
|
815
|
+
- 7fd35e4: update tanstack/query
|
|
816
|
+
- effect-app@4.0.0-beta.58
|
|
817
|
+
|
|
818
|
+
## 4.0.0-beta.57
|
|
819
|
+
|
|
820
|
+
### Patch Changes
|
|
821
|
+
|
|
822
|
+
- effect-app@4.0.0-beta.57
|
|
823
|
+
|
|
824
|
+
## 4.0.0-beta.56
|
|
825
|
+
|
|
826
|
+
### Patch Changes
|
|
827
|
+
|
|
828
|
+
- effect-app@4.0.0-beta.56
|
|
829
|
+
|
|
830
|
+
## 4.0.0-beta.55
|
|
831
|
+
|
|
832
|
+
### Patch Changes
|
|
833
|
+
|
|
834
|
+
- eceb3a3: align CauseException
|
|
835
|
+
- effect-app@4.0.0-beta.55
|
|
836
|
+
|
|
837
|
+
## 4.0.0-beta.54
|
|
838
|
+
|
|
839
|
+
### Patch Changes
|
|
840
|
+
|
|
841
|
+
- d867272: the return of `Context`
|
|
842
|
+
- Updated dependencies [d867272]
|
|
843
|
+
- effect-app@4.0.0-beta.54
|
|
844
|
+
|
|
845
|
+
## 4.0.0-beta.53
|
|
846
|
+
|
|
847
|
+
### Patch Changes
|
|
848
|
+
|
|
849
|
+
- Updated dependencies [ee9694e]
|
|
850
|
+
- effect-app@4.0.0-beta.53
|
|
851
|
+
|
|
852
|
+
## 4.0.0-beta.52
|
|
853
|
+
|
|
854
|
+
### Patch Changes
|
|
855
|
+
|
|
856
|
+
- Updated dependencies [6252808]
|
|
857
|
+
- effect-app@4.0.0-beta.52
|
|
858
|
+
|
|
859
|
+
## 4.0.0-beta.51
|
|
860
|
+
|
|
861
|
+
### Patch Changes
|
|
862
|
+
|
|
863
|
+
- effect-app@4.0.0-beta.51
|
|
864
|
+
|
|
865
|
+
## 4.0.0-beta.50
|
|
866
|
+
|
|
867
|
+
### Patch Changes
|
|
868
|
+
|
|
869
|
+
- effect-app@4.0.0-beta.50
|
|
870
|
+
|
|
871
|
+
## 4.0.0-beta.49
|
|
872
|
+
|
|
873
|
+
### Patch Changes
|
|
874
|
+
|
|
875
|
+
- Updated dependencies [e585c9c]
|
|
876
|
+
- effect-app@4.0.0-beta.49
|
|
877
|
+
|
|
878
|
+
## 4.0.0-beta.48
|
|
879
|
+
|
|
880
|
+
### Patch Changes
|
|
881
|
+
|
|
882
|
+
- Updated dependencies [0c88f78]
|
|
883
|
+
- effect-app@4.0.0-beta.48
|
|
884
|
+
|
|
885
|
+
## 4.0.0-beta.47
|
|
886
|
+
|
|
887
|
+
### Patch Changes
|
|
888
|
+
|
|
889
|
+
- Updated dependencies [3365758]
|
|
890
|
+
- effect-app@4.0.0-beta.47
|
|
891
|
+
|
|
892
|
+
## 4.0.0-beta.46
|
|
893
|
+
|
|
894
|
+
### Patch Changes
|
|
895
|
+
|
|
896
|
+
- 28a0b29: expose Input
|
|
897
|
+
- 0c42d67: move out Commander and friends from experimental
|
|
898
|
+
- effect-app@4.0.0-beta.46
|
|
899
|
+
|
|
900
|
+
## 4.0.0-beta.45
|
|
901
|
+
|
|
902
|
+
### Patch Changes
|
|
903
|
+
|
|
904
|
+
- 10b55ff: update packages
|
|
905
|
+
- Updated dependencies [10b55ff]
|
|
906
|
+
- effect-app@4.0.0-beta.45
|
|
907
|
+
|
|
908
|
+
## 4.0.0-beta.44
|
|
909
|
+
|
|
910
|
+
### Patch Changes
|
|
911
|
+
|
|
912
|
+
- a37aa38: Update to effect beta 43
|
|
913
|
+
- Updated dependencies [a37aa38]
|
|
914
|
+
- effect-app@4.0.0-beta.44
|
|
915
|
+
|
|
916
|
+
## 4.0.0-beta.43
|
|
917
|
+
|
|
918
|
+
### Patch Changes
|
|
919
|
+
|
|
920
|
+
- effect-app@4.0.0-beta.43
|
|
921
|
+
|
|
922
|
+
## 4.0.0-beta.42
|
|
923
|
+
|
|
924
|
+
### Patch Changes
|
|
925
|
+
|
|
926
|
+
- d195003: Fix numeric field type detection in `getMetadataFromSchema` for Effect v4 JSON schema output. `S.Number` now emits `anyOf` instead of a top-level `type: "number"`, causing fields to fall back to `"text"`. Detection now recurses through `anyOf`/`oneOf`/`allOf` to find the underlying numeric type.
|
|
927
|
+
- effect-app@4.0.0-beta.42
|
|
928
|
+
|
|
929
|
+
## 4.0.0-beta.41
|
|
930
|
+
|
|
931
|
+
### Patch Changes
|
|
932
|
+
|
|
933
|
+
- 702d51c: also make runSync version available\
|
|
934
|
+
- effect-app@4.0.0-beta.41
|
|
935
|
+
|
|
936
|
+
## 4.0.0-beta.40
|
|
937
|
+
|
|
938
|
+
### Patch Changes
|
|
939
|
+
|
|
940
|
+
- 18fd1df: unify runPromise
|
|
941
|
+
- effect-app@4.0.0-beta.40
|
|
942
|
+
|
|
943
|
+
## 4.0.0-beta.39
|
|
944
|
+
|
|
945
|
+
### Patch Changes
|
|
946
|
+
|
|
947
|
+
- Updated dependencies [10e90d5]
|
|
948
|
+
- effect-app@4.0.0-beta.39
|
|
949
|
+
|
|
950
|
+
## 4.0.0-beta.38
|
|
951
|
+
|
|
952
|
+
### Patch Changes
|
|
953
|
+
|
|
954
|
+
- Updated dependencies [0b3e00e]
|
|
955
|
+
- effect-app@4.0.0-beta.38
|
|
956
|
+
|
|
957
|
+
## 4.0.0-beta.37
|
|
958
|
+
|
|
959
|
+
### Patch Changes
|
|
960
|
+
|
|
961
|
+
- 04fc985: Fixes error handling
|
|
962
|
+
- Updated dependencies [947fe20]
|
|
963
|
+
- effect-app@4.0.0-beta.37
|
|
964
|
+
|
|
965
|
+
## 4.0.0-beta.36
|
|
966
|
+
|
|
967
|
+
### Patch Changes
|
|
968
|
+
|
|
969
|
+
- effect-app@4.0.0-beta.36
|
|
970
|
+
|
|
971
|
+
## 4.0.0-beta.35
|
|
972
|
+
|
|
973
|
+
### Patch Changes
|
|
974
|
+
|
|
975
|
+
- effect-app@4.0.0-beta.35
|
|
976
|
+
|
|
977
|
+
## 4.0.0-beta.34
|
|
978
|
+
|
|
979
|
+
### Patch Changes
|
|
980
|
+
|
|
981
|
+
- 8c645d5: update to latest effect
|
|
982
|
+
- Updated dependencies [8c645d5]
|
|
983
|
+
- effect-app@4.0.0-beta.34
|
|
984
|
+
|
|
985
|
+
## 4.0.0-beta.33
|
|
986
|
+
|
|
987
|
+
### Patch Changes
|
|
988
|
+
|
|
989
|
+
- 4b95009: use Finite instead of Number
|
|
990
|
+
- 7328c76: add deprecation notices
|
|
991
|
+
- Updated dependencies [4b95009]
|
|
992
|
+
- effect-app@4.0.0-beta.33
|
|
993
|
+
|
|
994
|
+
## 4.0.0-beta.32
|
|
995
|
+
|
|
996
|
+
### Patch Changes
|
|
997
|
+
|
|
998
|
+
- Updated dependencies [01d862a]
|
|
999
|
+
- effect-app@4.0.0-beta.32
|
|
1000
|
+
|
|
1001
|
+
## 4.0.0-beta.31
|
|
1002
|
+
|
|
1003
|
+
### Patch Changes
|
|
1004
|
+
|
|
1005
|
+
- Updated dependencies [6b6d601]
|
|
1006
|
+
- effect-app@4.0.0-beta.31
|
|
1007
|
+
|
|
1008
|
+
## 4.0.0-beta.30
|
|
1009
|
+
|
|
1010
|
+
### Patch Changes
|
|
1011
|
+
|
|
1012
|
+
- Updated dependencies [5ec1f45]
|
|
1013
|
+
- effect-app@4.0.0-beta.30
|
|
1014
|
+
|
|
1015
|
+
## 4.0.0-beta.29
|
|
1016
|
+
|
|
1017
|
+
### Patch Changes
|
|
1018
|
+
|
|
1019
|
+
- Updated dependencies [a899d46]
|
|
1020
|
+
- effect-app@4.0.0-beta.29
|
|
1021
|
+
|
|
1022
|
+
## 4.0.0-beta.28
|
|
1023
|
+
|
|
1024
|
+
### Patch Changes
|
|
1025
|
+
|
|
1026
|
+
- Updated dependencies [0099208]
|
|
1027
|
+
- effect-app@4.0.0-beta.28
|
|
1028
|
+
|
|
1029
|
+
## 4.0.0-beta.27
|
|
1030
|
+
|
|
1031
|
+
### Patch Changes
|
|
1032
|
+
|
|
1033
|
+
- 601a1ff: update effect to 4.0.0-beta.37 and drop the Schema Class disableValidation workaround now that the patched effect schema covers it
|
|
1034
|
+
- Updated dependencies [601a1ff]
|
|
1035
|
+
- effect-app@4.0.0-beta.27
|
|
1036
|
+
|
|
1037
|
+
## 4.0.0-beta.26
|
|
1038
|
+
|
|
1039
|
+
### Patch Changes
|
|
1040
|
+
|
|
1041
|
+
- Updated dependencies [4da28e2]
|
|
1042
|
+
- effect-app@4.0.0-beta.26
|
|
1043
|
+
|
|
1044
|
+
## 4.0.0-beta.25
|
|
1045
|
+
|
|
1046
|
+
### Patch Changes
|
|
1047
|
+
|
|
1048
|
+
- Updated dependencies [6282d4b]
|
|
1049
|
+
- effect-app@4.0.0-beta.25
|
|
1050
|
+
|
|
1051
|
+
## 4.0.0-beta.24
|
|
1052
|
+
|
|
1053
|
+
### Patch Changes
|
|
1054
|
+
|
|
1055
|
+
- Updated dependencies [32f71bf]
|
|
1056
|
+
- effect-app@4.0.0-beta.24
|
|
1057
|
+
|
|
1058
|
+
## 4.0.0-beta.23
|
|
1059
|
+
|
|
1060
|
+
### Patch Changes
|
|
1061
|
+
|
|
1062
|
+
- Updated dependencies [ea08a79]
|
|
1063
|
+
- effect-app@4.0.0-beta.23
|
|
1064
|
+
|
|
1065
|
+
## 4.0.0-beta.22
|
|
1066
|
+
|
|
1067
|
+
### Patch Changes
|
|
1068
|
+
|
|
1069
|
+
- effect-app@4.0.0-beta.22
|
|
1070
|
+
|
|
1071
|
+
## 4.0.0-beta.21
|
|
1072
|
+
|
|
1073
|
+
### Patch Changes
|
|
1074
|
+
|
|
1075
|
+
- 75c72ee: update effect to 4.0.0-beta.36, adapt to Option<A> revert from A | undefined
|
|
1076
|
+
- Updated dependencies [0d349e7]
|
|
1077
|
+
- Updated dependencies [75c72ee]
|
|
1078
|
+
- effect-app@4.0.0-beta.21
|
|
1079
|
+
|
|
1080
|
+
## 4.0.0-beta.20
|
|
1081
|
+
|
|
1082
|
+
### Patch Changes
|
|
1083
|
+
|
|
1084
|
+
- Updated dependencies [aa921db]
|
|
1085
|
+
- effect-app@4.0.0-beta.20
|
|
1086
|
+
|
|
1087
|
+
## 4.0.0-beta.19
|
|
1088
|
+
|
|
1089
|
+
### Patch Changes
|
|
1090
|
+
|
|
1091
|
+
- Updated dependencies [ffc10a4]
|
|
1092
|
+
- effect-app@4.0.0-beta.19
|
|
1093
|
+
|
|
1094
|
+
## 4.0.0-beta.18
|
|
1095
|
+
|
|
1096
|
+
### Patch Changes
|
|
1097
|
+
|
|
1098
|
+
- Updated dependencies [e9dbbdd]
|
|
1099
|
+
- effect-app@4.0.0-beta.18
|
|
1100
|
+
|
|
3
1101
|
## 4.0.0-beta.17
|
|
4
1102
|
|
|
5
1103
|
### Patch Changes
|