Open
Conversation
d975cdc to
1f2f377
Compare
377ada0 to
c8ab1bc
Compare
f4c45ed to
c85b696
Compare
c85b696 to
df9ffdc
Compare
df9ffdc to
092b1aa
Compare
092b1aa to
dfad221
Compare
dfad221 to
be4157b
Compare
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
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/catalyst-core@1.4.0
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.