Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.8.0 #180

Merged
merged 4 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration.anchorPlatformTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 5 additions & 0 deletions @stellar/typescript-wallet-sdk-km/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion @stellar/typescript-wallet-sdk-km/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/typescript-wallet-sdk-km",
"version": "1.7.0",
"version": "1.8.0",
"engines": {
"node": ">=18"
},
Expand Down
5 changes: 5 additions & 0 deletions @stellar/typescript-wallet-sdk-soroban/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion @stellar/typescript-wallet-sdk-soroban/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/typescript-wallet-sdk-soroban",
"version": "1.7.0",
"version": "1.8.0",
"engines": {
"node": ">=18"
},
Expand Down
8 changes: 8 additions & 0 deletions @stellar/typescript-wallet-sdk/CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion @stellar/typescript-wallet-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stellar/typescript-wallet-sdk",
"version": "1.7.0",
"version": "1.8.0",
"engines": {
"node": ">=18"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ 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();

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();
Expand Down Expand Up @@ -85,7 +85,7 @@ describe("Anchor Platform Integration Tests", () => {
},
});
expect(wResp.id).toBeTruthy();
}, 120000);
}, 300000);

it("SEP-24 should work", async () => {
const assetCode = "USDC";
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -150,5 +150,5 @@ describe("Anchor Platform Integration Tests", () => {
const quoteId = postResp.id;
const getResp = await sep38.getQuote(quoteId);
expect(getResp.id).toBeTruthy();
});
}, 300000);
});
Loading