Comparing version 0.1.9 to 0.2.0
@@ -6,2 +6,15 @@ # Change Log | ||
## [0.2.0](https://github.com/endojs/endo/compare/@endo/far@0.1.9...@endo/far@0.2.0) (2022-04-12) | ||
### ⚠ BREAKING CHANGES | ||
* **far:** rename `Remote` to `FarRef` | ||
### Features | ||
* **far:** rename `Remote` to `FarRef` ([7bde2bf](https://github.com/endojs/endo/commit/7bde2bf28e88935606564cebd1b8d284cd70e4ef)) | ||
### [0.1.9](https://github.com/endojs/endo/compare/@endo/far@0.1.8...@endo/far@0.1.9) (2022-03-07) | ||
@@ -8,0 +21,0 @@ |
{ | ||
"name": "@endo/far", | ||
"version": "0.1.9", | ||
"version": "0.2.0", | ||
"description": "Helpers for distributed objects.", | ||
@@ -29,8 +29,8 @@ "type": "module", | ||
"dependencies": { | ||
"@endo/eventual-send": "^0.14.8", | ||
"@endo/marshal": "^0.6.3" | ||
"@endo/eventual-send": "^0.15.0", | ||
"@endo/marshal": "^0.6.4" | ||
}, | ||
"devDependencies": { | ||
"@endo/init": "^0.5.37", | ||
"@endo/ses-ava": "^0.2.21", | ||
"@endo/init": "^0.5.38", | ||
"@endo/ses-ava": "^0.2.22", | ||
"ava": "^3.12.1", | ||
@@ -71,3 +71,3 @@ "c8": "^7.7.3" | ||
}, | ||
"gitHead": "9ddd58b4a26755cdba9403b0cb042b2067c69832" | ||
"gitHead": "59e511891ab67f4fa52d67141510974e22362134" | ||
} |
@@ -7,7 +7,8 @@ export { E } from '@endo/eventual-send'; | ||
* @template [Local=import('@endo/eventual-send').DataOnly<Primary>] | ||
* @typedef {import('@endo/eventual-send').Remote<Primary, Local>} Remote | ||
* @typedef {import('@endo/eventual-send').FarRef<Primary, Local>} FarRef | ||
* Declare an object that is potentially a far reference of type Primary whose | ||
* near reference has type Local. This should be used only for arguments and | ||
* declarations; the only creators of Remote values are distributed object | ||
* creator components like the `Far` or `Remotable` functions. | ||
* auxilliary data has type Local. This should be used only for consumers of | ||
* Far objects in arguments and declarations; the only creators of Far objects | ||
* are distributed object creator components like the `Far` or `Remotable` | ||
* functions. | ||
*/ | ||
@@ -19,4 +20,4 @@ | ||
* Declare that `T` may or may not be a Promise. This should be used only for | ||
* arguments and declarations; return values should specifically be `Promise<T>` | ||
* or `T` itself. | ||
* consumers of arguments and declarations; return values should specifically be | ||
* `Promise<T>` or `T` itself. | ||
*/ | ||
@@ -23,0 +24,0 @@ |
20753
26
- Removed@endo/eventual-send@0.14.8(transitive)
Updated@endo/eventual-send@^0.15.0
Updated@endo/marshal@^0.6.4