Skip to content

Conversation

dstaley
Copy link
Member

@dstaley dstaley commented Oct 6, 2025

Description

This PR fixes an issue where errors thrown from this.create weren't correctly propagated to Signals since we were nesting calls to runAsyncResourceTask. This is fixed by adding a private _create method that other methods can call which does not use runAsyncResourceTask.

It also fixes an issue where email was used instead of emailAddress for signIn.password().

It also fixes an issue where the redirectUrl parameter used in the SSO flow was not made absolute before calling the FAPI endpoint.

Checklist

  • pnpm test runs as expected.
  • pnpm build runs as expected.
  • (If applicable) JSDoc comments have been added or updated for any package exports
  • (If applicable) Documentation has been updated

Type of change

  • 🐛 Bug fix
  • 🌟 New feature
  • 🔨 Breaking change
  • 📖 Refactoring / dependency upgrade / documentation
  • other:

Summary by CodeRabbit

  • New Features
    • Expanded sign-up inputs: optional email address, phone number, and username during account creation.
  • Bug Fixes
    • Improved error propagation in sign-in and sign-up creation flows so issues are reliably surfaced.
    • Standardized sign-in password parameter to use "emailAddress" consistently.
    • Ensures redirect URLs are handled as absolute URLs when needed.
  • Refactor
    • Streamlined request handling for sign-in and sign-up creation flows for consistency.
  • Chores
    • Bumped related packages to new minor versions.

Copy link

changeset-bot bot commented Oct 6, 2025

🦋 Changeset detected

Latest commit: 5031aa1

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 22 packages
Name Type
@clerk/clerk-js Minor
@clerk/types Minor
@clerk/chrome-extension Patch
@clerk/clerk-expo Patch
@clerk/agent-toolkit Patch
@clerk/astro Patch
@clerk/backend Patch
@clerk/elements Patch
@clerk/expo-passkeys Patch
@clerk/express Patch
@clerk/fastify Patch
@clerk/localizations Patch
@clerk/nextjs Patch
@clerk/nuxt Patch
@clerk/react-router Patch
@clerk/clerk-react Patch
@clerk/remix Patch
@clerk/shared Patch
@clerk/tanstack-react-start Patch
@clerk/testing Patch
@clerk/themes Patch
@clerk/vue Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Oct 6, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
clerk-js-sandbox Ready Ready Preview Comment Oct 6, 2025 8:47pm

Copy link
Contributor

coderabbitai bot commented Oct 6, 2025

Walkthrough

Adds private _create helpers to SignInFuture and SignUpFuture; SignUpFuture.create now wraps _create with runAsyncResourceTask. Expands SignUpFutureCreateParams with emailAddress, phoneNumber, username and renames SignIn password param email to emailAddress. Adds two changeset entries.

Changes

Cohort / File(s) Summary
Versioning / Changesets
\.changeset/purple-toys-refuse.md, \.changeset/giant-cats-lay.md
Adds changesets bumping @clerk/clerk-js and @clerk/types with notes about propagated errors and a signIn.password emailAddress parameter name change.
SignIn internal helper refactor
packages/clerk-js/src/core/resources/SignIn.ts
Adds private _create(params) that wraps the resource POST; SignInFuture.create now delegates to _create; internal call sites updated to use _create; redirect URL handling adjusted to build absolute actionCompleteRedirectUrl when needed.
SignUp helper and flow adjustments
packages/clerk-js/src/core/resources/SignUp.ts
Adds private _create(params) to normalize unsafeMetadata, include captcha/transfer data, and call the resource POST; public create now runs _create inside runAsyncResourceTask; internal flows (authenticateWithWeb3, web3, sso) call _create; redirect URL handling updated.
Types — SignUp params expanded
packages/types/src/signUpFuture.ts
Extends SignUpFutureCreateParams with optional emailAddress, phoneNumber, and username.
Types — SignIn password param rename
packages/types/src/signInFuture.ts
Replaces email with emailAddress across the SignInFuturePasswordParams union variants (preserves mutual exclusivity semantics).

Sequence Diagram(s)

sequenceDiagram
  actor User
  participant UI
  participant SignInFuture
  participant _create_SignIn as "_create (SignIn)"
  participant Resource as "Resource.__internal_basePost"

  User->>UI: Trigger sign-in create
  UI->>SignInFuture: create(params)
  SignInFuture->>_create_SignIn: params
  _create_SignIn->>Resource: basePost(pathRoot, params)
  alt Success
    Resource-->>_create_SignIn: result
    _create_SignIn-->>SignInFuture: result
    SignInFuture-->>UI: result
  else Error
    Resource-->>_create_SignIn: error
    _create_SignIn-->>SignInFuture: error
    SignInFuture-->>UI: error propagated
  end
Loading
sequenceDiagram
  actor User
  participant UI
  participant SignUpFuture
  participant runAsyncTask as "runAsyncResourceTask"
  participant _create_SignUp as "_create (SignUp)"
  participant Resource as "Resource.__internal_basePost"

  User->>UI: Trigger sign-up create
  UI->>SignUpFuture: create(params)
  SignUpFuture->>runAsyncTask: wrap async task
  runAsyncTask->>_create_SignUp: params
  Note right of _create_SignUp: Normalize unsafeMetadata\nAttach captcha data\nBuild request body
  _create_SignUp->>Resource: basePost(pathRoot, body)
  alt Success
    Resource-->>_create_SignUp: result
    _create_SignUp-->>runAsyncTask: result
    runAsyncTask-->>SignUpFuture: result
    SignUpFuture-->>UI: result
  else Error
    Resource-->>_create_SignUp: error
    _create_SignUp-->>runAsyncTask: error
    runAsyncTask-->>SignUpFuture: error
    SignUpFuture-->>UI: error propagated
  end
  Note over SignUpFuture,_create_SignUp: Internal web3/auth flows now call _create directly
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Poem

I thump a happy beat with codey feet,
New _create burrows tidy and neat.
Errors hop true, no longer astray,
Web3 carrots lined up in a bay.
EmailAddress, phone, username—hooray! 🥕🐇

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The title accurately reflects the primary change of introducing a private _create method in clerk-js to enable proper error propagation by avoiding nested runAsyncResourceTask calls, making it both concise and focused on the core fix.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch ds.fix/signals-private-create

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between c9ea544 and 58e88c4.

📒 Files selected for processing (4)
  • .changeset/purple-toys-refuse.md (1 hunks)
  • packages/clerk-js/src/core/resources/SignIn.ts (2 hunks)
  • packages/clerk-js/src/core/resources/SignUp.ts (2 hunks)
  • packages/types/src/signUpFuture.ts (1 hunks)
🧰 Additional context used
📓 Path-based instructions (7)
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • packages/types/src/signUpFuture.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/SignUp.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • packages/types/src/signUpFuture.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/SignUp.ts
packages/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

TypeScript is required for all packages

Files:

  • packages/types/src/signUpFuture.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/SignUp.ts
packages/**/*.{ts,tsx,d.ts}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Packages should export TypeScript types alongside runtime code

Files:

  • packages/types/src/signUpFuture.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/SignUp.ts
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • packages/types/src/signUpFuture.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/SignUp.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit inference engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • packages/types/src/signUpFuture.ts
  • packages/clerk-js/src/core/resources/SignIn.ts
  • packages/clerk-js/src/core/resources/SignUp.ts
.changeset/**

📄 CodeRabbit inference engine (.cursor/rules/monorepo.mdc)

Automated releases must use Changesets.

Files:

  • .changeset/purple-toys-refuse.md
🧬 Code graph analysis (2)
packages/clerk-js/src/core/resources/SignIn.ts (2)
packages/types/src/signInFuture.ts (1)
  • SignInFutureCreateParams (7-14)
packages/clerk-js/src/utils/runAsyncResourceTask.ts (1)
  • runAsyncResourceTask (8-31)
packages/clerk-js/src/core/resources/SignUp.ts (2)
packages/types/src/signUpFuture.ts (1)
  • SignUpFutureCreateParams (13-20)
packages/clerk-js/src/utils/runAsyncResourceTask.ts (1)
  • runAsyncResourceTask (8-31)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (6)
  • GitHub Check: Build Packages
  • GitHub Check: Formatting | Dedupe | Changeset
  • GitHub Check: semgrep/ci
  • GitHub Check: Analyze (javascript-typescript)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: semgrep-cloud-platform/scan
🔇 Additional comments (7)
packages/types/src/signUpFuture.ts (1)

14-16: LGTM! Type expansion maintains backward compatibility.

The addition of emailAddress, phoneNumber, and username as optional fields appropriately expands the input surface for sign-up creation while maintaining backward compatibility. These fields align with the updated _create implementation in SignUp.ts.

packages/clerk-js/src/core/resources/SignIn.ts (3)

706-711: LGTM! Private helper correctly extracts core logic.

The new private _create method appropriately extracts the core sign-in creation logic without runAsyncResourceTask, enabling internal callers to avoid problematic nesting while maintaining the same error propagation behavior.


713-717: LGTM! Public API correctly wraps private implementation.

The public create method appropriately wraps _create with runAsyncResourceTask, maintaining the existing API contract while delegating to the new private helper. This ensures proper error propagation and event emission for external callers.


751-751: LGTM! Internal caller correctly uses private helper.

The sendEmailCode method now correctly calls _create instead of create, preventing nested runAsyncResourceTask calls since this method already wraps its logic with runAsyncResourceTask at line 749.

packages/clerk-js/src/core/resources/SignUp.ts (3)

663-676: LGTM! Private helper correctly encapsulates creation logic.

The new private _create method appropriately encapsulates the sign-up creation logic, including captcha token retrieval, request body construction, and unsafeMetadata normalization. This enables internal callers to avoid nested runAsyncResourceTask calls while maintaining consistent behavior.


678-681: LGTM! Public API maintains contract with proper wrapping.

The public create method correctly wraps _create with runAsyncResourceTask, preserving the existing API contract and ensuring proper error propagation and event emission for external callers.


815-815: LGTM! Internal caller correctly avoids nested task wrapping.

The web3 method now correctly calls _create instead of create, preventing nested runAsyncResourceTask calls since this entire method is already wrapped with runAsyncResourceTask at line 789.

Copy link

pkg-pr-new bot commented Oct 6, 2025

Open in StackBlitz

@clerk/agent-toolkit

npm i https://pkg.pr.new/@clerk/agent-toolkit@6932

@clerk/astro

npm i https://pkg.pr.new/@clerk/astro@6932

@clerk/backend

npm i https://pkg.pr.new/@clerk/backend@6932

@clerk/chrome-extension

npm i https://pkg.pr.new/@clerk/chrome-extension@6932

@clerk/clerk-js

npm i https://pkg.pr.new/@clerk/clerk-js@6932

@clerk/dev-cli

npm i https://pkg.pr.new/@clerk/dev-cli@6932

@clerk/elements

npm i https://pkg.pr.new/@clerk/elements@6932

@clerk/clerk-expo

npm i https://pkg.pr.new/@clerk/clerk-expo@6932

@clerk/expo-passkeys

npm i https://pkg.pr.new/@clerk/expo-passkeys@6932

@clerk/express

npm i https://pkg.pr.new/@clerk/express@6932

@clerk/fastify

npm i https://pkg.pr.new/@clerk/fastify@6932

@clerk/localizations

npm i https://pkg.pr.new/@clerk/localizations@6932

@clerk/nextjs

npm i https://pkg.pr.new/@clerk/nextjs@6932

@clerk/nuxt

npm i https://pkg.pr.new/@clerk/nuxt@6932

@clerk/clerk-react

npm i https://pkg.pr.new/@clerk/clerk-react@6932

@clerk/react-router

npm i https://pkg.pr.new/@clerk/react-router@6932

@clerk/remix

npm i https://pkg.pr.new/@clerk/remix@6932

@clerk/shared

npm i https://pkg.pr.new/@clerk/shared@6932

@clerk/tanstack-react-start

npm i https://pkg.pr.new/@clerk/tanstack-react-start@6932

@clerk/testing

npm i https://pkg.pr.new/@clerk/testing@6932

@clerk/themes

npm i https://pkg.pr.new/@clerk/themes@6932

@clerk/types

npm i https://pkg.pr.new/@clerk/types@6932

@clerk/upgrade

npm i https://pkg.pr.new/@clerk/upgrade@6932

@clerk/vue

npm i https://pkg.pr.new/@clerk/vue@6932

commit: 5031aa1

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
packages/clerk-js/src/core/resources/SignUp.ts (2)

663-676: Add JSDoc and explicit return type for the private helper.

The private _create method is a key part of fixing the nested runAsyncResourceTask issue, but lacks documentation explaining its purpose and when to use it vs the public create method.

Apply this diff to add documentation and an explicit return type:

+  /**
+   * Internal helper for creating a sign-up without wrapping in runAsyncResourceTask.
+   * Use this method when calling from within another method that's already wrapped
+   * in runAsyncResourceTask to prevent nesting issues.
+   * @private
+   */
-  private async _create(params: SignUpFutureCreateParams): Promise<void> {
+  private async _create(params: SignUpFutureCreateParams): Promise<void> {

764-769: Consider more specific error handling for URL parsing.

The empty catch block catches all errors, not just URL parsing errors. This could potentially hide other unexpected errors.

Apply this diff to be more explicit:

       let redirectUrlComplete = redirectUrl;
       try {
         new URL(redirectUrl);
+        redirectUrlComplete = redirectUrl;
       } catch {
-        redirectUrlComplete = window.location.origin + redirectUrl;
+        // If URL parsing fails, redirectUrl is relative - make it absolute
+        redirectUrlComplete = window.location.origin + redirectUrl;
       }

Alternatively, for better clarity and to only catch URL constructor errors:

-      let redirectUrlComplete = redirectUrl;
-      try {
-        new URL(redirectUrl);
-      } catch {
-        redirectUrlComplete = window.location.origin + redirectUrl;
-      }
+      // If redirectUrl is relative, make it absolute
+      let redirectUrlComplete: string;
+      try {
+        new URL(redirectUrl);
+        redirectUrlComplete = redirectUrl;
+      } catch (err) {
+        if (err instanceof TypeError) {
+          redirectUrlComplete = window.location.origin + redirectUrl;
+        } else {
+          throw err;
+        }
+      }
📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Disabled knowledge base sources:

  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 654b95a and 5031aa1.

📒 Files selected for processing (2)
  • packages/clerk-js/src/core/resources/SignIn.ts (6 hunks)
  • packages/clerk-js/src/core/resources/SignUp.ts (3 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • packages/clerk-js/src/core/resources/SignIn.ts
🧰 Additional context used
📓 Path-based instructions (6)
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

**/*.{js,jsx,ts,tsx}: All code must pass ESLint checks with the project's configuration
Follow established naming conventions (PascalCase for components, camelCase for variables)
Maintain comprehensive JSDoc comments for public APIs
Use dynamic imports for optional features
All public APIs must be documented with JSDoc
Provide meaningful error messages to developers
Include error recovery suggestions where applicable
Log errors appropriately for debugging
Lazy load components and features when possible
Implement proper caching strategies
Use efficient data structures and algorithms
Profile and optimize critical paths
Validate all inputs and sanitize outputs
Implement proper logging with different levels

Files:

  • packages/clerk-js/src/core/resources/SignUp.ts
**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml,yml}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use Prettier for consistent code formatting

Files:

  • packages/clerk-js/src/core/resources/SignUp.ts
packages/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

TypeScript is required for all packages

Files:

  • packages/clerk-js/src/core/resources/SignUp.ts
packages/**/*.{ts,tsx,d.ts}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Packages should export TypeScript types alongside runtime code

Files:

  • packages/clerk-js/src/core/resources/SignUp.ts
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/development.mdc)

Use proper TypeScript error types

**/*.{ts,tsx}: Always define explicit return types for functions, especially public APIs
Use proper type annotations for variables and parameters where inference isn't clear
Avoid any type - prefer unknown when type is uncertain, then narrow with type guards
Use interface for object shapes that might be extended
Use type for unions, primitives, and computed types
Prefer readonly properties for immutable data structures
Use private for internal implementation details
Use protected for inheritance hierarchies
Use public explicitly for clarity in public APIs
Prefer readonly for properties that shouldn't change after construction
Prefer composition and interfaces over deep inheritance chains
Use mixins for shared behavior across unrelated classes
Implement dependency injection for loose coupling
Let TypeScript infer when types are obvious
Use const assertions for literal types: as const
Use satisfies operator for type checking without widening
Use mapped types for transforming object types
Use conditional types for type-level logic
Leverage template literal types for string manipulation
Use ES6 imports/exports consistently
Use default exports sparingly, prefer named exports
Use type-only imports: import type { ... } from ...
No any types without justification
Proper error handling with typed errors
Consistent use of readonly for immutable data
Proper generic constraints
No unused type parameters
Proper use of utility types instead of manual type construction
Type-only imports where possible
Proper tree-shaking friendly exports
No circular dependencies
Efficient type computations (avoid deep recursion)

Files:

  • packages/clerk-js/src/core/resources/SignUp.ts
**/*.{js,ts,tsx,jsx}

📄 CodeRabbit inference engine (.cursor/rules/monorepo.mdc)

Support multiple Clerk environment variables (CLERK_, NEXT_PUBLIC_CLERK_, etc.) for configuration.

Files:

  • packages/clerk-js/src/core/resources/SignUp.ts
🧬 Code graph analysis (1)
packages/clerk-js/src/core/resources/SignUp.ts (2)
packages/types/src/signUpFuture.ts (1)
  • SignUpFutureCreateParams (13-20)
packages/clerk-js/src/utils/runAsyncResourceTask.ts (1)
  • runAsyncResourceTask (8-31)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (5)
  • GitHub Check: Formatting | Dedupe | Changeset
  • GitHub Check: semgrep/ci
  • GitHub Check: Analyze (javascript-typescript)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: semgrep-cloud-platform/scan
🔇 Additional comments (3)
packages/clerk-js/src/core/resources/SignUp.ts (3)

678-682: LGTM!

The refactor correctly delegates to _create while preserving the runAsyncResourceTask wrapper for the public API. This prevents the nested task issue when internal methods need to call creation logic.


776-776: LGTM!

Using redirectUrlComplete ensures that absolute URLs are always sent to the API, which is the correct behavior after the URL normalization logic.


823-823: LGTM!

Correctly uses _create instead of create to avoid nested runAsyncResourceTask calls. This ensures errors propagate properly to Signals, which is the primary fix described in the PR objectives.

@dstaley dstaley merged commit 2cd53cd into main Oct 6, 2025
45 checks passed
@dstaley dstaley deleted the ds.fix/signals-private-create branch October 6, 2025 20:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants