-
Notifications
You must be signed in to change notification settings - Fork 340
Version Packages (canary)
#2729
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
github-actions
wants to merge
1
commit into
canary
Choose a base branch
from
changeset-release/canary
base: canary
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
bae8d8d to
912e837
Compare
912e837 to
31b1fa4
Compare
31b1fa4 to
a8e5ad4
Compare
a8e5ad4 to
cee5ebf
Compare
cee5ebf to
3a65e38
Compare
3a65e38 to
2c40ee6
Compare
2c40ee6 to
6a52866
Compare
6a52866 to
270285f
Compare
270285f to
4f63474
Compare
4f63474 to
9bcfe22
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to canary, this PR will be updated.
Releases
@bigcommerce/[email protected]
Minor Changes
#2709
3820a75Thanks @jordanarldt! - Adds product review submission functionality to the product detail page via a modal form with validation for rating, title, review text, name, and email fields. Integrates with BigCommerce's GraphQL API using Conform and Zod for form validation and real-time feedback.#2690
44f6bc0Thanks @jfugalde! - Introduce displayName and displayKey fields to facets for improved labeling and filteringFacet filters now use the
displayNamefield for more descriptive labels in the UI, replacing the deprecatednamefield. Product attribute facets now support thefilterKeyfield for consistent parameter naming. The facet transformer has been updated to usedisplayNamewith a fallback tofilterNamewhendisplayNameis not available.#2708
aa35becThanks @jordanarldt! - Adds OpenTelemetry instrumentation for Catalyst, enabling the collection of spans for Catalyst storefronts.Migration
Change is new code only, so just copy over
/core/instrumentation.tsandcore/lib/otel/tracers.ts.#2711
fcd0836Thanks @jordanarldt! - Separate first and last name fields on user session object.Patch Changes
#2750
c22f0e8Thanks @jorgemoya! - Improved login error handling to display a custom error message when BigCommerce indicates a password reset is required, instead of showing a generic error message.What's Fixed
When attempting to log in with an account that requires a password reset, users now see an informative error message: "Password reset required. Please check your email for instructions to reset your password."
Before: Generic "something went wrong" error message
After: Clear error message explaining the password reset requirement
Migration
Step 1: Update Translation Files
Add this translation key to your locale files (e.g.,
core/messages/en.json):{ "Auth": { "Login": { "passwordResetRequired": "Password reset required. Please check your email for instructions to reset your password." } } }Repeat for all supported locales if you maintain custom translations.
Step 2: Update Login Server Action
In your login server action (e.g.,
core/app/[locale]/(default)/(auth)/login/_actions/login.ts):Add the password reset error handling block:
This should be placed in your error handling, before the generic "Invalid credentials" check.