Skip to content

Comments

Sequence.js/master#222

Merged
Dargon789 merged 7 commits intomasterfrom
sequence.js/master
Jan 19, 2026
Merged

Sequence.js/master#222
Dargon789 merged 7 commits intomasterfrom
sequence.js/master

Conversation

@Dargon789
Copy link
Owner

@Dargon789 Dargon789 commented Jan 19, 2026

Summary by Sourcery

Address Apple authentication issues across wallet and service packages and prepare coordinated patch releases.

Bug Fixes:

  • Resolve Apple authentication flow issues across wallet, identity, and userdata services.

Enhancements:

  • Extend supported login methods in the dapp client to include externally owned accounts (EOA).

Build:

  • Prepare patch releases for multiple packages via changesets and bump userdata to version 3.0.0-beta.8.

Tests:

  • Tighten Apple authentication URL tests to ensure the scope parameter is not included for Apple sign-in.

@codesandbox
Copy link

codesandbox bot commented Jan 19, 2026

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@bolt-new-by-stackblitz
Copy link

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@sourcery-ai
Copy link

sourcery-ai bot commented Jan 19, 2026

Reviewer's Guide

This PR introduces Apple authentication fixes across multiple wallet and service packages, updates related package versions and changelogs for beta.7 and beta.8, extends the dapp-client login method types to support EOA, tightens the Apple auth URL test expectations, and adds changeset entries to coordinate patch releases.

Class diagram for dapp client auth types with added EOA login method

classDiagram
  class LoginMethod {
    <<type>>
    google
    apple
    email
    passkey
    mnemonic
    eoa
  }

  class GuardConfig {
    url string
  }

  class DappClientAuthContext {
    loginMethod LoginMethod
    guardConfig GuardConfig
  }

  DappClientAuthContext --> LoginMethod
  DappClientAuthContext --> GuardConfig
Loading

File-Level Changes

Change Details Files
Propagate Apple auth fixes and release notes across wallet and service packages.
  • Add 3.0.0-beta.7 and 3.0.0-beta.8 entries documenting Apple auth fixes and dependency bumps in wallet-wdk, dapp-client, wallet-core, identity-instrument, userdata, and wallet-primitives changelogs
  • Align internal dependency versions to 3.0.0-beta.7 and 3.0.0-beta.8 in the changelog entries
packages/wallet/wdk/CHANGELOG.md
packages/wallet/dapp-client/CHANGELOG.md
packages/wallet/core/CHANGELOG.md
packages/services/identity-instrument/CHANGELOG.md
packages/services/userdata/CHANGELOG.md
packages/wallet/primitives/CHANGELOG.md
Bump userdata service package version for new beta release.
  • Update @0xsequence/userdata package.json version from 3.0.0-beta.6 to 3.0.0-beta.8 to match changelog and coordinated release
packages/services/userdata/package.json
Extend dapp-client login method types to support EOA logins.
  • Add 'eoa' as an allowed LoginMethod discriminant to support externally owned account login flows
packages/wallet/dapp-client/src/types/index.ts
Harden Apple auth URL behavior in wallet WDK tests.
  • Update AuthCodeHandler Apple login test to assert that the generated Apple authorize URL does not include a scope query parameter by parsing search params with URL
packages/wallet/wdk/test/authcode.test.ts
Add changeset definitions for Apple auth patches across the monorepo.
  • Introduce changeset files describing patch releases for Apple auth fixes across core, wallet, guard, relayer, identity, userdata, and related packages
  • Ensure changesets cover both the original fix and subsequent fixes for Apple auth behavior
.changeset/new-turkeys-double.md
.changeset/nice-tips-slide.md
.changeset/pre.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@snyk-io
Copy link

snyk-io bot commented Jan 19, 2026

Snyk checks have passed. No issues have been found so far.

Status Scanner Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@gemini-code-assist
Copy link

Summary of Changes

Hello @Dargon789, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request primarily focuses on enhancing and correcting Apple authentication mechanisms within the Sequence.js ecosystem. It also expands the available login methods by introducing 'eoa', ensuring broader compatibility and flexibility for user authentication. The changes are reflected across various core and wallet-related packages, accompanied by necessary version updates and changelog entries.

Highlights

  • Apple Authentication Fixes: Multiple packages across the @0xsequence ecosystem have received patch updates to address and refine Apple authentication mechanisms. This includes @0xsequence/identity-instrument, @0xsequence/userdata, @0xsequence/wallet-core, @0xsequence/dapp-client, @0xsequence/wallet-primitives, and @0xsequence/wallet-wdk.
  • New Login Method 'eoa' Introduced: The LoginMethod type in @0xsequence/dapp-client has been extended to include 'eoa', providing a new option for user authentication.
  • Version Bumps and Changelog Updates: Several packages have been updated to 3.0.0-beta.7 and 3.0.0-beta.8 to reflect the applied fixes and changes, with corresponding entries added to their respective CHANGELOG.md files.
  • Apple Auth URL Test Refinement: A test case in @0xsequence/wallet-wdk has been updated to specifically assert that Apple authentication URLs do not contain a 'scope' parameter, ensuring correct URL generation.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Repository owner deleted a comment from vercel bot Jan 19, 2026
Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

Hey - I've reviewed your changes and they look great!


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request bundles several updates, primarily focused on fixing Apple authentication and preparing for new patch releases. The changes include adding a test to validate the fix for Apple's authentication flow, extending the LoginMethod type to support EOA, and updating versioning across multiple packages. My review focuses on improving the clarity of the changeset messages to ensure the release notes are descriptive and maintainable. The code changes in the test and type definition look good.

@Dargon789
Copy link
Owner Author

THANK YOU AI — STRICTNESS IS STRENGTH STRICT AI — STRONG ECOSYSTEM @gemini-code-assist @sourcery-ai @copilot thank you team @0xsequence @tolgahan-arikan @taylanpince @corbanbrook

@gemini-code-assist
Copy link

You're very welcome, @Dargon789! I'm glad I could assist. I'm here to help ensure a strong ecosystem through thorough code reviews. Happy to contribute to the team!

@Dargon789 Dargon789 merged commit fbeb2ae into master Jan 19, 2026
11 of 15 checks passed
@Dargon789 Dargon789 deleted the sequence.js/master branch January 19, 2026 06:56
@Dargon789 Dargon789 restored the sequence.js/master branch January 19, 2026 06:59
@Dargon789 Dargon789 linked an issue Jan 19, 2026 that may be closed by this pull request
@github-project-automation github-project-automation bot moved this from Todo to Done in web3-Defi-Gamefi Feb 9, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

[vc]: #0xsequence

4 participants