@dynamic-labs/waas-evm 4.72.0 → 4.73.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,32 @@
1
1
 
2
+ ### [4.73.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.73.1...v4.73.2) (2026-03-31)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * use initial URL for device registration redirect detection ([#10821](https://github.com/dynamic-labs/dynamic-auth/issues/10821)) ([dbec178](https://github.com/dynamic-labs/dynamic-auth/commit/dbec178e0bad9a7e99c529b79cb0fbe0fd347904))
8
+
9
+ ### [4.73.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.73.0...v4.73.1) (2026-03-30)
10
+
11
+
12
+ ### Features
13
+
14
+ * **tempo:** add isTempoWallet type guard and TempoWallet class ([#10814](https://github.com/dynamic-labs/dynamic-auth/issues/10814)) ([1f2ec94](https://github.com/dynamic-labs/dynamic-auth/commit/1f2ec949bcfd25b2c460e07214041d06b172f12d))
15
+
16
+ ## [4.73.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.72.0...v4.73.0) (2026-03-30)
17
+
18
+
19
+ ### Features
20
+
21
+ * allow passing credentialId at call time for step-up auth methods ([#10795](https://github.com/dynamic-labs/dynamic-auth/issues/10795)) ([9746667](https://github.com/dynamic-labs/dynamic-auth/commit/974666758ad8b01584cf30efbf2cb64dbde63986))
22
+ * **waas:** preserve WaaS key shares on session expiry using LogoutReason ([#10714](https://github.com/dynamic-labs/dynamic-auth/issues/10714)) ([26f40f7](https://github.com/dynamic-labs/dynamic-auth/commit/26f40f722302b8cf4cc035886d4408393a785283))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * override handlebars to >=4.7.9 (CVE-2026-33937) ([#10805](https://github.com/dynamic-labs/dynamic-auth/issues/10805)) ([7aa40b8](https://github.com/dynamic-labs/dynamic-auth/commit/7aa40b8472487694b438ae3a64b14524c9c726e4))
28
+ * use currentColor in settings icons for dark mode support ([#10811](https://github.com/dynamic-labs/dynamic-auth/issues/10811)) ([8653e97](https://github.com/dynamic-labs/dynamic-auth/commit/8653e97759f0ea5126258c1ced36ae26af3a405c)), closes [#383C48](https://github.com/dynamic-labs/dynamic-auth/issues/383C48) [#ABACB2](https://github.com/dynamic-labs/dynamic-auth/issues/ABACB2)
29
+
2
30
  ## [4.72.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.71.0...v4.72.0) (2026-03-26)
3
31
 
4
32
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.72.0";
6
+ var version = "4.73.2";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.72.0";
2
+ var version = "4.73.2";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-evm",
3
- "version": "4.72.0",
3
+ "version": "4.73.2",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -20,13 +20,13 @@
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.909",
22
22
  "viem": "^2.45.3",
23
- "@dynamic-labs/assert-package-version": "4.72.0",
24
- "@dynamic-labs/ethereum-core": "4.72.0",
25
- "@dynamic-labs/logger": "4.72.0",
26
- "@dynamic-labs/types": "4.72.0",
27
- "@dynamic-labs/utils": "4.72.0",
28
- "@dynamic-labs/waas": "4.72.0",
29
- "@dynamic-labs/wallet-connector-core": "4.72.0"
23
+ "@dynamic-labs/assert-package-version": "4.73.2",
24
+ "@dynamic-labs/ethereum-core": "4.73.2",
25
+ "@dynamic-labs/logger": "4.73.2",
26
+ "@dynamic-labs/types": "4.73.2",
27
+ "@dynamic-labs/utils": "4.73.2",
28
+ "@dynamic-labs/waas": "4.73.2",
29
+ "@dynamic-labs/wallet-connector-core": "4.73.2"
30
30
  },
31
31
  "peerDependencies": {}
32
32
  }
@@ -650,14 +650,6 @@ class DynamicWaasEVMConnector extends waas.withDynamicWaas(ethereumCore.Ethereum
650
650
  isSignAuthorizationSupported() {
651
651
  return true;
652
652
  }
653
- endSession() {
654
- const _super = Object.create(null, {
655
- endSession: { get: () => super.endSession }
656
- });
657
- return _tslib.__awaiter(this, void 0, void 0, function* () {
658
- yield _super.endSession.call(this);
659
- });
660
- }
661
653
  }
662
654
  DynamicWaasEVMConnector.lastUsedChainIdStorageKey = 'dynamic-waas-evm-last-used-chain-id';
663
655
 
@@ -142,7 +142,7 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
142
142
  getWalletRecoveryState({ accountAddress, }: {
143
143
  accountAddress: string;
144
144
  }): Promise<import("@dynamic-labs-wallet/browser-wallet-client").WalletRecoveryState>;
145
- endSession(): Promise<void>;
145
+ endSession(reason?: import("@dynamic-labs-sdk/client").LogoutReason | undefined): Promise<void>;
146
146
  getActiveAccountAddress(): Promise<string | undefined>;
147
147
  getConnectedAccounts(): Promise<string[]>;
148
148
  generateTraceId(): string;
@@ -232,6 +232,5 @@ export declare class DynamicWaasEVMConnector extends DynamicWaasEVMConnector_bas
232
232
  isAtomicSupported(chainId?: number): Promise<boolean>;
233
233
  isPaymasterServiceSupported(chainId?: number): Promise<boolean>;
234
234
  isSignAuthorizationSupported(): boolean;
235
- endSession(): Promise<void>;
236
235
  }
237
236
  export {};
@@ -646,14 +646,6 @@ class DynamicWaasEVMConnector extends withDynamicWaas(EthereumWalletConnector) {
646
646
  isSignAuthorizationSupported() {
647
647
  return true;
648
648
  }
649
- endSession() {
650
- const _super = Object.create(null, {
651
- endSession: { get: () => super.endSession }
652
- });
653
- return __awaiter(this, void 0, void 0, function* () {
654
- yield _super.endSession.call(this);
655
- });
656
- }
657
649
  }
658
650
  DynamicWaasEVMConnector.lastUsedChainIdStorageKey = 'dynamic-waas-evm-last-used-chain-id';
659
651