effect-app 0.152.0

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.
Files changed (169) hide show
  1. package/.eslintrc.cjs +11 -0
  2. package/.prettierignore +6 -0
  3. package/CHANGELOG.md +4106 -0
  4. package/_cjs/Config/SecretURL.cjs +58 -0
  5. package/_cjs/Config/SecretURL.cjs.map +1 -0
  6. package/_cjs/Config/internal/configSecretURL.cjs +88 -0
  7. package/_cjs/Config/internal/configSecretURL.cjs.map +1 -0
  8. package/_cjs/Inputify.type.cjs +6 -0
  9. package/_cjs/Inputify.type.cjs.map +1 -0
  10. package/_cjs/Operations.cjs +76 -0
  11. package/_cjs/Operations.cjs.map +1 -0
  12. package/_cjs/Pure.cjs +201 -0
  13. package/_cjs/Pure.cjs.map +1 -0
  14. package/_cjs/Request.cjs +76 -0
  15. package/_cjs/Request.cjs.map +1 -0
  16. package/_cjs/Widen.type.cjs +6 -0
  17. package/_cjs/Widen.type.cjs.map +1 -0
  18. package/_cjs/_ext/date.cjs +64 -0
  19. package/_cjs/_ext/date.cjs.map +1 -0
  20. package/_cjs/_ext/misc.cjs +121 -0
  21. package/_cjs/_ext/misc.cjs.map +1 -0
  22. package/_cjs/_global.cjs +24 -0
  23. package/_cjs/_global.cjs.map +1 -0
  24. package/_cjs/_global.ext.cjs +5 -0
  25. package/_cjs/_global.ext.cjs.map +1 -0
  26. package/_cjs/_global.schema.cjs +4 -0
  27. package/_cjs/_global.schema.cjs.map +1 -0
  28. package/_cjs/client/QueryResult.cjs +116 -0
  29. package/_cjs/client/QueryResult.cjs.map +1 -0
  30. package/_cjs/client/clientFor.cjs +159 -0
  31. package/_cjs/client/clientFor.cjs.map +1 -0
  32. package/_cjs/client/config.cjs +21 -0
  33. package/_cjs/client/config.cjs.map +1 -0
  34. package/_cjs/client/errors.cjs +116 -0
  35. package/_cjs/client/errors.cjs.map +1 -0
  36. package/_cjs/client/fetch.cjs +178 -0
  37. package/_cjs/client/fetch.cjs.map +1 -0
  38. package/_cjs/client.cjs +61 -0
  39. package/_cjs/client.cjs.map +1 -0
  40. package/_cjs/faker.cjs +31 -0
  41. package/_cjs/faker.cjs.map +1 -0
  42. package/_cjs/ids.cjs +24 -0
  43. package/_cjs/ids.cjs.map +1 -0
  44. package/_cjs/index.cjs +27 -0
  45. package/_cjs/index.cjs.map +1 -0
  46. package/_cjs/refinements.cjs +97 -0
  47. package/_cjs/refinements.cjs.map +1 -0
  48. package/_cjs/schema.cjs +50 -0
  49. package/_cjs/schema.cjs.map +1 -0
  50. package/_cjs/schema.test.cjs +9 -0
  51. package/_cjs/schema.test.cjs.map +1 -0
  52. package/_cjs/service.cjs +97 -0
  53. package/_cjs/service.cjs.map +1 -0
  54. package/_cjs/utils.cjs +17 -0
  55. package/_cjs/utils.cjs.map +1 -0
  56. package/_src/Config/SecretURL.ts +103 -0
  57. package/_src/Config/internal/configSecretURL.ts +85 -0
  58. package/_src/Inputify.type.ts +13 -0
  59. package/_src/Operations.ts +70 -0
  60. package/_src/Pure.ts +525 -0
  61. package/_src/Request.ts +106 -0
  62. package/_src/Widen.type.ts +28 -0
  63. package/_src/_ext/date.ts +84 -0
  64. package/_src/_ext/misc.ts +161 -0
  65. package/_src/_global/stm.ts.bak +35 -0
  66. package/_src/_global.ext.ts +3 -0
  67. package/_src/_global.schema.ts +106 -0
  68. package/_src/_global.ts +119 -0
  69. package/_src/client/QueryResult.ts +120 -0
  70. package/_src/client/clientFor.ts +260 -0
  71. package/_src/client/config.ts +13 -0
  72. package/_src/client/errors.ts +129 -0
  73. package/_src/client/fetch.ts +253 -0
  74. package/_src/client.ts +7 -0
  75. package/_src/faker.ts +32 -0
  76. package/_src/ids.ts +35 -0
  77. package/_src/index.ts +4 -0
  78. package/_src/refinements.ts +92 -0
  79. package/_src/schema/_schema.ts.bak +208 -0
  80. package/_src/schema/api/date.ts.bak +78 -0
  81. package/_src/schema/api.ts.bak +20 -0
  82. package/_src/schema/overrides.ts.bak +76 -0
  83. package/_src/schema/shared.ts.bak +334 -0
  84. package/_src/schema.test.ts +3 -0
  85. package/_src/schema.ts +37 -0
  86. package/_src/service.ts +119 -0
  87. package/_src/utils.ts +1 -0
  88. package/dist/Config/SecretURL.d.ts +82 -0
  89. package/dist/Config/SecretURL.d.ts.map +1 -0
  90. package/dist/Config/SecretURL.js +49 -0
  91. package/dist/Config/internal/configSecretURL.d.ts +24 -0
  92. package/dist/Config/internal/configSecretURL.d.ts.map +1 -0
  93. package/dist/Config/internal/configSecretURL.js +75 -0
  94. package/dist/Inputify.type.d.ts +10 -0
  95. package/dist/Inputify.type.d.ts.map +1 -0
  96. package/dist/Inputify.type.js +2 -0
  97. package/dist/Operations.d.ts +170 -0
  98. package/dist/Operations.d.ts.map +1 -0
  99. package/dist/Operations.js +87 -0
  100. package/dist/Pure.d.ts +169 -0
  101. package/dist/Pure.d.ts.map +1 -0
  102. package/dist/Pure.js +167 -0
  103. package/dist/Request.d.ts +49 -0
  104. package/dist/Request.d.ts.map +1 -0
  105. package/dist/Request.js +58 -0
  106. package/dist/Widen.type.d.ts +19 -0
  107. package/dist/Widen.type.d.ts.map +1 -0
  108. package/dist/Widen.type.js +2 -0
  109. package/dist/_ext/date.d.ts +71 -0
  110. package/dist/_ext/date.d.ts.map +1 -0
  111. package/dist/_ext/date.js +58 -0
  112. package/dist/_ext/misc.d.ts +77 -0
  113. package/dist/_ext/misc.d.ts.map +1 -0
  114. package/dist/_ext/misc.js +98 -0
  115. package/dist/_global.d.ts +70 -0
  116. package/dist/_global.d.ts.map +1 -0
  117. package/dist/_global.ext.d.ts +3 -0
  118. package/dist/_global.ext.d.ts.map +1 -0
  119. package/dist/_global.ext.js +4 -0
  120. package/dist/_global.js +76 -0
  121. package/dist/_global.schema.d.ts +6 -0
  122. package/dist/_global.schema.d.ts.map +1 -0
  123. package/dist/_global.schema.js +6 -0
  124. package/dist/client/QueryResult.d.ts +85 -0
  125. package/dist/client/QueryResult.d.ts.map +1 -0
  126. package/dist/client/QueryResult.js +85 -0
  127. package/dist/client/clientFor.d.ts +44 -0
  128. package/dist/client/clientFor.d.ts.map +1 -0
  129. package/dist/client/clientFor.js +144 -0
  130. package/dist/client/config.d.ts +14 -0
  131. package/dist/client/config.d.ts.map +1 -0
  132. package/dist/client/config.js +11 -0
  133. package/dist/client/errors.d.ts +206 -0
  134. package/dist/client/errors.d.ts.map +1 -0
  135. package/dist/client/errors.js +130 -0
  136. package/dist/client/fetch.d.ts +61 -0
  137. package/dist/client/fetch.d.ts.map +1 -0
  138. package/dist/client/fetch.js +127 -0
  139. package/dist/client.d.ts +6 -0
  140. package/dist/client.d.ts.map +1 -0
  141. package/dist/client.js +7 -0
  142. package/dist/faker.d.ts +7 -0
  143. package/dist/faker.d.ts.map +1 -0
  144. package/dist/faker.js +24 -0
  145. package/dist/ids.d.ts +32 -0
  146. package/dist/ids.d.ts.map +1 -0
  147. package/dist/ids.js +17 -0
  148. package/dist/index.d.ts +4 -0
  149. package/dist/index.d.ts.map +1 -0
  150. package/dist/index.js +4 -0
  151. package/dist/refinements.d.ts +57 -0
  152. package/dist/refinements.d.ts.map +1 -0
  153. package/dist/refinements.js +85 -0
  154. package/dist/schema.d.ts +7 -0
  155. package/dist/schema.d.ts.map +1 -0
  156. package/dist/schema.js +22 -0
  157. package/dist/schema.test.d.ts.map +1 -0
  158. package/dist/service.d.ts +47 -0
  159. package/dist/service.d.ts.map +1 -0
  160. package/dist/service.js +83 -0
  161. package/dist/utils.d.ts +2 -0
  162. package/dist/utils.d.ts.map +1 -0
  163. package/dist/utils.js +2 -0
  164. package/package.json +315 -0
  165. package/tsconfig.json +114 -0
  166. package/tsconfig.json.bak +47 -0
  167. package/tsplus.config.json +7 -0
  168. package/vitest.config.ts +5 -0
  169. package/wallaby.cjs +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,4106 @@
1
+ # @effect-app/prelude
2
+
3
+ ## 0.152.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 525237e: rename @effect-app/prelude to effect-app
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [525237e]
12
+ - @effect-app/core@0.130.0
13
+ - @effect-app/fluent-extensions@0.125.9
14
+ - @effect-app/schema@0.183.14
15
+
16
+ ## 0.151.3
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @effect-app/core@0.129.3
22
+ - @effect-app/fluent-extensions@0.125.8
23
+ - @effect-app/schema@0.183.13
24
+
25
+ ## 0.151.2
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [0d02cbd]
30
+ - @effect-app/core@0.129.2
31
+ - @effect-app/fluent-extensions@0.125.7
32
+ - @effect-app/schema@0.183.12
33
+
34
+ ## 0.151.1
35
+
36
+ ### Patch Changes
37
+
38
+ - Updated dependencies [b01fd1e]
39
+ - @effect-app/core@0.129.1
40
+ - @effect-app/fluent-extensions@0.125.6
41
+ - @effect-app/schema@0.183.11
42
+
43
+ ## 0.151.0
44
+
45
+ ### Minor Changes
46
+
47
+ - b2d3e53: consolidate
48
+
49
+ ### Patch Changes
50
+
51
+ - Updated dependencies [b2d3e53]
52
+ - @effect-app/core@0.129.0
53
+ - @effect-app/fluent-extensions@0.125.5
54
+ - @effect-app/schema@0.183.10
55
+
56
+ ## 0.150.3
57
+
58
+ ### Patch Changes
59
+
60
+ - 200a840: address
61
+ - Updated dependencies [200a840]
62
+ - @effect-app/core@0.128.2
63
+ - @effect-app/fluent-extensions@0.125.4
64
+ - @effect-app/schema@0.183.9
65
+
66
+ ## 0.150.2
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [0c57301]
71
+ - @effect-app/core@0.128.1
72
+ - @effect-app/fluent-extensions@0.125.3
73
+ - @effect-app/schema@0.183.8
74
+
75
+ ## 0.150.1
76
+
77
+ ### Patch Changes
78
+
79
+ - Updated dependencies
80
+ - @effect-app/core@0.128.0
81
+ - @effect-app/fluent-extensions@0.125.2
82
+ - @effect-app/schema@0.183.7
83
+
84
+ ## 0.150.0
85
+
86
+ ### Minor Changes
87
+
88
+ - 83b5bb6: fix option
89
+ - 87753e4: improve prelude export
90
+
91
+ ### Patch Changes
92
+
93
+ - Updated dependencies [83b5bb6]
94
+ - Updated dependencies [87753e4]
95
+ - @effect-app/core@0.127.0
96
+ - @effect-app/fluent-extensions@0.125.1
97
+ - @effect-app/schema@0.183.6
98
+
99
+ ## 0.149.6
100
+
101
+ ### Patch Changes
102
+
103
+ - 988ed1d: update packages
104
+ - Updated dependencies [38bff6b]
105
+ - Updated dependencies [988ed1d]
106
+ - @effect-app/fluent-extensions@0.125.0
107
+ - @effect-app/core@0.126.1
108
+ - @effect-app/schema@0.183.5
109
+
110
+ ## 0.149.5
111
+
112
+ ### Patch Changes
113
+
114
+ - Updated dependencies [c497ff3]
115
+ - @effect-app/schema@0.183.4
116
+ - @effect-app/fluent-extensions@0.124.4
117
+
118
+ ## 0.149.4
119
+
120
+ ### Patch Changes
121
+
122
+ - 3c4251e: fix
123
+
124
+ ## 0.149.3
125
+
126
+ ### Patch Changes
127
+
128
+ - Updated dependencies [65f8b7b]
129
+ - @effect-app/schema@0.183.3
130
+ - @effect-app/fluent-extensions@0.124.3
131
+
132
+ ## 0.149.2
133
+
134
+ ### Patch Changes
135
+
136
+ - Updated dependencies [8290a87]
137
+ - @effect-app/schema@0.183.2
138
+ - @effect-app/fluent-extensions@0.124.2
139
+
140
+ ## 0.149.1
141
+
142
+ ### Patch Changes
143
+
144
+ - Updated dependencies [d17dc32]
145
+ - @effect-app/schema@0.183.1
146
+ - @effect-app/fluent-extensions@0.124.1
147
+
148
+ ## 0.149.0
149
+
150
+ ### Minor Changes
151
+
152
+ - e5cdd42: update packages
153
+
154
+ ### Patch Changes
155
+
156
+ - Updated dependencies [e5cdd42]
157
+ - @effect-app/fluent-extensions@0.124.0
158
+ - @effect-app/schema@0.183.0
159
+ - @effect-app/core@0.126.0
160
+
161
+ ## 0.148.0
162
+
163
+ ### Minor Changes
164
+
165
+ - update to latest Effect "minor"
166
+
167
+ ### Patch Changes
168
+
169
+ - Updated dependencies
170
+ - @effect-app/fluent-extensions@0.123.0
171
+ - @effect-app/schema@0.182.0
172
+ - @effect-app/core@0.125.0
173
+
174
+ ## 0.147.0
175
+
176
+ ### Minor Changes
177
+
178
+ - c29b6ff: bump
179
+
180
+ ### Patch Changes
181
+
182
+ - Updated dependencies [c29b6ff]
183
+ - @effect-app/core@0.124.0
184
+ - @effect-app/fluent-extensions@0.122.0
185
+ - @effect-app/schema@0.181.0
186
+
187
+ ## 0.145.3
188
+
189
+ ### Patch Changes
190
+
191
+ - 6e9f253: fix requestid withDefault
192
+
193
+ ## 0.146.0
194
+
195
+ ### Minor Changes
196
+
197
+ - 0c47b83: update packages
198
+
199
+ ### Patch Changes
200
+
201
+ - Updated dependencies [0c47b83]
202
+ - @effect-app/fluent-extensions@0.121.0
203
+ - @effect-app/schema@0.180.0
204
+ - @effect-app/core@0.123.0
205
+
206
+ ## 0.145.2
207
+
208
+ ### Patch Changes
209
+
210
+ - Updated dependencies [9d31709]
211
+ - @effect-app/fluent-extensions@0.120.0
212
+
213
+ ## 0.145.1
214
+
215
+ ### Patch Changes
216
+
217
+ - 871cccf: remove cpy
218
+
219
+ ## 0.145.0
220
+
221
+ ### Minor Changes
222
+
223
+ - bump
224
+
225
+ ### Patch Changes
226
+
227
+ - Updated dependencies
228
+ - @effect-app/fluent-extensions@0.119.0
229
+ - @effect-app/schema@0.179.0
230
+ - @effect-app/core@0.122.0
231
+
232
+ ## 0.144.0
233
+
234
+ ### Minor Changes
235
+
236
+ - d740bf6: use schema as patch instead
237
+
238
+ ### Patch Changes
239
+
240
+ - Updated dependencies [d740bf6]
241
+ - @effect-app/schema@0.178.0
242
+ - @effect-app/fluent-extensions@0.118.1
243
+
244
+ ## 0.143.11
245
+
246
+ ### Patch Changes
247
+
248
+ - Updated dependencies [028af99]
249
+ - @effect-app/fluent-extensions@0.118.0
250
+
251
+ ## 0.143.10
252
+
253
+ ### Patch Changes
254
+
255
+ - Updated dependencies [8217bcd]
256
+ - @effect-app/fluent-extensions@0.117.4
257
+
258
+ ## 0.143.9
259
+
260
+ ### Patch Changes
261
+
262
+ - Updated dependencies
263
+ - @effect-app/fluent-extensions@0.117.3
264
+
265
+ ## 0.143.8
266
+
267
+ ### Patch Changes
268
+
269
+ - Updated dependencies
270
+ - @effect-app/fluent-extensions@0.116.6
271
+
272
+ ## 0.143.7
273
+
274
+ ### Patch Changes
275
+
276
+ - Updated dependencies [e1c9d4c]
277
+ - @effect-app/fluent-extensions@0.117.0
278
+
279
+ ## 0.143.6
280
+
281
+ ### Patch Changes
282
+
283
+ - Updated dependencies [cf3080b]
284
+ - @effect-app/fluent-extensions@0.116.6
285
+
286
+ ## 0.143.5
287
+
288
+ ### Patch Changes
289
+
290
+ - Updated dependencies [e279f74]
291
+ - @effect-app/fluent-extensions@0.116.5
292
+
293
+ ## 0.143.4
294
+
295
+ ### Patch Changes
296
+
297
+ - Updated dependencies [fb25eb5]
298
+ - @effect-app/fluent-extensions@0.116.4
299
+
300
+ ## 0.143.3
301
+
302
+ ### Patch Changes
303
+
304
+ - Updated dependencies [34b8449]
305
+ - @effect-app/fluent-extensions@0.116.3
306
+
307
+ ## 0.143.2
308
+
309
+ ### Patch Changes
310
+
311
+ - Updated dependencies [67d4ec9]
312
+ - @effect-app/fluent-extensions@0.116.2
313
+
314
+ ## 0.143.1
315
+
316
+ ### Patch Changes
317
+
318
+ - Updated dependencies [bc98aeb]
319
+ - @effect-app/schema@0.177.5
320
+ - @effect-app/fluent-extensions@0.116.1
321
+
322
+ ## 0.143.0
323
+
324
+ ### Minor Changes
325
+
326
+ - e6c8452: remove global Either
327
+
328
+ ### Patch Changes
329
+
330
+ - Updated dependencies [e6c8452]
331
+ - @effect-app/fluent-extensions@0.116.0
332
+ - @effect-app/core@0.121.0
333
+ - @effect-app/schema@0.177.4
334
+
335
+ ## 0.142.3
336
+
337
+ ### Patch Changes
338
+
339
+ - Updated dependencies [acbbe35]
340
+ - @effect-app/schema@0.177.3
341
+ - @effect-app/fluent-extensions@0.115.2
342
+
343
+ ## 0.142.2
344
+
345
+ ### Patch Changes
346
+
347
+ - Updated dependencies [39cc9b0]
348
+ - @effect-app/fluent-extensions@0.115.1
349
+
350
+ ## 0.142.1
351
+
352
+ ### Patch Changes
353
+
354
+ - 78de0f5: fix
355
+
356
+ ## 0.142.0
357
+
358
+ ### Minor Changes
359
+
360
+ - b51e7b3: ext
361
+
362
+ ### Patch Changes
363
+
364
+ - Updated dependencies [b51e7b3]
365
+ - @effect-app/fluent-extensions@0.115.0
366
+
367
+ ## 0.141.3
368
+
369
+ ### Patch Changes
370
+
371
+ - Updated dependencies [6806433]
372
+ - @effect-app/fluent-extensions@0.114.3
373
+
374
+ ## 0.141.2
375
+
376
+ ### Patch Changes
377
+
378
+ - Updated dependencies [f28cec3]
379
+ - @effect-app/fluent-extensions@0.114.2
380
+
381
+ ## 0.141.1
382
+
383
+ ### Patch Changes
384
+
385
+ - Updated dependencies [6de437e]
386
+ - @effect-app/fluent-extensions@0.114.1
387
+
388
+ ## 0.141.0
389
+
390
+ ### Minor Changes
391
+
392
+ - 72e0db6: package updates
393
+
394
+ ### Patch Changes
395
+
396
+ - Updated dependencies [72e0db6]
397
+ - @effect-app/fluent-extensions@0.114.0
398
+ - @effect-app/core@0.120.0
399
+ - @effect-app/schema@0.177.2
400
+
401
+ ## 0.140.8
402
+
403
+ ### Patch Changes
404
+
405
+ - Updated dependencies [e66dbfc]
406
+ - @effect-app/fluent-extensions@0.113.13
407
+
408
+ ## 0.140.7
409
+
410
+ ### Patch Changes
411
+
412
+ - Updated dependencies [6677889]
413
+ - @effect-app/fluent-extensions@0.113.12
414
+ - @effect-app/schema@0.177.1
415
+
416
+ ## 0.140.6
417
+
418
+ ### Patch Changes
419
+
420
+ - Updated dependencies [78982c7]
421
+ - @effect-app/fluent-extensions@0.113.11
422
+
423
+ ## 0.140.5
424
+
425
+ ### Patch Changes
426
+
427
+ - Updated dependencies [928dfc8]
428
+ - @effect-app/fluent-extensions@0.113.10
429
+
430
+ ## 0.140.4
431
+
432
+ ### Patch Changes
433
+
434
+ - Updated dependencies [2ab1f78]
435
+ - @effect-app/fluent-extensions@0.113.9
436
+
437
+ ## 0.140.3
438
+
439
+ ### Patch Changes
440
+
441
+ - Updated dependencies [287c4e6]
442
+ - @effect-app/schema@0.177.0
443
+ - @effect-app/fluent-extensions@0.113.8
444
+
445
+ ## 0.140.2
446
+
447
+ ### Patch Changes
448
+
449
+ - Updated dependencies [bff7d58]
450
+ - @effect-app/schema@0.176.2
451
+ - @effect-app/fluent-extensions@0.113.7
452
+
453
+ ## 0.140.1
454
+
455
+ ### Patch Changes
456
+
457
+ - Updated dependencies [f7da591]
458
+ - @effect-app/schema@0.176.1
459
+ - @effect-app/fluent-extensions@0.113.6
460
+
461
+ ## 0.140.0
462
+
463
+ ### Minor Changes
464
+
465
+ - 76c89b8: cleanup exts
466
+
467
+ ### Patch Changes
468
+
469
+ - Updated dependencies [76c89b8]
470
+ - Updated dependencies [76c89b8]
471
+ - @effect-app/schema@0.176.0
472
+ - @effect-app/core@0.119.0
473
+ - @effect-app/fluent-extensions@0.113.5
474
+
475
+ ## 0.139.0
476
+
477
+ ### Minor Changes
478
+
479
+ - 2ccca0f: update exts
480
+
481
+ ### Patch Changes
482
+
483
+ - Updated dependencies [ad46a20]
484
+ - Updated dependencies [40d51e4]
485
+ - Updated dependencies [2ccca0f]
486
+ - @effect-app/schema@0.175.0
487
+ - @effect-app/fluent-extensions@0.113.4
488
+
489
+ ## 0.138.0
490
+
491
+ ### Minor Changes
492
+
493
+ - b487764: improve extensions
494
+
495
+ ### Patch Changes
496
+
497
+ - Updated dependencies [b487764]
498
+ - @effect-app/fluent-extensions@0.113.0
499
+
500
+ ## 0.137.0
501
+
502
+ ### Minor Changes
503
+
504
+ - 465afb5: fix: Schema functions should use ParseError variants
505
+
506
+ ### Patch Changes
507
+
508
+ - Updated dependencies [465afb5]
509
+ - @effect-app/core@0.118.0
510
+ - @effect-app/schema@0.174.0
511
+
512
+ ## 0.136.0
513
+
514
+ ### Minor Changes
515
+
516
+ - f01680a: update packages
517
+ - 349d358: improve support for schemas with R.
518
+
519
+ ### Patch Changes
520
+
521
+ - ebcd0dc: update packages
522
+ - Updated dependencies [ebcd0dc]
523
+ - Updated dependencies [f01680a]
524
+ - Updated dependencies [349d358]
525
+ - @effect-app/schema@0.173.0
526
+
527
+ ## 0.135.0
528
+
529
+ ### Minor Changes
530
+
531
+ - 744e5fc: disable auto constructor call
532
+
533
+ ### Patch Changes
534
+
535
+ - 0a898f8: update packages
536
+ - Updated dependencies [0a898f8]
537
+ - @effect-app/schema@0.172.1
538
+
539
+ ## 0.134.0
540
+
541
+ ### Minor Changes
542
+
543
+ - 449b343: update packages
544
+
545
+ ### Patch Changes
546
+
547
+ - Updated dependencies [449b343]
548
+ - Updated dependencies [d103a32]
549
+ - @effect-app/schema@0.172.0
550
+
551
+ ## 0.133.0
552
+
553
+ ### Minor Changes
554
+
555
+ - 2fd03d3: update packages
556
+
557
+ ### Patch Changes
558
+
559
+ - Updated dependencies [2fd03d3]
560
+ - @effect-app/schema@0.171.0
561
+ - @effect-app/core@0.117.0
562
+
563
+ ## 0.132.1
564
+
565
+ ### Patch Changes
566
+
567
+ - c80a6bb: fix type
568
+
569
+ ## 0.132.0
570
+
571
+ ### Minor Changes
572
+
573
+ - 99f79ab: update packages
574
+ - cd25b5f: improve: typed error handling
575
+
576
+ ### Patch Changes
577
+
578
+ - Updated dependencies [99f79ab]
579
+ - @effect-app/schema@0.170.0
580
+ - @effect-app/core@0.116.0
581
+
582
+ ## 0.131.0
583
+
584
+ ### Minor Changes
585
+
586
+ - 352d57c: cleanup query/mutations.
587
+
588
+ ## 0.130.5
589
+
590
+ ### Patch Changes
591
+
592
+ - Updated dependencies [17dbbff]
593
+ - @effect-app/schema@0.169.3
594
+
595
+ ## 0.130.4
596
+
597
+ ### Patch Changes
598
+
599
+ - 578e25c: pick POST for query/delete when not all members assignable to string
600
+ - Updated dependencies [578e25c]
601
+ - @effect-app/schema@0.169.2
602
+
603
+ ## 0.130.3
604
+
605
+ ### Patch Changes
606
+
607
+ - fix
608
+
609
+ ## 0.130.2
610
+
611
+ ### Patch Changes
612
+
613
+ - f5d1644: fix
614
+
615
+ ## 0.130.1
616
+
617
+ ### Patch Changes
618
+
619
+ - Updated dependencies [cb62aaa]
620
+ - @effect-app/schema@0.169.1
621
+
622
+ ## 0.130.0
623
+
624
+ ### Minor Changes
625
+
626
+ - 1832f49: add auto method support
627
+
628
+ ### Patch Changes
629
+
630
+ - Updated dependencies [1832f49]
631
+ - @effect-app/schema@0.169.0
632
+
633
+ ## 0.129.0
634
+
635
+ ### Minor Changes
636
+
637
+ - default paths to /
638
+
639
+ ### Patch Changes
640
+
641
+ - Updated dependencies
642
+ - @effect-app/schema@0.168.0
643
+
644
+ ## 0.128.2
645
+
646
+ ### Patch Changes
647
+
648
+ - 7db2745: meta
649
+
650
+ ## 0.128.1
651
+
652
+ ### Patch Changes
653
+
654
+ - f725d15: fix js
655
+
656
+ ## 0.128.0
657
+
658
+ ### Minor Changes
659
+
660
+ - 5786fb6: prefix path with request name
661
+
662
+ ## 0.127.2
663
+
664
+ ### Patch Changes
665
+
666
+ - Updated dependencies [690624e]
667
+ - @effect-app/schema@0.167.0
668
+
669
+ ## 0.127.1
670
+
671
+ ### Patch Changes
672
+
673
+ - 9780ef0: fup
674
+
675
+ ## 0.127.0
676
+
677
+ ### Minor Changes
678
+
679
+ - a30db88: update packages
680
+ - b454cd7: embrace Matcher
681
+
682
+ ### Patch Changes
683
+
684
+ - Updated dependencies [a30db88]
685
+ - Updated dependencies [b454cd7]
686
+ - @effect-app/schema@0.166.0
687
+ - @effect-app/core@0.115.0
688
+
689
+ ## 0.126.0
690
+
691
+ ### Minor Changes
692
+
693
+ - ed813b4: update packages
694
+
695
+ ### Patch Changes
696
+
697
+ - Updated dependencies [ed813b4]
698
+ - @effect-app/schema@0.165.0
699
+
700
+ ## 0.125.0
701
+
702
+ ### Minor Changes
703
+
704
+ - 3eb4057: update packages
705
+
706
+ ### Patch Changes
707
+
708
+ - Updated dependencies [3eb4057]
709
+ - @effect-app/schema@0.164.0
710
+ - @effect-app/core@0.114.0
711
+
712
+ ## 0.124.0
713
+
714
+ ### Minor Changes
715
+
716
+ - 051bad7: override reasonable Email/PhoneNumber
717
+
718
+ ### Patch Changes
719
+
720
+ - Updated dependencies [051bad7]
721
+ - @effect-app/core@0.113.0
722
+ - @effect-app/schema@0.163.1
723
+
724
+ ## 0.123.0
725
+
726
+ ### Minor Changes
727
+
728
+ - 4c915ea: update packages
729
+
730
+ ### Patch Changes
731
+
732
+ - Updated dependencies [4c915ea]
733
+ - @effect-app/schema@0.163.0
734
+ - @effect-app/core@0.112.0
735
+
736
+ ## 0.122.1
737
+
738
+ ### Patch Changes
739
+
740
+ - Updated dependencies [e356144]
741
+ - @effect-app/schema@0.162.1
742
+
743
+ ## 0.122.0
744
+
745
+ ### Minor Changes
746
+
747
+ - fix exts
748
+
749
+ ### Patch Changes
750
+
751
+ - Updated dependencies
752
+ - @effect-app/core@0.111.0
753
+ - @effect-app/schema@0.162.0
754
+
755
+ ## 0.121.0
756
+
757
+ ### Minor Changes
758
+
759
+ - e2b5df8: revert workaround
760
+
761
+ ### Patch Changes
762
+
763
+ - Updated dependencies [e2b5df8]
764
+ - @effect-app/schema@0.161.0
765
+ - @effect-app/core@0.110.0
766
+
767
+ ## 0.120.0
768
+
769
+ ### Minor Changes
770
+
771
+ - efa846c: improve: class workaround
772
+
773
+ ### Patch Changes
774
+
775
+ - Updated dependencies [efa846c]
776
+ - @effect-app/schema@0.160.0
777
+ - @effect-app/core@0.109.0
778
+
779
+ ## 0.119.2
780
+
781
+ ### Patch Changes
782
+
783
+ - d3bc95b: fix lazy arb
784
+
785
+ ## 0.119.1
786
+
787
+ ### Patch Changes
788
+
789
+ - Updated dependencies [3936865]
790
+ - @effect-app/schema@0.159.1
791
+
792
+ ## 0.119.0
793
+
794
+ ### Minor Changes
795
+
796
+ - 4aaa360: update packages
797
+ - a64728d: update to latest Schema
798
+
799
+ ### Patch Changes
800
+
801
+ - Updated dependencies [4aaa360]
802
+ - Updated dependencies [a64728d]
803
+ - @effect-app/schema@0.159.0
804
+ - @effect-app/core@0.108.0
805
+
806
+ ## 0.118.0
807
+
808
+ ### Minor Changes
809
+
810
+ - 3ee1505: refactor: remove \_\_call extensions
811
+
812
+ ### Patch Changes
813
+
814
+ - Updated dependencies [3ee1505]
815
+ - @effect-app/core@0.107.0
816
+ - @effect-app/schema@0.158.1
817
+
818
+ ## 0.117.0
819
+
820
+ ### Minor Changes
821
+
822
+ - 33dcf2e: update packages
823
+
824
+ ### Patch Changes
825
+
826
+ - Updated dependencies [33dcf2e]
827
+ - @effect-app/schema@0.158.0
828
+ - @effect-app/core@0.106.0
829
+
830
+ ## 0.116.1
831
+
832
+ ### Patch Changes
833
+
834
+ - fd233aa: package updates
835
+ - Updated dependencies [5fe664e]
836
+ - Updated dependencies [afa98cf]
837
+ - @effect-app/core@0.105.0
838
+ - @effect-app/schema@0.157.1
839
+
840
+ ## 0.116.0
841
+
842
+ ### Minor Changes
843
+
844
+ - e535d05: update packages
845
+
846
+ ### Patch Changes
847
+
848
+ - Updated dependencies [e535d05]
849
+ - @effect-app/schema@0.157.0
850
+ - @effect-app/core@0.104.0
851
+
852
+ ## 0.115.0
853
+
854
+ ### Minor Changes
855
+
856
+ - 9049ccd: filter path params from qs
857
+
858
+ ### Patch Changes
859
+
860
+ - Updated dependencies [9049ccd]
861
+ - @effect-app/core@0.103.0
862
+ - @effect-app/schema@0.156.1
863
+
864
+ ## 0.114.0
865
+
866
+ ### Minor Changes
867
+
868
+ - a894a63: update packages
869
+
870
+ ### Patch Changes
871
+
872
+ - Updated dependencies [a894a63]
873
+ - @effect-app/schema@0.156.0
874
+ - @effect-app/core@0.102.0
875
+
876
+ ## 0.113.0
877
+
878
+ ### Minor Changes
879
+
880
+ - 4e2e01b: roll into one
881
+
882
+ ## 0.112.1
883
+
884
+ ### Patch Changes
885
+
886
+ - 59077e8: feat: add `TagClassMakeScoped`
887
+
888
+ ## 0.112.0
889
+
890
+ ### Minor Changes
891
+
892
+ - 7945f38: update packages
893
+
894
+ ### Patch Changes
895
+
896
+ - bc5f735: add `TagClassMake`
897
+ - Updated dependencies [7945f38]
898
+ - @effect-app/schema@0.155.0
899
+ - @effect-app/core@0.101.0
900
+
901
+ ## 0.111.0
902
+
903
+ ### Minor Changes
904
+
905
+ - 067274a: Update packages
906
+
907
+ ### Patch Changes
908
+
909
+ - Updated dependencies [067274a]
910
+ - @effect-app/schema@0.154.0
911
+
912
+ ## 0.110.0
913
+
914
+ ### Minor Changes
915
+
916
+ - 63425a7: update packages
917
+
918
+ ### Patch Changes
919
+
920
+ - Updated dependencies [63425a7]
921
+ - @effect-app/schema@0.153.0
922
+ - @effect-app/core@0.100.0
923
+
924
+ ## 0.109.3
925
+
926
+ ### Patch Changes
927
+
928
+ - fix Positive->NonNegative
929
+
930
+ ## 0.109.2
931
+
932
+ ### Patch Changes
933
+
934
+ - 4464df4: missing ext
935
+
936
+ ## 0.109.1
937
+
938
+ ### Patch Changes
939
+
940
+ - Updated dependencies [fd85bed]
941
+ - @effect-app/schema@0.152.1
942
+
943
+ ## 0.109.0
944
+
945
+ ### Minor Changes
946
+
947
+ - 82f0f0d: update packages
948
+
949
+ ### Patch Changes
950
+
951
+ - Updated dependencies [82f0f0d]
952
+ - @effect-app/schema@0.152.0
953
+ - @effect-app/core@0.99.0
954
+
955
+ ## 0.108.3
956
+
957
+ ### Patch Changes
958
+
959
+ - Updated dependencies [153a19f]
960
+ - @effect-app/core@0.98.1
961
+ - @effect-app/schema@0.151.2
962
+
963
+ ## 0.108.2
964
+
965
+ ### Patch Changes
966
+
967
+ - c8e7d1d: improve: stack error helper on assign.tag
968
+
969
+ ## 0.108.1
970
+
971
+ ### Patch Changes
972
+
973
+ - 26e8e9f: improve: use meta info for request name
974
+ - 0f8297a: feat: add class annotate decorator
975
+ - Updated dependencies [0f8297a]
976
+ - @effect-app/schema@0.151.1
977
+
978
+ ## 0.108.0
979
+
980
+ ### Minor Changes
981
+
982
+ - 2ea1e3c: update packages
983
+
984
+ ### Patch Changes
985
+
986
+ - Updated dependencies [2ea1e3c]
987
+ - @effect-app/schema@0.151.0
988
+ - @effect-app/core@0.98.0
989
+
990
+ ## 0.107.11
991
+
992
+ ### Patch Changes
993
+
994
+ - Updated dependencies [cf69a10]
995
+ - @effect-app/schema@0.150.10
996
+
997
+ ## 0.107.10
998
+
999
+ ### Patch Changes
1000
+
1001
+ - 5564b85: update packages
1002
+ - Updated dependencies [5564b85]
1003
+ - @effect-app/schema@0.150.9
1004
+ - @effect-app/core@0.97.3
1005
+
1006
+ ## 0.107.9
1007
+
1008
+ ### Patch Changes
1009
+
1010
+ - f8b45b9: export numbers
1011
+ - Updated dependencies [f8b45b9]
1012
+ - @effect-app/schema@0.150.8
1013
+
1014
+ ## 0.107.8
1015
+
1016
+ ### Patch Changes
1017
+
1018
+ - Updated dependencies
1019
+ - @effect-app/schema@0.150.7
1020
+
1021
+ ## 0.107.7
1022
+
1023
+ ### Patch Changes
1024
+
1025
+ - Updated dependencies [a72f796]
1026
+ - @effect-app/schema@0.150.6
1027
+
1028
+ ## 0.107.6
1029
+
1030
+ ### Patch Changes
1031
+
1032
+ - c615f35: update packages
1033
+ - Updated dependencies [c615f35]
1034
+ - @effect-app/core@0.97.2
1035
+ - @effect-app/schema@0.150.5
1036
+
1037
+ ## 0.107.5
1038
+
1039
+ ### Patch Changes
1040
+
1041
+ - Updated dependencies [d9034fe]
1042
+ - @effect-app/schema@0.150.4
1043
+
1044
+ ## 0.107.4
1045
+
1046
+ ### Patch Changes
1047
+
1048
+ - 38f3367: fix unsafe
1049
+
1050
+ ## 0.107.3
1051
+
1052
+ ### Patch Changes
1053
+
1054
+ - Updated dependencies [6a5591a]
1055
+ - @effect-app/schema@0.150.3
1056
+
1057
+ ## 0.107.2
1058
+
1059
+ ### Patch Changes
1060
+
1061
+ - Updated dependencies
1062
+ - @effect-app/core@0.97.1
1063
+ - @effect-app/schema@0.150.2
1064
+
1065
+ ## 0.107.1
1066
+
1067
+ ### Patch Changes
1068
+
1069
+ - fd520f7: chore: restore UnionBrand
1070
+ - Updated dependencies [fd520f7]
1071
+ - @effect-app/schema@0.150.1
1072
+
1073
+ ## 0.107.0
1074
+
1075
+ ### Minor Changes
1076
+
1077
+ - 640d24a: reference schema2
1078
+ - 640d24a: update packages
1079
+
1080
+ ### Patch Changes
1081
+
1082
+ - 640d24a: mm
1083
+ - 640d24a: clean
1084
+ - 640d24a: cleanup
1085
+ - 640d24a: f
1086
+ - 640d24a: update
1087
+ - 640d24a: faker
1088
+ - 640d24a: cleanup schema ext
1089
+ - 640d24a: fix stringid and clientfor
1090
+ - 640d24a: updates
1091
+ - 640d24a: S
1092
+ - 640d24a: fix things
1093
+ - 640d24a: improve
1094
+ - 640d24a: update schema
1095
+ - 640d24a: upd
1096
+ - 640d24a: cl
1097
+ - 640d24a: form and client fixes
1098
+ - 640d24a: update packages
1099
+ - 640d24a: ext
1100
+ - 640d24a: improve rc
1101
+ - 640d24a: fix RequestId
1102
+ - 640d24a: dynamic faker arb
1103
+ - 640d24a: fix empty body
1104
+ - 640d24a: fix mapPath should use From
1105
+ - 640d24a: exports
1106
+ - 640d24a: use schema fork
1107
+ - 640d24a: cleanup errors and use decodeSyc over parseSync
1108
+ - 640d24a: update packages
1109
+ - 640d24a: expose ParseResult
1110
+ - 640d24a: update packages
1111
+ - 640d24a: fup
1112
+ - 640d24a: upd
1113
+ - Updated dependencies [640d24a]
1114
+ - Updated dependencies [640d24a]
1115
+ - Updated dependencies [640d24a]
1116
+ - Updated dependencies [640d24a]
1117
+ - Updated dependencies [640d24a]
1118
+ - Updated dependencies [640d24a]
1119
+ - Updated dependencies [640d24a]
1120
+ - Updated dependencies [640d24a]
1121
+ - Updated dependencies [640d24a]
1122
+ - Updated dependencies [640d24a]
1123
+ - Updated dependencies [640d24a]
1124
+ - Updated dependencies [640d24a]
1125
+ - Updated dependencies [640d24a]
1126
+ - Updated dependencies [640d24a]
1127
+ - Updated dependencies [640d24a]
1128
+ - Updated dependencies [640d24a]
1129
+ - Updated dependencies [640d24a]
1130
+ - Updated dependencies [640d24a]
1131
+ - Updated dependencies [640d24a]
1132
+ - Updated dependencies [640d24a]
1133
+ - Updated dependencies [640d24a]
1134
+ - Updated dependencies [640d24a]
1135
+ - Updated dependencies [640d24a]
1136
+ - Updated dependencies [640d24a]
1137
+ - Updated dependencies [640d24a]
1138
+ - Updated dependencies [640d24a]
1139
+ - Updated dependencies [640d24a]
1140
+ - Updated dependencies [640d24a]
1141
+ - Updated dependencies [640d24a]
1142
+ - Updated dependencies [640d24a]
1143
+ - Updated dependencies [640d24a]
1144
+ - Updated dependencies [640d24a]
1145
+ - @effect-app/schema@0.150.0
1146
+ - @effect-app/core@0.97.0
1147
+
1148
+ ## 0.107.0-next.45
1149
+
1150
+ ### Patch Changes
1151
+
1152
+ - d2bc3ac: update schema
1153
+ - Updated dependencies [d2bc3ac]
1154
+ - @effect-app/schema@0.150.0-next.30
1155
+
1156
+ ## 0.107.0-next.44
1157
+
1158
+ ### Patch Changes
1159
+
1160
+ - update packages
1161
+ - Updated dependencies
1162
+ - @effect-app/schema@0.150.0-next.29
1163
+ - @effect-app/core@0.97.0-next.8
1164
+
1165
+ ## 0.107.0-next.43
1166
+
1167
+ ### Patch Changes
1168
+
1169
+ - 19dc3b1: ext
1170
+ - Updated dependencies [19dc3b1]
1171
+ - @effect-app/schema@0.150.0-next.28
1172
+
1173
+ ## 0.107.0-next.42
1174
+
1175
+ ### Patch Changes
1176
+
1177
+ - 09ed839: dynamic faker arb
1178
+
1179
+ ## 0.107.0-next.41
1180
+
1181
+ ### Patch Changes
1182
+
1183
+ - b6d4272: update packages
1184
+ - Updated dependencies [0bc4207]
1185
+ - Updated dependencies [b6d4272]
1186
+ - @effect-app/schema@0.150.0-next.27
1187
+ - @effect-app/core@0.97.0-next.7
1188
+
1189
+ ## 0.107.0-next.40
1190
+
1191
+ ### Patch Changes
1192
+
1193
+ - 14b33a9: cleanup errors and use decodeSyc over parseSync
1194
+ - Updated dependencies [14b33a9]
1195
+ - @effect-app/schema@0.150.0-next.26
1196
+
1197
+ ## 0.107.0-next.39
1198
+
1199
+ ### Patch Changes
1200
+
1201
+ - Updated dependencies [aa1b654]
1202
+ - @effect-app/schema@0.150.0-next.25
1203
+
1204
+ ## 0.107.0-next.38
1205
+
1206
+ ### Patch Changes
1207
+
1208
+ - 64793a8: fix mapPath should use From
1209
+
1210
+ ## 0.107.0-next.37
1211
+
1212
+ ### Patch Changes
1213
+
1214
+ - 9e151ed: update packages
1215
+ - Updated dependencies [9e151ed]
1216
+ - @effect-app/schema@0.150.0-next.24
1217
+ - @effect-app/core@0.97.0-next.6
1218
+
1219
+ ## 0.107.0-next.36
1220
+
1221
+ ### Patch Changes
1222
+
1223
+ - Updated dependencies [6b89c27]
1224
+ - @effect-app/core@0.97.0-next.5
1225
+ - @effect-app/schema@0.150.0-next.23
1226
+
1227
+ ## 0.107.0-next.35
1228
+
1229
+ ### Patch Changes
1230
+
1231
+ - 169c159: expose ParseResult
1232
+ - Updated dependencies [169c159]
1233
+ - @effect-app/schema@0.150.0-next.22
1234
+
1235
+ ## 0.107.0-next.34
1236
+
1237
+ ### Patch Changes
1238
+
1239
+ - b46e30d: fup
1240
+
1241
+ ## 0.107.0-next.33
1242
+
1243
+ ### Patch Changes
1244
+
1245
+ - Updated dependencies [c57bb66]
1246
+ - @effect-app/schema@0.150.0-next.21
1247
+
1248
+ ## 0.107.0-next.32
1249
+
1250
+ ### Patch Changes
1251
+
1252
+ - 735dea9: improve rc
1253
+
1254
+ ## 0.107.0-next.31
1255
+
1256
+ ### Patch Changes
1257
+
1258
+ - 21482c6: cl
1259
+
1260
+ ## 0.107.0-next.30
1261
+
1262
+ ### Patch Changes
1263
+
1264
+ - eab24be: upd
1265
+
1266
+ ## 0.107.0-next.29
1267
+
1268
+ ### Patch Changes
1269
+
1270
+ - def06a7: fix things
1271
+
1272
+ ## 0.107.0-next.28
1273
+
1274
+ ### Patch Changes
1275
+
1276
+ - eb31797: fix empty body
1277
+
1278
+ ## 0.107.0-next.27
1279
+
1280
+ ### Patch Changes
1281
+
1282
+ - 65696a6: fix RequestId
1283
+
1284
+ ## 0.107.0-next.26
1285
+
1286
+ ### Patch Changes
1287
+
1288
+ - 777162f: improve
1289
+ - Updated dependencies [777162f]
1290
+ - @effect-app/schema@0.150.0-next.20
1291
+
1292
+ ## 0.107.0-next.25
1293
+
1294
+ ### Patch Changes
1295
+
1296
+ - 0776693: fix stringid and clientfor
1297
+
1298
+ ## 0.107.0-next.24
1299
+
1300
+ ### Patch Changes
1301
+
1302
+ - 68eaf52: form and client fixes
1303
+
1304
+ ## 0.107.0-next.23
1305
+
1306
+ ### Patch Changes
1307
+
1308
+ - Updated dependencies [ca927a5]
1309
+ - @effect-app/schema@0.150.0-next.19
1310
+
1311
+ ## 0.107.0-next.22
1312
+
1313
+ ### Patch Changes
1314
+
1315
+ - 5f62f5a: upd
1316
+ - Updated dependencies [5f62f5a]
1317
+ - @effect-app/schema@0.150.0-next.18
1318
+
1319
+ ## 0.107.0-next.21
1320
+
1321
+ ### Patch Changes
1322
+
1323
+ - Updated dependencies [53d4b3e]
1324
+ - @effect-app/schema@0.150.0-next.17
1325
+
1326
+ ## 0.107.0-next.20
1327
+
1328
+ ### Patch Changes
1329
+
1330
+ - Updated dependencies [63d4549]
1331
+ - @effect-app/schema@0.150.0-next.16
1332
+
1333
+ ## 0.107.0-next.19
1334
+
1335
+ ### Patch Changes
1336
+
1337
+ - b19ce70: S
1338
+
1339
+ ## 0.107.0-next.18
1340
+
1341
+ ### Patch Changes
1342
+
1343
+ - 92ff6b9: exports
1344
+ - Updated dependencies [92ff6b9]
1345
+ - @effect-app/schema@0.150.0-next.15
1346
+
1347
+ ## 0.107.0-next.17
1348
+
1349
+ ### Patch Changes
1350
+
1351
+ - Updated dependencies [c234016]
1352
+ - @effect-app/schema@0.150.0-next.14
1353
+
1354
+ ## 0.107.0-next.16
1355
+
1356
+ ### Patch Changes
1357
+
1358
+ - Updated dependencies [5d53b26]
1359
+ - @effect-app/schema@0.150.0-next.13
1360
+
1361
+ ## 0.107.0-next.15
1362
+
1363
+ ### Patch Changes
1364
+
1365
+ - Updated dependencies [147bc14]
1366
+ - @effect-app/schema@0.150.0-next.12
1367
+
1368
+ ## 0.107.0-next.14
1369
+
1370
+ ### Patch Changes
1371
+
1372
+ - Updated dependencies [660d57a]
1373
+ - @effect-app/schema@0.150.0-next.11
1374
+
1375
+ ## 0.107.0-next.13
1376
+
1377
+ ### Patch Changes
1378
+
1379
+ - 20076e0: update
1380
+ - Updated dependencies [20076e0]
1381
+ - @effect-app/schema@0.150.0-next.10
1382
+
1383
+ ## 0.107.0-next.12
1384
+
1385
+ ### Patch Changes
1386
+
1387
+ - Updated dependencies
1388
+ - @effect-app/core@0.97.0-next.4
1389
+ - @effect-app/schema@0.150.0-next.9
1390
+
1391
+ ## 0.107.0-next.11
1392
+
1393
+ ### Patch Changes
1394
+
1395
+ - ac35466: use schema fork
1396
+ - Updated dependencies [ac35466]
1397
+ - @effect-app/schema@0.150.0-next.8
1398
+
1399
+ ## 0.107.0-next.10
1400
+
1401
+ ### Patch Changes
1402
+
1403
+ - Updated dependencies [4f8ade3]
1404
+ - @effect-app/core@0.97.0-next.3
1405
+ - @effect-app/schema@0.150.0-next.7
1406
+
1407
+ ## 0.107.0-next.9
1408
+
1409
+ ### Patch Changes
1410
+
1411
+ - Updated dependencies [8897586]
1412
+ - @effect-app/schema@0.150.0-next.6
1413
+
1414
+ ## 0.107.0-next.8
1415
+
1416
+ ### Patch Changes
1417
+
1418
+ - c550ee5: updates
1419
+ - Updated dependencies [c550ee5]
1420
+ - @effect-app/schema@0.150.0-next.5
1421
+ - @effect-app/core@0.97.0-next.2
1422
+
1423
+ ## 0.107.0-next.7
1424
+
1425
+ ### Patch Changes
1426
+
1427
+ - 82b3ca0: mm
1428
+
1429
+ ## 0.107.0-next.6
1430
+
1431
+ ### Patch Changes
1432
+
1433
+ - Updated dependencies [ace7afb]
1434
+ - @effect-app/schema@0.150.0-next.4
1435
+
1436
+ ## 0.107.0-next.5
1437
+
1438
+ ### Patch Changes
1439
+
1440
+ - 3320864: cleanup schema ext
1441
+ - Updated dependencies [3320864]
1442
+ - @effect-app/schema@0.150.0-next.3
1443
+
1444
+ ## 0.107.0-next.4
1445
+
1446
+ ### Patch Changes
1447
+
1448
+ - Updated dependencies [fde3e90]
1449
+ - @effect-app/schema@0.150.0-next.2
1450
+ - @effect-app/core@0.97.0-next.1
1451
+
1452
+ ## 0.107.0-next.3
1453
+
1454
+ ### Patch Changes
1455
+
1456
+ - 3d9e1ab: clean
1457
+ - 47d0151: faker
1458
+
1459
+ ## 0.107.0-next.2
1460
+
1461
+ ### Patch Changes
1462
+
1463
+ - c3de47e: f
1464
+
1465
+ ## 0.107.0-next.1
1466
+
1467
+ ### Patch Changes
1468
+
1469
+ - bd2130b: cleanup
1470
+ - Updated dependencies [bd2130b]
1471
+ - @effect-app/schema@0.150.0-next.1
1472
+
1473
+ ## 0.107.0-next.0
1474
+
1475
+ ### Minor Changes
1476
+
1477
+ - 87a6ac2: update packages
1478
+
1479
+ ### Patch Changes
1480
+
1481
+ - Updated dependencies [87a6ac2]
1482
+ - @effect-app/schema2@0.1.0-next.0
1483
+ - @effect-app/core@0.97.0-next.0
1484
+
1485
+ ## 0.106.1
1486
+
1487
+ ### Patch Changes
1488
+
1489
+ - efb854a: update packages
1490
+ - Updated dependencies [efb854a]
1491
+ - @effect-app/schema@0.90.1
1492
+ - @effect-app/core@0.96.1
1493
+
1494
+ ## 0.106.0
1495
+
1496
+ ### Minor Changes
1497
+
1498
+ - 4330242: improve: TagClass
1499
+
1500
+ ## 0.105.0
1501
+
1502
+ ### Minor Changes
1503
+
1504
+ - c6efdeb: update packages
1505
+
1506
+ ### Patch Changes
1507
+
1508
+ - Updated dependencies [c6efdeb]
1509
+ - @effect-app/schema@0.90.0
1510
+ - @effect-app/core@0.96.0
1511
+
1512
+ ## 0.104.1
1513
+
1514
+ ### Patch Changes
1515
+
1516
+ - cf6ae3c: update packages
1517
+ - Updated dependencies [cf6ae3c]
1518
+ - @effect-app/schema@0.89.1
1519
+ - @effect-app/core@0.95.1
1520
+
1521
+ ## 0.104.0
1522
+
1523
+ ### Minor Changes
1524
+
1525
+ - 46bd7be: update packages
1526
+
1527
+ ### Patch Changes
1528
+
1529
+ - Updated dependencies [46bd7be]
1530
+ - @effect-app/schema@0.89.0
1531
+ - @effect-app/core@0.95.0
1532
+
1533
+ ## 0.103.2
1534
+
1535
+ ### Patch Changes
1536
+
1537
+ - Updated dependencies
1538
+ - @effect-app/core@0.94.2
1539
+ - @effect-app/schema@0.88.3
1540
+
1541
+ ## 0.103.1
1542
+
1543
+ ### Patch Changes
1544
+
1545
+ - Updated dependencies
1546
+ - @effect-app/core@0.94.1
1547
+ - @effect-app/schema@0.88.2
1548
+
1549
+ ## 0.103.0
1550
+
1551
+ ### Minor Changes
1552
+
1553
+ - 92d7e37: update packages
1554
+
1555
+ ### Patch Changes
1556
+
1557
+ - Updated dependencies [92d7e37]
1558
+ - Updated dependencies
1559
+ - @effect-app/core@0.94.0
1560
+ - @effect-app/schema@0.88.1
1561
+
1562
+ ## 0.102.0
1563
+
1564
+ ### Minor Changes
1565
+
1566
+ - bump
1567
+
1568
+ ### Patch Changes
1569
+
1570
+ - Updated dependencies
1571
+ - @effect-app/core@0.93.0
1572
+ - @effect-app/schema@0.88.0
1573
+
1574
+ ## 0.101.1
1575
+
1576
+ ### Patch Changes
1577
+
1578
+ - Updated dependencies
1579
+ - @effect-app/schema@0.87.10
1580
+
1581
+ ## 0.101.0
1582
+
1583
+ ### Minor Changes
1584
+
1585
+ - 67eb741: update packages
1586
+
1587
+ ### Patch Changes
1588
+
1589
+ - Updated dependencies [67eb741]
1590
+ - @effect-app/core@0.92.0
1591
+ - @effect-app/schema@0.87.9
1592
+
1593
+ ## 0.100.1
1594
+
1595
+ ### Patch Changes
1596
+
1597
+ - 7f447d3: update packages
1598
+ - Updated dependencies [7f447d3]
1599
+ - @effect-app/core@0.91.1
1600
+ - @effect-app/schema@0.87.8
1601
+
1602
+ ## 0.100.0
1603
+
1604
+ ### Minor Changes
1605
+
1606
+ - ad8154a: update packages
1607
+
1608
+ ### Patch Changes
1609
+
1610
+ - Updated dependencies [ad8154a]
1611
+ - @effect-app/core@0.91.0
1612
+ - @effect-app/schema@0.87.7
1613
+
1614
+ ## 0.99.1
1615
+
1616
+ ### Patch Changes
1617
+
1618
+ - f33d0a1: feat: change request path to extends from `/${string}` for platform alignment
1619
+ - Updated dependencies [f33d0a1]
1620
+ - @effect-app/schema@0.87.6
1621
+
1622
+ ## 0.99.0
1623
+
1624
+ ### Minor Changes
1625
+
1626
+ - f20991e: update packages
1627
+
1628
+ ### Patch Changes
1629
+
1630
+ - Updated dependencies [f20991e]
1631
+ - @effect-app/core@0.90.0
1632
+ - @effect-app/schema@0.87.5
1633
+
1634
+ ## 0.98.3
1635
+
1636
+ ### Patch Changes
1637
+
1638
+ - Updated dependencies [687c313]
1639
+ - @effect-app/schema@0.87.4
1640
+
1641
+ ## 0.98.2
1642
+
1643
+ ### Patch Changes
1644
+
1645
+ - Updated dependencies [fcfea25]
1646
+ - @effect-app/schema@0.87.3
1647
+
1648
+ ## 0.98.1
1649
+
1650
+ ### Patch Changes
1651
+
1652
+ - Updated dependencies [e468bd0]
1653
+ - @effect-app/schema@0.87.2
1654
+
1655
+ ## 0.98.0
1656
+
1657
+ ### Minor Changes
1658
+
1659
+ - 98fbdb3: update packages
1660
+
1661
+ ### Patch Changes
1662
+
1663
+ - Updated dependencies [98fbdb3]
1664
+ - @effect-app/core@0.89.0
1665
+ - @effect-app/schema@0.87.1
1666
+
1667
+ ## 0.97.0
1668
+
1669
+ ### Minor Changes
1670
+
1671
+ - 8b90f25: feat: add NumberAsInt, PositiveNumberAsInt
1672
+
1673
+ ### Patch Changes
1674
+
1675
+ - Updated dependencies [8b90f25]
1676
+ - @effect-app/schema@0.87.0
1677
+
1678
+ ## 0.96.2
1679
+
1680
+ ### Patch Changes
1681
+
1682
+ - c3c5877: extend refinements with copy and clone
1683
+
1684
+ ## 0.96.1
1685
+
1686
+ ### Patch Changes
1687
+
1688
+ - a5b77fc: fix types
1689
+
1690
+ ## 0.96.0
1691
+
1692
+ ### Minor Changes
1693
+
1694
+ - 60ecffb: feat: copy/clone trait trial
1695
+
1696
+ ### Patch Changes
1697
+
1698
+ - Updated dependencies [60ecffb]
1699
+ - @effect-app/schema@0.86.0
1700
+
1701
+ ## 0.95.0
1702
+
1703
+ ### Minor Changes
1704
+
1705
+ - fb332b4: update packages
1706
+
1707
+ ### Patch Changes
1708
+
1709
+ - Updated dependencies [fb332b4]
1710
+ - @effect-app/schema@0.85.0
1711
+ - @effect-app/core@0.88.0
1712
+
1713
+ ## 0.94.0
1714
+
1715
+ ### Minor Changes
1716
+
1717
+ - 0069d09: Cleanup layers
1718
+
1719
+ ## 0.93.0
1720
+
1721
+ ### Minor Changes
1722
+
1723
+ - a681ab6: update packages
1724
+
1725
+ ### Patch Changes
1726
+
1727
+ - Updated dependencies [a681ab6]
1728
+ - @effect-app/schema@0.84.0
1729
+ - @effect-app/core@0.87.0
1730
+
1731
+ ## 0.92.0
1732
+
1733
+ ### Minor Changes
1734
+
1735
+ - a9e8b8f: update packages
1736
+
1737
+ ### Patch Changes
1738
+
1739
+ - Updated dependencies [169ccb0]
1740
+ - Updated dependencies [a9e8b8f]
1741
+ - @effect-app/core@0.86.0
1742
+ - @effect-app/schema@0.83.0
1743
+
1744
+ ## 0.91.1
1745
+
1746
+ ### Patch Changes
1747
+
1748
+ - Updated dependencies [3cf98d6]
1749
+ - @effect-app/schema@0.82.2
1750
+
1751
+ ## 0.91.0
1752
+
1753
+ ### Minor Changes
1754
+
1755
+ - e0b2e24: fix: update for Secret
1756
+
1757
+ ### Patch Changes
1758
+
1759
+ - Updated dependencies [e0b2e24]
1760
+ - @effect-app/core@0.85.0
1761
+ - @effect-app/schema@0.82.1
1762
+
1763
+ ## 0.90.0
1764
+
1765
+ ### Minor Changes
1766
+
1767
+ - ac36723: update dependencies
1768
+
1769
+ ### Patch Changes
1770
+
1771
+ - Updated dependencies [ac36723]
1772
+ - @effect-app/schema@0.82.0
1773
+ - @effect-app/core@0.84.0
1774
+
1775
+ ## 0.89.0
1776
+
1777
+ ### Minor Changes
1778
+
1779
+ - da80c66: feat: add literalNumber
1780
+
1781
+ ### Patch Changes
1782
+
1783
+ - Updated dependencies [da80c66]
1784
+ - @effect-app/schema@0.81.0
1785
+
1786
+ ## 0.88.9
1787
+
1788
+ ### Patch Changes
1789
+
1790
+ - Updated dependencies [8235a1a]
1791
+ - @effect-app/core@0.83.3
1792
+ - @effect-app/schema@0.80.6
1793
+
1794
+ ## 0.88.8
1795
+
1796
+ ### Patch Changes
1797
+
1798
+ - Updated dependencies [f6e1e15]
1799
+ - @effect-app/schema@0.80.5
1800
+
1801
+ ## 0.88.7
1802
+
1803
+ ### Patch Changes
1804
+
1805
+ - Updated dependencies
1806
+ - @effect-app/core@0.83.2
1807
+ - @effect-app/schema@0.80.4
1808
+
1809
+ ## 0.88.6
1810
+
1811
+ ### Patch Changes
1812
+
1813
+ - Updated dependencies [8a81a8f]
1814
+ - @effect-app/core@0.83.1
1815
+ - @effect-app/schema@0.80.3
1816
+
1817
+ ## 0.88.5
1818
+
1819
+ ### Patch Changes
1820
+
1821
+ - Updated dependencies
1822
+ - @effect-app/core@0.83.0
1823
+ - @effect-app/schema@0.80.2
1824
+
1825
+ ## 0.88.4
1826
+
1827
+ ### Patch Changes
1828
+
1829
+ - Updated dependencies
1830
+ - @effect-app/core@0.82.1
1831
+ - @effect-app/schema@0.80.1
1832
+
1833
+ ## 0.88.3
1834
+
1835
+ ### Patch Changes
1836
+
1837
+ - Updated dependencies [4012f97]
1838
+ - @effect-app/schema@0.80.0
1839
+ - @effect-app/core@0.82.0
1840
+
1841
+ ## 0.88.2
1842
+
1843
+ ### Patch Changes
1844
+
1845
+ - 7f946cb: remove obsolete helpers
1846
+ - Updated dependencies [7f946cb]
1847
+ - @effect-app/core@0.81.1
1848
+ - @effect-app/schema@0.79.1
1849
+
1850
+ ## 0.88.1
1851
+
1852
+ ### Patch Changes
1853
+
1854
+ - 65886f2: fix type sigs
1855
+
1856
+ ## 0.88.0
1857
+
1858
+ ### Minor Changes
1859
+
1860
+ - 16ffb5e: class service/repo support andThen, drop flatMap
1861
+
1862
+ ## 0.87.0
1863
+
1864
+ ### Minor Changes
1865
+
1866
+ - align v
1867
+
1868
+ ### Patch Changes
1869
+
1870
+ - Updated dependencies
1871
+ - @effect-app/core@0.81.0
1872
+ - @effect-app/schema@0.79.0
1873
+
1874
+ ## 0.86.0
1875
+
1876
+ ### Minor Changes
1877
+
1878
+ - align v
1879
+
1880
+ ### Patch Changes
1881
+
1882
+ - Updated dependencies
1883
+ - @effect-app/core@0.80.0
1884
+ - @effect-app/schema@0.78.0
1885
+
1886
+ ## 0.85.5
1887
+
1888
+ ### Patch Changes
1889
+
1890
+ - 4627526: improve string name
1891
+
1892
+ ## 0.85.4
1893
+
1894
+ ### Patch Changes
1895
+
1896
+ - Updated dependencies [081418b]
1897
+ - @effect-app/schema@0.77.1
1898
+
1899
+ ## 0.85.3
1900
+
1901
+ ### Patch Changes
1902
+
1903
+ - fix
1904
+
1905
+ ## 0.85.2
1906
+
1907
+ ### Patch Changes
1908
+
1909
+ - fix
1910
+
1911
+ ## 0.85.1
1912
+
1913
+ ### Patch Changes
1914
+
1915
+ - fix typo
1916
+
1917
+ ## 0.85.0
1918
+
1919
+ ### Minor Changes
1920
+
1921
+ - feat: support constructor input for clientFor requests
1922
+
1923
+ ### Patch Changes
1924
+
1925
+ - Updated dependencies
1926
+ - @effect-app/schema@0.77.0
1927
+
1928
+ ## 0.84.0
1929
+
1930
+ ### Minor Changes
1931
+
1932
+ - improve String schemas
1933
+
1934
+ ### Patch Changes
1935
+
1936
+ - Updated dependencies
1937
+ - @effect-app/schema@0.76.0
1938
+
1939
+ ## 0.83.0
1940
+
1941
+ ### Minor Changes
1942
+
1943
+ - fa908e8: move fluent-extensions
1944
+
1945
+ ## 0.82.3
1946
+
1947
+ ### Patch Changes
1948
+
1949
+ - Updated dependencies
1950
+ - @effect-app/schema@0.75.3
1951
+
1952
+ ## 0.82.2
1953
+
1954
+ ### Patch Changes
1955
+
1956
+ - Updated dependencies [086c2b1]
1957
+ - @effect-app/schema@0.75.2
1958
+
1959
+ ## 0.82.1
1960
+
1961
+ ### Patch Changes
1962
+
1963
+ - Updated dependencies
1964
+ - @effect-app/schema@0.75.1
1965
+
1966
+ ## 0.82.0
1967
+
1968
+ ### Minor Changes
1969
+
1970
+ - 68359de: more schema alignment
1971
+
1972
+ ### Patch Changes
1973
+
1974
+ - Updated dependencies [68359de]
1975
+ - @effect-app/schema@0.75.0
1976
+
1977
+ ## 0.81.2
1978
+
1979
+ ### Patch Changes
1980
+
1981
+ - Updated dependencies
1982
+ - @effect-app/schema@0.74.2
1983
+
1984
+ ## 0.81.1
1985
+
1986
+ ### Patch Changes
1987
+
1988
+ - Updated dependencies
1989
+ - @effect-app/schema@0.74.1
1990
+
1991
+ ## 0.81.0
1992
+
1993
+ ### Minor Changes
1994
+
1995
+ - 771d7e6: Fix model name
1996
+
1997
+ ### Patch Changes
1998
+
1999
+ - Updated dependencies [771d7e6]
2000
+ - @effect-app/schema@0.74.0
2001
+
2002
+ ## 0.80.1
2003
+
2004
+ ### Patch Changes
2005
+
2006
+ - Updated dependencies [af19954]
2007
+ - @effect-app/core@0.79.1
2008
+ - @effect-app/schema@0.73.1
2009
+
2010
+ ## 0.80.0
2011
+
2012
+ ### Minor Changes
2013
+
2014
+ - 1f6b9a1: update packages
2015
+
2016
+ ### Patch Changes
2017
+
2018
+ - Updated dependencies [1f6b9a1]
2019
+ - @effect-app/schema@0.73.0
2020
+ - @effect-app/core@0.79.0
2021
+
2022
+ ## 0.79.0
2023
+
2024
+ ### Minor Changes
2025
+
2026
+ - c528c33: initial alignment of Schema with effect/schema
2027
+
2028
+ ### Patch Changes
2029
+
2030
+ - Updated dependencies [c528c33]
2031
+ - @effect-app/schema@0.72.0
2032
+ - @effect-app/core@0.78.0
2033
+
2034
+ ## 0.78.2
2035
+
2036
+ ### Patch Changes
2037
+
2038
+ - d4a6be2: fix ext
2039
+
2040
+ ## 0.78.1
2041
+
2042
+ ### Patch Changes
2043
+
2044
+ - 4c9e60a: add basic fluent extensions for projects without tsplus
2045
+
2046
+ ## 0.78.0
2047
+
2048
+ ### Minor Changes
2049
+
2050
+ - da85f48: cleanup operators. add nonEmpty map variant
2051
+
2052
+ ### Patch Changes
2053
+
2054
+ - ab7eddc: update packages
2055
+ - Updated dependencies [ab7eddc]
2056
+ - Updated dependencies [da85f48]
2057
+ - @effect-app/core@0.77.0
2058
+ - @effect-app/schema@0.71.0
2059
+
2060
+ ## 0.77.3
2061
+
2062
+ ### Patch Changes
2063
+
2064
+ - Updated dependencies [d462c64]
2065
+ - @effect-app/schema@0.70.0
2066
+ - @effect-app/core@0.76.0
2067
+
2068
+ ## 0.77.2
2069
+
2070
+ ### Patch Changes
2071
+
2072
+ - Updated dependencies [26a3bc8]
2073
+ - @effect-app/schema@0.69.2
2074
+
2075
+ ## 0.77.1
2076
+
2077
+ ### Patch Changes
2078
+
2079
+ - Updated dependencies [9efeed84]
2080
+ - @effect-app/core@0.75.1
2081
+ - @effect-app/schema@0.69.1
2082
+
2083
+ ## 0.77.0
2084
+
2085
+ ### Minor Changes
2086
+
2087
+ - 88f5695c: revert schema classes double as tag
2088
+
2089
+ ### Patch Changes
2090
+
2091
+ - Updated dependencies [88f5695c]
2092
+ - @effect-app/schema@0.69.0
2093
+ - @effect-app/core@0.75.0
2094
+
2095
+ ## 0.76.0
2096
+
2097
+ ### Minor Changes
2098
+
2099
+ - 46719cec: feat: schema classes double as Tag
2100
+
2101
+ ### Patch Changes
2102
+
2103
+ - Updated dependencies [46719cec]
2104
+ - @effect-app/schema@0.68.0
2105
+ - @effect-app/core@0.74.0
2106
+
2107
+ ## 0.75.2
2108
+
2109
+ ### Patch Changes
2110
+
2111
+ - Updated dependencies [5813c6b2]
2112
+ - @effect-app/core@0.73.1
2113
+ - @effect-app/schema@0.67.2
2114
+
2115
+ ## 0.75.1
2116
+
2117
+ ### Patch Changes
2118
+
2119
+ - a644e7b5: fix methods exports
2120
+ - Updated dependencies [a644e7b5]
2121
+ - @effect-app/schema@0.67.1
2122
+
2123
+ ## 0.75.0
2124
+
2125
+ ### Minor Changes
2126
+
2127
+ - 6c180253: cleanup
2128
+
2129
+ ### Patch Changes
2130
+
2131
+ - Updated dependencies [6c180253]
2132
+ - @effect-app/schema@0.67.0
2133
+ - @effect-app/core@0.73.0
2134
+
2135
+ ## 0.74.4
2136
+
2137
+ ### Patch Changes
2138
+
2139
+ - Updated dependencies [f436ce54]
2140
+ - @effect-app/schema@0.66.0
2141
+
2142
+ ## 0.74.3
2143
+
2144
+ ### Patch Changes
2145
+
2146
+ - 7ff1f6f9: update packages
2147
+ - 04f6bafa: update packages
2148
+ - Updated dependencies [7ff1f6f9]
2149
+ - Updated dependencies [04f6bafa]
2150
+ - @effect-app/core@0.72.1
2151
+ - @effect-app/schema@0.65.3
2152
+
2153
+ ## 0.74.2
2154
+
2155
+ ### Patch Changes
2156
+
2157
+ - Updated dependencies [07c0dbfc]
2158
+ - @effect-app/schema@0.65.2
2159
+
2160
+ ## 0.74.1
2161
+
2162
+ ### Patch Changes
2163
+
2164
+ - Updated dependencies [a7a9f51f]
2165
+ - @effect-app/schema@0.65.1
2166
+
2167
+ ## 0.74.0
2168
+
2169
+ ### Minor Changes
2170
+
2171
+ - 0a4bfbc7: update packages
2172
+
2173
+ ### Patch Changes
2174
+
2175
+ - Updated dependencies [0a4bfbc7]
2176
+ - @effect-app/schema@0.65.0
2177
+ - @effect-app/core@0.72.0
2178
+
2179
+ ## 0.73.5
2180
+
2181
+ ### Patch Changes
2182
+
2183
+ - 56583d9b: align span names
2184
+ - Updated dependencies [baf5a2b7]
2185
+ - @effect-app/core@0.71.5
2186
+ - @effect-app/schema@0.64.5
2187
+
2188
+ ## 0.73.4
2189
+
2190
+ ### Patch Changes
2191
+
2192
+ - update packages
2193
+ - Updated dependencies
2194
+ - @effect-app/core@0.71.4
2195
+ - @effect-app/schema@0.64.4
2196
+
2197
+ ## 0.73.3
2198
+
2199
+ ### Patch Changes
2200
+
2201
+ - Updated dependencies [99205b44]
2202
+ - @effect-app/core@0.71.3
2203
+ - @effect-app/schema@0.64.3
2204
+
2205
+ ## 0.73.2
2206
+
2207
+ ### Patch Changes
2208
+
2209
+ - 002cdb31: update packages
2210
+ - Updated dependencies [002cdb31]
2211
+ - @effect-app/core@0.71.2
2212
+ - @effect-app/schema@0.64.2
2213
+
2214
+ ## 0.73.1
2215
+
2216
+ ### Patch Changes
2217
+
2218
+ - Updated dependencies [868919c8]
2219
+ - @effect-app/schema@0.64.1
2220
+ - @effect-app/core@0.71.1
2221
+
2222
+ ## 0.73.0
2223
+
2224
+ ### Minor Changes
2225
+
2226
+ - 90af6a41: update packages
2227
+
2228
+ ### Patch Changes
2229
+
2230
+ - Updated dependencies [90af6a41]
2231
+ - @effect-app/schema@0.64.0
2232
+ - @effect-app/core@0.71.0
2233
+
2234
+ ## 0.72.9
2235
+
2236
+ ### Patch Changes
2237
+
2238
+ - de419614: enhance errors
2239
+
2240
+ ## 0.72.8
2241
+
2242
+ ### Patch Changes
2243
+
2244
+ - ed346253: Improve NotLoggedInError
2245
+
2246
+ ## 0.72.7
2247
+
2248
+ ### Patch Changes
2249
+
2250
+ - ff54e102: update packages
2251
+ - Updated dependencies [ff54e102]
2252
+ - @effect-app/core@0.70.2
2253
+ - @effect-app/schema@0.63.2
2254
+
2255
+ ## 0.72.6
2256
+
2257
+ ### Patch Changes
2258
+
2259
+ - ef626697: improve client span
2260
+
2261
+ ## 0.72.5
2262
+
2263
+ ### Patch Changes
2264
+
2265
+ - 60615760: cleanup
2266
+
2267
+ ## 0.72.4
2268
+
2269
+ ### Patch Changes
2270
+
2271
+ - fix id
2272
+
2273
+ ## 0.72.3
2274
+
2275
+ ### Patch Changes
2276
+
2277
+ - f03b6b48: fix
2278
+
2279
+ ## 0.72.2
2280
+
2281
+ ### Patch Changes
2282
+
2283
+ - Updated dependencies [3f0dba21]
2284
+ - @effect-app/core@0.70.1
2285
+ - @effect-app/schema@0.63.1
2286
+
2287
+ ## 0.72.1
2288
+
2289
+ ### Patch Changes
2290
+
2291
+ - 8b0e01b4: workaround new Ref variance
2292
+
2293
+ ## 0.72.0
2294
+
2295
+ ### Minor Changes
2296
+
2297
+ - 283ebbe7: update packages
2298
+
2299
+ ### Patch Changes
2300
+
2301
+ - Updated dependencies [283ebbe7]
2302
+ - @effect-app/schema@0.63.0
2303
+ - @effect-app/core@0.70.0
2304
+
2305
+ ## 0.71.1
2306
+
2307
+ ### Patch Changes
2308
+
2309
+ - d1a6193b: feat: support span across client and api
2310
+ - Updated dependencies [d1a6193b]
2311
+ - @effect-app/core@0.69.1
2312
+ - @effect-app/schema@0.62.5
2313
+
2314
+ ## 0.71.0
2315
+
2316
+ ### Minor Changes
2317
+
2318
+ - 40a6c3b6: update packages
2319
+
2320
+ ### Patch Changes
2321
+
2322
+ - Updated dependencies [40a6c3b6]
2323
+ - @effect-app/core@0.69.0
2324
+ - @effect-app/schema@0.62.4
2325
+
2326
+ ## 0.70.4
2327
+
2328
+ ### Patch Changes
2329
+
2330
+ - housekeeping: update packages
2331
+ - Updated dependencies
2332
+ - @effect-app/core@0.68.3
2333
+ - @effect-app/schema@0.62.3
2334
+
2335
+ ## 0.70.3
2336
+
2337
+ ### Patch Changes
2338
+
2339
+ - e4185126: unification workaround
2340
+
2341
+ ## 0.70.2
2342
+
2343
+ ### Patch Changes
2344
+
2345
+ - 263a56b9: update packages
2346
+ - Updated dependencies [263a56b9]
2347
+ - @effect-app/core@0.68.2
2348
+ - @effect-app/schema@0.62.2
2349
+
2350
+ ## 0.70.1
2351
+
2352
+ ### Patch Changes
2353
+
2354
+ - aa3c98d1: update packages
2355
+ - Updated dependencies [aa3c98d1]
2356
+ - @effect-app/schema@0.62.1
2357
+ - @effect-app/core@0.68.1
2358
+
2359
+ ## 0.70.0
2360
+
2361
+ ### Minor Changes
2362
+
2363
+ - update packages
2364
+
2365
+ ### Patch Changes
2366
+
2367
+ - Updated dependencies
2368
+ - @effect-app/core@0.68.0
2369
+ - @effect-app/schema@0.62.0
2370
+
2371
+ ## 0.69.10
2372
+
2373
+ ### Patch Changes
2374
+
2375
+ - Updated dependencies [9c347b64]
2376
+ - @effect-app/schema@0.61.1
2377
+
2378
+ ## 0.69.9
2379
+
2380
+ ### Patch Changes
2381
+
2382
+ - Updated dependencies [fdd19b0b]
2383
+ - @effect-app/schema@0.61.0
2384
+
2385
+ ## 0.69.8
2386
+
2387
+ ### Patch Changes
2388
+
2389
+ - d7dd36d4: update packages
2390
+ - Updated dependencies [d7dd36d4]
2391
+ - @effect-app/schema@0.60.5
2392
+ - @effect-app/core@0.67.5
2393
+
2394
+ ## 0.69.7
2395
+
2396
+ ### Patch Changes
2397
+
2398
+ - 780a6718: update packages
2399
+ - Updated dependencies [780a6718]
2400
+ - @effect-app/core@0.67.4
2401
+ - @effect-app/schema@0.60.4
2402
+
2403
+ ## 0.69.6
2404
+
2405
+ ### Patch Changes
2406
+
2407
+ - 57f506e7: feat: add demandJson for HttpClient
2408
+
2409
+ ## 0.69.5
2410
+
2411
+ ### Patch Changes
2412
+
2413
+ - 8c0b8270: improve json parse error
2414
+
2415
+ ## 0.69.4
2416
+
2417
+ ### Patch Changes
2418
+
2419
+ - 84e54d54: Update packages
2420
+ - Updated dependencies [84e54d54]
2421
+ - @effect-app/core@0.67.3
2422
+ - @effect-app/schema@0.60.3
2423
+
2424
+ ## 0.69.3
2425
+
2426
+ ### Patch Changes
2427
+
2428
+ - 696a525e: update packages
2429
+ - Updated dependencies [696a525e]
2430
+ - @effect-app/schema@0.60.2
2431
+ - @effect-app/core@0.67.2
2432
+
2433
+ ## 0.69.2
2434
+
2435
+ ### Patch Changes
2436
+
2437
+ - f8cb0efd: schemaJsonBody
2438
+
2439
+ ## 0.69.1
2440
+
2441
+ ### Patch Changes
2442
+
2443
+ - Updated dependencies
2444
+ - @effect-app/core@0.67.1
2445
+ - @effect-app/schema@0.60.1
2446
+
2447
+ ## 0.69.0
2448
+
2449
+ ### Minor Changes
2450
+
2451
+ - housekeeping: update packages
2452
+
2453
+ ### Patch Changes
2454
+
2455
+ - Updated dependencies
2456
+ - @effect-app/schema@0.60.0
2457
+ - @effect-app/core@0.67.0
2458
+
2459
+ ## 0.68.3
2460
+
2461
+ ### Patch Changes
2462
+
2463
+ - blurg
2464
+
2465
+ ## 0.68.2
2466
+
2467
+ ### Patch Changes
2468
+
2469
+ - 7118bf61: fix error type
2470
+
2471
+ ## 0.68.1
2472
+
2473
+ ### Patch Changes
2474
+
2475
+ - Updated dependencies [56a4418f]
2476
+ - @effect-app/schema@0.59.0
2477
+
2478
+ ## 0.68.0
2479
+
2480
+ ### Minor Changes
2481
+
2482
+ - 271e2c7a: yieldable errors
2483
+
2484
+ ### Patch Changes
2485
+
2486
+ - Updated dependencies [271e2c7a]
2487
+ - @effect-app/schema@0.58.0
2488
+ - @effect-app/core@0.66.0
2489
+
2490
+ ## 0.67.10
2491
+
2492
+ ### Patch Changes
2493
+
2494
+ - Updated dependencies [89bae16e]
2495
+ - @effect-app/core@0.65.5
2496
+ - @effect-app/schema@0.57.10
2497
+
2498
+ ## 0.67.9
2499
+
2500
+ ### Patch Changes
2501
+
2502
+ - 838eeb10: update packages
2503
+ - Updated dependencies [838eeb10]
2504
+ - @effect-app/schema@0.57.9
2505
+
2506
+ ## 0.67.8
2507
+
2508
+ ### Patch Changes
2509
+
2510
+ - Updated dependencies [0b279a80]
2511
+ - @effect-app/core@0.65.4
2512
+ - @effect-app/schema@0.57.8
2513
+
2514
+ ## 0.67.7
2515
+
2516
+ ### Patch Changes
2517
+
2518
+ - 50c7fe31: fix typo
2519
+
2520
+ ## 0.67.6
2521
+
2522
+ ### Patch Changes
2523
+
2524
+ - 7fc3cfbe: improve client api
2525
+
2526
+ ## 0.67.5
2527
+
2528
+ ### Patch Changes
2529
+
2530
+ - 26087368: update platform extensions
2531
+ - Updated dependencies [26087368]
2532
+ - @effect-app/core@0.65.3
2533
+ - @effect-app/schema@0.57.7
2534
+
2535
+ ## 0.67.4
2536
+
2537
+ ### Patch Changes
2538
+
2539
+ - Updated dependencies
2540
+ - @effect-app/core@0.65.2
2541
+ - @effect-app/schema@0.57.6
2542
+
2543
+ ## 0.67.3
2544
+
2545
+ ### Patch Changes
2546
+
2547
+ - Updated dependencies
2548
+ - @effect-app/core@0.65.1
2549
+ - @effect-app/schema@0.57.5
2550
+
2551
+ ## 0.67.2
2552
+
2553
+ ### Patch Changes
2554
+
2555
+ - fix HttpClient global
2556
+
2557
+ ## 0.67.1
2558
+
2559
+ ### Patch Changes
2560
+
2561
+ - 924817d9: fix type
2562
+
2563
+ ## 0.67.0
2564
+
2565
+ ### Minor Changes
2566
+
2567
+ - 51b546c5: feat: Convert clientFor to use @effect/platform HttpClient
2568
+
2569
+ ### Patch Changes
2570
+
2571
+ - Updated dependencies [51b546c5]
2572
+ - @effect-app/core@0.65.0
2573
+ - @effect-app/schema@0.57.4
2574
+
2575
+ ## 0.66.0
2576
+
2577
+ ### Minor Changes
2578
+
2579
+ - 5f3ae060: feat: add HttpClient from @effect/platform
2580
+
2581
+ ### Patch Changes
2582
+
2583
+ - Updated dependencies [5f3ae060]
2584
+ - @effect-app/core@0.64.0
2585
+ - @effect-app/schema@0.57.3
2586
+
2587
+ ## 0.65.2
2588
+
2589
+ ### Patch Changes
2590
+
2591
+ - 87e29b7d: export httpclient
2592
+ - Updated dependencies [87e29b7d]
2593
+ - @effect-app/core@0.63.2
2594
+ - @effect-app/schema@0.57.2
2595
+
2596
+ ## 0.65.1
2597
+
2598
+ ### Patch Changes
2599
+
2600
+ - fix tsplus.config for pnpm
2601
+ - Updated dependencies
2602
+ - @effect-app/core@0.63.1
2603
+ - @effect-app/schema@0.57.1
2604
+
2605
+ ## 0.65.0
2606
+
2607
+ ### Minor Changes
2608
+
2609
+ - update packages
2610
+
2611
+ ### Patch Changes
2612
+
2613
+ - Updated dependencies
2614
+ - @effect-app/schema@0.57.0
2615
+ - @effect-app/core@0.63.0
2616
+
2617
+ ## 0.64.0
2618
+
2619
+ ### Minor Changes
2620
+
2621
+ - update packages, improve error reporting
2622
+
2623
+ ### Patch Changes
2624
+
2625
+ - Updated dependencies
2626
+ - @effect-app/core@0.62.0
2627
+ - @effect-app/schema@0.56.0
2628
+
2629
+ ## 0.63.1
2630
+
2631
+ ### Patch Changes
2632
+
2633
+ - add date extensions
2634
+
2635
+ ## 0.63.0
2636
+
2637
+ ### Minor Changes
2638
+
2639
+ - add match and update packages
2640
+
2641
+ ### Patch Changes
2642
+
2643
+ - Updated dependencies
2644
+ - @effect-app/schema@0.55.0
2645
+ - @effect-app/core@0.61.0
2646
+
2647
+ ## 0.62.0
2648
+
2649
+ ### Minor Changes
2650
+
2651
+ - update packages
2652
+
2653
+ ### Patch Changes
2654
+
2655
+ - Updated dependencies
2656
+ - @effect-app/schema@0.54.0
2657
+ - @effect-app/core@0.60.0
2658
+
2659
+ ## 0.61.0
2660
+
2661
+ ### Minor Changes
2662
+
2663
+ - housekeeping: update packages
2664
+
2665
+ ### Patch Changes
2666
+
2667
+ - Updated dependencies
2668
+ - @effect-app/schema@0.53.0
2669
+ - @effect-app/core@0.59.0
2670
+
2671
+ ## 0.60.4
2672
+
2673
+ ### Patch Changes
2674
+
2675
+ - Updated dependencies
2676
+ - @effect-app/core@0.58.4
2677
+ - @effect-app/schema@0.52.4
2678
+
2679
+ ## 0.60.3
2680
+
2681
+ ### Patch Changes
2682
+
2683
+ - Updated dependencies [6b002041]
2684
+ - Updated dependencies
2685
+ - @effect-app/core@0.58.3
2686
+ - @effect-app/schema@0.52.3
2687
+
2688
+ ## 0.60.2
2689
+
2690
+ ### Patch Changes
2691
+
2692
+ - Updated dependencies
2693
+ - @effect-app/core@0.58.2
2694
+ - @effect-app/schema@0.52.2
2695
+
2696
+ ## 0.60.1
2697
+
2698
+ ### Patch Changes
2699
+
2700
+ - improve tsc parsing performance 3x
2701
+ - Updated dependencies
2702
+ - @effect-app/core@0.58.1
2703
+ - @effect-app/schema@0.52.1
2704
+
2705
+ ## 0.60.0
2706
+
2707
+ ### Minor Changes
2708
+
2709
+ - 4d2e68df: Switch to effect meta package
2710
+
2711
+ ### Patch Changes
2712
+
2713
+ - Updated dependencies [4d2e68df]
2714
+ - @effect-app/schema@0.52.0
2715
+ - @effect-app/core@0.58.0
2716
+
2717
+ ## 0.59.7
2718
+
2719
+ ### Patch Changes
2720
+
2721
+ - fix tagclass type
2722
+
2723
+ ## 0.59.6
2724
+
2725
+ ### Patch Changes
2726
+
2727
+ - fix tagclass
2728
+
2729
+ ## 0.59.5
2730
+
2731
+ ### Patch Changes
2732
+
2733
+ - Updated dependencies
2734
+ - @effect-app/core@0.57.5
2735
+ - @effect-app/schema@0.51.5
2736
+
2737
+ ## 0.59.4
2738
+
2739
+ ### Patch Changes
2740
+
2741
+ - Updated dependencies
2742
+ - @effect-app/core@0.57.4
2743
+ - @effect-app/schema@0.51.4
2744
+
2745
+ ## 0.59.3
2746
+
2747
+ ### Patch Changes
2748
+
2749
+ - Updated dependencies
2750
+ - @effect-app/core@0.57.3
2751
+ - @effect-app/schema@0.51.3
2752
+
2753
+ ## 0.59.2
2754
+
2755
+ ### Patch Changes
2756
+
2757
+ - Updated dependencies
2758
+ - @effect-app/core@0.57.2
2759
+ - @effect-app/schema@0.51.2
2760
+
2761
+ ## 0.59.1
2762
+
2763
+ ### Patch Changes
2764
+
2765
+ - Updated dependencies
2766
+ - @effect-app/core@0.57.1
2767
+ - @effect-app/schema@0.51.1
2768
+
2769
+ ## 0.59.0
2770
+
2771
+ ### Minor Changes
2772
+
2773
+ - c80b9e7a: Updated to latest Effect
2774
+
2775
+ ### Patch Changes
2776
+
2777
+ - Updated dependencies [c80b9e7a]
2778
+ - @effect-app/schema@0.51.0
2779
+ - @effect-app/core@0.57.0
2780
+
2781
+ ## 0.58.2
2782
+
2783
+ ### Patch Changes
2784
+
2785
+ - fix type of E variants of clientFor
2786
+
2787
+ ## 0.58.1
2788
+
2789
+ ### Patch Changes
2790
+
2791
+ - update packages
2792
+ - Updated dependencies
2793
+ - @effect-app/core@0.56.1
2794
+ - @effect-app/schema@0.50.1
2795
+
2796
+ ## 0.58.0
2797
+
2798
+ ### Minor Changes
2799
+
2800
+ - housekeeping: update packages
2801
+
2802
+ ### Patch Changes
2803
+
2804
+ - Updated dependencies
2805
+ - @effect-app/schema@0.50.0
2806
+ - @effect-app/core@0.56.0
2807
+
2808
+ ## 0.57.0
2809
+
2810
+ ### Minor Changes
2811
+
2812
+ - aa9c3126: using the new faker-js package instead of the old cursed one
2813
+
2814
+ ## 0.56.1
2815
+
2816
+ ### Patch Changes
2817
+
2818
+ - e4609777: Use distributive omit
2819
+
2820
+ ## 0.56.0
2821
+
2822
+ ### Minor Changes
2823
+
2824
+ - update packages
2825
+
2826
+ ### Patch Changes
2827
+
2828
+ - Updated dependencies
2829
+ - @effect-app/core@0.55.0
2830
+ - @effect-app/schema@0.49.0
2831
+
2832
+ ## 0.55.2
2833
+
2834
+ ### Patch Changes
2835
+
2836
+ - add pick and omit object extensions
2837
+
2838
+ ## 0.55.1
2839
+
2840
+ ### Patch Changes
2841
+
2842
+ - Update packages
2843
+ - Updated dependencies
2844
+ - @effect-app/schema@0.48.1
2845
+ - @effect-app/core@0.54.1
2846
+
2847
+ ## 0.55.0
2848
+
2849
+ ### Minor Changes
2850
+
2851
+ - update packages
2852
+
2853
+ ### Patch Changes
2854
+
2855
+ - Updated dependencies
2856
+ - @effect-app/core@0.54.0
2857
+ - @effect-app/schema@0.48.0
2858
+
2859
+ ## 0.54.0
2860
+
2861
+ ### Minor Changes
2862
+
2863
+ - Cleanup legacy cache
2864
+
2865
+ ## 0.53.2
2866
+
2867
+ ### Patch Changes
2868
+
2869
+ - EffectCache
2870
+
2871
+ ## 0.53.1
2872
+
2873
+ ### Patch Changes
2874
+
2875
+ - Add exports
2876
+ - Updated dependencies
2877
+ - @effect-app/core@0.53.1
2878
+ - @effect-app/schema@0.47.1
2879
+
2880
+ ## 0.53.0
2881
+
2882
+ ### Minor Changes
2883
+
2884
+ - Update packages
2885
+
2886
+ ### Patch Changes
2887
+
2888
+ - Updated dependencies
2889
+ - @effect-app/core@0.53.0
2890
+ - @effect-app/schema@0.47.0
2891
+
2892
+ ## 0.52.0
2893
+
2894
+ ### Minor Changes
2895
+
2896
+ - Update packages
2897
+
2898
+ ### Patch Changes
2899
+
2900
+ - Updated dependencies
2901
+ - @effect-app/core@0.52.0
2902
+ - @effect-app/schema@0.46.0
2903
+
2904
+ ## 0.51.0
2905
+
2906
+ ### Minor Changes
2907
+
2908
+ - Update packages
2909
+
2910
+ ### Patch Changes
2911
+
2912
+ - Updated dependencies
2913
+ - @effect-app/schema@0.45.0
2914
+ - @effect-app/core@0.51.0
2915
+
2916
+ ## 0.50.1
2917
+
2918
+ ### Patch Changes
2919
+
2920
+ - c78a54ff: Enhance TagClass
2921
+
2922
+ ## 0.50.0
2923
+
2924
+ ### Minor Changes
2925
+
2926
+ - update ids
2927
+
2928
+ ## 0.49.1
2929
+
2930
+ ### Patch Changes
2931
+
2932
+ - Add brandedStringId
2933
+
2934
+ ## 0.49.0
2935
+
2936
+ ### Minor Changes
2937
+
2938
+ - a
2939
+
2940
+ ### Patch Changes
2941
+
2942
+ - Updated dependencies
2943
+ - Updated dependencies
2944
+ - @effect-app/schema@0.44.0
2945
+ - @effect-app/core@0.50.0
2946
+
2947
+ ## 0.48.3
2948
+
2949
+ ### Patch Changes
2950
+
2951
+ - Updated dependencies
2952
+ - @effect-app/core@0.49.1
2953
+ - @effect-app/schema@0.43.3
2954
+
2955
+ ## 0.48.2
2956
+
2957
+ ### Patch Changes
2958
+
2959
+ - Updated dependencies
2960
+ - @effect-app/schema@0.43.2
2961
+
2962
+ ## 0.48.1
2963
+
2964
+ ### Patch Changes
2965
+
2966
+ - Updated dependencies
2967
+ - @effect-app/schema@0.43.1
2968
+
2969
+ ## 0.48.0
2970
+
2971
+ ### Minor Changes
2972
+
2973
+ - Compiler test
2974
+
2975
+ ### Patch Changes
2976
+
2977
+ - Updated dependencies
2978
+ - @effect-app/core@0.49.0
2979
+ - @effect-app/schema@0.43.0
2980
+
2981
+ ## 0.47.0
2982
+
2983
+ ### Minor Changes
2984
+
2985
+ - Update depdendencies
2986
+
2987
+ ### Patch Changes
2988
+
2989
+ - Updated dependencies
2990
+ - @effect-app/schema@0.42.0
2991
+ - @effect-app/core@0.48.0
2992
+
2993
+ ## 0.46.2
2994
+
2995
+ ### Patch Changes
2996
+
2997
+ - Updated dependencies
2998
+ - @effect-app/schema@0.41.2
2999
+
3000
+ ## 0.46.1
3001
+
3002
+ ### Patch Changes
3003
+
3004
+ - Updated dependencies
3005
+ - @effect-app/schema@0.41.1
3006
+
3007
+ ## 0.46.0
3008
+
3009
+ ### Minor Changes
3010
+
3011
+ - Cleanup schema ext location
3012
+
3013
+ ### Patch Changes
3014
+
3015
+ - Updated dependencies
3016
+ - @effect-app/schema@0.41.0
3017
+
3018
+ ## 0.45.0
3019
+
3020
+ ### Minor Changes
3021
+
3022
+ - Improve codegen
3023
+
3024
+ ### Patch Changes
3025
+
3026
+ - Updated dependencies
3027
+ - @effect-app/schema@0.40.0
3028
+
3029
+ ## 0.44.12
3030
+
3031
+ ### Patch Changes
3032
+
3033
+ - fix rest
3034
+ - Updated dependencies
3035
+ - @effect-app/schema@0.39.12
3036
+
3037
+ ## 0.44.11
3038
+
3039
+ ### Patch Changes
3040
+
3041
+ - Updated dependencies
3042
+ - @effect-app/schema@0.39.11
3043
+
3044
+ ## 0.44.10
3045
+
3046
+ ### Patch Changes
3047
+
3048
+ - Updated dependencies
3049
+ - @effect-app/schema@0.39.10
3050
+
3051
+ ## 0.44.9
3052
+
3053
+ ### Patch Changes
3054
+
3055
+ - feat: property extensions
3056
+ - Updated dependencies
3057
+ - @effect-app/schema@0.39.9
3058
+
3059
+ ## 0.44.8
3060
+
3061
+ ### Patch Changes
3062
+
3063
+ - Updated dependencies
3064
+ - @effect-app/schema@0.39.8
3065
+
3066
+ ## 0.44.7
3067
+
3068
+ ### Patch Changes
3069
+
3070
+ - Updated dependencies
3071
+ - @effect-app/schema@0.39.7
3072
+
3073
+ ## 0.44.6
3074
+
3075
+ ### Patch Changes
3076
+
3077
+ - Updated dependencies
3078
+ - @effect-app/schema@0.39.6
3079
+
3080
+ ## 0.44.5
3081
+
3082
+ ### Patch Changes
3083
+
3084
+ - fix
3085
+ - Updated dependencies
3086
+ - @effect-app/schema@0.39.5
3087
+
3088
+ ## 0.44.4
3089
+
3090
+ ### Patch Changes
3091
+
3092
+ - fix global
3093
+ - Updated dependencies
3094
+ - @effect-app/core@0.47.1
3095
+ - @effect-app/schema@0.39.4
3096
+
3097
+ ## 0.44.3
3098
+
3099
+ ### Patch Changes
3100
+
3101
+ - Improve schema prop api
3102
+ - Updated dependencies
3103
+ - @effect-app/schema@0.39.3
3104
+
3105
+ ## 0.44.2
3106
+
3107
+ ### Patch Changes
3108
+
3109
+ - Improve withDefadult
3110
+ - Updated dependencies
3111
+ - @effect-app/schema@0.39.2
3112
+
3113
+ ## 0.44.1
3114
+
3115
+ ### Patch Changes
3116
+
3117
+ - fix withDefault
3118
+ - Updated dependencies
3119
+ - @effect-app/schema@0.39.1
3120
+
3121
+ ## 0.44.0
3122
+
3123
+ ### Minor Changes
3124
+
3125
+ - update dependencies
3126
+
3127
+ ### Patch Changes
3128
+
3129
+ - Updated dependencies
3130
+ - @effect-app/schema@0.39.0
3131
+ - @effect-app/core@0.47.0
3132
+
3133
+ ## 0.43.0
3134
+
3135
+ ### Minor Changes
3136
+
3137
+ - Improve Schema withDefault
3138
+
3139
+ ## 0.42.0
3140
+
3141
+ ### Minor Changes
3142
+
3143
+ - update dependencies
3144
+
3145
+ ### Patch Changes
3146
+
3147
+ - Updated dependencies
3148
+ - @effect-app/core@0.46.0
3149
+ - @effect-app/schema@0.38.0
3150
+
3151
+ ## 0.41.0
3152
+
3153
+ ### Minor Changes
3154
+
3155
+ - Update dependencies
3156
+
3157
+ ### Patch Changes
3158
+
3159
+ - Updated dependencies
3160
+ - @effect-app/schema@0.37.0
3161
+ - @effect-app/core@0.45.0
3162
+
3163
+ ## 0.40.1
3164
+
3165
+ ### Patch Changes
3166
+
3167
+ - Updated dependencies
3168
+ - @effect-app/core@0.44.0
3169
+ - @effect-app/schema@0.36.1
3170
+
3171
+ ## 0.40.0
3172
+
3173
+ ### Minor Changes
3174
+
3175
+ - support optional constructors for schema with none or only optional input.
3176
+
3177
+ ### Patch Changes
3178
+
3179
+ - Updated dependencies
3180
+ - @effect-app/schema@0.36.0
3181
+
3182
+ ## 0.39.0
3183
+
3184
+ ### Minor Changes
3185
+
3186
+ - update packages
3187
+
3188
+ ### Patch Changes
3189
+
3190
+ - Updated dependencies
3191
+ - @effect-app/schema@0.35.0
3192
+ - @effect-app/core@0.43.0
3193
+
3194
+ ## 0.38.0
3195
+
3196
+ ### Minor Changes
3197
+
3198
+ - update packages and cleanup
3199
+
3200
+ ### Patch Changes
3201
+
3202
+ - Updated dependencies
3203
+ - @effect-app/schema@0.34.0
3204
+ - @effect-app/core@0.42.0
3205
+
3206
+ ## 0.37.0
3207
+
3208
+ ### Minor Changes
3209
+
3210
+ - Update packages
3211
+
3212
+ ### Patch Changes
3213
+
3214
+ - Updated dependencies
3215
+ - @effect-app/schema@0.33.0
3216
+ - @effect-app/core@0.41.0
3217
+
3218
+ ## 0.36.1
3219
+
3220
+ ### Patch Changes
3221
+
3222
+ - fix error channel of allLowerFirst
3223
+
3224
+ ## 0.36.0
3225
+
3226
+ ### Minor Changes
3227
+
3228
+ - AllLowerFirst should be Par
3229
+
3230
+ ## 0.35.0
3231
+
3232
+ ### Minor Changes
3233
+
3234
+ - update dependencies
3235
+
3236
+ ### Patch Changes
3237
+
3238
+ - Updated dependencies
3239
+ - @effect-app/core@0.40.0
3240
+ - @effect-app/schema@0.32.0
3241
+
3242
+ ## 0.34.1
3243
+
3244
+ ### Patch Changes
3245
+
3246
+ - Updated dependencies
3247
+ - @effect-app/core@0.39.1
3248
+ - @effect-app/schema@0.31.1
3249
+
3250
+ ## 0.34.0
3251
+
3252
+ ### Minor Changes
3253
+
3254
+ - update packages
3255
+
3256
+ ### Patch Changes
3257
+
3258
+ - Updated dependencies
3259
+ - Updated dependencies [ba4849c9]
3260
+ - @effect-app/schema@0.31.0
3261
+ - @effect-app/core@0.39.0
3262
+
3263
+ ## 0.33.4
3264
+
3265
+ ### Patch Changes
3266
+
3267
+ - Update packages
3268
+ - Updated dependencies
3269
+ - @effect-app/schema@0.30.2
3270
+ - @effect-app/core@0.38.1
3271
+
3272
+ ## 0.33.3
3273
+
3274
+ ### Patch Changes
3275
+
3276
+ - fup
3277
+
3278
+ ## 0.33.2
3279
+
3280
+ ### Patch Changes
3281
+
3282
+ - Updated dependencies
3283
+ - @effect-app/schema@0.30.1
3284
+
3285
+ ## 0.33.1
3286
+
3287
+ ### Patch Changes
3288
+
3289
+ - fup
3290
+
3291
+ ## 0.33.0
3292
+
3293
+ ### Minor Changes
3294
+
3295
+ - improve min/max/range for numbers.
3296
+
3297
+ ### Patch Changes
3298
+
3299
+ - Updated dependencies
3300
+ - @effect-app/schema@0.30.0
3301
+
3302
+ ## 0.32.0
3303
+
3304
+ ### Minor Changes
3305
+
3306
+ - Properly identify number schemas
3307
+
3308
+ ## 0.31.0
3309
+
3310
+ ### Minor Changes
3311
+
3312
+ - Update packages
3313
+ - feat(form): number vs string
3314
+
3315
+ ### Patch Changes
3316
+
3317
+ - Updated dependencies
3318
+ - @effect-app/schema@0.29.0
3319
+ - @effect-app/core@0.38.0
3320
+
3321
+ ## 0.30.2
3322
+
3323
+ ### Patch Changes
3324
+
3325
+ - FUP
3326
+
3327
+ ## 0.30.1
3328
+
3329
+ ### Patch Changes
3330
+
3331
+ - rename: servicesOrEffects to allLowerFirst
3332
+
3333
+ ## 0.30.0
3334
+
3335
+ ### Minor Changes
3336
+
3337
+ - Update to latest effect
3338
+
3339
+ ### Patch Changes
3340
+
3341
+ - Updated dependencies
3342
+ - @effect-app/schema@0.28.0
3343
+ - @effect-app/core@0.37.0
3344
+
3345
+ ## 0.29.2
3346
+
3347
+ ### Patch Changes
3348
+
3349
+ - Updated dependencies
3350
+ - @effect-app/core@0.36.1
3351
+ - @effect-app/schema@0.27.1
3352
+
3353
+ ## 0.29.1
3354
+
3355
+ ### Patch Changes
3356
+
3357
+ - Extend Services extensions
3358
+
3359
+ ## 0.29.0
3360
+
3361
+ ### Minor Changes
3362
+
3363
+ - update packages
3364
+
3365
+ ### Patch Changes
3366
+
3367
+ - Updated dependencies
3368
+ - @effect-app/schema@0.27.0
3369
+ - @effect-app/core@0.36.0
3370
+
3371
+ ## 0.28.0
3372
+
3373
+ ### Minor Changes
3374
+
3375
+ - Update packages
3376
+
3377
+ ### Patch Changes
3378
+
3379
+ - Updated dependencies
3380
+ - @effect-app/schema@0.26.0
3381
+ - @effect-app/core@0.35.0
3382
+
3383
+ ## 0.27.1
3384
+
3385
+ ### Patch Changes
3386
+
3387
+ - fix dep
3388
+ - Updated dependencies
3389
+ - @effect-app/schema@0.25.1
3390
+
3391
+ ## 0.27.0
3392
+
3393
+ ### Minor Changes
3394
+
3395
+ - update packages
3396
+
3397
+ ### Patch Changes
3398
+
3399
+ - Updated dependencies
3400
+ - @effect-app/schema@0.25.0
3401
+ - @effect-app/core@0.34.0
3402
+
3403
+ ## 0.26.2
3404
+
3405
+ ### Patch Changes
3406
+
3407
+ - fix clientFor E
3408
+
3409
+ ## 0.26.1
3410
+
3411
+ ### Patch Changes
3412
+
3413
+ - fix
3414
+
3415
+ ## 0.26.0
3416
+
3417
+ ### Minor Changes
3418
+
3419
+ - Update packages, add support for class features to schema and optic
3420
+
3421
+ ### Patch Changes
3422
+
3423
+ - Updated dependencies
3424
+ - @effect-app/core@0.33.0
3425
+ - @effect-app/schema@0.24.0
3426
+
3427
+ ## 0.25.3
3428
+
3429
+ ### Patch Changes
3430
+
3431
+ - Updated dependencies
3432
+ - @effect-app/core@0.32.3
3433
+ - @effect-app/schema@0.23.3
3434
+
3435
+ ## 0.25.2
3436
+
3437
+ ### Patch Changes
3438
+
3439
+ - Updated dependencies
3440
+ - @effect-app/core@0.32.2
3441
+ - @effect-app/schema@0.23.2
3442
+
3443
+ ## 0.25.1
3444
+
3445
+ ### Patch Changes
3446
+
3447
+ - Cleanup
3448
+
3449
+ ## 0.25.0
3450
+
3451
+ ### Minor Changes
3452
+
3453
+ - Improve Encoded codegen
3454
+
3455
+ ## 0.24.2
3456
+
3457
+ ### Patch Changes
3458
+
3459
+ - Fix compilation
3460
+ - Updated dependencies
3461
+ - @effect-app/core@0.32.1
3462
+ - @effect-app/schema@0.23.1
3463
+
3464
+ ## 0.24.1
3465
+
3466
+ ### Patch Changes
3467
+
3468
+ - fix svc tag
3469
+
3470
+ ## 0.24.0
3471
+
3472
+ ### Minor Changes
3473
+
3474
+ - Update tsplus with companion instance extensions
3475
+
3476
+ ### Patch Changes
3477
+
3478
+ - Updated dependencies
3479
+ - @effect-app/schema@0.23.0
3480
+ - @effect-app/core@0.32.0
3481
+
3482
+ ## 0.23.7
3483
+
3484
+ ### Patch Changes
3485
+
3486
+ - Updated dependencies
3487
+ - @effect-app/core@0.31.0
3488
+ - @effect-app/schema@0.22.4
3489
+
3490
+ ## 0.23.6
3491
+
3492
+ ### Patch Changes
3493
+
3494
+ - Updated dependencies
3495
+ - @effect-app/core@0.30.3
3496
+ - @effect-app/schema@0.22.3
3497
+
3498
+ ## 0.23.5
3499
+
3500
+ ### Patch Changes
3501
+
3502
+ - fix service tag
3503
+ - Updated dependencies
3504
+ - @effect-app/core@0.30.2
3505
+ - @effect-app/schema@0.22.2
3506
+
3507
+ ## 0.23.4
3508
+
3509
+ ### Patch Changes
3510
+
3511
+ - tag workaround 3
3512
+
3513
+ ## 0.23.3
3514
+
3515
+ ### Patch Changes
3516
+
3517
+ - Workaround tag
3518
+
3519
+ ## 0.23.2
3520
+
3521
+ ### Patch Changes
3522
+
3523
+ - tag workaround
3524
+ - Updated dependencies
3525
+ - @effect-app/core@0.30.1
3526
+ - @effect-app/schema@0.22.1
3527
+
3528
+ ## 0.23.1
3529
+
3530
+ ### Patch Changes
3531
+
3532
+ - Fix service tag
3533
+
3534
+ ## 0.23.0
3535
+
3536
+ ### Minor Changes
3537
+
3538
+ - Update Effect
3539
+
3540
+ ### Patch Changes
3541
+
3542
+ - Updated dependencies
3543
+ - @effect-app/core@0.30.0
3544
+ - @effect-app/schema@0.22.0
3545
+
3546
+ ## 0.22.5
3547
+
3548
+ ### Patch Changes
3549
+
3550
+ - Updated dependencies [00d34a69]
3551
+ - @effect-app/schema@0.21.0
3552
+
3553
+ ## 0.22.4
3554
+
3555
+ ### Patch Changes
3556
+
3557
+ - Improve curry support for PreparedLens
3558
+
3559
+ ## 0.22.3
3560
+
3561
+ ### Patch Changes
3562
+
3563
+ - Fix
3564
+
3565
+ ## 0.22.2
3566
+
3567
+ ### Patch Changes
3568
+
3569
+ - Update packages
3570
+ - Updated dependencies
3571
+ - @effect-app/schema@0.20.1
3572
+ - @effect-app/core@0.29.1
3573
+
3574
+ ## 0.22.1
3575
+
3576
+ ### Patch Changes
3577
+
3578
+ - d89f88cb: add assignTag, TagClass, ServiceTaggedClass
3579
+
3580
+ ## 0.22.0
3581
+
3582
+ ### Minor Changes
3583
+
3584
+ - b967055c: Replace fp-ts/core with effect/data
3585
+
3586
+ ### Patch Changes
3587
+
3588
+ - Updated dependencies [b967055c]
3589
+ - @effect-app/schema@0.20.0
3590
+ - @effect-app/core@0.29.0
3591
+
3592
+ ## 0.21.14
3593
+
3594
+ ### Patch Changes
3595
+
3596
+ - 28d5530b: Fix Encoded
3597
+
3598
+ ## 0.21.13
3599
+
3600
+ ### Patch Changes
3601
+
3602
+ - Updated dependencies
3603
+ - @effect-app/core@0.28.0
3604
+ - @effect-app/schema@0.19.4
3605
+
3606
+ ## 0.21.12
3607
+
3608
+ ### Patch Changes
3609
+
3610
+ - Updated dependencies [39da5db8]
3611
+ - @effect-app/core@0.27.0
3612
+ - @effect-app/schema@0.19.3
3613
+
3614
+ ## 0.21.11
3615
+
3616
+ ### Patch Changes
3617
+
3618
+ - Updated dependencies [4679321f]
3619
+ - @effect-app/core@0.26.0
3620
+ - @effect-app/schema@0.19.2
3621
+
3622
+ ## 0.21.10
3623
+
3624
+ ### Patch Changes
3625
+
3626
+ - Updated dependencies [d66406c9]
3627
+ - @effect-app/core@0.25.1
3628
+ - @effect-app/schema@0.19.1
3629
+
3630
+ ## 0.21.9
3631
+
3632
+ ### Patch Changes
3633
+
3634
+ - Updated dependencies [b385e928]
3635
+ - @effect-app/schema@0.19.0
3636
+ - @effect-app/core@0.25.0
3637
+
3638
+ ## 0.21.8
3639
+
3640
+ ### Patch Changes
3641
+
3642
+ - Updated dependencies [c4b4a20a]
3643
+ - @effect-app/core@0.24.1
3644
+ - @effect-app/schema@0.18.7
3645
+
3646
+ ## 0.21.7
3647
+
3648
+ ### Patch Changes
3649
+
3650
+ - Updated dependencies [3d49bb4a]
3651
+ - @effect-app/schema@0.18.6
3652
+
3653
+ ## 0.21.6
3654
+
3655
+ ### Patch Changes
3656
+
3657
+ - Updated dependencies
3658
+ - @effect-app/core@0.24.0
3659
+ - @effect-app/schema@0.18.5
3660
+
3661
+ ## 0.21.5
3662
+
3663
+ ### Patch Changes
3664
+
3665
+ - Updated dependencies [8da4c8fc]
3666
+ - @effect-app/core@0.23.1
3667
+ - @effect-app/schema@0.18.4
3668
+
3669
+ ## 0.21.4
3670
+
3671
+ ### Patch Changes
3672
+
3673
+ - Updated dependencies
3674
+ - @effect-app/core@0.23.0
3675
+ - @effect-app/schema@0.18.3
3676
+
3677
+ ## 0.21.3
3678
+
3679
+ ### Patch Changes
3680
+
3681
+ - c29ab9fa: default Effect.servicesWith\* to lowercase first letter services.
3682
+
3683
+ ## 0.21.2
3684
+
3685
+ ### Patch Changes
3686
+
3687
+ - Updated dependencies
3688
+ - @effect-app/core@0.22.2
3689
+ - @effect-app/schema@0.18.2
3690
+
3691
+ ## 0.21.1
3692
+
3693
+ ### Patch Changes
3694
+
3695
+ - Updated dependencies [df13134f]
3696
+ - @effect-app/core@0.22.1
3697
+ - @effect-app/schema@0.18.1
3698
+
3699
+ ## 0.21.0
3700
+
3701
+ ### Minor Changes
3702
+
3703
+ - Update annotations, drop Aspects for now
3704
+
3705
+ ### Patch Changes
3706
+
3707
+ - Updated dependencies
3708
+ - @effect-app/core@0.22.0
3709
+ - @effect-app/schema@0.18.0
3710
+
3711
+ ## 0.20.3
3712
+
3713
+ ### Patch Changes
3714
+
3715
+ - Updated dependencies [e3e768a5]
3716
+ - @effect-app/core@0.21.3
3717
+ - @effect-app/schema@0.17.3
3718
+
3719
+ ## 0.20.2
3720
+
3721
+ ### Patch Changes
3722
+
3723
+ - Updated dependencies [d9751183]
3724
+ - @effect-app/core@0.21.2
3725
+ - @effect-app/schema@0.17.2
3726
+
3727
+ ## 0.20.1
3728
+
3729
+ ### Patch Changes
3730
+
3731
+ - Updated dependencies [46d8b7e1]
3732
+ - @effect-app/core@0.21.1
3733
+ - @effect-app/schema@0.17.1
3734
+
3735
+ ## 0.20.0
3736
+
3737
+ ### Minor Changes
3738
+
3739
+ - 338f1f19: Update packages
3740
+
3741
+ ### Patch Changes
3742
+
3743
+ - Updated dependencies [338f1f19]
3744
+ - @effect-app/schema@0.17.0
3745
+ - @effect-app/core@0.21.0
3746
+
3747
+ ## 0.19.3
3748
+
3749
+ ### Patch Changes
3750
+
3751
+ - Updated dependencies [00ac8993]
3752
+ - @effect-app/core@0.20.2
3753
+ - @effect-app/schema@0.16.3
3754
+
3755
+ ## 0.19.2
3756
+
3757
+ ### Patch Changes
3758
+
3759
+ - Updated dependencies
3760
+ - @effect-app/core@0.20.1
3761
+ - @effect-app/schema@0.16.2
3762
+
3763
+ ## 0.19.1
3764
+
3765
+ ### Patch Changes
3766
+
3767
+ - 02997e8f: FUP
3768
+ - Updated dependencies [02997e8f]
3769
+ - @effect-app/schema@0.16.1
3770
+
3771
+ ## 0.19.0
3772
+
3773
+ ### Minor Changes
3774
+
3775
+ - 4d49f303: Upgrade to @effect/data
3776
+
3777
+ ### Patch Changes
3778
+
3779
+ - Updated dependencies [4d49f303]
3780
+ - @effect-app/schema@0.16.0
3781
+ - @effect-app/core@0.20.0
3782
+
3783
+ ## 0.18.2
3784
+
3785
+ ### Patch Changes
3786
+
3787
+ - ca8b9a4e: Fix Function flow
3788
+
3789
+ ## 0.18.1
3790
+
3791
+ ### Patch Changes
3792
+
3793
+ - Updated dependencies [f8d8e4ec]
3794
+ - @effect-app/core@0.19.0
3795
+ - @effect-app/schema@0.15.6
3796
+
3797
+ ## 0.18.0
3798
+
3799
+ ### Minor Changes
3800
+
3801
+ - Update annotations and leverage ForceLazy on Effect \_\_call
3802
+
3803
+ ### Patch Changes
3804
+
3805
+ - Updated dependencies
3806
+ - @effect-app/core@0.18.0
3807
+ - @effect-app/schema@0.15.5
3808
+
3809
+ ## 0.17.5
3810
+
3811
+ ### Patch Changes
3812
+
3813
+ - 912ba66c: Update packages
3814
+ - Updated dependencies [912ba66c]
3815
+ - @effect-app/schema@0.15.4
3816
+ - @effect-app/core@0.17.4
3817
+
3818
+ ## 0.17.4
3819
+
3820
+ ### Patch Changes
3821
+
3822
+ - Updated dependencies [407cc13e]
3823
+ - @effect-app/core@0.17.3
3824
+ - @effect-app/schema@0.15.3
3825
+
3826
+ ## 0.17.3
3827
+
3828
+ ### Patch Changes
3829
+
3830
+ - e9e498ee: Update packages
3831
+ - Updated dependencies [e9e498ee]
3832
+ - @effect-app/schema@0.15.2
3833
+ - @effect-app/core@0.17.2
3834
+
3835
+ ## 0.17.2
3836
+
3837
+ ### Patch Changes
3838
+
3839
+ - 33d2a60f: Cleanup
3840
+
3841
+ ## 0.17.1
3842
+
3843
+ ### Patch Changes
3844
+
3845
+ - Updated dependencies [8b10e403]
3846
+ - @effect-app/core@0.17.1
3847
+ - @effect-app/schema@0.15.1
3848
+
3849
+ ## 0.17.0
3850
+
3851
+ ### Minor Changes
3852
+
3853
+ - 9f9b2d32: Update effect and fp-ts
3854
+
3855
+ ### Patch Changes
3856
+
3857
+ - Updated dependencies [9f9b2d32]
3858
+ - @effect-app/schema@0.15.0
3859
+ - @effect-app/core@0.17.0
3860
+
3861
+ ## 0.16.1
3862
+
3863
+ ### Patch Changes
3864
+
3865
+ - Updated dependencies
3866
+ - @effect-app/core@0.16.1
3867
+ - @effect-app/schema@0.14.1
3868
+
3869
+ ## 0.16.0
3870
+
3871
+ ### Minor Changes
3872
+
3873
+ - 67716050: Update to TS5 beta
3874
+
3875
+ ### Patch Changes
3876
+
3877
+ - Updated dependencies [67716050]
3878
+ - @effect-app/schema@0.14.0
3879
+ - @effect-app/core@0.16.0
3880
+
3881
+ ## 0.15.1
3882
+
3883
+ ### Patch Changes
3884
+
3885
+ - 5a69e08a: Reclaim Duration
3886
+ - Updated dependencies [5a69e08a]
3887
+ - @effect-app/core@0.15.1
3888
+ - @effect-app/schema@0.13.1
3889
+
3890
+ ## 0.15.0
3891
+
3892
+ ### Minor Changes
3893
+
3894
+ - 25ec7aff: Reclaim the Option
3895
+
3896
+ ### Patch Changes
3897
+
3898
+ - Updated dependencies [25ec7aff]
3899
+ - @effect-app/schema@0.13.0
3900
+ - @effect-app/core@0.15.0
3901
+
3902
+ ## 0.14.2
3903
+
3904
+ ### Patch Changes
3905
+
3906
+ - Updated dependencies [90d6e600]
3907
+ - @effect-app/core@0.14.2
3908
+ - @effect-app/schema@0.12.9
3909
+
3910
+ ## 0.14.1
3911
+
3912
+ ### Patch Changes
3913
+
3914
+ - Updated dependencies [8f97d979]
3915
+ - @effect-app/core@0.14.1
3916
+ - @effect-app/schema@0.12.8
3917
+
3918
+ ## 0.14.0
3919
+
3920
+ ### Minor Changes
3921
+
3922
+ - e4730778: Test dual api for Optic
3923
+
3924
+ ### Patch Changes
3925
+
3926
+ - Updated dependencies [e4730778]
3927
+ - @effect-app/core@0.14.0
3928
+ - @effect-app/schema@0.12.7
3929
+
3930
+ ## 0.13.0
3931
+
3932
+ ### Minor Changes
3933
+
3934
+ - e7b4a0b9: Cleanup extensions
3935
+
3936
+ ### Patch Changes
3937
+
3938
+ - Updated dependencies [e7b4a0b9]
3939
+ - @effect-app/core@0.13.0
3940
+ - @effect-app/schema@0.12.6
3941
+
3942
+ ## 0.12.5
3943
+
3944
+ ### Patch Changes
3945
+
3946
+ - Updated dependencies [a1bbd31f]
3947
+ - @effect-app/schema@0.12.5
3948
+
3949
+ ## 0.12.4
3950
+
3951
+ ### Patch Changes
3952
+
3953
+ - Updated dependencies [ffd11b1c]
3954
+ - @effect-app/schema@0.12.4
3955
+ - @effect-app/core@0.12.4
3956
+
3957
+ ## 0.12.3
3958
+
3959
+ ### Patch Changes
3960
+
3961
+ - 602ffbce: Update packages
3962
+ - Updated dependencies [602ffbce]
3963
+ - @effect-app/schema@0.12.3
3964
+ - @effect-app/core@0.12.3
3965
+
3966
+ ## 0.12.2
3967
+
3968
+ ### Patch Changes
3969
+
3970
+ - Updated dependencies
3971
+ - @effect-app/core@0.12.2
3972
+ - @effect-app/schema@0.12.2
3973
+
3974
+ ## 0.12.1
3975
+
3976
+ ### Patch Changes
3977
+
3978
+ - Disable trace
3979
+ - Updated dependencies
3980
+ - @effect-app/schema@0.12.1
3981
+ - @effect-app/core@0.12.1
3982
+
3983
+ ## 0.12.0
3984
+
3985
+ ### Minor Changes
3986
+
3987
+ - Update to effect and fp-ts 0.1 line
3988
+
3989
+ ### Patch Changes
3990
+
3991
+ - Updated dependencies
3992
+ - @effect-app/schema@0.12.0
3993
+ - @effect-app/core@0.12.0
3994
+
3995
+ ## 0.11.6
3996
+
3997
+ ### Patch Changes
3998
+
3999
+ - Fix ServiceBus should inherit runtime context
4000
+
4001
+ ## 0.11.5
4002
+
4003
+ ### Patch Changes
4004
+
4005
+ - e9a667fe: Add Operations
4006
+
4007
+ ## 0.11.4
4008
+
4009
+ ### Patch Changes
4010
+
4011
+ - 387dea6e: Fix Cache MapKey
4012
+
4013
+ ## 0.11.3
4014
+
4015
+ ### Patch Changes
4016
+
4017
+ - Updated dependencies
4018
+ - @effect-app/core@0.11.3
4019
+ - @effect-app/schema@0.11.3
4020
+
4021
+ ## 0.11.2
4022
+
4023
+ ### Patch Changes
4024
+
4025
+ - Updated dependencies
4026
+ - @effect-app/core@0.11.2
4027
+ - @effect-app/schema@0.11.2
4028
+
4029
+ ## 0.11.1
4030
+
4031
+ ### Patch Changes
4032
+
4033
+ - 5ee19e1e: Improve exports
4034
+ - Updated dependencies [5ee19e1e]
4035
+ - @effect-app/core@0.11.1
4036
+ - @effect-app/schema@0.11.1
4037
+
4038
+ ## 0.11.0
4039
+
4040
+ ### Minor Changes
4041
+
4042
+ - Remove @effect-ts/\* and replace monocle with fp-ts/optic
4043
+
4044
+ ### Patch Changes
4045
+
4046
+ - Updated dependencies
4047
+ - @effect-app/core@0.11.0
4048
+ - @effect-app/schema@0.11.0
4049
+
4050
+ ## 0.10.2
4051
+
4052
+ ### Patch Changes
4053
+
4054
+ - Updated dependencies [cc4b37ea]
4055
+ - @effect-app/core@0.10.2
4056
+ - @effect-app/schema@0.10.2
4057
+
4058
+ ## 0.10.1
4059
+
4060
+ ### Patch Changes
4061
+
4062
+ - Updated dependencies [c4b95c0d]
4063
+ - @effect-app/core@0.10.1
4064
+ - @effect-app/schema@0.10.1
4065
+
4066
+ ## 0.10.0
4067
+
4068
+ ### Minor Changes
4069
+
4070
+ - Removed more of @effect-ts/core legacy
4071
+
4072
+ ### Patch Changes
4073
+
4074
+ - Updated dependencies
4075
+ - @effect-app/core@0.10.0
4076
+ - @effect-app/schema@0.10.0
4077
+
4078
+ ## 0.9.0
4079
+
4080
+ ### Minor Changes
4081
+
4082
+ - 7d445f3e: Adopt Equivalence and Equal from @effect/data
4083
+
4084
+ ### Patch Changes
4085
+
4086
+ - Updated dependencies [7d445f3e]
4087
+ - @effect-app/schema@0.9.0
4088
+ - @effect-app/core@0.9.0
4089
+
4090
+ ## 0.8.0
4091
+
4092
+ ### Minor Changes
4093
+
4094
+ - bba14672: Update to latest @effect/io and @effect/data
4095
+
4096
+ ### Patch Changes
4097
+
4098
+ - Updated dependencies [bba14672]
4099
+ - @effect-app/schema@0.8.0
4100
+ - @effect-app/core@0.8.0
4101
+
4102
+ ## 0.7.1
4103
+
4104
+ ### Patch Changes
4105
+
4106
+ - Cleanup infra packages