Skip to content

Commit 584577f

Browse files
authored
Merge pull request #1182 from Agoric/ta/sdk-compat
SDK CI compat
2 parents 8fa8208 + 7960a64 commit 584577f

File tree

4 files changed

+57
-400
lines changed

4 files changed

+57
-400
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,25 +39,25 @@
3939
"dependencies": {
4040
"@agoric/ertp": "community-dev",
4141
"@agoric/zoe": "community-dev",
42-
"@agoric/zone": "0.2.3-u13.0",
43-
"@endo/far": "^0.2.19",
44-
"@endo/marshal": "^0.8.6",
45-
"@endo/pass-style": "^0.1.6",
46-
"@endo/patterns": "^0.2.3",
42+
"@agoric/zone": "community-dev",
43+
"@endo/errors": "^1.2.4",
44+
"@endo/far": "^1.1.4",
45+
"@endo/marshal": "^1.5.2",
46+
"@endo/pass-style": "^1.4.2",
47+
"@endo/patterns": "^1.4.2",
4748
"typescript": "^4.0.3"
4849
},
4950
"devDependencies": {
50-
"@agoric/assert": "community-dev",
5151
"@agoric/cosmic-swingset": "community-dev",
5252
"@agoric/ertp": "community-dev",
5353
"@agoric/notifier": "community-dev",
5454
"@agoric/solo": "community-dev",
5555
"@agoric/store": "community-dev",
5656
"@agoric/vats": "community-dev",
57-
"@endo/bundle-source": "2.5.2-upstream-rollup",
58-
"@endo/eventual-send": "^0.17.2",
59-
"@endo/init": "^0.5.56",
60-
"@endo/promise-kit": "^0.2.56",
57+
"@endo/bundle-source": "^3.3.0",
58+
"@endo/eventual-send": "^1.2.4",
59+
"@endo/init": "^1.1.3",
60+
"@endo/promise-kit": "^1.1.4",
6161
"@endo/ses-ava": "^1.2.4",
6262
"@typescript-eslint/parser": "^4.26.0",
6363
"ava": "^4.3.1",
@@ -68,7 +68,7 @@
6868
"eslint-plugin-import": "^2.26.0",
6969
"eslint-plugin-jsdoc": "^35.1.2",
7070
"eslint-plugin-prettier": "^5.2.1",
71-
"import-meta-resolve": "^1.1.1",
71+
"import-meta-resolve": "^2.2.1",
7272
"prettier": "^3.3.3",
7373
"ses": "^1.7.0",
7474
"stylus": "^0.62.0",

snippets/tools/zoeTestHelpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { E } from '@endo/eventual-send';
22

33
import { AmountMath, assertValueGetHelpers } from '@agoric/ertp';
44

5-
import { q } from '@agoric/assert';
5+
import { q } from '@endo/errors';
66

77
export const assertAmountsEqual = (t, amount, expected, label = '') => {
88
harden(amount);

snippets/zoe/contracts/test-oracle.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { makeFakeVatAdmin } from '@agoric/zoe/tools/fakeVatAdmin.js';
99
import { makeZoeKit } from '@agoric/zoe';
1010
import bundleSource from '@endo/bundle-source';
1111
import { makeIssuerKit, AssetKind, AmountMath } from '@agoric/ertp';
12-
import { assert, details } from '@agoric/assert';
12+
import { assert, redacted } from '@endo/errors';
1313
import { E } from '@endo/eventual-send';
1414
import { Far } from '@endo/marshal';
1515

@@ -43,7 +43,7 @@ test('oracle contract', async t => {
4343
requiredFee = feeAmount;
4444
assert(
4545
AmountMath.isGTE(fee, requiredFee),
46-
details`Minimum fee of ${feeAmount} not met; have ${fee}`,
46+
redacted`Minimum fee of ${feeAmount} not met; have ${fee}`,
4747
);
4848
}
4949
return harden({ reply, requiredFee });

0 commit comments

Comments
 (0)