@dynamic-labs/logger 3.0.0-alpha.66 → 3.0.0-alpha.67

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,20 @@
1
1
 
2
+ ## [3.0.0-alpha.67](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.66...v3.0.0-alpha.67) (2024-09-12)
3
+
4
+
5
+ ### Features
6
+
7
+ * add blockaid url scanning to sdk api ([#6869](https://github.com/dynamic-labs/DynamicAuth/issues/6869)) ([0a20eef](https://github.com/dynamic-labs/DynamicAuth/commit/0a20eef2eec8793a714f67948ddba2bc1bab06cd))
8
+ * allow selecting which MetaMask account to connect with on sign-in ([#6838](https://github.com/dynamic-labs/DynamicAuth/issues/6838)) ([8a30614](https://github.com/dynamic-labs/DynamicAuth/commit/8a306140563390602a417fd191bc789d6e07c220))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * cach get server snashot to avoid next js rerender loop ([#6867](https://github.com/dynamic-labs/DynamicAuth/issues/6867)) ([6f77c01](https://github.com/dynamic-labs/DynamicAuth/commit/6f77c01663641ab870a8b96fb2d3b5611bc38c2c))
14
+ * clean up console errors on log out ([#6834](https://github.com/dynamic-labs/DynamicAuth/issues/6834)) ([a18a4ce](https://github.com/dynamic-labs/DynamicAuth/commit/a18a4ce57766dec0cc351794ff7a71b3c632d9a3))
15
+ * ensure open url method will be available in the webview controller ([#6852](https://github.com/dynamic-labs/DynamicAuth/issues/6852)) ([bdaf12f](https://github.com/dynamic-labs/DynamicAuth/commit/bdaf12f7a77b801c3dec67163e1fef2fdffc7d2a))
16
+ * solana transaction decoder fallback ([#6868](https://github.com/dynamic-labs/DynamicAuth/issues/6868)) ([38c9242](https://github.com/dynamic-labs/DynamicAuth/commit/38c924253c29e8e3569d9da9bc452a8cdc3af0d2))
17
+
2
18
  ## [3.0.0-alpha.66](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.65...v3.0.0-alpha.66) (2024-09-11)
3
19
 
4
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/logger",
3
- "version": "3.0.0-alpha.66",
3
+ "version": "3.0.0-alpha.67",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
package/src/index.cjs CHANGED
@@ -188,6 +188,9 @@ class Logger {
188
188
  this.captureAndSend(level, message, ...args);
189
189
  }
190
190
  }
191
+ logVerboseTroubleshootingMessage(message, ...args) {
192
+ this.log(-1, message, ...args);
193
+ }
191
194
  debug(message, ...args) {
192
195
  this.log(types.LogLevel.DEBUG, message, ...args);
193
196
  }
package/src/index.d.ts CHANGED
@@ -41,6 +41,7 @@ export declare class Logger {
41
41
  */
42
42
  instrument(message: Message, options: InstrumentOptions & Record<string, unknown>): void;
43
43
  log(level: LogLevel, message: Message, ...args: any[]): void;
44
+ logVerboseTroubleshootingMessage(message: string | Error | unknown, ...args: any[]): void;
44
45
  debug(message: Message, ...args: any[]): void;
45
46
  info(message: Message, ...args: any[]): void;
46
47
  warn(message: Message, ...args: any[]): void;
package/src/index.js CHANGED
@@ -181,6 +181,9 @@ class Logger {
181
181
  this.captureAndSend(level, message, ...args);
182
182
  }
183
183
  }
184
+ logVerboseTroubleshootingMessage(message, ...args) {
185
+ this.log(-1, message, ...args);
186
+ }
184
187
  debug(message, ...args) {
185
188
  this.log(LogLevel.DEBUG, message, ...args);
186
189
  }