@agoric/captp
Advanced tools
Comparing version 1.10.3 to 1.10.4
@@ -6,2 +6,11 @@ # Change Log | ||
### [1.10.4](https://github.com/Agoric/agoric-sdk/compare/@agoric/captp@1.10.3...@agoric/captp@1.10.4) (2021-09-15) | ||
### Bug Fixes | ||
* more missing Fars. kill "this" ([#3746](https://github.com/Agoric/agoric-sdk/issues/3746)) ([7bd027a](https://github.com/Agoric/agoric-sdk/commit/7bd027a879f98a9a3f30429ee1b54e6057efec42)) | ||
### [1.10.3](https://github.com/Agoric/agoric-sdk/compare/@agoric/captp@1.10.2...@agoric/captp@1.10.3) (2021-08-18) | ||
@@ -8,0 +17,0 @@ |
{ | ||
"name": "@agoric/captp", | ||
"version": "1.10.3", | ||
"version": "1.10.4", | ||
"description": "Capability Transfer Protocol for distributed objects", | ||
@@ -39,4 +39,4 @@ "type": "module", | ||
"devDependencies": { | ||
"@agoric/install-ses": "^0.5.25", | ||
"@agoric/swingset-vat": "^0.21.3", | ||
"@agoric/install-ses": "^0.5.26", | ||
"@agoric/swingset-vat": "^0.22.0", | ||
"@endo/ses-ava": "^0.2.6", | ||
@@ -48,7 +48,7 @@ "ava": "^3.12.1", | ||
"dependencies": { | ||
"@agoric/assert": "^0.3.11", | ||
"@agoric/eventual-send": "^0.13.27", | ||
"@agoric/marshal": "^0.4.25", | ||
"@agoric/assert": "^0.3.12", | ||
"@agoric/eventual-send": "^0.13.28", | ||
"@agoric/marshal": "^0.4.26", | ||
"@agoric/nat": "^4.1.0", | ||
"@agoric/promise-kit": "^0.2.25" | ||
"@agoric/promise-kit": "^0.2.26" | ||
}, | ||
@@ -76,3 +76,3 @@ "bugs": { | ||
}, | ||
"gitHead": "6321e0abed1cd872461b49f24256d969422de134" | ||
"gitHead": "84bb5a366cfa7e56cb9686c55e5bfa0d508ddaa2" | ||
} |
@@ -322,8 +322,8 @@ // @ts-check | ||
if (slot[0] === 'o' || slot[0] === 't') { | ||
// A new remote presence | ||
const pres = pr.resPres(); | ||
if (iface === undefined) { | ||
iface = `Alleged: Presence ${ourId} ${slot}`; | ||
} | ||
val = Remotable(iface, undefined, pres); | ||
// A new remote presence | ||
// Use Remotable rather than Far to make a remote from a presence | ||
val = Remotable(iface, undefined, pr.resPres()); | ||
} else { | ||
@@ -330,0 +330,0 @@ // A new promise |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
71660
Updated@agoric/assert@^0.3.12
Updated@agoric/marshal@^0.4.26
Updated@agoric/promise-kit@^0.2.26