@endo/promise-kit 0.2.51 → 0.2.53

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@endo/promise-kit",
3
- "version": "0.2.51",
3
+ "version": "0.2.53",
4
4
  "description": "Helper for making promises",
5
5
  "keywords": [
6
6
  "promise"
@@ -25,9 +25,8 @@
25
25
  },
26
26
  "scripts": {
27
27
  "build": "exit 0",
28
- "clean": "tsc --build jsconfig.build.json --clean",
29
28
  "prepack": "tsc --build jsconfig.build.json",
30
- "postpack": "yarn clean",
29
+ "postpack": "git clean -f '*.d.ts*'",
31
30
  "cover": "c8 ava",
32
31
  "lint": "yarn lint:types && yarn lint:js",
33
32
  "lint-check": "yarn lint",
@@ -38,13 +37,13 @@
38
37
  "test:xs": "exit 0"
39
38
  },
40
39
  "dependencies": {
41
- "ses": "^0.17.0"
40
+ "ses": "^0.18.1"
42
41
  },
43
42
  "devDependencies": {
44
- "@endo/eslint-config": "^0.5.1",
45
- "@endo/ses-ava": "^0.2.35",
43
+ "@endo/eslint-config": "^0.5.2",
44
+ "@endo/ses-ava": "^0.2.37",
46
45
  "@types/node": ">=14.0",
47
- "ava": "^3.12.1",
46
+ "ava": "^5.1.0",
48
47
  "babel-eslint": "^10.0.3",
49
48
  "c8": "^7.7.3",
50
49
  "eslint": "^7.32.0",
@@ -53,8 +52,8 @@
53
52
  "eslint-plugin-eslint-comments": "^3.1.2",
54
53
  "eslint-plugin-import": "^2.26.0",
55
54
  "eslint-plugin-prettier": "^3.4.1",
56
- "prettier": "^1.19.1",
57
- "typescript": "~4.6.2"
55
+ "prettier": "^2.8.0",
56
+ "typescript": "~4.8.4"
58
57
  },
59
58
  "files": [
60
59
  "LICENSE*",
@@ -72,6 +71,7 @@
72
71
  ]
73
72
  },
74
73
  "prettier": {
74
+ "arrowParens": "avoid",
75
75
  "trailingComma": "all",
76
76
  "singleQuote": true
77
77
  },
@@ -84,5 +84,5 @@
84
84
  "engines": {
85
85
  "node": ">=11.0"
86
86
  },
87
- "gitHead": "8fb324d8f13a0c6939dc0c1feb831f72298f1853"
87
+ "gitHead": "ab8d64ae6fc9c628a2d1c02d16bf9ef249f5c8dc"
88
88
  }
@@ -1,6 +1,6 @@
1
1
  export { race as memoRace };
2
2
  export type Deferred<T = any> = {
3
- resolve: (value?: import("./types.js").ERef<T> | undefined) => void;
3
+ resolve: (value?: import("./types.js").ERef<T>) => void;
4
4
  reject: (err?: any) => void;
5
5
  };
6
6
  export type PromiseMemoRecord = never | {
@@ -1 +1 @@
1
- {"version":3,"file":"memo-race.d.ts","sourceRoot":"","sources":["memo-race.js"],"names":[],"mappings":";;mEAmCyD,IAAI;mBACxC,GAAG,KAAM,IAAI;;gCAIpB,KAAK,GACb;IAAC,OAAO,EAAE,KAAK,CAAC;IAAC,SAAS,EAAE,IAAI,QAAQ,CAAC,CAAA;CAAC,GAC1C;IAAC,OAAO,EAAE,IAAI,CAAC;IAAC,SAAS,CAAC,EAAE,SAAS,CAAA;CAAC;AAgE1C;;;;;;;;;;;;GAYG;AACH,+HA8BC"}
1
+ {"version":3,"file":"memo-race.d.ts","sourceRoot":"","sources":["memo-race.js"],"names":[],"mappings":";;sBAmCuB,OAAO,YAAY,EAAE,IAAI,CAAC,CAAC,CAAC,KAAM,IAAI;mBACxC,GAAG,KAAM,IAAI;;gCAIpB,KAAK,GACb;IAAC,OAAO,EAAE,KAAK,CAAC;IAAC,SAAS,EAAE,IAAI,QAAQ,CAAC,CAAA;CAAC,GAC1C;IAAC,OAAO,EAAE,IAAI,CAAC;IAAC,SAAS,CAAC,EAAE,SAAS,CAAA;CAAC;AAgE1C;;;;;;;;;;;;GAYG;AACH,+HA8BC"}
package/CHANGELOG.md DELETED
@@ -1,607 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ### [0.2.51](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.50...@endo/promise-kit@0.2.51) (2022-10-24)
7
-
8
- **Note:** Version bump only for package @endo/promise-kit
9
-
10
-
11
-
12
-
13
-
14
- ### [0.2.50](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.49...@endo/promise-kit@0.2.50) (2022-10-19)
15
-
16
- **Note:** Version bump only for package @endo/promise-kit
17
-
18
-
19
-
20
-
21
-
22
- ### [0.2.49](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.48...@endo/promise-kit@0.2.49) (2022-09-27)
23
-
24
- **Note:** Version bump only for package @endo/promise-kit
25
-
26
-
27
-
28
-
29
-
30
- ### [0.2.48](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.47...@endo/promise-kit@0.2.48) (2022-09-14)
31
-
32
- **Note:** Version bump only for package @endo/promise-kit
33
-
34
-
35
-
36
-
37
-
38
- ### [0.2.47](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.46...@endo/promise-kit@0.2.47) (2022-08-26)
39
-
40
- **Note:** Version bump only for package @endo/promise-kit
41
-
42
-
43
-
44
-
45
-
46
- ### [0.2.46](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.45...@endo/promise-kit@0.2.46) (2022-08-26)
47
-
48
- **Note:** Version bump only for package @endo/promise-kit
49
-
50
-
51
-
52
-
53
-
54
- ### [0.2.45](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.44...@endo/promise-kit@0.2.45) (2022-08-25)
55
-
56
- **Note:** Version bump only for package @endo/promise-kit
57
-
58
-
59
-
60
-
61
-
62
- ### [0.2.44](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.43...@endo/promise-kit@0.2.44) (2022-08-23)
63
-
64
-
65
- ### Bug Fixes
66
-
67
- * more hardens ([#1241](https://github.com/endojs/endo/issues/1241)) ([b6ff811](https://github.com/endojs/endo/commit/b6ff8118a92fd72c5309b2bb285fac08d0531d92))
68
-
69
-
70
-
71
- ### [0.2.43](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.42...@endo/promise-kit@0.2.43) (2022-06-28)
72
-
73
-
74
- ### Features
75
-
76
- * **promise-kit:** Add non-leaky promise race helper ([505815c](https://github.com/endojs/endo/commit/505815cdb02512d2de6ba0ac73c1130626eebf77))
77
- * **promise-kit:** detach promise from resolvers after use ([d6e9fba](https://github.com/endojs/endo/commit/d6e9fbae05d9d42bdf7fb79c83893141b0348010))
78
- * **promise-kit:** Make leak-free race a fully compliant drop-in replacement ([14fbba4](https://github.com/endojs/endo/commit/14fbba496a564add617d4c151726fbfc271e1f4c))
79
-
80
-
81
-
82
- ### [0.2.42](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.41...@endo/promise-kit@0.2.42) (2022-06-11)
83
-
84
- **Note:** Version bump only for package @endo/promise-kit
85
-
86
-
87
-
88
-
89
-
90
- ### [0.2.41](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.40...@endo/promise-kit@0.2.41) (2022-04-15)
91
-
92
- **Note:** Version bump only for package @endo/promise-kit
93
-
94
-
95
-
96
-
97
-
98
- ### [0.2.40](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.39...@endo/promise-kit@0.2.40) (2022-04-14)
99
-
100
- **Note:** Version bump only for package @endo/promise-kit
101
-
102
-
103
-
104
-
105
-
106
- ### [0.2.39](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.38...@endo/promise-kit@0.2.39) (2022-04-13)
107
-
108
-
109
- ### Bug Fixes
110
-
111
- * Revert dud release ([c8a7101](https://github.com/endojs/endo/commit/c8a71017d8d7af10a97909c9da9c5c7e59aed939))
112
-
113
-
114
-
115
- ### [0.2.38](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.37...@endo/promise-kit@0.2.38) (2022-04-12)
116
-
117
- **Note:** Version bump only for package @endo/promise-kit
118
-
119
-
120
-
121
-
122
-
123
- ### [0.2.37](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.36...@endo/promise-kit@0.2.37) (2022-03-07)
124
-
125
- **Note:** Version bump only for package @endo/promise-kit
126
-
127
-
128
-
129
-
130
-
131
- ### [0.2.36](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.35...@endo/promise-kit@0.2.36) (2022-03-02)
132
-
133
- **Note:** Version bump only for package @endo/promise-kit
134
-
135
-
136
-
137
-
138
-
139
- ### [0.2.35](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.34...@endo/promise-kit@0.2.35) (2022-02-20)
140
-
141
- **Note:** Version bump only for package @endo/promise-kit
142
-
143
-
144
-
145
-
146
-
147
- ### [0.2.34](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.33...@endo/promise-kit@0.2.34) (2022-02-18)
148
-
149
-
150
- ### Bug Fixes
151
-
152
- * Address TypeScript recommendations ([2d1e1e0](https://github.com/endojs/endo/commit/2d1e1e0bdd385a514315be908c33b8f8eb157295))
153
- * Type definitions canot overshadow ([4d193fd](https://github.com/endojs/endo/commit/4d193fd3387dadd6f55fd51ad872f10878ef46f9))
154
- * Make sure lint:type runs correctly in CI ([a520419](https://github.com/endojs/endo/commit/a52041931e72cb7b7e3e21dde39c099cc9f262b0))
155
- * Unify TS version to ~4.2 ([5fb173c](https://github.com/endojs/endo/commit/5fb173c05c9427dca5adfe66298c004780e8b86c))
156
-
157
-
158
-
159
- ### [0.2.33](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.32...@endo/promise-kit@0.2.33) (2022-01-31)
160
-
161
- **Note:** Version bump only for package @endo/promise-kit
162
-
163
-
164
-
165
-
166
-
167
- ### [0.2.32](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.31...@endo/promise-kit@0.2.32) (2022-01-27)
168
-
169
-
170
- ### Bug Fixes
171
-
172
- * Publish all materials consistently ([#1021](https://github.com/endojs/endo/issues/1021)) ([a2c74d9](https://github.com/endojs/endo/commit/a2c74d9de68a325761d62e1b2187a117ef884571))
173
-
174
-
175
-
176
- ### [0.2.31](https://github.com/endojs/endo/compare/@endo/promise-kit@0.2.30...@endo/promise-kit@0.2.31) (2022-01-25)
177
-
178
-
179
- ### Bug Fixes
180
-
181
- * **promise-kit:** Publish code ([9cd3655](https://github.com/endojs/endo/commit/9cd365532be42059f03b91ccdb03e34149ffd334))
182
- * remove more extraneous spaced-comment comments ([#1009](https://github.com/endojs/endo/issues/1009)) ([980a798](https://github.com/endojs/endo/commit/980a79898a4643a359d905c308eecf70d8ab2758))
183
-
184
-
185
-
186
- ### 0.2.30 (2022-01-23)
187
-
188
-
189
- ### Bug Fixes
190
-
191
- * **promise-kit:** SES AVA is a dev dependency ([1579160](https://github.com/endojs/endo/commit/1579160b222cd48308780d008743296ef764f163))
192
-
193
-
194
-
195
- ### [0.2.29](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.28...@agoric/promise-kit@0.2.29) (2021-12-02)
196
-
197
- **Note:** Version bump only for package @agoric/promise-kit
198
-
199
-
200
-
201
-
202
-
203
- ### [0.2.28](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.27...@agoric/promise-kit@0.2.28) (2021-10-13)
204
-
205
- **Note:** Version bump only for package @agoric/promise-kit
206
-
207
-
208
-
209
-
210
-
211
- ### [0.2.27](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.26...@agoric/promise-kit@0.2.27) (2021-09-23)
212
-
213
- **Note:** Version bump only for package @agoric/promise-kit
214
-
215
-
216
-
217
-
218
-
219
- ### [0.2.26](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.25...@agoric/promise-kit@0.2.26) (2021-09-15)
220
-
221
- **Note:** Version bump only for package @agoric/promise-kit
222
-
223
-
224
-
225
-
226
-
227
- ### [0.2.25](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.24...@agoric/promise-kit@0.2.25) (2021-08-18)
228
-
229
- **Note:** Version bump only for package @agoric/promise-kit
230
-
231
-
232
-
233
-
234
-
235
- ### [0.2.24](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.23...@agoric/promise-kit@0.2.24) (2021-08-17)
236
-
237
- **Note:** Version bump only for package @agoric/promise-kit
238
-
239
-
240
-
241
-
242
-
243
- ### [0.2.23](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.20...@agoric/promise-kit@0.2.23) (2021-08-15)
244
-
245
- ### 0.26.10 (2021-07-28)
246
-
247
-
248
- ### Bug Fixes
249
-
250
- * **promise-kit:** make strict typing compliant ([#3397](https://github.com/Agoric/agoric-sdk/issues/3397)) ([69e2692](https://github.com/Agoric/agoric-sdk/commit/69e2692188a386b49dbe1a662ac8cde286e7fe7e))
251
-
252
-
253
-
254
- ### [0.2.22](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.20...@agoric/promise-kit@0.2.22) (2021-08-14)
255
-
256
- ### 0.26.10 (2021-07-28)
257
-
258
-
259
- ### Bug Fixes
260
-
261
- * **promise-kit:** make strict typing compliant ([#3397](https://github.com/Agoric/agoric-sdk/issues/3397)) ([69e2692](https://github.com/Agoric/agoric-sdk/commit/69e2692188a386b49dbe1a662ac8cde286e7fe7e))
262
-
263
-
264
-
265
- ### [0.2.21](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.20...@agoric/promise-kit@0.2.21) (2021-07-28)
266
-
267
-
268
- ### Bug Fixes
269
-
270
- * **promise-kit:** make strict typing compliant ([#3397](https://github.com/Agoric/agoric-sdk/issues/3397)) ([69e2692](https://github.com/Agoric/agoric-sdk/commit/69e2692188a386b49dbe1a662ac8cde286e7fe7e))
271
-
272
-
273
-
274
- ### [0.2.20](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.19...@agoric/promise-kit@0.2.20) (2021-07-01)
275
-
276
- **Note:** Version bump only for package @agoric/promise-kit
277
-
278
-
279
-
280
-
281
-
282
- ### [0.2.19](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.18...@agoric/promise-kit@0.2.19) (2021-06-28)
283
-
284
- **Note:** Version bump only for package @agoric/promise-kit
285
-
286
-
287
-
288
-
289
-
290
- ### [0.2.18](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.17...@agoric/promise-kit@0.2.18) (2021-06-25)
291
-
292
- **Note:** Version bump only for package @agoric/promise-kit
293
-
294
-
295
-
296
-
297
-
298
- ### [0.2.17](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.16...@agoric/promise-kit@0.2.17) (2021-06-24)
299
-
300
- **Note:** Version bump only for package @agoric/promise-kit
301
-
302
-
303
-
304
-
305
-
306
- ### [0.2.16](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.15...@agoric/promise-kit@0.2.16) (2021-06-23)
307
-
308
- **Note:** Version bump only for package @agoric/promise-kit
309
-
310
-
311
-
312
-
313
-
314
- ### [0.2.15](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.14...@agoric/promise-kit@0.2.15) (2021-06-16)
315
-
316
- **Note:** Version bump only for package @agoric/promise-kit
317
-
318
-
319
-
320
-
321
-
322
- ### [0.2.14](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.13...@agoric/promise-kit@0.2.14) (2021-06-15)
323
-
324
-
325
- ### Bug Fixes
326
-
327
- * Pin ESM to forked version ([54dbb55](https://github.com/Agoric/agoric-sdk/commit/54dbb55d64d7ff7adb395bc4bd9d1461dd2d3c17))
328
-
329
-
330
-
331
- ## [0.2.13](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.12...@agoric/promise-kit@0.2.13) (2021-05-10)
332
-
333
- **Note:** Version bump only for package @agoric/promise-kit
334
-
335
-
336
-
337
-
338
-
339
- ## [0.2.12](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.11...@agoric/promise-kit@0.2.12) (2021-05-05)
340
-
341
- **Note:** Version bump only for package @agoric/promise-kit
342
-
343
-
344
-
345
-
346
-
347
- ## [0.2.11](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.10...@agoric/promise-kit@0.2.11) (2021-05-05)
348
-
349
- **Note:** Version bump only for package @agoric/promise-kit
350
-
351
-
352
-
353
-
354
-
355
- ## [0.2.10](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.9...@agoric/promise-kit@0.2.10) (2021-04-22)
356
-
357
- **Note:** Version bump only for package @agoric/promise-kit
358
-
359
-
360
-
361
-
362
-
363
- ## [0.2.9](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.8...@agoric/promise-kit@0.2.9) (2021-04-18)
364
-
365
- **Note:** Version bump only for package @agoric/promise-kit
366
-
367
-
368
-
369
-
370
-
371
- ## [0.2.8](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.7...@agoric/promise-kit@0.2.8) (2021-04-16)
372
-
373
- **Note:** Version bump only for package @agoric/promise-kit
374
-
375
-
376
-
377
-
378
-
379
- ## [0.2.7](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.6...@agoric/promise-kit@0.2.7) (2021-04-14)
380
-
381
- **Note:** Version bump only for package @agoric/promise-kit
382
-
383
-
384
-
385
-
386
-
387
- ## [0.2.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.5...@agoric/promise-kit@0.2.6) (2021-04-07)
388
-
389
- **Note:** Version bump only for package @agoric/promise-kit
390
-
391
-
392
-
393
-
394
-
395
- ## [0.2.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.4...@agoric/promise-kit@0.2.5) (2021-04-06)
396
-
397
- **Note:** Version bump only for package @agoric/promise-kit
398
-
399
-
400
-
401
-
402
-
403
- ## [0.2.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.3...@agoric/promise-kit@0.2.4) (2021-03-24)
404
-
405
- **Note:** Version bump only for package @agoric/promise-kit
406
-
407
-
408
-
409
-
410
-
411
- ## [0.2.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.2...@agoric/promise-kit@0.2.3) (2021-03-16)
412
-
413
-
414
- ### Bug Fixes
415
-
416
- * make separate 'test:xs' target, remove XS from 'test' target ([b9c1a69](https://github.com/Agoric/agoric-sdk/commit/b9c1a6987093fc8e09e8aba7acd2a1618413bac8)), closes [#2647](https://github.com/Agoric/agoric-sdk/issues/2647)
417
-
418
-
419
-
420
-
421
-
422
- ## [0.2.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.1...@agoric/promise-kit@0.2.2) (2021-02-22)
423
-
424
- **Note:** Version bump only for package @agoric/promise-kit
425
-
426
-
427
-
428
-
429
-
430
- ## [0.2.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.2.0...@agoric/promise-kit@0.2.1) (2021-02-16)
431
-
432
- **Note:** Version bump only for package @agoric/promise-kit
433
-
434
-
435
-
436
-
437
-
438
- # [0.2.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.7...@agoric/promise-kit@0.2.0) (2020-12-10)
439
-
440
-
441
- ### Features
442
-
443
- * **import-bundle:** Preliminary support Endo zip hex bundle format ([#1983](https://github.com/Agoric/agoric-sdk/issues/1983)) ([983681b](https://github.com/Agoric/agoric-sdk/commit/983681bfc4bf512b6bd90806ed9220cd4fefc13c))
444
-
445
-
446
-
447
-
448
-
449
- ## [0.1.7](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.7-dev.0...@agoric/promise-kit@0.1.7) (2020-11-07)
450
-
451
-
452
- ### Bug Fixes
453
-
454
- * correct types for PromiseRecord.resolve ([84270a4](https://github.com/Agoric/agoric-sdk/commit/84270a4a10b17e285299126f9c7e7d2fb4a05aa1))
455
-
456
-
457
-
458
-
459
-
460
- ## [0.1.7-dev.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.6...@agoric/promise-kit@0.1.7-dev.0) (2020-10-19)
461
-
462
- **Note:** Version bump only for package @agoric/promise-kit
463
-
464
-
465
-
466
-
467
-
468
- ## [0.1.6](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.6-dev.2...@agoric/promise-kit@0.1.6) (2020-10-11)
469
-
470
- **Note:** Version bump only for package @agoric/promise-kit
471
-
472
-
473
-
474
-
475
-
476
- ## [0.1.6-dev.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.6-dev.1...@agoric/promise-kit@0.1.6-dev.2) (2020-09-18)
477
-
478
- **Note:** Version bump only for package @agoric/promise-kit
479
-
480
-
481
-
482
-
483
-
484
- ## [0.1.6-dev.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.6-dev.0...@agoric/promise-kit@0.1.6-dev.1) (2020-09-18)
485
-
486
- **Note:** Version bump only for package @agoric/promise-kit
487
-
488
-
489
-
490
-
491
-
492
- ## [0.1.6-dev.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.5...@agoric/promise-kit@0.1.6-dev.0) (2020-09-18)
493
-
494
- **Note:** Version bump only for package @agoric/promise-kit
495
-
496
-
497
-
498
-
499
-
500
- ## [0.1.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/promise-kit@0.1.4...@agoric/promise-kit@0.1.5) (2020-09-16)
501
-
502
- **Note:** Version bump only for package @agoric/promise-kit
503
-
504
-
505
-
506
-
507
-
508
- ## 0.1.4 (2020-08-31)
509
-
510
-
511
- ### Bug Fixes
512
-
513
- * `ERef<T>` is `T | PromiseLike<T>` ([#1383](https://github.com/Agoric/agoric-sdk/issues/1383)) ([8ef4d66](https://github.com/Agoric/agoric-sdk/commit/8ef4d662dc80daf80420c0c531c2abe41517b6cd))
514
- * don't treat HandledPromises specially ([9015744](https://github.com/Agoric/agoric-sdk/commit/9015744f9eb57467feed5619c135f99455d19f80))
515
- * reduce inconsistency among our linting rules ([#1492](https://github.com/Agoric/agoric-sdk/issues/1492)) ([b6b675e](https://github.com/Agoric/agoric-sdk/commit/b6b675e2de110e2af19cad784a66220cab21dacf))
516
- * remove obsolete "unwrap" ([#1360](https://github.com/Agoric/agoric-sdk/issues/1360)) ([5796e0e](https://github.com/Agoric/agoric-sdk/commit/5796e0e6f8bfd00619f725bdac4ff5743610a52f))
517
- * rename producePromise to makePromiseKit ([#1329](https://github.com/Agoric/agoric-sdk/issues/1329)) ([1d2925a](https://github.com/Agoric/agoric-sdk/commit/1d2925ad640cce7b419751027b44737bd46a6d59))
518
- * try to use HandledPromise for pipelineability ([848a90f](https://github.com/Agoric/agoric-sdk/commit/848a90f8d7427e2c31dc5764555da2fde42eac8d))
519
-
520
-
521
-
522
-
523
-
524
- ## [0.1.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/produce-promise@0.1.2...@agoric/produce-promise@0.1.3) (2020-06-30)
525
-
526
- **Note:** Version bump only for package @agoric/produce-promise
527
-
528
-
529
-
530
-
531
-
532
- ## [0.1.2](https://github.com/Agoric/agoric-sdk/compare/@agoric/produce-promise@0.1.1...@agoric/produce-promise@0.1.2) (2020-05-17)
533
-
534
- **Note:** Version bump only for package @agoric/produce-promise
535
-
536
-
537
-
538
-
539
-
540
- ## [0.1.1](https://github.com/Agoric/agoric-sdk/compare/@agoric/produce-promise@0.1.0...@agoric/produce-promise@0.1.1) (2020-05-10)
541
-
542
- **Note:** Version bump only for package @agoric/produce-promise
543
-
544
-
545
-
546
-
547
-
548
- # [0.1.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/produce-promise@0.0.5...@agoric/produce-promise@0.1.0) (2020-05-04)
549
-
550
-
551
- ### Bug Fixes
552
-
553
- * use the new (typed) harden package ([2eb1af0](https://github.com/Agoric/agoric-sdk/commit/2eb1af08fe3967629a3ce165752fd501a5c85a96))
554
-
555
-
556
- ### Features
557
-
558
- * implement channel host handler ([4e68f44](https://github.com/Agoric/agoric-sdk/commit/4e68f441b46d70dee481387ab96e88f1e0b69bfa))
559
-
560
-
561
-
562
-
563
-
564
- ## [0.0.5](https://github.com/Agoric/agoric-sdk/compare/@agoric/produce-promise@0.0.5-alpha.0...@agoric/produce-promise@0.0.5) (2020-04-13)
565
-
566
- **Note:** Version bump only for package @agoric/produce-promise
567
-
568
-
569
-
570
-
571
-
572
- ## 0.0.5-alpha.0 (2020-04-12)
573
-
574
- **Note:** Version bump only for package @agoric/produce-promise
575
-
576
-
577
-
578
-
579
-
580
- ## [0.0.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/make-promise@0.0.3-alpha.0...@agoric/produce-promise@0.0.3) (2020-04-06)
581
-
582
- renamed package from @agoric/make-promise
583
-
584
- Renamed from { p, res, reject } to { promise, resolve, reject }
585
-
586
- ## [0.0.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/make-promise@0.0.3-alpha.0...@agoric/make-promise@0.0.3) (2020-04-02)
587
-
588
- **Note:** Version bump only for package @agoric/make-promise
589
-
590
-
591
-
592
-
593
-
594
- ## [0.0.3-alpha.0](https://github.com/Agoric/agoric-sdk/compare/@agoric/make-promise@0.0.2...@agoric/make-promise@0.0.3-alpha.0) (2020-04-02)
595
-
596
- **Note:** Version bump only for package @agoric/make-promise
597
-
598
-
599
-
600
-
601
-
602
- ## 0.0.2 (2020-03-26)
603
-
604
-
605
- ### Bug Fixes
606
-
607
- * **makePromise:** support HandledPromise.unwrap(p) ([fb98636](https://github.com/Agoric/agoric-sdk/commit/fb98636864583e222f67087cbbe487bcfd74a772))