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