@effect-app/infra 4.0.0-beta.11 → 4.0.0-beta.111
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 +729 -0
- package/dist/CUPS.d.ts +3 -3
- package/dist/CUPS.d.ts.map +1 -1
- package/dist/CUPS.js +3 -3
- package/dist/Emailer/service.d.ts +3 -3
- package/dist/Emailer/service.d.ts.map +1 -1
- package/dist/Emailer/service.js +3 -3
- package/dist/MainFiberSet.d.ts +2 -2
- package/dist/MainFiberSet.d.ts.map +1 -1
- package/dist/MainFiberSet.js +3 -3
- package/dist/Model/Repository/internal/internal.d.ts +3 -3
- package/dist/Model/Repository/internal/internal.d.ts.map +1 -1
- package/dist/Model/Repository/internal/internal.js +21 -16
- package/dist/Model/Repository/makeRepo.d.ts +2 -2
- package/dist/Model/Repository/makeRepo.d.ts.map +1 -1
- package/dist/Model/Repository/makeRepo.js +1 -1
- package/dist/Model/Repository/validation.d.ts +5 -4
- package/dist/Model/Repository/validation.d.ts.map +1 -1
- package/dist/Model/query/dsl.d.ts +9 -9
- package/dist/Operations.d.ts +2 -2
- package/dist/Operations.d.ts.map +1 -1
- package/dist/Operations.js +3 -3
- package/dist/OperationsRepo.d.ts +2 -2
- package/dist/OperationsRepo.d.ts.map +1 -1
- package/dist/OperationsRepo.js +3 -3
- package/dist/QueueMaker/SQLQueue.d.ts +2 -4
- package/dist/QueueMaker/SQLQueue.d.ts.map +1 -1
- package/dist/QueueMaker/SQLQueue.js +8 -6
- package/dist/QueueMaker/errors.d.ts +1 -1
- package/dist/QueueMaker/errors.d.ts.map +1 -1
- package/dist/QueueMaker/memQueue.js +3 -3
- package/dist/QueueMaker/sbqueue.js +3 -3
- package/dist/RequestContext.d.ts +19 -14
- package/dist/RequestContext.d.ts.map +1 -1
- package/dist/RequestContext.js +5 -5
- package/dist/RequestFiberSet.d.ts +2 -2
- package/dist/RequestFiberSet.d.ts.map +1 -1
- package/dist/RequestFiberSet.js +5 -5
- package/dist/Store/ContextMapContainer.d.ts +19 -3
- package/dist/Store/ContextMapContainer.d.ts.map +1 -1
- package/dist/Store/ContextMapContainer.js +13 -3
- package/dist/Store/Cosmos.d.ts.map +1 -1
- package/dist/Store/Cosmos.js +136 -68
- package/dist/Store/Disk.d.ts.map +1 -1
- package/dist/Store/Disk.js +3 -4
- package/dist/Store/Memory.d.ts +2 -2
- package/dist/Store/Memory.d.ts.map +1 -1
- package/dist/Store/Memory.js +4 -4
- package/dist/Store/SQL/Pg.d.ts +4 -0
- package/dist/Store/SQL/Pg.d.ts.map +1 -0
- package/dist/Store/SQL/Pg.js +186 -0
- package/dist/Store/SQL/query.d.ts +38 -0
- package/dist/Store/SQL/query.d.ts.map +1 -0
- package/dist/Store/SQL/query.js +367 -0
- package/dist/Store/SQL.d.ts +20 -0
- package/dist/Store/SQL.d.ts.map +1 -0
- package/dist/Store/SQL.js +370 -0
- package/dist/Store/index.d.ts +4 -1
- package/dist/Store/index.d.ts.map +1 -1
- package/dist/Store/index.js +12 -2
- package/dist/Store/service.d.ts +11 -5
- package/dist/Store/service.d.ts.map +1 -1
- package/dist/Store/service.js +24 -6
- package/dist/adapters/ServiceBus.d.ts +6 -6
- package/dist/adapters/ServiceBus.d.ts.map +1 -1
- package/dist/adapters/ServiceBus.js +9 -9
- package/dist/adapters/cosmos-client.d.ts +2 -2
- package/dist/adapters/cosmos-client.d.ts.map +1 -1
- package/dist/adapters/cosmos-client.js +3 -3
- package/dist/adapters/logger.d.ts.map +1 -1
- package/dist/adapters/memQueue.d.ts +2 -2
- package/dist/adapters/memQueue.d.ts.map +1 -1
- package/dist/adapters/memQueue.js +3 -3
- package/dist/adapters/mongo-client.d.ts +2 -2
- package/dist/adapters/mongo-client.d.ts.map +1 -1
- package/dist/adapters/mongo-client.js +3 -3
- package/dist/adapters/redis-client.d.ts +3 -3
- package/dist/adapters/redis-client.d.ts.map +1 -1
- package/dist/adapters/redis-client.js +3 -3
- package/dist/api/ContextProvider.d.ts +6 -6
- package/dist/api/ContextProvider.d.ts.map +1 -1
- package/dist/api/ContextProvider.js +6 -6
- package/dist/api/internal/auth.d.ts +1 -1
- package/dist/api/internal/events.d.ts +2 -2
- package/dist/api/internal/events.d.ts.map +1 -1
- package/dist/api/internal/events.js +6 -4
- package/dist/api/layerUtils.d.ts +5 -5
- package/dist/api/layerUtils.d.ts.map +1 -1
- package/dist/api/layerUtils.js +5 -5
- package/dist/api/routing/middleware/RouterMiddleware.d.ts +3 -3
- package/dist/api/routing/middleware/RouterMiddleware.d.ts.map +1 -1
- package/dist/api/routing/middleware/middleware.d.ts +35 -1
- package/dist/api/routing/middleware/middleware.d.ts.map +1 -1
- package/dist/api/routing/middleware/middleware.js +39 -1
- package/dist/api/routing.d.ts +1 -5
- package/dist/api/routing.d.ts.map +1 -1
- package/dist/api/routing.js +3 -2
- package/dist/api/setupRequest.d.ts +6 -3
- package/dist/api/setupRequest.d.ts.map +1 -1
- package/dist/api/setupRequest.js +11 -6
- package/dist/logger.d.ts.map +1 -1
- package/examples/query.ts +30 -26
- package/package.json +32 -18
- package/src/CUPS.ts +2 -2
- package/src/Emailer/service.ts +2 -2
- package/src/MainFiberSet.ts +2 -2
- package/src/Model/Repository/internal/internal.ts +75 -59
- package/src/Model/Repository/makeRepo.ts +2 -2
- package/src/Operations.ts +2 -2
- package/src/OperationsRepo.ts +2 -2
- package/src/QueueMaker/SQLQueue.ts +8 -7
- package/src/QueueMaker/memQueue.ts +2 -2
- package/src/QueueMaker/sbqueue.ts +2 -2
- package/src/RequestContext.ts +4 -4
- package/src/RequestFiberSet.ts +4 -4
- package/src/Store/ContextMapContainer.ts +41 -2
- package/src/Store/Cosmos.ts +352 -255
- package/src/Store/Disk.ts +2 -3
- package/src/Store/Memory.ts +4 -4
- package/src/Store/SQL/Pg.ts +328 -0
- package/src/Store/SQL/query.ts +409 -0
- package/src/Store/SQL.ts +686 -0
- package/src/Store/index.ts +15 -1
- package/src/Store/service.ts +26 -7
- package/src/adapters/ServiceBus.ts +8 -8
- package/src/adapters/cosmos-client.ts +2 -2
- package/src/adapters/memQueue.ts +2 -2
- package/src/adapters/mongo-client.ts +2 -2
- package/src/adapters/redis-client.ts +2 -2
- package/src/api/ContextProvider.ts +11 -11
- package/src/api/internal/events.ts +6 -5
- package/src/api/layerUtils.ts +8 -8
- package/src/api/routing/middleware/RouterMiddleware.ts +4 -4
- package/src/api/routing/middleware/middleware.ts +43 -0
- package/src/api/routing.ts +3 -3
- package/src/api/setupRequest.ts +27 -7
- package/test/contextProvider.test.ts +11 -11
- package/test/controller.test.ts +12 -9
- package/test/dist/contextProvider.test.d.ts.map +1 -1
- package/test/dist/controller.test.d.ts.map +1 -1
- package/test/dist/date-query.test.d.ts.map +1 -0
- package/test/dist/fixtures.d.ts +18 -8
- package/test/dist/fixtures.d.ts.map +1 -1
- package/test/dist/fixtures.js +11 -9
- package/test/dist/query.test.d.ts.map +1 -1
- package/test/dist/rawQuery.test.d.ts.map +1 -1
- package/test/dist/requires.test.d.ts.map +1 -1
- package/test/dist/rpc-multi-middleware.test.d.ts.map +1 -1
- package/test/dist/sql-store.test.d.ts.map +1 -0
- package/test/fixtures.ts +10 -8
- package/test/query.test.ts +162 -16
- package/test/rawQuery.test.ts +19 -17
- package/test/requires.test.ts +6 -5
- package/test/rpc-multi-middleware.test.ts +72 -3
- package/test/sql-store.test.ts +1064 -0
- package/test/validateSample.test.ts +1 -1
- package/tsconfig.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,734 @@
|
|
|
1
1
|
# @effect-app/infra
|
|
2
2
|
|
|
3
|
+
## 4.0.0-beta.111
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ca94edf: fix typo
|
|
8
|
+
- Updated dependencies [ca94edf]
|
|
9
|
+
- effect-app@4.0.0-beta.111
|
|
10
|
+
|
|
11
|
+
## 4.0.0-beta.110
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- c313c07: Add per-namespace in-memory SQLite adapter via LayerMap. When `makeSqlClientLayer` option is provided to `SQLiteStoreLayer`, each namespace gets its own SQLite database instance managed by a `LayerMap`. Introduces `WithNsTransaction` service for namespace-aware SQL transactions, used by `makeSqlTransactionMiddleware`.
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- effect-app@4.0.0-beta.110
|
|
20
|
+
|
|
21
|
+
## 4.0.0-beta.109
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 82f66f1: use uninterruptiple
|
|
26
|
+
- effect-app@4.0.0-beta.109
|
|
27
|
+
|
|
28
|
+
## 4.0.0-beta.108
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [3e46e7b]
|
|
33
|
+
- effect-app@4.0.0-beta.108
|
|
34
|
+
|
|
35
|
+
## 4.0.0-beta.107
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 902ca1b: fix
|
|
40
|
+
- effect-app@4.0.0-beta.107
|
|
41
|
+
|
|
42
|
+
## 4.0.0-beta.106
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- f22a026: Use `Effect.cached` in `getOrCreateStoreEffect` for proper memoization of the resolver effect.
|
|
47
|
+
- effect-app@4.0.0-beta.106
|
|
48
|
+
|
|
49
|
+
## 4.0.0-beta.105
|
|
50
|
+
|
|
51
|
+
### Minor Changes
|
|
52
|
+
|
|
53
|
+
- 3d732b1: Rewrite `withRequestResolverCache` to use official `RequestResolver.withCache`, creating a cached resolver per ContextMap via `getOrCreateStoreEffect` with semaphore-guarded initialization.
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 47e53f5: Fix `withRequestResolverCache` causing "RequestResolver did not complete request" errors by using the `preCheck` hook instead of handling cache in `runAll`. Cache hits for in-flight or completed requests are now handled before entries enter the batch, preventing uncompleted entries.
|
|
58
|
+
- 5773159: Add `itemType` annotation to all repository spans
|
|
59
|
+
- effect-app@4.0.0-beta.105
|
|
60
|
+
|
|
61
|
+
## 4.0.0-beta.104
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- Updated dependencies [e944bca]
|
|
66
|
+
- effect-app@4.0.0-beta.104
|
|
67
|
+
|
|
68
|
+
## 4.0.0-beta.103
|
|
69
|
+
|
|
70
|
+
### Patch Changes
|
|
71
|
+
|
|
72
|
+
- Updated dependencies [7119320]
|
|
73
|
+
- effect-app@4.0.0-beta.103
|
|
74
|
+
|
|
75
|
+
## 4.0.0-beta.102
|
|
76
|
+
|
|
77
|
+
### Patch Changes
|
|
78
|
+
|
|
79
|
+
- 62627e9: Fix boolean handling in SQL SELECT and WHERE
|
|
80
|
+
- effect-app@4.0.0-beta.102
|
|
81
|
+
|
|
82
|
+
## 4.0.0-beta.101
|
|
83
|
+
|
|
84
|
+
### Patch Changes
|
|
85
|
+
|
|
86
|
+
- effect-app@4.0.0-beta.101
|
|
87
|
+
|
|
88
|
+
## 4.0.0-beta.100
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- 43611c7: enable cosmosdb large partition key hashes
|
|
93
|
+
- effect-app@4.0.0-beta.100
|
|
94
|
+
|
|
95
|
+
## 4.0.0-beta.99
|
|
96
|
+
|
|
97
|
+
### Patch Changes
|
|
98
|
+
|
|
99
|
+
- 6a0e008: remove artificial Cosmos bulkSet delays
|
|
100
|
+
- effect-app@4.0.0-beta.99
|
|
101
|
+
|
|
102
|
+
## 4.0.0-beta.98
|
|
103
|
+
|
|
104
|
+
### Patch Changes
|
|
105
|
+
|
|
106
|
+
- 5aed2e3: Add span to Cosmos `batchRemove` and include `namespace` attribute on all Cosmos store spans.
|
|
107
|
+
- effect-app@4.0.0-beta.98
|
|
108
|
+
|
|
109
|
+
## 4.0.0-beta.97
|
|
110
|
+
|
|
111
|
+
### Patch Changes
|
|
112
|
+
|
|
113
|
+
- 3eb66e9: Fix CosmosDB store `filter` to trigger namespace seeding on first access. Previously, if `filter` was the first operation called on a namespace, seed data was never created.
|
|
114
|
+
- effect-app@4.0.0-beta.97
|
|
115
|
+
|
|
116
|
+
## 4.0.0-beta.96
|
|
117
|
+
|
|
118
|
+
### Patch Changes
|
|
119
|
+
|
|
120
|
+
- Updated dependencies [5615e47]
|
|
121
|
+
- effect-app@4.0.0-beta.96
|
|
122
|
+
|
|
123
|
+
## 4.0.0-beta.95
|
|
124
|
+
|
|
125
|
+
### Patch Changes
|
|
126
|
+
|
|
127
|
+
- 88838fb: Remove pick/omit customizations from Class/TaggedClass/Struct/TaggedStruct. Use `Struct.pick(X.fields, [...])` from `effect-app` instead.
|
|
128
|
+
- Updated dependencies [88838fb]
|
|
129
|
+
- effect-app@4.0.0-beta.95
|
|
130
|
+
|
|
131
|
+
## 4.0.0-beta.94
|
|
132
|
+
|
|
133
|
+
### Patch Changes
|
|
134
|
+
|
|
135
|
+
- effect-app@4.0.0-beta.94
|
|
136
|
+
|
|
137
|
+
## 4.0.0-beta.93
|
|
138
|
+
|
|
139
|
+
### Patch Changes
|
|
140
|
+
|
|
141
|
+
- 2d85646: fix SQL includes-any/all double-quoting values for SQLite (JSON.stringify only needed for Postgres jsonb)
|
|
142
|
+
- effect-app@4.0.0-beta.93
|
|
143
|
+
|
|
144
|
+
## 4.0.0-beta.92
|
|
145
|
+
|
|
146
|
+
### Patch Changes
|
|
147
|
+
|
|
148
|
+
- b4ffee0: fix SQL whereEvery double-negation bug causing wrong query when operators like notIn are used (especially with empty arrays)
|
|
149
|
+
- effect-app@4.0.0-beta.92
|
|
150
|
+
|
|
151
|
+
## 4.0.0-beta.91
|
|
152
|
+
|
|
153
|
+
### Patch Changes
|
|
154
|
+
|
|
155
|
+
- Updated dependencies [738b482]
|
|
156
|
+
- effect-app@4.0.0-beta.91
|
|
157
|
+
|
|
158
|
+
## 4.0.0-beta.90
|
|
159
|
+
|
|
160
|
+
### Patch Changes
|
|
161
|
+
|
|
162
|
+
- d786b91: Fix SQL `whereSome`/`whereEvery` array relation queries using `EXISTS` with `json_each` (SQLite) / `jsonb_array_elements` (Pg).
|
|
163
|
+
- effect-app@4.0.0-beta.90
|
|
164
|
+
|
|
165
|
+
## 4.0.0-beta.89
|
|
166
|
+
|
|
167
|
+
### Patch Changes
|
|
168
|
+
|
|
169
|
+
- 9a9e46c: Fix SQL select queries to read `_etag` from column instead of JSON data, preventing INSERT on update.
|
|
170
|
+
- effect-app@4.0.0-beta.89
|
|
171
|
+
|
|
172
|
+
## 4.0.0-beta.88
|
|
173
|
+
|
|
174
|
+
### Patch Changes
|
|
175
|
+
|
|
176
|
+
- dfd5562: Fix SQL `IN`/`NOT IN` with null values to use `IS NULL`/`IS NOT NULL` instead of `IN (NULL, ...)`.
|
|
177
|
+
- effect-app@4.0.0-beta.88
|
|
178
|
+
|
|
179
|
+
## 4.0.0-beta.87
|
|
180
|
+
|
|
181
|
+
### Patch Changes
|
|
182
|
+
|
|
183
|
+
- 5a709d1: Fix SQLite select query type coercion using `json_quote` and apply defaultValues in SQL WHERE clauses via `COALESCE`.
|
|
184
|
+
- effect-app@4.0.0-beta.87
|
|
185
|
+
|
|
186
|
+
## 4.0.0-beta.86
|
|
187
|
+
|
|
188
|
+
### Patch Changes
|
|
189
|
+
|
|
190
|
+
- 70f1f27: Fix store seeding: break circular dependency where bulkSet re-entered seedNamespace, and add explicit seed markers to SQL/Pg stores using a dedicated `__seed__` namespace.
|
|
191
|
+
- effect-app@4.0.0-beta.86
|
|
192
|
+
|
|
193
|
+
## 4.0.0-beta.85
|
|
194
|
+
|
|
195
|
+
### Patch Changes
|
|
196
|
+
|
|
197
|
+
- db285e9: Add per-namespace seeding to SQL (SQLite/PostgreSQL) and CosmosDB store adapters. Previously only the `primary` namespace was seeded at initialization; now each namespace is lazily seeded on first access using `Effect.cached` to guarantee at-most-once execution. Primary namespace continues to seed eagerly on initialization. CosmosDB uses namespace-specific marker documents for backward compatibility.
|
|
198
|
+
- effect-app@4.0.0-beta.85
|
|
199
|
+
|
|
200
|
+
## 4.0.0-beta.84
|
|
201
|
+
|
|
202
|
+
### Patch Changes
|
|
203
|
+
|
|
204
|
+
- c80e781: Fix SQLite store namespace parameter ordering in filter queries. The `_namespace` placeholder was prepended to the WHERE clause but its value was appended to the end of the positional params array, causing it to bind to the wrong placeholder. PostgreSQL was unaffected (uses indexed `$N` placeholders).
|
|
205
|
+
- effect-app@4.0.0-beta.84
|
|
206
|
+
|
|
207
|
+
## 4.0.0-beta.83
|
|
208
|
+
|
|
209
|
+
### Patch Changes
|
|
210
|
+
|
|
211
|
+
- d1fc90a: Strip `_etag` and `id` from the `data` JSON column in SQL store adapters (SQLite + PostgreSQL). These fields are already stored as dedicated columns and were redundantly duplicated inside the JSON blob. On read, `parseRow` now re-injects `id` from the row column. Backward compatible: existing rows with `_etag`/`id` in `data` continue to work as the column values take precedence.
|
|
212
|
+
- effect-app@4.0.0-beta.83
|
|
213
|
+
|
|
214
|
+
## 4.0.0-beta.82
|
|
215
|
+
|
|
216
|
+
### Minor Changes
|
|
217
|
+
|
|
218
|
+
- 48f1457: Add storage namespace support to CosmosDB adapter via partition key prefixing. When `allowNamespace` is configured, the namespace from `storeId` is prepended to partition key values (e.g., `test-ns::primary`), isolating data per namespace within the same container.
|
|
219
|
+
- 48f1457: Add storage namespace support to SQL adapters (SQLite and Postgres) via a `_namespace` column. When `allowNamespace` is configured, a `_namespace` column with composite primary key `(id, _namespace)` isolates data per namespace within the same table. New tables get the schema automatically; existing tables require manual migration.
|
|
220
|
+
- 48f1457: Add SQL Store adapter for Effect SQL (SQLite + PostgreSQL). Table-per-repo with id/etag/data JSON columns, query DSL translation to SQL WHERE clauses, optimistic concurrency via etag.
|
|
221
|
+
- 48f1457: Make `withSqlTransaction` in `setupRequest` configurable via `withTransaction` option (defaults to `false`). Add `requiresTransactionConfig` and `makeSqlTransactionMiddleware` for per-RPC transaction control as a dynamic middleware that requires `SqlClient` directly. Transactions are disabled by default; opt in with `withTransaction: true` or `requiresTransaction: true`.
|
|
222
|
+
|
|
223
|
+
### Patch Changes
|
|
224
|
+
|
|
225
|
+
- effect-app@4.0.0-beta.82
|
|
226
|
+
|
|
227
|
+
## 4.0.0-beta.81
|
|
228
|
+
|
|
229
|
+
### Minor Changes
|
|
230
|
+
|
|
231
|
+
- fd67f0b: Add `withRequestResolverCache` to scope RequestResolver cache to the ContextMap (request-scoped). Add `getOrCreateStore` to ContextMap for generic scoped storage.
|
|
232
|
+
|
|
233
|
+
### Patch Changes
|
|
234
|
+
|
|
235
|
+
- effect-app@4.0.0-beta.81
|
|
236
|
+
|
|
237
|
+
## 4.0.0-beta.80
|
|
238
|
+
|
|
239
|
+
### Patch Changes
|
|
240
|
+
|
|
241
|
+
- eaf0115: enforce local
|
|
242
|
+
- effect-app@4.0.0-beta.80
|
|
243
|
+
|
|
244
|
+
## 4.0.0-beta.79
|
|
245
|
+
|
|
246
|
+
### Patch Changes
|
|
247
|
+
|
|
248
|
+
- 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).
|
|
249
|
+
- Updated dependencies [d16845e]
|
|
250
|
+
- effect-app@4.0.0-beta.79
|
|
251
|
+
|
|
252
|
+
## 4.0.0-beta.78
|
|
253
|
+
|
|
254
|
+
### Minor Changes
|
|
255
|
+
|
|
256
|
+
- 818e047: Router `matchFor` no longer requires `meta` property on resource when requests carry `moduleName` from `TaggedRequestFor`
|
|
257
|
+
|
|
258
|
+
### Patch Changes
|
|
259
|
+
|
|
260
|
+
- effect-app@4.0.0-beta.78
|
|
261
|
+
|
|
262
|
+
## 4.0.0-beta.77
|
|
263
|
+
|
|
264
|
+
### Patch Changes
|
|
265
|
+
|
|
266
|
+
- Updated dependencies [3613e87]
|
|
267
|
+
- effect-app@4.0.0-beta.77
|
|
268
|
+
|
|
269
|
+
## 4.0.0-beta.76
|
|
270
|
+
|
|
271
|
+
### Patch Changes
|
|
272
|
+
|
|
273
|
+
- fac725d: update effect to latest beta
|
|
274
|
+
- Updated dependencies [a5248a9]
|
|
275
|
+
- Updated dependencies [fac725d]
|
|
276
|
+
- effect-app@4.0.0-beta.76
|
|
277
|
+
|
|
278
|
+
## 4.0.0-beta.75
|
|
279
|
+
|
|
280
|
+
### Patch Changes
|
|
281
|
+
|
|
282
|
+
- Updated dependencies [24f0a5a]
|
|
283
|
+
- effect-app@4.0.0-beta.75
|
|
284
|
+
|
|
285
|
+
## 4.0.0-beta.74
|
|
286
|
+
|
|
287
|
+
### Patch Changes
|
|
288
|
+
|
|
289
|
+
- Updated dependencies [54ec1ef]
|
|
290
|
+
- effect-app@4.0.0-beta.74
|
|
291
|
+
|
|
292
|
+
## 4.0.0-beta.73
|
|
293
|
+
|
|
294
|
+
### Patch Changes
|
|
295
|
+
|
|
296
|
+
- b53c59e: fix signature
|
|
297
|
+
- effect-app@4.0.0-beta.73
|
|
298
|
+
|
|
299
|
+
## 4.0.0-beta.72
|
|
300
|
+
|
|
301
|
+
### Patch Changes
|
|
302
|
+
|
|
303
|
+
- Updated dependencies [0541f0d]
|
|
304
|
+
- effect-app@4.0.0-beta.72
|
|
305
|
+
|
|
306
|
+
## 4.0.0-beta.71
|
|
307
|
+
|
|
308
|
+
### Patch Changes
|
|
309
|
+
|
|
310
|
+
- beae3a0: Remove `withDefaultConstructor` wrapper, use `S.withConstructorDefault` directly with `Effect.succeed`/`Effect.sync`.
|
|
311
|
+
- Updated dependencies [beae3a0]
|
|
312
|
+
- effect-app@4.0.0-beta.71
|
|
313
|
+
|
|
314
|
+
## 4.0.0-beta.70
|
|
315
|
+
|
|
316
|
+
### Patch Changes
|
|
317
|
+
|
|
318
|
+
- fdb9cb3: cleanup
|
|
319
|
+
- effect-app@4.0.0-beta.70
|
|
320
|
+
|
|
321
|
+
## 4.0.0-beta.69
|
|
322
|
+
|
|
323
|
+
### Patch Changes
|
|
324
|
+
|
|
325
|
+
- dc465e3: update to latest effect beta
|
|
326
|
+
- Updated dependencies [dc465e3]
|
|
327
|
+
- effect-app@4.0.0-beta.69
|
|
328
|
+
|
|
329
|
+
## 4.0.0-beta.68
|
|
330
|
+
|
|
331
|
+
### Patch Changes
|
|
332
|
+
|
|
333
|
+
- Updated dependencies [e6f2341]
|
|
334
|
+
- effect-app@4.0.0-beta.68
|
|
335
|
+
|
|
336
|
+
## 4.0.0-beta.67
|
|
337
|
+
|
|
338
|
+
### Patch Changes
|
|
339
|
+
|
|
340
|
+
- effect-app@4.0.0-beta.67
|
|
341
|
+
|
|
342
|
+
## 4.0.0-beta.66
|
|
343
|
+
|
|
344
|
+
### Patch Changes
|
|
345
|
+
|
|
346
|
+
- Updated dependencies [edc52e4]
|
|
347
|
+
- effect-app@4.0.0-beta.66
|
|
348
|
+
|
|
349
|
+
## 4.0.0-beta.65
|
|
350
|
+
|
|
351
|
+
### Patch Changes
|
|
352
|
+
|
|
353
|
+
- Updated dependencies [31739d7]
|
|
354
|
+
- Updated dependencies [1f103b2]
|
|
355
|
+
- effect-app@4.0.0-beta.65
|
|
356
|
+
|
|
357
|
+
## 4.0.0-beta.64
|
|
358
|
+
|
|
359
|
+
### Patch Changes
|
|
360
|
+
|
|
361
|
+
- Updated dependencies [c1a6fdc]
|
|
362
|
+
- effect-app@4.0.0-beta.64
|
|
363
|
+
|
|
364
|
+
## 4.0.0-beta.63
|
|
365
|
+
|
|
366
|
+
### Patch Changes
|
|
367
|
+
|
|
368
|
+
- 1f9d7da: fix missing toCodecJson usages
|
|
369
|
+
- effect-app@4.0.0-beta.63
|
|
370
|
+
|
|
371
|
+
## 4.0.0-beta.62
|
|
372
|
+
|
|
373
|
+
### Patch Changes
|
|
374
|
+
|
|
375
|
+
- Updated dependencies [0b21a02]
|
|
376
|
+
- effect-app@4.0.0-beta.62
|
|
377
|
+
|
|
378
|
+
## 4.0.0-beta.61
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- effect-app@4.0.0-beta.61
|
|
383
|
+
|
|
384
|
+
## 4.0.0-beta.60
|
|
385
|
+
|
|
386
|
+
### Patch Changes
|
|
387
|
+
|
|
388
|
+
- 29c39d2: Fix repository `find` with transformed id fields in tagged union schemas
|
|
389
|
+
- effect-app@4.0.0-beta.60
|
|
390
|
+
|
|
391
|
+
## 4.0.0-beta.59
|
|
392
|
+
|
|
393
|
+
### Patch Changes
|
|
394
|
+
|
|
395
|
+
- cec026d: update packages
|
|
396
|
+
- Updated dependencies [cec026d]
|
|
397
|
+
- effect-app@4.0.0-beta.59
|
|
398
|
+
|
|
399
|
+
## 4.0.0-beta.58
|
|
400
|
+
|
|
401
|
+
### Patch Changes
|
|
402
|
+
|
|
403
|
+
- effect-app@4.0.0-beta.58
|
|
404
|
+
|
|
405
|
+
## 4.0.0-beta.57
|
|
406
|
+
|
|
407
|
+
### Patch Changes
|
|
408
|
+
|
|
409
|
+
- fbf47b8: Fix repository `find` with transformed id fields (e.g. composite ids using `decodeTo`)
|
|
410
|
+
- effect-app@4.0.0-beta.57
|
|
411
|
+
|
|
412
|
+
## 4.0.0-beta.56
|
|
413
|
+
|
|
414
|
+
### Patch Changes
|
|
415
|
+
|
|
416
|
+
- effect-app@4.0.0-beta.56
|
|
417
|
+
|
|
418
|
+
## 4.0.0-beta.55
|
|
419
|
+
|
|
420
|
+
### Patch Changes
|
|
421
|
+
|
|
422
|
+
- effect-app@4.0.0-beta.55
|
|
423
|
+
|
|
424
|
+
## 4.0.0-beta.54
|
|
425
|
+
|
|
426
|
+
### Patch Changes
|
|
427
|
+
|
|
428
|
+
- d867272: the return of `Context`
|
|
429
|
+
- Updated dependencies [d867272]
|
|
430
|
+
- effect-app@4.0.0-beta.54
|
|
431
|
+
|
|
432
|
+
## 4.0.0-beta.53
|
|
433
|
+
|
|
434
|
+
### Patch Changes
|
|
435
|
+
|
|
436
|
+
- Updated dependencies [ee9694e]
|
|
437
|
+
- effect-app@4.0.0-beta.53
|
|
438
|
+
|
|
439
|
+
## 4.0.0-beta.52
|
|
440
|
+
|
|
441
|
+
### Patch Changes
|
|
442
|
+
|
|
443
|
+
- Updated dependencies [6252808]
|
|
444
|
+
- effect-app@4.0.0-beta.52
|
|
445
|
+
|
|
446
|
+
## 4.0.0-beta.51
|
|
447
|
+
|
|
448
|
+
### Patch Changes
|
|
449
|
+
|
|
450
|
+
- effect-app@4.0.0-beta.51
|
|
451
|
+
|
|
452
|
+
## 4.0.0-beta.50
|
|
453
|
+
|
|
454
|
+
### Patch Changes
|
|
455
|
+
|
|
456
|
+
- effect-app@4.0.0-beta.50
|
|
457
|
+
|
|
458
|
+
## 4.0.0-beta.49
|
|
459
|
+
|
|
460
|
+
### Patch Changes
|
|
461
|
+
|
|
462
|
+
- Updated dependencies [e585c9c]
|
|
463
|
+
- effect-app@4.0.0-beta.49
|
|
464
|
+
|
|
465
|
+
## 4.0.0-beta.48
|
|
466
|
+
|
|
467
|
+
### Patch Changes
|
|
468
|
+
|
|
469
|
+
- Updated dependencies [0c88f78]
|
|
470
|
+
- effect-app@4.0.0-beta.48
|
|
471
|
+
|
|
472
|
+
## 4.0.0-beta.47
|
|
473
|
+
|
|
474
|
+
### Patch Changes
|
|
475
|
+
|
|
476
|
+
- Updated dependencies [3365758]
|
|
477
|
+
- effect-app@4.0.0-beta.47
|
|
478
|
+
|
|
479
|
+
## 4.0.0-beta.46
|
|
480
|
+
|
|
481
|
+
### Patch Changes
|
|
482
|
+
|
|
483
|
+
- effect-app@4.0.0-beta.46
|
|
484
|
+
|
|
485
|
+
## 4.0.0-beta.45
|
|
486
|
+
|
|
487
|
+
### Patch Changes
|
|
488
|
+
|
|
489
|
+
- 10b55ff: update packages
|
|
490
|
+
- Updated dependencies [10b55ff]
|
|
491
|
+
- effect-app@4.0.0-beta.45
|
|
492
|
+
|
|
493
|
+
## 4.0.0-beta.44
|
|
494
|
+
|
|
495
|
+
### Patch Changes
|
|
496
|
+
|
|
497
|
+
- a37aa38: Update to effect beta 43
|
|
498
|
+
- Updated dependencies [a37aa38]
|
|
499
|
+
- effect-app@4.0.0-beta.44
|
|
500
|
+
|
|
501
|
+
## 4.0.0-beta.43
|
|
502
|
+
|
|
503
|
+
### Patch Changes
|
|
504
|
+
|
|
505
|
+
- dab6992: no need for .lock.lock
|
|
506
|
+
- effect-app@4.0.0-beta.43
|
|
507
|
+
|
|
508
|
+
## 4.0.0-beta.42
|
|
509
|
+
|
|
510
|
+
### Patch Changes
|
|
511
|
+
|
|
512
|
+
- effect-app@4.0.0-beta.42
|
|
513
|
+
|
|
514
|
+
## 4.0.0-beta.41
|
|
515
|
+
|
|
516
|
+
### Patch Changes
|
|
517
|
+
|
|
518
|
+
- effect-app@4.0.0-beta.41
|
|
519
|
+
|
|
520
|
+
## 4.0.0-beta.40
|
|
521
|
+
|
|
522
|
+
### Patch Changes
|
|
523
|
+
|
|
524
|
+
- effect-app@4.0.0-beta.40
|
|
525
|
+
|
|
526
|
+
## 4.0.0-beta.39
|
|
527
|
+
|
|
528
|
+
### Patch Changes
|
|
529
|
+
|
|
530
|
+
- Updated dependencies [10e90d5]
|
|
531
|
+
- effect-app@4.0.0-beta.39
|
|
532
|
+
|
|
533
|
+
## 4.0.0-beta.38
|
|
534
|
+
|
|
535
|
+
### Patch Changes
|
|
536
|
+
|
|
537
|
+
- Updated dependencies [0b3e00e]
|
|
538
|
+
- effect-app@4.0.0-beta.38
|
|
539
|
+
|
|
540
|
+
## 4.0.0-beta.37
|
|
541
|
+
|
|
542
|
+
### Patch Changes
|
|
543
|
+
|
|
544
|
+
- Updated dependencies [947fe20]
|
|
545
|
+
- effect-app@4.0.0-beta.37
|
|
546
|
+
|
|
547
|
+
## 4.0.0-beta.36
|
|
548
|
+
|
|
549
|
+
### Patch Changes
|
|
550
|
+
|
|
551
|
+
- effect-app@4.0.0-beta.36
|
|
552
|
+
|
|
553
|
+
## 4.0.0-beta.35
|
|
554
|
+
|
|
555
|
+
### Patch Changes
|
|
556
|
+
|
|
557
|
+
- effect-app@4.0.0-beta.35
|
|
558
|
+
|
|
559
|
+
## 4.0.0-beta.34
|
|
560
|
+
|
|
561
|
+
### Patch Changes
|
|
562
|
+
|
|
563
|
+
- 8c645d5: update to latest effect
|
|
564
|
+
- Updated dependencies [8c645d5]
|
|
565
|
+
- effect-app@4.0.0-beta.34
|
|
566
|
+
|
|
567
|
+
## 4.0.0-beta.33
|
|
568
|
+
|
|
569
|
+
### Patch Changes
|
|
570
|
+
|
|
571
|
+
- 4b95009: use Finite instead of Number
|
|
572
|
+
- Updated dependencies [4b95009]
|
|
573
|
+
- effect-app@4.0.0-beta.33
|
|
574
|
+
|
|
575
|
+
## 4.0.0-beta.32
|
|
576
|
+
|
|
577
|
+
### Patch Changes
|
|
578
|
+
|
|
579
|
+
- Updated dependencies [01d862a]
|
|
580
|
+
- effect-app@4.0.0-beta.32
|
|
581
|
+
|
|
582
|
+
## 4.0.0-beta.31
|
|
583
|
+
|
|
584
|
+
### Patch Changes
|
|
585
|
+
|
|
586
|
+
- Updated dependencies [6b6d601]
|
|
587
|
+
- effect-app@4.0.0-beta.31
|
|
588
|
+
|
|
589
|
+
## 4.0.0-beta.30
|
|
590
|
+
|
|
591
|
+
### Patch Changes
|
|
592
|
+
|
|
593
|
+
- Updated dependencies [5ec1f45]
|
|
594
|
+
- effect-app@4.0.0-beta.30
|
|
595
|
+
|
|
596
|
+
## 4.0.0-beta.29
|
|
597
|
+
|
|
598
|
+
### Patch Changes
|
|
599
|
+
|
|
600
|
+
- Updated dependencies [a899d46]
|
|
601
|
+
- effect-app@4.0.0-beta.29
|
|
602
|
+
|
|
603
|
+
## 4.0.0-beta.28
|
|
604
|
+
|
|
605
|
+
### Patch Changes
|
|
606
|
+
|
|
607
|
+
- Updated dependencies [0099208]
|
|
608
|
+
- effect-app@4.0.0-beta.28
|
|
609
|
+
|
|
610
|
+
## 4.0.0-beta.27
|
|
611
|
+
|
|
612
|
+
### Patch Changes
|
|
613
|
+
|
|
614
|
+
- 601a1ff: update effect to 4.0.0-beta.37 and drop the Schema Class disableValidation workaround now that the patched effect schema covers it
|
|
615
|
+
- Updated dependencies [601a1ff]
|
|
616
|
+
- effect-app@4.0.0-beta.27
|
|
617
|
+
|
|
618
|
+
## 4.0.0-beta.26
|
|
619
|
+
|
|
620
|
+
### Patch Changes
|
|
621
|
+
|
|
622
|
+
- Updated dependencies [4da28e2]
|
|
623
|
+
- effect-app@4.0.0-beta.26
|
|
624
|
+
|
|
625
|
+
## 4.0.0-beta.25
|
|
626
|
+
|
|
627
|
+
### Patch Changes
|
|
628
|
+
|
|
629
|
+
- Updated dependencies [6282d4b]
|
|
630
|
+
- effect-app@4.0.0-beta.25
|
|
631
|
+
|
|
632
|
+
## 4.0.0-beta.24
|
|
633
|
+
|
|
634
|
+
### Patch Changes
|
|
635
|
+
|
|
636
|
+
- Updated dependencies [32f71bf]
|
|
637
|
+
- effect-app@4.0.0-beta.24
|
|
638
|
+
|
|
639
|
+
## 4.0.0-beta.23
|
|
640
|
+
|
|
641
|
+
### Patch Changes
|
|
642
|
+
|
|
643
|
+
- Updated dependencies [ea08a79]
|
|
644
|
+
- effect-app@4.0.0-beta.23
|
|
645
|
+
|
|
646
|
+
## 4.0.0-beta.22
|
|
647
|
+
|
|
648
|
+
### Patch Changes
|
|
649
|
+
|
|
650
|
+
- effect-app@4.0.0-beta.22
|
|
651
|
+
|
|
652
|
+
## 4.0.0-beta.21
|
|
653
|
+
|
|
654
|
+
### Patch Changes
|
|
655
|
+
|
|
656
|
+
- 75c72ee: update effect to 4.0.0-beta.36, adapt to Option<A> revert from A | undefined
|
|
657
|
+
- Updated dependencies [0d349e7]
|
|
658
|
+
- Updated dependencies [75c72ee]
|
|
659
|
+
- effect-app@4.0.0-beta.21
|
|
660
|
+
|
|
661
|
+
## 4.0.0-beta.20
|
|
662
|
+
|
|
663
|
+
### Patch Changes
|
|
664
|
+
|
|
665
|
+
- aa921db: Fix `TaggedRequest` no-config error type inference so requests without a third argument infer the same default error schema as requests with explicit success config.
|
|
666
|
+
- Updated dependencies [aa921db]
|
|
667
|
+
- effect-app@4.0.0-beta.20
|
|
668
|
+
|
|
669
|
+
## 4.0.0-beta.19
|
|
670
|
+
|
|
671
|
+
### Patch Changes
|
|
672
|
+
|
|
673
|
+
- Updated dependencies [ffc10a4]
|
|
674
|
+
- effect-app@4.0.0-beta.19
|
|
675
|
+
|
|
676
|
+
## 4.0.0-beta.18
|
|
677
|
+
|
|
678
|
+
### Patch Changes
|
|
679
|
+
|
|
680
|
+
- Updated dependencies [e9dbbdd]
|
|
681
|
+
- effect-app@4.0.0-beta.18
|
|
682
|
+
|
|
683
|
+
## 4.0.0-beta.17
|
|
684
|
+
|
|
685
|
+
### Patch Changes
|
|
686
|
+
|
|
687
|
+
- Updated dependencies [c8a6a3f]
|
|
688
|
+
- effect-app@4.0.0-beta.17
|
|
689
|
+
|
|
690
|
+
## 4.0.0-beta.16
|
|
691
|
+
|
|
692
|
+
### Patch Changes
|
|
693
|
+
|
|
694
|
+
- Updated dependencies [56db2c4]
|
|
695
|
+
- effect-app@4.0.0-beta.16
|
|
696
|
+
|
|
697
|
+
## 4.0.0-beta.15
|
|
698
|
+
|
|
699
|
+
### Patch Changes
|
|
700
|
+
|
|
701
|
+
- a3c9cc8: fix SSE event stream merge in pipe usage
|
|
702
|
+
- Updated dependencies [20186b6]
|
|
703
|
+
- effect-app@4.0.0-beta.15
|
|
704
|
+
|
|
705
|
+
## 4.0.0-beta.14
|
|
706
|
+
|
|
707
|
+
### Patch Changes
|
|
708
|
+
|
|
709
|
+
- effect-app@4.0.0-beta.14
|
|
710
|
+
|
|
711
|
+
## 4.0.0-beta.13
|
|
712
|
+
|
|
713
|
+
### Patch Changes
|
|
714
|
+
|
|
715
|
+
- 1c3c541: Update Effect dependencies to 4.0.0-beta.31 across workspace packages.
|
|
716
|
+
- de2359d: Update Effect dependencies to 4.0.0-beta.28 across workspace packages.
|
|
717
|
+
- 0d72f34: Update Effect dependencies to 4.0.0-beta.29 across workspace packages.
|
|
718
|
+
- Updated dependencies [16de88c]
|
|
719
|
+
- Updated dependencies [1c3c541]
|
|
720
|
+
- Updated dependencies [de2359d]
|
|
721
|
+
- Updated dependencies [0d72f34]
|
|
722
|
+
- effect-app@4.0.0-beta.13
|
|
723
|
+
|
|
724
|
+
## 4.0.0-beta.12
|
|
725
|
+
|
|
726
|
+
### Patch Changes
|
|
727
|
+
|
|
728
|
+
- 622d54a: Configure Changesets fixed versioning for public packages.
|
|
729
|
+
- Updated dependencies [622d54a]
|
|
730
|
+
- effect-app@4.0.0-beta.12
|
|
731
|
+
|
|
3
732
|
## 4.0.0-beta.11
|
|
4
733
|
|
|
5
734
|
### Patch Changes
|