Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
a9ae784
Fix double discount calculation in COD label goods price
MarijusDilys Nov 19, 2025
f078d35
Bump version to 3.3.1 and update changelog
MarijusDilys Nov 19, 2025
24ef0a0
fix
MarijusDilys Nov 19, 2025
7e9e6c7
Merge pull request #148 from DPDBaltics/DGS-410/fix-double-discount-c…
MarijusDilys Nov 19, 2025
6e700d1
DGS-415 fix null parameter deprecation in AddressAdapter preg_replace…
TLabutis Mar 24, 2026
71532f9
DGS-417 Fix shipment creation failing when Predict SMS service is man…
TLabutis Mar 24, 2026
e12f252
DGS-414: update parcel import functionality to handle large quanities…
GytisZum Mar 25, 2026
9ac490e
fix: add additional validation for the supercheckout module which usi…
GytisZum Mar 25, 2026
4615726
fix (#150)
MarijusDilys Mar 25, 2026
fcd607d
change switch expression to use correct method; add filename to trans…
webotron Mar 25, 2026
fd6f05e
Fix automatic PUDO point pre-selection in LIST mode (#149)
MarijusDilys Mar 25, 2026
ca74260
DGS-286 add timeframes to request (#145)
MarijusDilys Mar 25, 2026
ee2647c
fix workflows and update changelog
Mar 25, 2026
7375297
workflow updated to ignore platform reqs
Mar 25, 2026
fdca0b8
Adding auto indexes
GytisZum Mar 25, 2026
f5f4dd3
fix setPredict setter
Mar 25, 2026
011bb87
Merge branch 'release-3.3.1' of github.com:DPDBaltics/PrestaShop into…
Mar 25, 2026
6cae707
Automatic license addition applying
GytisZum Mar 25, 2026
2e03e29
Fix pudo pickup points not reloading on city change
Mar 27, 2026
087a667
Fix pudo pickup points not reloading on city change (#163)
TLabutis Mar 29, 2026
4b45a72
Fix admin pudo pickup point display for non-LT orders (#164)
TLabutis Mar 30, 2026
13a6f49
DGS-425 fix chosen select width on carrier switch in checkout
Apr 30, 2026
ccf7de0
Fix DPDBaltics sidebar item disappearing on module pages
May 5, 2026
9a7e7c6
DGS-427 Improve logs section: collapse request/response into modal vi…
May 5, 2026
5124f10
DGS-427 Restructure logs list and JSON-encode payloads
May 5, 2026
be643c3
DGS-427 Override logs CSV export with diagnostic header
May 5, 2026
f00dec8
Fix Shipment list sorting on joined-table columns
May 22, 2026
36236be
Merge pull request #167 from TLabutis/BUGFIX/sidebar-menu-disappears-…
rokaszygmantas May 25, 2026
5e53323
Merge branch 'release-3.3.1' into DGS-425/fix-chosen-width-on-carrier…
TLabutis May 25, 2026
a8c1f36
Merge branch 'release-3.3.1' into DGS-427-improve-logs-section
TLabutis May 25, 2026
3fe182f
Merge branch 'release-3.3.1' into BUGFIX/shipment-list-sorting
TLabutis May 25, 2026
f18848f
Merge pull request #169 from TLabutis/BUGFIX/shipment-list-sorting
rokaszygmantas May 25, 2026
6daacb3
Merge pull request #168 from TLabutis/DGS-427-improve-logs-section
rokaszygmantas May 25, 2026
a45161f
Automatic license addition applying
rokaszygmantas May 25, 2026
7da48a5
Merge branch 'release-3.3.1' into DGS-425/fix-chosen-width-on-carrier…
TLabutis May 25, 2026
0a2cc19
Merge pull request #166 from TLabutis/DGS-425/fix-chosen-width-on-car…
rokaszygmantas May 25, 2026
94be7bd
Automatic license addition applying
rokaszygmantas May 25, 2026
2f65f06
DGS-430 Add --ignore-platform-reqs to release build (#172)
TLabutis Jun 30, 2026
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
composer dump-autoload --no-dev --optimize --classmap-authoritative
composer install --no-dev --optimize-autoloader --classmap-authoritative --ignore-platform-reqs
composer dump-autoload --no-dev --optimize --classmap-authoritative --ignore-platform-reqs
rm -rf .git .github tests vendor.zip .gitignore
mkdir dpdbaltics
rsync -Rr ./ ./dpdbaltics
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}
key: php-${{ hashFiles('composer.json') }}

- name: Cache composer folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: php-composer-cache

- run: composer install
- run: composer install --ignore-platform-reqs

- name: Run auto indexing
run: php vendor/bin/autoindex

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Adding auto indexes

Expand All @@ -36,26 +36,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor
key: php-${{ hashFiles('composer.lock') }}
key: php-${{ hashFiles('composer.json') }}

- name: Cache composer folder
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: php-composer-cache

- run: composer install
- run: composer install --ignore-platform-reqs

- name: Adding licenses
run: vendor/bin/header-stamp --license=assets/afl.txt --exclude=vendor,node_modules

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Automatic license addition applying

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
composer dump-autoload --no-dev --optimize --classmap-authoritative
composer install --no-dev --optimize-autoloader --classmap-authoritative --ignore-platform-reqs
composer dump-autoload --no-dev --optimize --classmap-authoritative --ignore-platform-reqs
rm -rf .git
rm -rf .github
rm -rf tests
Expand Down
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,22 @@
## [3.3.0]
- Added PrestaShop 9 compatibility
- Fixed issue with price rule "All"
- Fixed other minor issues
- Fixed other minor issues
- Improved Logs section by collapsing request/response into a modal viewer to fix table overflow on long URLs

## [3.3.1]
- Fixed sorting on Shipment list columns from joined tables (Tracking number, Receiver, Address, City)
- Changed default sort on Shipment list to show latest shipments first
- Fixed incorrect COD label amount when discount code is applied
- Fixed parcelshop info not displaying in backoffice order view when customer city differs from parcelshop city
- Fixed shipment creation overwriting parcelshop address data with customer address data
- Fixed Lithuanian and Latvian translations for shipping label in admin order panel
- Added Poland parcel shop import support with batch processing
- Fixed null parameter deprecation in AddressAdapter preg_replace calls
- Fixed shipment creation failing for accounts requiring Predict SMS service
- Fixed additional validation for supercheckout module using currentcontroller variable
- Fixed automatic PUDO point pre-selection in LIST mode
- Fixed PUDO shipment CSS styling
- 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
Loading
Loading