🚀 Release apps - #2424
Merged
Merged
Conversation
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
Differences Found✅ No packages or licenses were added. SummaryExpand
|
saleor-deployments
Bot
force-pushed
the
changeset-release/main
branch
from
August 27, 2026 08:11
caf7471 to
3b63b43
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2424 +/- ##
=======================================
Coverage 37.54% 37.54%
=======================================
Files 1223 1223
Lines 77209 77209
Branches 4217 4219 +2
=======================================
Hits 28989 28989
Misses 47725 47725
Partials 495 495
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
saleor-deployments
Bot
force-pushed
the
changeset-release/main
branch
from
August 27, 2026 09:07
3b63b43 to
0eff447
Compare
saleor-deployments
Bot
force-pushed
the
changeset-release/main
branch
from
August 27, 2026 12:46
0eff447 to
ce6cbca
Compare
lkostrowski
approved these changes
Aug 27, 2026
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 main, this PR will be updated.
Releases
saleor-app-shipping-dummy@1.1.0
Minor Changes
SHIPPING_LIST_METHODS_FOR_CHECKOUTandORDER_FILTER_SHIPPING_METHODSsync webhooks with ahardcoded set of shipping methods, so an external carrier integration can be exercised end to end
without signing up for a real carrier. The bundled Bruno collection walks the full checkout flow.
saleor-app-extensions-explorer@0.1.0
Minor Changes
your own set of extensions in the browser, copy the generated manifest URL and install it in Saleor.
Every extension renders a placeholder that shows the context Saleor passed to it, so mounts, targets
and options can be tried out without writing an app first.
saleor-app-onboarding@0.1.2
Patch Changes
identifier, instead of guessing an extensions URL from an app's internal id. On Dashboards that
don't support this yet, those buttons fall back to the installed apps list rather than doing
nothing.
saleor-app-search@1.31.3
Patch Changes
69a3253: Fixed
inStockbeing indexed asfalsefor almost every product in Algolia when records were updated by webhooks.Before: Saleor resolves stock availability per channel, but webhook payloads carry no channel context, so the app always read a quantity of 0 and wrote
inStock: false. Because each webhook replaces the whole Algolia record, any product edit - including a "back in stock" event - overwrote the correct value. The only way to get correct data was to re-run a full index import, until the next webhook arrived.After: the app fetches stock availability for each channel the variant is listed in, and writes the correct
inStockvalue into each channel's index. Variants with inventory tracking turned off are now indexed as in stock, instead of out of stock.saleor-app-payment-stripe@2.7.1
Patch Changes
treated "Dashboard has not sent the user yet" the same as "user is missing a permission", so
reloading or deep-linking into a configuration page flashed "You do not have permission to access
this page" before the real page appeared. Now: the app waits until permissions are actually known
and shows a loading skeleton in the meantime, so the message only appears for users who really are
missing one.