Skip to content

Commit

Permalink
Changed the minimal Address module requirement to v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Dec 14, 2024
1 parent 8364eb3 commit 20f51b3
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 8 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
##### 2024-XX-YY

- Added the Promotion module with promotions, actions, rules and coupons support
- Changed the minimal Address module requirement to v3.4.1
- Changed the `ConfigurableModel::hasConfiguration()` trait to return false on empty arrays as well
(until now, only `null` was considered as no config). It affects the following models:
- `Carrier`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"spatie/laravel-medialibrary": "^11.0",
"cviebrock/eloquent-sluggable": "^10.0|^11.0",
"konekt/laravel-migration-compatibility": "^1.6",
"konekt/address": "^3.3.1",
"konekt/address": "^3.4.1",
"konekt/customer": "^3.0",
"konekt/user": "^3.0",
"konekt/search": "^1.2",
Expand Down
1 change: 1 addition & 0 deletions src/Channel/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Unreleased
##### 2024-XX-YY

- Changed the minimal Address module requirement to v3.4.1
- Changed `Channel::hasConfiguration()` to return false on empty arrays as well
- Changed the `Channelable` trait's MorphToMany relationship definition so that the pivot definitions are explicitly declared
- Fixed the `Channel::getCurrency()` method returning the wrong attribute by [Ouail](https://github.com/ouail) in [#189](https://github.com/vanilophp/framework/pull/189)
Expand Down
4 changes: 2 additions & 2 deletions src/Channel/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0|^9.0",
"laravel/legacy-factories": "^1.0",
"konekt/address": "^3.3.1"
"konekt/address": "^3.4.1"
},
"suggest": {
"konekt/address": "To support billing and shipping zones (^3.3)"
"konekt/address": "To support billing and shipping zones (^3.4)"
},
"autoload": {
"psr-4": { "Vanilo\\Channel\\": "" }
Expand Down
1 change: 1 addition & 0 deletions src/Checkout/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Unreleased
##### 2024-XX-YY

- Changed the minimal Address module requirement to v3.4.1
- Added the following, v5 interface candidate methods to the Checkout implementations:
- `addCoupon()`
- `removeCoupon()`
Expand Down
2 changes: 1 addition & 1 deletion src/Checkout/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0|^9.0",
"konekt/address": "^3.3.1"
"konekt/address": "^3.4.1"
},
"autoload": {
"psr-4": { "Vanilo\\Checkout\\": "" }
Expand Down
1 change: 1 addition & 0 deletions src/Order/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Unreleased
##### 2024-XX-YY

- Changed the minimal Address module requirement to v3.4.1
- Added `domain` field to the orders table
- Added then automatic completion of `$order->domain` from the current request to the OrderFactory
- Changed `OrderItem::hasConfiguration()` to return false on empty arrays as well
Expand Down
2 changes: 1 addition & 1 deletion src/Order/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"require": {
"php": "^8.2",
"konekt/address": "^3.3.1",
"konekt/address": "^3.4.1",
"konekt/concord": "^1.13",
"konekt/enum": "^4.2",
"konekt/laravel-migration-compatibility": "^1.6",
Expand Down
1 change: 1 addition & 0 deletions src/Shipment/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Unreleased
##### 2024-XX-YY

- Changed the minimal Address module requirement to v3.4.1
- Changed `ShippingMethod::hasConfiguration()` to return false on empty arrays as well
- Changed `Shipment::hasConfiguration()` to return false on empty arrays as well
- Changed `Carrier::hasConfiguration()` to return false on empty arrays as well
Expand Down
2 changes: 1 addition & 1 deletion src/Shipment/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"require": {
"php": "^8.2",
"konekt/address": "^3.3.1",
"konekt/address": "^3.4.1",
"konekt/concord": "^1.13",
"konekt/enum": "^4.2",
"konekt/laravel-migration-compatibility": "^1.6",
Expand Down
1 change: 1 addition & 0 deletions src/Support/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Unreleased
##### 2024-XX-YY

- Changed the minimal Address module requirement to v3.4.1
- Changed the `ConfigurableModel::hasConfiguration()` trait to return false on empty arrays as well (until now, only `null` was considered as no config)
- Added the search engine and inventory feature configuration wrappers

Expand Down
2 changes: 1 addition & 1 deletion src/Support/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"suggest": {
"spatie/laravel-medialibrary": "Allows associating images or other files with Eloquent models (^11.0)",
"konekt/concord": "Library to write Modular Applications (^1.13)",
"konekt/address": "Improves the EU membership and VAT ID validation (^3.3)"
"konekt/address": "Improves the EU membership and VAT ID validation (^3.4)"
},
"extra": {
"branch-alias": {
Expand Down
1 change: 1 addition & 0 deletions src/Taxes/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## Unreleased
##### 2024-XX-YY

- Changed the minimal Address module requirement to v3.4.1
- Changed `TaxRate::hasConfiguration()` to return false on empty arrays as well

## 4.1.0
Expand Down
2 changes: 1 addition & 1 deletion src/Taxes/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"require": {
"php": "^8.2",
"konekt/concord": "^1.13",
"konekt/address": "^3.3.1",
"konekt/address": "^3.4.1",
"konekt/enum": "^4.2",
"konekt/laravel-migration-compatibility": "^1.6",
"laravel/framework": "^10.43|^11.0",
Expand Down

0 comments on commit 20f51b3

Please sign in to comment.