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