diff --git a/.github/workflows/integration.anchorPlatformTest.yml b/.github/workflows/integration.anchorPlatformTest.yml index 800f6a2..1fe53a2 100644 --- a/.github/workflows/integration.anchorPlatformTest.yml +++ b/.github/workflows/integration.anchorPlatformTest.yml @@ -18,7 +18,7 @@ jobs: docker compose -f service-runner/src/main/resources/docker-compose.yaml up -d - name: Wait for docker to be ready - run: sleep 90 && curl http://localhost:8080/.well-known/stellar.toml + run: sleep 300 && curl http://localhost:8080/.well-known/stellar.toml - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: diff --git a/@stellar/typescript-wallet-sdk-km/CHANGELOG.MD b/@stellar/typescript-wallet-sdk-km/CHANGELOG.MD index 171940e..501fafa 100644 --- a/@stellar/typescript-wallet-sdk-km/CHANGELOG.MD +++ b/@stellar/typescript-wallet-sdk-km/CHANGELOG.MD @@ -1,3 +1,8 @@ +# Release notes - Typescript Wallet SDK Key Manager - 1.8.0 + +### Added +* Upgrades `@stellar/stellar-sdk` to `13.0.0-beta.1` which supports the `Protocol 22` XDR (#172) + # Release notes - Typescript Wallet SDK Key Manager - 1.7.0 ### Added diff --git a/@stellar/typescript-wallet-sdk-km/package.json b/@stellar/typescript-wallet-sdk-km/package.json index d20ccd2..9680d0c 100644 --- a/@stellar/typescript-wallet-sdk-km/package.json +++ b/@stellar/typescript-wallet-sdk-km/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/typescript-wallet-sdk-km", - "version": "1.7.0", + "version": "1.8.0", "engines": { "node": ">=18" }, diff --git a/@stellar/typescript-wallet-sdk-soroban/CHANGELOG.MD b/@stellar/typescript-wallet-sdk-soroban/CHANGELOG.MD index 947b82b..bc81744 100644 --- a/@stellar/typescript-wallet-sdk-soroban/CHANGELOG.MD +++ b/@stellar/typescript-wallet-sdk-soroban/CHANGELOG.MD @@ -1,3 +1,8 @@ +# Release notes - Typescript Wallet SDK Soroban - 1.8.0 + +### Added +* Upgrades `@stellar/stellar-sdk` to `13.0.0-beta.1` which supports the `Protocol 22` XDR (#172) + # Release notes - Typescript Wallet SDK Soroban - 1.7.0 ### Added diff --git a/@stellar/typescript-wallet-sdk-soroban/package.json b/@stellar/typescript-wallet-sdk-soroban/package.json index 71a6ecc..bdaba9a 100644 --- a/@stellar/typescript-wallet-sdk-soroban/package.json +++ b/@stellar/typescript-wallet-sdk-soroban/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/typescript-wallet-sdk-soroban", - "version": "1.7.0", + "version": "1.8.0", "engines": { "node": ">=18" }, diff --git a/@stellar/typescript-wallet-sdk/CHANGELOG.MD b/@stellar/typescript-wallet-sdk/CHANGELOG.MD index 0ec4deb..5a16add 100644 --- a/@stellar/typescript-wallet-sdk/CHANGELOG.MD +++ b/@stellar/typescript-wallet-sdk/CHANGELOG.MD @@ -1,3 +1,11 @@ +# Release notes - Typescript Wallet SDK - 1.8.0 + +### Added +* Upgrades `@stellar/stellar-sdk` to `13.0.0-beta.1` which supports the `Protocol 22` XDR (#172) +* Add `transaction_id` field to SEP-12 requests (#165) +* Make `withdraw_anchor_account` field optional (#164) +* Deprecate `getServicesInfo()` in favor of `Sep24.info()` (#166) + # Release notes - Typescript Wallet SDK - 1.7.0 ### Fixed diff --git a/@stellar/typescript-wallet-sdk/package.json b/@stellar/typescript-wallet-sdk/package.json index 7b77067..87d70c5 100644 --- a/@stellar/typescript-wallet-sdk/package.json +++ b/@stellar/typescript-wallet-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@stellar/typescript-wallet-sdk", - "version": "1.7.0", + "version": "1.8.0", "engines": { "node": ">=18" }, diff --git a/@stellar/typescript-wallet-sdk/test/integration/anchorplatform.test.ts b/@stellar/typescript-wallet-sdk/test/integration/anchorplatform.test.ts index 196f368..1dca098 100644 --- a/@stellar/typescript-wallet-sdk/test/integration/anchorplatform.test.ts +++ b/@stellar/typescript-wallet-sdk/test/integration/anchorplatform.test.ts @@ -16,13 +16,13 @@ describe("Anchor Platform Integration Tests", () => { anchor = wallet.anchor({ homeDomain: anchorUrl, allowHttp: true }); accountKp = stellar.account().createKeypair(); await stellar.fundTestnetAccount(accountKp.publicKey); - }, 15000); + }, 30000); it("SEP-10 auth should work", async () => { const auth = await anchor.sep10(); const authToken = await auth.authenticate({ accountKp }); expect(authToken.token).toBeTruthy(); - }); + }, 30000); it("using DefaultAuthHeaderSigner should work", async () => { const auth = await anchor.sep10(); @@ -30,7 +30,7 @@ describe("Anchor Platform Integration Tests", () => { const authHeaderSigner = new DefaultAuthHeaderSigner(); const authToken = await auth.authenticate({ accountKp, authHeaderSigner }); expect(authToken.token).toBeTruthy(); - }); + }, 30000); it("SEP-12 KYC and SEP-6 should work", async () => { const auth = await anchor.sep10(); @@ -85,7 +85,7 @@ describe("Anchor Platform Integration Tests", () => { }, }); expect(wResp.id).toBeTruthy(); - }, 120000); + }, 300000); it("SEP-24 should work", async () => { const assetCode = "USDC"; @@ -119,7 +119,7 @@ describe("Anchor Platform Integration Tests", () => { limit: 5, }); expect(transactions.length).toBe(2); - }, 45000); + }, 300000); it("SEP-38 should work", async () => { const auth = await anchor.sep10(); @@ -150,5 +150,5 @@ describe("Anchor Platform Integration Tests", () => { const quoteId = postResp.id; const getResp = await sep38.getQuote(quoteId); expect(getResp.id).toBeTruthy(); - }); + }, 300000); });