-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Spryker 202009 release (#398)
* Change spryker version in config * Fix dependency issues Removed outdated behat extensions and fix symfony/browser-kit version * Update behat config * Remove db_engine config * Change spryker version in config * Fix dependency issues Removed outdated behat extensions and fix symfony/browser-kit version * Update behat config * Remove db_engine config * Update installation recipe as per spryker cli command changes * Ignore .idea dir * Run development command only in development mode * Config changes Keep using Pyz namespace as project namespace, as there is some code expecting some templates to be in project namespace and we don't want to copy them over to Inviqa namespace * Add fix values for oauth credentials * Spryker demoshop is not compatible with phpstan level 5 * Add baseline for phpstan to run it with level 5 * Use latest php/redis/es versions supported by latest Spryker release * Remove fixed secrets and add helper command to generate them * Switch to development mode before after creating images in CI * Revert "Switch to development mode before after creating images in CI" This reverts commit 9db64b7. * Allow injecting spryker oauth secrets from Jenkins CI env * Use encrypted value for CI env
- Loading branch information
Hardik Gajjar
authored
Oct 13, 2020
1 parent
b086cea
commit d11b291
Showing
13 changed files
with
128 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/github-changelog-http-cache/ | ||
/tests/ | ||
/tmp-test/ | ||
.idea |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
parameters: | ||
ignoreErrors: | ||
- | ||
message: "#^Parameter \\#2 \\$value of method Elastica\\\\Query\\\\Term\\:\\:setTerm\\(\\) expects array|string, int given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Client/ExampleProductSalePage/Plugin/Elasticsearch/Query/SaleSearchQueryPlugin.php | ||
|
||
- | ||
message: "#^Parameter \\#2 \\$default of method Symfony\\\\Component\\\\HttpFoundation\\\\InputBag\\:\\:get\\(\\) expects string|null, array given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Yves/ProductSetWidget/Widget/ProductSetIdsWidget.php | ||
|
||
- | ||
message: "#^Parameter \\#1 \\$input of function array_filter expects array, string given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Yves/ProductSetWidget/Widget/ProductSetIdsWidget.php | ||
|
||
- | ||
message: "#^Parameter \\#1 \\$exampleStateMachineItems of method Pyz\\\\Zed\\\\ExampleStateMachine\\\\Business\\\\Model\\\\ExampleStateMachineItemReader\\:\\:hydrateTransferFromPersistence\\(\\) expects#" | ||
count: 2 | ||
path: src/Pyz/Zed/ExampleStateMachine/Business/Model/ExampleStateMachineItemReader.php | ||
|
||
- | ||
message: "#^Parameter \\#1 \\$command of class Symfony\\\\Component\\\\Process\\\\Process constructor expects array, string given\\.$#" | ||
count: 2 | ||
path: src/Pyz/Zed/Log/Communication/Plugin/FilebeatLogListenerPlugin.php | ||
|
||
- | ||
message: "#^Parameter \\#1 \\$productFacade of class Pyz\\\\Zed\\\\ProductUrlCartConnector\\\\Business\\\\Expander\\\\ProductUrlExpander constructor expects Spryker\\\\Zed\\\\Product\\\\Business\\\\ProductFacadeInterface, Spryker\\\\Zed\\\\ProductRelation\\\\Business\\\\ProductRelationFacadeInterface given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Zed/ProductUrlCartConnector/Business/ProductUrlCartConnectorBusinessFactory.php | ||
|
||
- | ||
message: "#^Parameter \\#2 \\$serverUniqueId of method Spryker\\\\Zed\\\\Queue\\\\Business\\\\Process\\\\ProcessManager\\:\\:__construct\\(\\) expects string, int given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Zed/Queue/Business/Process/ProcessManager.php | ||
|
||
- | ||
message: "#^Parameter \\#2 \\$serverUniqueId of class Pyz\\\\Zed\\\\Queue\\\\Business\\\\Process\\\\ProcessManager constructor expects int, string given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Zed/Queue/Business/QueueBusinessFactory.php | ||
|
||
- | ||
message: "#^Parameter \\#3 \\$queueConfig of class Pyz\\\\Zed\\\\Queue\\\\Business\\\\Process\\\\ProcessManager constructor expects Pyz\\\\Zed\\\\Queue\\\\QueueConfig, Spryker\\\\Zed\\\\Queue\\\\QueueConfig given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Zed/Queue/Business/QueueBusinessFactory.php | ||
|
||
- | ||
message: "#^Parameter \\#2 \\$entityId of method Spryker\\\\Zed\\\\DataImport\\\\Business\\\\Model\\\\DataImportStep\\\\PublishAwareStep\\:\\:addPublishEvents\\(\\) expects int, Orm\\\\Zed\\\\Product\\\\Persistence\\\\SpyProductAbstract given\\.$#" | ||
count: 1 | ||
path: src/Pyz/Zed/DataImport/Business/Model/ProductOption/ProductOptionWriterStep.php |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
4 changes: 0 additions & 4 deletions
4
src/spryker/application/skeleton/features/bootstrap/_config/contexts.yml
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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