[PAR-778] Bump integration-core to ~5.2.0 for active_theme support in store info payload#18
Merged
mescalantea merged 2 commits intoMay 22, 2026
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
What is the goal?
Bumps
sequra/integration-corefrom^5.1.3to~5.2.0. v5.2.0 introduces an optionalactive_themeproperty on the store info payload (StoreInfo) so downstream integrators can surface the merchant's currently active storefront theme alongside the existing platform/plugin/php/db/os fields.The bump is fully backwards-compatible:
activeThemeis an optional trailing constructor arg defaulting tonull, andStoreInfoServiceInterfaceis unchanged — no integrator is forced to change anything to upgrade.References
How is it being implemented?
^5.1.3to~5.2.0(patch-only range within 5.2.x, more conservative than the prior^style on the 5.1.3 bump).composer.lockrefreshed viacomposer update sequra/integration-core --with-all-dependencies. Only the core itself moved (v5.1.3 → v5.2.0); no transitive churn.src/BootstrapComponent.php::initRepositories()againstvendor/sequra/integration-core/src/BusinessLogic/DataAccess/. 5.2.0 introduces no new persisted entity; all 12 DataAccess entities remain registered. No bootstrap change needed (unlike the prior 5.1.3 bump which had to registerAdvancedSettings).StoreInfoshape invendor/sequra/integration-core/src/BusinessLogic/Domain/Stores/Models/StoreInfo.php: new optional 10th constructor arg?string $activeTheme = null, new gettergetActiveTheme(): ?string,toArray()/fromArray()round-trip theactive_themekey.StoreInfoServiceInterface::getStoreInfo()signature is unchanged.Caveats
StoreInfoServiceInterfacedo not need to change anything to upgrade —activeThemeis optional and defaults tonull.StoreInfo; existing call sites continue to compile and run unchanged.Does it affect (changes or update) any sensitive data?
No — this change only touches
composer.json/composer.lock. No schema migrations, no payload-handling code in this middleware.How is it tested?
composer validatepasses after the bump.vendor/bin/phpunitwas not re-run locally for this bump (the local test env is not bootstrapped). The middlewaresrc/is untouched by this change — only the composer manifest and lock — so existing repository/logger tests are not affected. Please re-run the suite as part of standard review if desired.How is it going to be deployed?
Standard deployment.
Commits
🤖 Generated with Claude Code