@stackframe/stack 2.7.0 → 2.7.1

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,5 +1,15 @@
1
1
  # @stackframe/stack
2
2
 
3
+ ## 2.7.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Various changes
8
+ - Updated dependencies
9
+ - @stackframe/stack-shared@2.7.1
10
+ - @stackframe/stack-ui@2.7.1
11
+ - @stackframe/stack-sc@2.7.1
12
+
3
13
  ## 2.7.0
4
14
 
5
15
  ### Minor Changes
@@ -10,7 +10,7 @@ import { scrambleDuringCompileTime } from "@stackframe/stack-shared/dist/utils/c
10
10
  import { isBrowserLike } from "@stackframe/stack-shared/dist/utils/env";
11
11
  import { StackAssertionError, concatStacktraces, throwErr } from "@stackframe/stack-shared/dist/utils/errors";
12
12
  import { DependenciesMap } from "@stackframe/stack-shared/dist/utils/maps";
13
- import { deepPlainEquals, filterUndefined, omit } from "@stackframe/stack-shared/dist/utils/objects";
13
+ import { deepPlainEquals, filterUndefined, omit, pick } from "@stackframe/stack-shared/dist/utils/objects";
14
14
  import { neverResolve, runAsynchronously, wait } from "@stackframe/stack-shared/dist/utils/promises";
15
15
  import { suspend, suspendIfSsr } from "@stackframe/stack-shared/dist/utils/react";
16
16
  import { Result } from "@stackframe/stack-shared/dist/utils/results";
@@ -25,7 +25,7 @@ import { constructRedirectUrl } from "../utils/url";
25
25
  import { addNewOAuthProviderOrScope, callOAuthCallback, signInWithOAuth } from "./auth";
26
26
  import { createBrowserCookieHelper, createCookieHelper, deleteCookieClient, getCookieClient, setOrDeleteCookie, setOrDeleteCookieClient } from "./cookie";
27
27
  var NextNavigation = scrambleDuringCompileTime(NextNavigationUnscrambled);
28
- var clientVersion = "js @stackframe/stack@2.7.0";
28
+ var clientVersion = "js @stackframe/stack@2.7.1";
29
29
  function getUrls(partial) {
30
30
  const handler = partial.handler ?? "/handler";
31
31
  const home = partial.home ?? "/";
@@ -2125,7 +2125,7 @@ var _StackAdminAppImpl = class extends _StackServerAppImpl {
2125
2125
  const response = await this._interface.sendTestEmail({
2126
2126
  recipient_email: options.recipientEmail,
2127
2127
  email_config: {
2128
- ...options.emailConfig,
2128
+ ...pick(options.emailConfig, ["host", "port", "username", "password"]),
2129
2129
  sender_email: options.emailConfig.senderEmail,
2130
2130
  sender_name: options.emailConfig.senderName
2131
2131
  }