jazz-tools 0.8.15 → 0.8.17
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +283 -269
- package/dist/native/coValues/account.js +3 -6
- package/dist/native/coValues/account.js.map +1 -1
- package/dist/native/coValues/coList.js +3 -7
- package/dist/native/coValues/coList.js.map +1 -1
- package/dist/native/coValues/coMap.js +8 -14
- package/dist/native/coValues/coMap.js.map +1 -1
- package/dist/native/coValues/coStream.js +7 -12
- package/dist/native/coValues/coStream.js.map +1 -1
- package/dist/native/coValues/deepLoading.js +6 -3
- package/dist/native/coValues/deepLoading.js.map +1 -1
- package/dist/native/coValues/extensions/imageDef.js.map +1 -1
- package/dist/native/coValues/group.js +3 -6
- package/dist/native/coValues/group.js.map +1 -1
- package/dist/native/coValues/interfaces.js +4 -3
- package/dist/native/coValues/interfaces.js.map +1 -1
- package/dist/native/exports.js +3 -9
- package/dist/native/exports.js.map +1 -1
- package/dist/native/implementation/createContext.js +1 -2
- package/dist/native/implementation/createContext.js.map +1 -1
- package/dist/native/implementation/devtoolsFormatters.js +5 -25
- package/dist/native/implementation/devtoolsFormatters.js.map +1 -1
- package/dist/native/implementation/refs.js +1 -2
- package/dist/native/implementation/refs.js.map +1 -1
- package/dist/native/implementation/schema.js +1 -1
- package/dist/native/implementation/schema.js.map +1 -1
- package/dist/native/implementation/subscriptionScope.js +2 -4
- package/dist/native/implementation/subscriptionScope.js.map +1 -1
- package/dist/native/index.native.js +1 -1
- package/dist/native/index.native.js.map +1 -1
- package/dist/native/lib/cache.js.map +1 -1
- package/dist/native/lib/cache.test.js +1 -1
- package/dist/native/lib/cache.test.js.map +1 -1
- package/dist/web/coValues/account.js +3 -6
- package/dist/web/coValues/account.js.map +1 -1
- package/dist/web/coValues/coList.js +3 -7
- package/dist/web/coValues/coList.js.map +1 -1
- package/dist/web/coValues/coMap.js +8 -14
- package/dist/web/coValues/coMap.js.map +1 -1
- package/dist/web/coValues/coStream.js +7 -12
- package/dist/web/coValues/coStream.js.map +1 -1
- package/dist/web/coValues/deepLoading.js +6 -3
- package/dist/web/coValues/deepLoading.js.map +1 -1
- package/dist/web/coValues/extensions/imageDef.js.map +1 -1
- package/dist/web/coValues/group.js +3 -6
- package/dist/web/coValues/group.js.map +1 -1
- package/dist/web/coValues/interfaces.js +4 -3
- package/dist/web/coValues/interfaces.js.map +1 -1
- package/dist/web/exports.js +3 -9
- package/dist/web/exports.js.map +1 -1
- package/dist/web/implementation/createContext.js +1 -2
- package/dist/web/implementation/createContext.js.map +1 -1
- package/dist/web/implementation/devtoolsFormatters.js +5 -25
- package/dist/web/implementation/devtoolsFormatters.js.map +1 -1
- package/dist/web/implementation/refs.js +1 -2
- package/dist/web/implementation/refs.js.map +1 -1
- package/dist/web/implementation/schema.js +1 -1
- package/dist/web/implementation/schema.js.map +1 -1
- package/dist/web/implementation/subscriptionScope.js +2 -4
- package/dist/web/implementation/subscriptionScope.js.map +1 -1
- package/dist/web/lib/cache.js.map +1 -1
- package/dist/web/lib/cache.test.js +1 -1
- package/dist/web/lib/cache.test.js.map +1 -1
- package/package.json +5 -9
- package/src/coValues/account.ts +330 -339
- package/src/coValues/coList.ts +474 -495
- package/src/coValues/coMap.ts +584 -604
- package/src/coValues/coStream.ts +624 -650
- package/src/coValues/deepLoading.ts +184 -200
- package/src/coValues/extensions/imageDef.ts +44 -44
- package/src/coValues/group.ts +196 -210
- package/src/coValues/interfaces.ts +197 -199
- package/src/exports.ts +38 -26
- package/src/implementation/createContext.ts +206 -213
- package/src/implementation/devtoolsFormatters.ts +80 -100
- package/src/implementation/refs.ts +127 -139
- package/src/implementation/schema.ts +124 -128
- package/src/implementation/subscriptionScope.ts +111 -121
- package/src/index.native.ts +3 -3
- package/src/lib/cache.test.ts +48 -48
- package/src/lib/cache.ts +9 -9
- package/src/tests/coList.test.ts +264 -283
- package/src/tests/coMap.test.ts +741 -761
- package/src/tests/coStream.test.ts +405 -438
- package/src/tests/deepLoading.test.ts +251 -256
- package/src/tests/groupsAndAccounts.test.ts +70 -74
- package/src/tests/schema.test.ts +198 -198
- package/src/tests/subscribe.test.ts +312 -299
- package/tsconfig.json +2 -4
- package/tsconfig.native.json +4 -10
- package/tsconfig.web.json +4 -10
- package/.eslintrc.cjs +0 -24
- package/.prettierrc.js +0 -9
package/CHANGELOG.md
CHANGED
@@ -1,742 +1,756 @@
|
|
1
1
|
# jazz-tools
|
2
2
|
|
3
|
+
## 0.8.17
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [d433cf4]
|
8
|
+
- cojson@0.8.17
|
9
|
+
|
10
|
+
## 0.8.16
|
11
|
+
|
12
|
+
### Patch Changes
|
13
|
+
|
14
|
+
- Updated dependencies [b934fab]
|
15
|
+
- cojson@0.8.16
|
16
|
+
|
3
17
|
## 0.8.15
|
4
18
|
|
5
19
|
### Patch Changes
|
6
20
|
|
7
|
-
-
|
21
|
+
- cce679b: Export `type Credentials` and mark `AuthResult.saveCredentials` as optional and run if available
|
8
22
|
|
9
23
|
## 0.8.14
|
10
24
|
|
11
25
|
### Patch Changes
|
12
26
|
|
13
|
-
-
|
27
|
+
- 36273b3: Cache other usages of Account.fromRaw
|
14
28
|
|
15
29
|
## 0.8.13
|
16
30
|
|
17
31
|
### Patch Changes
|
18
32
|
|
19
|
-
-
|
33
|
+
- fd011d7: Add a cache layer on the loadedAs account reads
|
20
34
|
|
21
35
|
## 0.8.12
|
22
36
|
|
23
37
|
### Patch Changes
|
24
38
|
|
25
|
-
-
|
26
|
-
|
39
|
+
- Updated dependencies [6ed75eb]
|
40
|
+
- cojson@0.8.12
|
27
41
|
|
28
42
|
## 0.8.11
|
29
43
|
|
30
44
|
### Patch Changes
|
31
45
|
|
32
|
-
-
|
33
|
-
|
46
|
+
- Updated dependencies [1ed4ab5]
|
47
|
+
- cojson@0.8.11
|
34
48
|
|
35
49
|
## 0.8.5
|
36
50
|
|
37
51
|
### Patch Changes
|
38
52
|
|
39
|
-
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
-
|
43
|
-
|
53
|
+
- c3f4e6b: Fix order of exports fields in package.json
|
54
|
+
- d9152ed: Allow interface types as generic argument in co.json
|
55
|
+
- Updated dependencies [c3f4e6b]
|
56
|
+
- Updated dependencies [d9152ed]
|
57
|
+
- cojson@0.8.5
|
44
58
|
|
45
59
|
## 0.8.3
|
46
60
|
|
47
61
|
### Patch Changes
|
48
62
|
|
49
|
-
-
|
50
|
-
|
63
|
+
- Updated dependencies
|
64
|
+
- cojson@0.8.3
|
51
65
|
|
52
66
|
## 0.8.2
|
53
67
|
|
54
68
|
### Patch Changes
|
55
69
|
|
56
|
-
-
|
70
|
+
- a075f90: Fixed cursor reset when interacting with text inputs
|
57
71
|
|
58
72
|
## 0.8.1
|
59
73
|
|
60
74
|
### Patch Changes
|
61
75
|
|
62
|
-
-
|
76
|
+
- Expose randomSessionProvider and fix jazz-run
|
63
77
|
|
64
78
|
## 0.8.0
|
65
79
|
|
66
80
|
### Minor Changes
|
67
81
|
|
68
|
-
-
|
82
|
+
- bcec3be: Implement new top-level context creation and auth method API
|
69
83
|
|
70
84
|
### Patch Changes
|
71
85
|
|
72
|
-
-
|
73
|
-
-
|
74
|
-
-
|
75
|
-
-
|
76
|
-
-
|
77
|
-
-
|
78
|
-
|
86
|
+
- ad40b88: First sketch of API for creating and finding unique CoValues
|
87
|
+
- 23369dc: Re-add logout functionality to AuthMethods
|
88
|
+
- c2b62a0: Make anonymous auth work better
|
89
|
+
- 1a979b6: Implement guest auth without account
|
90
|
+
- Updated dependencies [6a147c2]
|
91
|
+
- Updated dependencies [ad40b88]
|
92
|
+
- cojson@0.8.0
|
79
93
|
|
80
94
|
## 0.7.35-guest-auth.6
|
81
95
|
|
82
96
|
### Patch Changes
|
83
97
|
|
84
|
-
-
|
98
|
+
- Re-add logout functionality to AuthMethods
|
85
99
|
|
86
100
|
## 0.7.35
|
87
101
|
|
88
102
|
### Patch Changes
|
89
103
|
|
90
|
-
-
|
91
|
-
-
|
92
|
-
-
|
93
|
-
-
|
94
|
-
-
|
95
|
-
-
|
96
|
-
|
104
|
+
- 49a8b54: Fix on CoMapInit to not allow null values on required refs
|
105
|
+
- 6f80282: fix: handle null values for co.refs
|
106
|
+
- 35bbcd9: Fix loadAsBlob resolving too early
|
107
|
+
- f350e90: Added a priority system for the sync messages
|
108
|
+
- Updated dependencies [35bbcd9]
|
109
|
+
- Updated dependencies [f350e90]
|
110
|
+
- cojson@0.7.35
|
97
111
|
|
98
112
|
## 0.7.34
|
99
113
|
|
100
114
|
### Patch Changes
|
101
115
|
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
|
116
|
+
- Updated dependencies [5d91f9f]
|
117
|
+
- Updated dependencies [5094e6d]
|
118
|
+
- Updated dependencies [b09589b]
|
119
|
+
- Updated dependencies [2c3a40c]
|
120
|
+
- Updated dependencies [4e16575]
|
121
|
+
- Updated dependencies [ea882ab]
|
122
|
+
- cojson@0.7.34
|
109
123
|
|
110
124
|
## 0.7.34-neverthrow.8
|
111
125
|
|
112
126
|
### Patch Changes
|
113
127
|
|
114
|
-
-
|
115
|
-
|
128
|
+
- Updated dependencies
|
129
|
+
- cojson@0.7.34-neverthrow.8
|
116
130
|
|
117
131
|
## 0.7.34-neverthrow.7
|
118
132
|
|
119
133
|
### Patch Changes
|
120
134
|
|
121
|
-
-
|
122
|
-
|
135
|
+
- Updated dependencies
|
136
|
+
- cojson@0.7.34-neverthrow.7
|
123
137
|
|
124
138
|
## 0.7.34-neverthrow.4
|
125
139
|
|
126
140
|
### Patch Changes
|
127
141
|
|
128
|
-
-
|
129
|
-
|
142
|
+
- Updated dependencies
|
143
|
+
- cojson@0.7.34-neverthrow.4
|
130
144
|
|
131
145
|
## 0.7.34-neverthrow.3
|
132
146
|
|
133
147
|
### Patch Changes
|
134
148
|
|
135
|
-
-
|
136
|
-
|
149
|
+
- Updated dependencies
|
150
|
+
- cojson@0.7.34-neverthrow.3
|
137
151
|
|
138
152
|
## 0.7.34-neverthrow.1
|
139
153
|
|
140
154
|
### Patch Changes
|
141
155
|
|
142
|
-
-
|
143
|
-
|
156
|
+
- Updated dependencies
|
157
|
+
- cojson@0.7.34-neverthrow.1
|
144
158
|
|
145
159
|
## 0.7.34-neverthrow.0
|
146
160
|
|
147
161
|
### Patch Changes
|
148
162
|
|
149
|
-
-
|
150
|
-
|
163
|
+
- Updated dependencies
|
164
|
+
- cojson@0.7.34-neverthrow.0
|
151
165
|
|
152
166
|
## 0.7.33
|
153
167
|
|
154
168
|
### Patch Changes
|
155
169
|
|
156
|
-
-
|
157
|
-
-
|
158
|
-
-
|
159
|
-
-
|
160
|
-
|
170
|
+
- Updated dependencies [b297c93]
|
171
|
+
- Updated dependencies [3bf5127]
|
172
|
+
- Updated dependencies [a8b74ff]
|
173
|
+
- Updated dependencies [db53161]
|
174
|
+
- cojson@0.7.33
|
161
175
|
|
162
176
|
## 0.7.33-hotfixes.5
|
163
177
|
|
164
178
|
### Patch Changes
|
165
179
|
|
166
|
-
-
|
167
|
-
|
180
|
+
- Updated dependencies
|
181
|
+
- cojson@0.7.33-hotfixes.5
|
168
182
|
|
169
183
|
## 0.7.33-hotfixes.4
|
170
184
|
|
171
185
|
### Patch Changes
|
172
186
|
|
173
|
-
-
|
174
|
-
|
187
|
+
- Updated dependencies
|
188
|
+
- cojson@0.7.33-hotfixes.4
|
175
189
|
|
176
190
|
## 0.7.33-hotfixes.3
|
177
191
|
|
178
192
|
### Patch Changes
|
179
193
|
|
180
|
-
-
|
181
|
-
|
194
|
+
- Updated dependencies
|
195
|
+
- cojson@0.7.33-hotfixes.3
|
182
196
|
|
183
197
|
## 0.7.33-hotfixes.0
|
184
198
|
|
185
199
|
### Patch Changes
|
186
200
|
|
187
|
-
-
|
188
|
-
|
201
|
+
- Updated dependencies
|
202
|
+
- cojson@0.7.33-hotfixes.0
|
189
203
|
|
190
204
|
## 0.7.32
|
191
205
|
|
192
206
|
### Patch Changes
|
193
207
|
|
194
|
-
-
|
208
|
+
- Adapt type of applyDiff to make CoMaps fully subclassable again
|
195
209
|
|
196
210
|
## 0.7.31
|
197
211
|
|
198
212
|
### Patch Changes
|
199
213
|
|
200
|
-
-
|
201
|
-
|
214
|
+
- Updated dependencies
|
215
|
+
- cojson@0.7.31
|
202
216
|
|
203
217
|
## 0.7.29
|
204
218
|
|
205
219
|
### Patch Changes
|
206
220
|
|
207
|
-
-
|
208
|
-
|
221
|
+
- Updated dependencies
|
222
|
+
- cojson@0.7.29
|
209
223
|
|
210
224
|
## 0.7.28
|
211
225
|
|
212
226
|
### Patch Changes
|
213
227
|
|
214
|
-
-
|
215
|
-
|
228
|
+
- Updated dependencies
|
229
|
+
- cojson@0.7.28
|
216
230
|
|
217
231
|
## 0.7.26
|
218
232
|
|
219
233
|
### Patch Changes
|
220
234
|
|
221
|
-
-
|
222
|
-
-
|
223
|
-
|
235
|
+
- Remove Effect from jazz/cojson internals
|
236
|
+
- Updated dependencies
|
237
|
+
- cojson@0.7.26
|
224
238
|
|
225
239
|
## 0.7.25
|
226
240
|
|
227
241
|
### Patch Changes
|
228
242
|
|
229
|
-
-
|
243
|
+
- Implement applyDiff on CoMap to only update changed fields
|
230
244
|
|
231
245
|
## 0.7.24
|
232
246
|
|
233
247
|
### Patch Changes
|
234
248
|
|
235
|
-
-
|
249
|
+
- Remove effectful API for loading/subscribing
|
236
250
|
|
237
251
|
## 0.7.23
|
238
252
|
|
239
253
|
### Patch Changes
|
240
254
|
|
241
|
-
-
|
242
|
-
-
|
243
|
-
|
255
|
+
- Mostly complete OPFS implementation (single-tab only)
|
256
|
+
- Updated dependencies
|
257
|
+
- cojson@0.7.23
|
244
258
|
|
245
259
|
## 0.7.21
|
246
260
|
|
247
261
|
### Patch Changes
|
248
262
|
|
249
|
-
-
|
263
|
+
- Fix another bug in CoMap 'has' proxy trap
|
250
264
|
|
251
265
|
## 0.7.20
|
252
266
|
|
253
267
|
### Patch Changes
|
254
268
|
|
255
|
-
-
|
269
|
+
- Fix bug in CoMap 'has' trap
|
256
270
|
|
257
271
|
## 0.7.19
|
258
272
|
|
259
273
|
### Patch Changes
|
260
274
|
|
261
|
-
-
|
275
|
+
- Add support for "in" operator in CoMaps
|
262
276
|
|
263
277
|
## 0.7.18
|
264
278
|
|
265
279
|
### Patch Changes
|
266
280
|
|
267
|
-
-
|
268
|
-
|
281
|
+
- Updated dependencies
|
282
|
+
- cojson@0.7.18
|
269
283
|
|
270
284
|
## 0.7.17
|
271
285
|
|
272
286
|
### Patch Changes
|
273
287
|
|
274
|
-
-
|
275
|
-
|
288
|
+
- Updated dependencies
|
289
|
+
- cojson@0.7.17
|
276
290
|
|
277
291
|
## 0.7.16
|
278
292
|
|
279
293
|
### Patch Changes
|
280
294
|
|
281
|
-
-
|
295
|
+
- Fix: allow null in encoded fields
|
282
296
|
|
283
297
|
## 0.7.14
|
284
298
|
|
285
299
|
### Patch Changes
|
286
300
|
|
287
|
-
-
|
288
|
-
-
|
289
|
-
|
301
|
+
- Use Effect Queues and Streams instead of custom queue implementation
|
302
|
+
- Updated dependencies
|
303
|
+
- cojson@0.7.14
|
290
304
|
|
291
305
|
## 0.7.13
|
292
306
|
|
293
307
|
### Patch Changes
|
294
308
|
|
295
|
-
-
|
309
|
+
- Fix CoList.toJSON()
|
296
310
|
|
297
311
|
## 0.7.12
|
298
312
|
|
299
313
|
### Patch Changes
|
300
314
|
|
301
|
-
-
|
315
|
+
- Fix: toJSON infinitely recurses on circular CoValue structures
|
302
316
|
|
303
317
|
## 0.7.11
|
304
318
|
|
305
319
|
### Patch Changes
|
306
320
|
|
307
|
-
-
|
308
|
-
|
309
|
-
|
321
|
+
- Updated dependencies
|
322
|
+
- cojson@0.7.11
|
323
|
+
- cojson-transport-nodejs-ws@0.7.11
|
310
324
|
|
311
325
|
## 0.7.10
|
312
326
|
|
313
327
|
### Patch Changes
|
314
328
|
|
315
|
-
-
|
316
|
-
|
317
|
-
|
329
|
+
- Updated dependencies
|
330
|
+
- cojson@0.7.10
|
331
|
+
- cojson-transport-nodejs-ws@0.7.10
|
318
332
|
|
319
333
|
## 0.7.9
|
320
334
|
|
321
335
|
### Patch Changes
|
322
336
|
|
323
|
-
-
|
324
|
-
|
325
|
-
|
337
|
+
- Updated dependencies
|
338
|
+
- cojson@0.7.9
|
339
|
+
- cojson-transport-nodejs-ws@0.7.9
|
326
340
|
|
327
341
|
## 0.7.8
|
328
342
|
|
329
343
|
### Patch Changes
|
330
344
|
|
331
|
-
-
|
345
|
+
- Fix CoMaps not initialising properly when passing too many init options
|
332
346
|
|
333
347
|
## 0.7.6
|
334
348
|
|
335
349
|
### Patch Changes
|
336
350
|
|
337
|
-
-
|
351
|
+
- Provide way to create accounts as another account
|
338
352
|
|
339
353
|
## 0.7.3
|
340
354
|
|
341
355
|
### Patch Changes
|
342
356
|
|
343
|
-
-
|
357
|
+
- Clean up loading & subscription API
|
344
358
|
|
345
359
|
## 0.7.1
|
346
360
|
|
347
361
|
### Patch Changes
|
348
362
|
|
349
|
-
-
|
363
|
+
- Add runtime option for optional refs
|
350
364
|
|
351
365
|
## 0.7.0
|
352
366
|
|
353
367
|
### Minor Changes
|
354
368
|
|
355
|
-
-
|
356
|
-
|
357
|
-
### Patch Changes
|
358
|
-
|
359
|
-
-
|
360
|
-
-
|
361
|
-
-
|
362
|
-
-
|
363
|
-
-
|
364
|
-
-
|
365
|
-
-
|
366
|
-
-
|
367
|
-
-
|
368
|
-
-
|
369
|
-
-
|
370
|
-
-
|
371
|
-
-
|
372
|
-
-
|
373
|
-
-
|
374
|
-
-
|
375
|
-
-
|
376
|
-
-
|
377
|
-
-
|
378
|
-
-
|
379
|
-
-
|
380
|
-
-
|
381
|
-
-
|
382
|
-
-
|
383
|
-
-
|
384
|
-
-
|
385
|
-
-
|
386
|
-
-
|
387
|
-
-
|
388
|
-
-
|
389
|
-
-
|
390
|
-
-
|
391
|
-
-
|
392
|
-
-
|
393
|
-
-
|
394
|
-
-
|
395
|
-
-
|
396
|
-
-
|
397
|
-
-
|
398
|
-
-
|
399
|
-
-
|
400
|
-
-
|
401
|
-
-
|
402
|
-
-
|
403
|
-
-
|
404
|
-
-
|
405
|
-
-
|
406
|
-
-
|
407
|
-
-
|
408
|
-
-
|
409
|
-
-
|
410
|
-
-
|
411
|
-
-
|
412
|
-
-
|
413
|
-
-
|
414
|
-
-
|
415
|
-
-
|
416
|
-
-
|
417
|
-
-
|
418
|
-
-
|
419
|
-
-
|
420
|
-
-
|
421
|
-
-
|
422
|
-
|
423
|
-
|
369
|
+
- e299c3e: New simplified API
|
370
|
+
|
371
|
+
### Patch Changes
|
372
|
+
|
373
|
+
- 8636319: Fix infinite recursion in subscriptionScope
|
374
|
+
- 8636319: Fix type of init param for CoMap.create
|
375
|
+
- 1a35307: Implement first devtools formatters
|
376
|
+
- 96c494f: Implement profile visibility based on groups & new migration signature
|
377
|
+
- 59c18c3: CoMap fix
|
378
|
+
- 19f52b7: Fixed bug with newRandomSessionID being called before crypto was ready
|
379
|
+
- 8636319: Implement deep loading, simplify API
|
380
|
+
- 19004b4: Add .all to CoStreamEntry
|
381
|
+
- a78f168: Make Account -> Profile a lazy ref schema
|
382
|
+
- 52675c9: Fix CoList.splice / RawCoList.append
|
383
|
+
- 129e2c1: More precise imports from @effect/schema
|
384
|
+
- 1cfa279: More superclass-compatible CoMaps
|
385
|
+
- 704af7d: Add maxWidth option for loading images
|
386
|
+
- 460478f: Use effect 3.0
|
387
|
+
- 6b0418f: Fix image resolution loading
|
388
|
+
- ed5643a: Fix CoMap \_refs for co.items
|
389
|
+
- bde684f: CoValue casting & auto-subbing \_owner
|
390
|
+
- c4151fc: Support stricter TS lint rules
|
391
|
+
- 63374cc: Relax types of CoMap.\_schema
|
392
|
+
- 01ac646: Make CoMaps even more subclassable
|
393
|
+
- a5e68a4: Make refs type more precise
|
394
|
+
- 952982e: Consistent proxy based API
|
395
|
+
- 1a35307: Add ability to declare minimum required data in subscribe & Improve property access tracing
|
396
|
+
- 5fa277c: Fix CoMap.Record.toJSON()
|
397
|
+
- 60d5ca2: Introduce jazz-tools CLI
|
398
|
+
- 21771c4: Reintroduce changes from main
|
399
|
+
- 77c2b56: Get rid of self generics, new create syntax
|
400
|
+
- 63374cc: Fix schema of Account & Group
|
401
|
+
- d2e03ff: Fix variance of ID.\_\_type
|
402
|
+
- 354bdcd: Even friendlier for subclassing CoMap
|
403
|
+
- 60d5ca2: Clean up exports
|
404
|
+
- 69ac514: Use effect schema much less
|
405
|
+
- f8a5c46: Fix CoStream types
|
406
|
+
- f0f6f1b: Clean up API more & re-add jazz-nodejs
|
407
|
+
- e5eed5b: Make refs on list more precise
|
408
|
+
- 1a44f87: Refactoring
|
409
|
+
- 627d895: Get rid of Co namespace
|
410
|
+
- 1200aae: Cache CoValue proxies
|
411
|
+
- 63374cc: Make sure delete on CoMaps deletes keys
|
412
|
+
- ece35b3: Make fast-check a direct dependency to help dev time resolution
|
413
|
+
- 38d4410: CoMap fixes and improvements
|
414
|
+
- 85d2b62: More subclass-friendly types in CoMap
|
415
|
+
- fd86c11: Extract jazz cli into jazz-run package
|
416
|
+
- 52675c9: Fix Costream[...].all
|
417
|
+
- Updated dependencies [1a35307]
|
418
|
+
- Updated dependencies [96c494f]
|
419
|
+
- Updated dependencies [19f52b7]
|
420
|
+
- Updated dependencies [d8fe2b1]
|
421
|
+
- Updated dependencies [1200aae]
|
422
|
+
- Updated dependencies [52675c9]
|
423
|
+
- Updated dependencies [1a35307]
|
424
|
+
- Updated dependencies [e299c3e]
|
425
|
+
- Updated dependencies [bf0f8ec]
|
426
|
+
- Updated dependencies [c4151fc]
|
427
|
+
- Updated dependencies [8636319]
|
428
|
+
- Updated dependencies [952982e]
|
429
|
+
- Updated dependencies [21771c4]
|
430
|
+
- Updated dependencies [69ac514]
|
431
|
+
- Updated dependencies [f0f6f1b]
|
432
|
+
- Updated dependencies [1a44f87]
|
433
|
+
- Updated dependencies [627d895]
|
434
|
+
- Updated dependencies [63374cc]
|
435
|
+
- Updated dependencies [a423eee]
|
436
|
+
- cojson@0.7.0
|
437
|
+
- cojson-transport-nodejs-ws@0.7.0
|
424
438
|
|
425
439
|
## 0.7.0-alpha.42
|
426
440
|
|
427
441
|
### Patch Changes
|
428
442
|
|
429
|
-
-
|
430
|
-
-
|
431
|
-
|
432
|
-
|
443
|
+
- Fixed bug with newRandomSessionID being called before crypto was ready
|
444
|
+
- Updated dependencies
|
445
|
+
- cojson@0.7.0-alpha.42
|
446
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.42
|
433
447
|
|
434
448
|
## 0.7.0-alpha.41
|
435
449
|
|
436
450
|
### Patch Changes
|
437
451
|
|
438
|
-
-
|
439
|
-
|
452
|
+
- Updated dependencies
|
453
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.41
|
440
454
|
|
441
455
|
## 0.7.0-alpha.39
|
442
456
|
|
443
457
|
### Patch Changes
|
444
458
|
|
445
|
-
-
|
446
|
-
|
447
|
-
|
459
|
+
- Updated dependencies
|
460
|
+
- cojson@0.7.0-alpha.39
|
461
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.39
|
448
462
|
|
449
463
|
## 0.7.0-alpha.38
|
450
464
|
|
451
465
|
### Patch Changes
|
452
466
|
|
453
|
-
-
|
454
|
-
-
|
455
|
-
-
|
456
|
-
-
|
457
|
-
|
458
|
-
|
467
|
+
- Fix infinite recursion in subscriptionScope
|
468
|
+
- Fix type of init param for CoMap.create
|
469
|
+
- Implement deep loading, simplify API
|
470
|
+
- Updated dependencies
|
471
|
+
- cojson@0.7.0-alpha.38
|
472
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.38
|
459
473
|
|
460
474
|
## 0.7.0-alpha.37
|
461
475
|
|
462
476
|
### Patch Changes
|
463
477
|
|
464
|
-
-
|
465
|
-
|
466
|
-
|
478
|
+
- Updated dependencies
|
479
|
+
- cojson@0.7.0-alpha.37
|
480
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.37
|
467
481
|
|
468
482
|
## 0.7.0-alpha.36
|
469
483
|
|
470
484
|
### Patch Changes
|
471
485
|
|
472
|
-
-
|
473
|
-
-
|
474
|
-
-
|
475
|
-
-
|
476
|
-
-
|
477
|
-
|
478
|
-
|
486
|
+
- 1a35307: Implement first devtools formatters
|
487
|
+
- 6b0418f: Fix image resolution loading
|
488
|
+
- 1a35307: Add ability to declare minimum required data in subscribe & Improve property access tracing
|
489
|
+
- Updated dependencies [1a35307]
|
490
|
+
- Updated dependencies [1a35307]
|
491
|
+
- cojson@0.7.0-alpha.36
|
492
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.36
|
479
493
|
|
480
494
|
## 0.7.0-alpha.35
|
481
495
|
|
482
496
|
### Patch Changes
|
483
497
|
|
484
|
-
-
|
485
|
-
-
|
486
|
-
|
487
|
-
|
498
|
+
- Cache CoValue proxies
|
499
|
+
- Updated dependencies
|
500
|
+
- cojson@0.7.0-alpha.35
|
501
|
+
- cojson-transport-nodejs-ws@0.7.0-alpha.35
|
488
502
|
|
489
503
|
## 0.7.0-alpha.34
|
490
504
|
|
491
505
|
### Patch Changes
|
492
506
|
|
493
|
-
-
|
507
|
+
- Extract jazz cli into jazz-run package
|
494
508
|
|
495
509
|
## 0.7.0-alpha.32
|
496
510
|
|
497
511
|
### Patch Changes
|
498
512
|
|
499
|
-
-
|
500
|
-
-
|
513
|
+
- Introduce jazz-tools CLI
|
514
|
+
- Clean up exports
|
501
515
|
|
502
516
|
## 0.7.0-alpha.31
|
503
517
|
|
504
518
|
### Patch Changes
|
505
519
|
|
506
|
-
-
|
520
|
+
- Get rid of self generics, new create syntax
|
507
521
|
|
508
522
|
## 0.7.0-alpha.30
|
509
523
|
|
510
524
|
### Patch Changes
|
511
525
|
|
512
|
-
-
|
526
|
+
- CoValue casting & auto-subbing \_owner
|
513
527
|
|
514
528
|
## 0.7.0-alpha.29
|
515
529
|
|
516
530
|
### Patch Changes
|
517
531
|
|
518
|
-
-
|
519
|
-
-
|
520
|
-
|
532
|
+
- Reintroduce changes from main
|
533
|
+
- Updated dependencies
|
534
|
+
- cojson@0.7.0-alpha.29
|
521
535
|
|
522
536
|
## 0.7.0-alpha.28
|
523
537
|
|
524
538
|
### Patch Changes
|
525
539
|
|
526
|
-
-
|
527
|
-
-
|
528
|
-
|
540
|
+
- Implement profile visibility based on groups & new migration signature
|
541
|
+
- Updated dependencies
|
542
|
+
- cojson@0.7.0-alpha.28
|
529
543
|
|
530
544
|
## 0.7.0-alpha.27
|
531
545
|
|
532
546
|
### Patch Changes
|
533
547
|
|
534
|
-
-
|
535
|
-
-
|
536
|
-
-
|
537
|
-
|
548
|
+
- Fix CoList.splice / RawCoList.append
|
549
|
+
- Fix Costream[...].all
|
550
|
+
- Updated dependencies
|
551
|
+
- cojson@0.7.0-alpha.27
|
538
552
|
|
539
553
|
## 0.7.0-alpha.26
|
540
554
|
|
541
555
|
### Patch Changes
|
542
556
|
|
543
|
-
-
|
557
|
+
- Fix CoMap.Record.toJSON()
|
544
558
|
|
545
559
|
## 0.7.0-alpha.25
|
546
560
|
|
547
561
|
### Patch Changes
|
548
562
|
|
549
|
-
-
|
563
|
+
- Make Account -> Profile a lazy ref schema
|
550
564
|
|
551
565
|
## 0.7.0-alpha.24
|
552
566
|
|
553
567
|
### Patch Changes
|
554
568
|
|
555
|
-
-
|
556
|
-
-
|
557
|
-
-
|
558
|
-
-
|
559
|
-
|
569
|
+
- Relax types of CoMap.\_schema
|
570
|
+
- Fix schema of Account & Group
|
571
|
+
- Make sure delete on CoMaps deletes keys
|
572
|
+
- Updated dependencies
|
573
|
+
- cojson@0.7.0-alpha.24
|
560
574
|
|
561
575
|
## 0.7.0-alpha.23
|
562
576
|
|
563
577
|
### Patch Changes
|
564
578
|
|
565
|
-
-
|
579
|
+
- CoMap fixes and improvements
|
566
580
|
|
567
581
|
## 0.7.0-alpha.22
|
568
582
|
|
569
583
|
### Patch Changes
|
570
584
|
|
571
|
-
-
|
585
|
+
- Fix CoMap \_refs for co.items
|
572
586
|
|
573
587
|
## 0.7.0-alpha.21
|
574
588
|
|
575
589
|
### Patch Changes
|
576
590
|
|
577
|
-
-
|
591
|
+
- Add maxWidth option for loading images
|
578
592
|
|
579
593
|
## 0.7.0-alpha.20
|
580
594
|
|
581
595
|
### Patch Changes
|
582
596
|
|
583
|
-
-
|
597
|
+
- Make fast-check a direct dependency to help dev time resolution
|
584
598
|
|
585
599
|
## 0.7.0-alpha.19
|
586
600
|
|
587
601
|
### Patch Changes
|
588
602
|
|
589
|
-
-
|
603
|
+
- More precise imports from @effect/schema
|
590
604
|
|
591
605
|
## 0.7.0-alpha.17
|
592
606
|
|
593
607
|
### Patch Changes
|
594
608
|
|
595
|
-
-
|
609
|
+
- Use effect 3.0
|
596
610
|
|
597
611
|
## 0.7.0-alpha.16
|
598
612
|
|
599
613
|
### Patch Changes
|
600
614
|
|
601
|
-
-
|
615
|
+
- Make CoMaps even more subclassable
|
602
616
|
|
603
617
|
## 0.7.0-alpha.15
|
604
618
|
|
605
619
|
### Patch Changes
|
606
620
|
|
607
|
-
-
|
621
|
+
- More superclass-compatible CoMaps
|
608
622
|
|
609
623
|
## 0.7.0-alpha.14
|
610
624
|
|
611
625
|
### Patch Changes
|
612
626
|
|
613
|
-
-
|
627
|
+
- Fix CoStream types
|
614
628
|
|
615
629
|
## 0.7.0-alpha.13
|
616
630
|
|
617
631
|
### Patch Changes
|
618
632
|
|
619
|
-
-
|
633
|
+
- Add .all to CoStreamEntry
|
620
634
|
|
621
635
|
## 0.7.0-alpha.12
|
622
636
|
|
623
637
|
### Patch Changes
|
624
638
|
|
625
|
-
-
|
639
|
+
- Fix variance of ID.\_\_type
|
626
640
|
|
627
641
|
## 0.7.0-alpha.11
|
628
642
|
|
629
643
|
### Patch Changes
|
630
644
|
|
631
|
-
-
|
632
|
-
-
|
633
|
-
|
645
|
+
- Support stricter TS lint rules
|
646
|
+
- Updated dependencies
|
647
|
+
- cojson@0.7.0-alpha.11
|
634
648
|
|
635
649
|
## 0.7.0-alpha.10
|
636
650
|
|
637
651
|
### Patch Changes
|
638
652
|
|
639
|
-
-
|
640
|
-
-
|
641
|
-
|
653
|
+
- Clean up API more & re-add jazz-nodejs
|
654
|
+
- Updated dependencies
|
655
|
+
- cojson@0.7.0-alpha.10
|
642
656
|
|
643
657
|
## 0.7.0-alpha.9
|
644
658
|
|
645
659
|
### Patch Changes
|
646
660
|
|
647
|
-
-
|
661
|
+
- Even friendlier for subclassing CoMap
|
648
662
|
|
649
663
|
## 0.7.0-alpha.8
|
650
664
|
|
651
665
|
### Patch Changes
|
652
666
|
|
653
|
-
-
|
667
|
+
- More subclass-friendly types in CoMap
|
654
668
|
|
655
669
|
## 0.7.0-alpha.7
|
656
670
|
|
657
671
|
### Patch Changes
|
658
672
|
|
659
|
-
-
|
660
|
-
-
|
661
|
-
|
673
|
+
- Consistent proxy based API
|
674
|
+
- Updated dependencies
|
675
|
+
- cojson@0.7.0-alpha.7
|
662
676
|
|
663
677
|
## 0.7.0-alpha.6
|
664
678
|
|
665
679
|
### Patch Changes
|
666
680
|
|
667
|
-
-
|
681
|
+
- CoMap fix
|
668
682
|
|
669
683
|
## 0.7.0-alpha.5
|
670
684
|
|
671
685
|
### Patch Changes
|
672
686
|
|
673
|
-
-
|
674
|
-
-
|
675
|
-
|
687
|
+
- Refactoring
|
688
|
+
- Updated dependencies
|
689
|
+
- cojson@0.7.0-alpha.5
|
676
690
|
|
677
691
|
## 0.7.0-alpha.4
|
678
692
|
|
679
693
|
### Patch Changes
|
680
694
|
|
681
|
-
-
|
695
|
+
- Make refs on list more precise
|
682
696
|
|
683
697
|
## 0.7.0-alpha.3
|
684
698
|
|
685
699
|
### Patch Changes
|
686
700
|
|
687
|
-
-
|
701
|
+
- Make refs type more precise
|
688
702
|
|
689
703
|
## 0.7.0-alpha.2
|
690
704
|
|
691
705
|
### Patch Changes
|
692
706
|
|
693
|
-
-
|
707
|
+
- Get rid of Co namespace
|
694
708
|
|
695
709
|
## 0.7.0-alpha.1
|
696
710
|
|
697
711
|
### Patch Changes
|
698
712
|
|
699
|
-
-
|
700
|
-
-
|
701
|
-
|
713
|
+
- Use effect schema much less
|
714
|
+
- Updated dependencies
|
715
|
+
- cojson@0.7.0-alpha.1
|
702
716
|
|
703
717
|
## 0.7.0-alpha.0
|
704
718
|
|
705
719
|
### Minor Changes
|
706
720
|
|
707
|
-
-
|
721
|
+
- New simplified API
|
708
722
|
|
709
723
|
### Patch Changes
|
710
724
|
|
711
|
-
-
|
712
|
-
|
725
|
+
- Updated dependencies
|
726
|
+
- cojson@0.7.0-alpha.0
|
713
727
|
|
714
728
|
## 0.6.1
|
715
729
|
|
716
730
|
### Patch Changes
|
717
731
|
|
718
|
-
-
|
719
|
-
-
|
720
|
-
|
732
|
+
- Fix loading of accounts
|
733
|
+
- Updated dependencies
|
734
|
+
- cojson@0.6.5
|
721
735
|
|
722
736
|
## 0.6.0
|
723
737
|
|
724
738
|
### Minor Changes
|
725
739
|
|
726
|
-
-
|
740
|
+
- Make addMember and removeMember take loaded Accounts instead of just IDs
|
727
741
|
|
728
742
|
### Patch Changes
|
729
743
|
|
730
|
-
-
|
731
|
-
|
744
|
+
- Updated dependencies
|
745
|
+
- cojson@0.6.0
|
732
746
|
|
733
747
|
## 0.5.0
|
734
748
|
|
735
749
|
### Minor Changes
|
736
750
|
|
737
|
-
-
|
751
|
+
- Adding a lot of performance improvements to cojson, add a stresstest for the twit example and make that run smoother in a lot of ways.
|
738
752
|
|
739
753
|
### Patch Changes
|
740
754
|
|
741
|
-
-
|
742
|
-
|
755
|
+
- Updated dependencies
|
756
|
+
- cojson@0.5.0
|