Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/create-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
fetch-depth: 0
- name: build
run: |
composer install --no-dev --optimize-autoloader --classmap-authoritative --ignore-platform-reqs
composer dump-autoload --no-dev --optimize --classmap-authoritative --ignore-platform-reqs
composer install --no-dev --optimize-autoloader --classmap-authoritative
composer dump-autoload --no-dev --optimize --classmap-authoritative
rm -rf .git .github tests vendor.zip .gitignore
mkdir dpdbaltics
rsync -Rr ./ ./dpdbaltics
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fetch-depth: 0
- name: build
run: |
composer install --no-dev --optimize-autoloader --classmap-authoritative --ignore-platform-reqs
composer dump-autoload --no-dev --optimize --classmap-authoritative --ignore-platform-reqs
composer install --no-dev --optimize-autoloader --classmap-authoritative
composer dump-autoload --no-dev --optimize --classmap-authoritative
rm -rf .git
rm -rf .github
rm -rf tests
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,8 @@
- Added timeframes to shipment request
- Fixed phone area code, city and street select width rendering as 0px when switching carriers in checkout
- Fixed DPDBaltics menu item disappearing from sidebar when navigating to module pages

## [3.3.2]
- Fixed 3.3.1 breaking shops on PHP below 8.1 by constraining the bundled Symfony dependencies to versions the module supports
- Added a PHP version check on install so an unsupported PHP version is refused with a clear message instead of taking the shop offline
- Fixed the release build ignoring the declared PHP platform version and resolving untested dependency versions
4 changes: 4 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
"invertus/dpdbaltics-api": "dev-developer",
"invertus/psmoduletabs": "dev-develop",
"symfony/console": "^3.4",
"symfony/debug": "^3.4",
"symfony/property-access": "^3.4",
"symfony/property-info": "^3.4",
"symfony/serializer": "^3.4",
"prestashop/decimal": "^1.4"
},
"require-dev": {
Expand Down
Loading
Loading