diff --git a/docs/storefront/catalyst/release-notes/1-4-0.mdx b/docs/storefront/catalyst/release-notes/1-4-0.mdx
new file mode 100644
index 000000000..2e3f8d3b5
--- /dev/null
+++ b/docs/storefront/catalyst/release-notes/1-4-0.mdx
@@ -0,0 +1,269 @@
+# Catalyst version 1.4.0 Release Notes
+
+We are excited to announce the release of Catalyst v1.4.0, which brings product reviews, newsletter subscriptions, and more.
+
+For additional details, you can refer to the [Catalyst 1.4 changeset](https://github.com/bigcommerce/catalyst/releases/tag/%40bigcommerce%2Fcatalyst-core%401.4.0).
+
+## Product reviews
+
+Catalyst now supports end-to-end product reviews on the storefront, integrated with the Storefront GraphQL API. This release includes:
+
+* New Storefront GraphQL setting for enabling reviews (`site.settings.reviews.enabled)`
+* New Storefront GraphQL setting for displaying product ratings (`site.settings.display.showProductRating)`
+* New Storefront GraphQL setting for only accepting reviews from customers that have purchased the product (`site.settings.display.onlyAcceptPreviousCustomerReviews)`
+* Native review submission UI on the product detail page (PDP)
+
+### Sample Storefront GraphQL Query
+
+Here is an example Storefront GraphQL query for the settings related to product reviews.
+
+```
+query SiteReviewSettings {
+ site {
+ settings {
+ reviews {
+ enabled
+ onlyAcceptPreviousCustomerReviews
+ }
+ display {
+ showProductRating
+ }
+ }
+ }
+}
+```
+
+For more information on managing reviews in the Control Panel, refer to the [Managing Reviews documentation](https://support.bigcommerce.com/s/article/Managing-Reviews?language=en_US).
+
+## Newsletter subscriptions
+
+Catalyst now supports an end-to-end newsletter subscription experience, integrated with the BigCommerce Storefront GraphQL API. This includes:
+
+* Fully-functioning newsletter subscription UI on the home page that includes success confirmation and error handling
+* **Marketing preferences** section in the account settings page for managing newsletter preferences
+* New Storefront GraphQL setting for controlling visibility of the signup UI (`site.settings.newsletter.showNewsletterSignup)`on the home page and account settings page
+* New Storefront GraphQL setting for determining if a user is already subscribed (`site.customer.isSubscribedToNewsletter`)
+* New Storefront GraphQL [newsletter mutations](https://developer.bigcommerce.com/graphql-storefront/reference#definition-NewsletterMutations) for subscribing and unsubscribing
+* E2E tests
+
+### Sample Storefront GraphQL Query
+
+Here is a sample Storefront GraphQL query that queries the new settings related to newsletter subscriptions.
+
+```
+query NewsletterSettingsAndCustomerStatus {
+ site {
+ settings {
+ newsletter {
+ showNewsletterSignup
+ }
+ }
+ }
+ customer {
+ isSubscribedToNewsletter
+ }
+}
+```
+
+For more information on newsletter settings in the Control Panel, refer to the [Newsletter and Email Marketing Settings documentation](https://support.bigcommerce.com/s/article/Collecting-Newsletter-Subscriptions?language=en_US).
+
+### What’s not included
+
+The Require Consent toggle in the store’s [Miscellaneous settings](https://support.bigcommerce.com/s/article/Using-the-Abandoned-Cart-Saver?language=en_US#notifications), which overrides the Newsletter Checkbox when enabled and allows customers to opt in to receive abandoned cart emails and other marketing emails, was not implemented in this release.
+
+Additionally, the [Show Newsletter Summary](https://support.bigcommerce.com/s/article/Collecting-Newsletter-Subscriptions?language=en_US#newsletter-settings) field is not supported.
+
+## Inventory messaging on Product Listings & Product Details
+
+This release adds **store-aware inventory messaging** across both Product Listing Pages (PLPs) and Product Detail Pages (PDPs). Messages are automatically driven by BigCommerce inventory and backorder settings, ensuring consistent customer communication without custom logic.
+
+### Product Listing Pages (PLPs)
+
+Product cards can now display inventory status messages based on store and product configuration.
+
+An **Out of Stock** message will be displayed when:
+
+* The product is out of stock
+* The store is configured to show out-of-stock messaging
+
+
+A **Backorder** message will be displayed when:
+
+* The product has no on-hand inventory
+* The product is available for backorder
+* The store or product is configured to show backorder messaging
+
+### Product Detail Pages (PDPs)
+
+Product detail pages now surface richer backorder context when applicable. When a product supports backorders and store settings allow it, the PDP can display:
+
+* A backorder availability prompt
+* The quantity currently on backorder
+* A custom backorder message
+
+## Consent management
+
+We’ve made several updates to how we handle consent management in Catalyst.
+
+* Upgraded [`@c15t/nextjs`](https://www.npmjs.com/package/@c15t/nextjs) to version `1.8.2`
+* Changed consent manager mode from `custom` to `offline` mode
+* Simplified cookie handling and removed custom consent cookie encoder/decoder implementations (`decoder.ts`, `encoder.ts`)
+* `CookieBanner` now supports the `privacyPolicyUrl` field from BigCommerce API and will be rendered in the banner description if available.
+
+### ConsentManagerProvider
+
+The `ConsentManagerProvider` now uses `offline` mode instead of `custom` mode with endpoint handlers. The provider configuration has been simplified:
+
+* `mode` changed from `'custom'` to `'offline'`
+* Removed `endpointHandlers` \- no longer needed in offline mode
+* Added `enabled` prop to control consent manager functionality
+* Added `storageConfig` for cookie storage configuration
+
+**Before:**
+
+```ts
+