-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): 5.0.0-beta.11 [skip ci]
## 🚧 This version is not ready for production use 🚧 This is the beta release of MyParcel for WooCommerce v5.x. We've rewritten the entire plugin from scratch, using the [MyParcel Plugin Development Kit]. For a less bug-prone experience, we recommend you use the stable or release candidate versions of the plugin instead. You can find the stable version in the [WordPress plugin directory]. The release candidate versions can be found in the [releases] section of this repository. They are versioned with a `-rc` suffix. If you do choose to install this version, we would love to hear your feedback. Please report any issues you encounter using the [Bug report for v5.0.0-beta.x form] or by sending an email to [[email protected]]. Use it in production at your own risk. [Bug report for v5.0.0-beta.x form]: https://github.com/myparcelnl/woocommerce/issues/new?labels=beta&template=ZZ-BUG-REPORT-v5.yml [MyParcel Plugin Development Kit]: https://developer.myparcel.nl/documentation/52.pdk/ [WordPress plugin directory]: https://wordpress.org/plugins/woocommerce-myparcel/ [releases]: https://github.com/myparcelnl/woocommerce/releases [[email protected]]: mailto:[email protected] ## [5.0.0-beta.11](v5.0.0-beta.10...v5.0.0-beta.11) (2024-09-20) ### 🐛 Bug Fixes * **webhooks:** fix webhooks not working ([#1137](#1137)) ([fcbd7d2](fcbd7d2)) ### ⚡ Performance Improvements * **orders:** fix audits table being queried for each order in overview ([#1156](#1156)) ([dd22902](dd22902)) ### ✨ New Features * **deps:** upgrade myparcelnl/pdk to v2.43.2 ([19c8fd8](19c8fd8))
- Loading branch information
1 parent
19c8fd8
commit b7c9119
Showing
4 changed files
with
83 additions
and
52 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 |
---|---|---|
|
@@ -17,6 +17,37 @@ If you do choose to install this version, we would love to hear your feedback. P | |
[releases]: https://github.com/myparcelnl/woocommerce/releases | ||
[[email protected]]: mailto:[email protected] | ||
|
||
## [5.0.0-beta.11](https://github.com/myparcelnl/woocommerce/compare/v5.0.0-beta.10...v5.0.0-beta.11) (2024-09-20) | ||
|
||
|
||
### :bug: Bug Fixes | ||
|
||
* **webhooks:** fix webhooks not working ([#1137](https://github.com/myparcelnl/woocommerce/issues/1137)) ([fcbd7d2](https://github.com/myparcelnl/woocommerce/commit/fcbd7d2cecfcaba7e835e4db17d543e650aaa22e)) | ||
|
||
|
||
### :zap: Performance Improvements | ||
|
||
* **orders:** fix audits table being queried for each order in overview ([#1156](https://github.com/myparcelnl/woocommerce/issues/1156)) ([dd22902](https://github.com/myparcelnl/woocommerce/commit/dd22902449d65d1e3306cb05b5122d283a7af84e)) | ||
|
||
|
||
### :sparkles: New Features | ||
|
||
* **deps:** upgrade myparcelnl/pdk to v2.43.2 ([19c8fd8](https://github.com/myparcelnl/woocommerce/commit/19c8fd8c969fac3c41fcb4f0085850160b6022f8)) | ||
|
||
## 🚧 This version is not ready for production use 🚧 | ||
|
||
This is the beta release of MyParcel for WooCommerce v5.x. We've rewritten the entire plugin from scratch, using the [MyParcel Plugin Development Kit]. | ||
|
||
For a less bug-prone experience, we recommend you use the stable or release candidate versions of the plugin instead. You can find the stable version in the [WordPress plugin directory]. The release candidate versions can be found in the [releases] section of this repository. They are versioned with a `-rc` suffix. | ||
|
||
If you do choose to install this version, we would love to hear your feedback. Please report any issues you encounter using the [Bug report for v5.0.0-beta.x form] or by sending an email to [[email protected]]. Use it in production at your own risk. | ||
|
||
[Bug report for v5.0.0-beta.x form]: https://github.com/myparcelnl/woocommerce/issues/new?labels=beta&template=ZZ-BUG-REPORT-v5.yml | ||
[MyParcel Plugin Development Kit]: https://developer.myparcel.nl/documentation/52.pdk/ | ||
[WordPress plugin directory]: https://wordpress.org/plugins/woocommerce-myparcel/ | ||
[releases]: https://github.com/myparcelnl/woocommerce/releases | ||
[[email protected]]: mailto:[email protected] | ||
|
||
## [5.0.0-beta.10](https://github.com/myparcelnl/woocommerce/compare/v5.0.0-beta.9...v5.0.0-beta.10) (2024-08-07) | ||
|
||
|
||
|
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 |
---|---|---|
@@ -1,55 +1,55 @@ | ||
{ | ||
"name": "myparcelnl/woocommerce", | ||
"version": "5.0.0-beta.10", | ||
"require": { | ||
"myparcelnl/pdk": "^2.0.0", | ||
"guzzlehttp/guzzle": "^7.5.0", | ||
"psr/log": "*" | ||
"name": "myparcelnl/woocommerce", | ||
"version": "5.0.0-beta.11", | ||
"require": { | ||
"myparcelnl/pdk": "^2.0.0", | ||
"guzzlehttp/guzzle": "^7.5.0", | ||
"psr/log": "*" | ||
}, | ||
"scripts": { | ||
"analyse": "php -dmemory_limit=-1 vendor/bin/phpstan analyse", | ||
"analyse:generate": "composer run analyse -- --generate-baseline phpstan-baseline.php --allow-empty-baseline", | ||
"analyze": "composer run analyse", | ||
"analyze:generate": "composer run analyse:generate", | ||
"test": "vendor/bin/pest", | ||
"test:coverage": "php -dpcov.enabled=1 vendor/bin/pest --coverage-clover=coverage.xml" | ||
}, | ||
"require-dev": { | ||
"humbug/php-scoper": "^0.17.5", | ||
"pestphp/pest": ">= 1", | ||
"php-stubs/woocommerce-stubs": "^8.0", | ||
"phpstan/phpstan": "^1.10", | ||
"spatie/pest-plugin-snapshots": ">= 1", | ||
"szepeviktor/phpstan-wordpress": "^1.3" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": { | ||
"MyParcelNL\\WooCommerce\\": "src" | ||
}, | ||
"scripts": { | ||
"analyse": "php -dmemory_limit=-1 vendor/bin/phpstan analyse", | ||
"analyse:generate": "composer run analyse -- --generate-baseline phpstan-baseline.php --allow-empty-baseline", | ||
"analyze": "composer run analyse", | ||
"analyze:generate": "composer run analyse:generate", | ||
"test": "vendor/bin/pest", | ||
"test:coverage": "php -dpcov.enabled=1 vendor/bin/pest --coverage-clover=coverage.xml" | ||
"files": [ | ||
"src/functions.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"": "tests/factories", | ||
"MyParcelNL\\Pdk\\": "vendor/myparcelnl/pdk/tests/factories", | ||
"MyParcelNL\\Pdk\\Tests\\": "vendor/myparcelnl/pdk/tests", | ||
"MyParcelNL\\WooCommerce\\": "tests/Unit", | ||
"MyParcelNL\\WooCommerce\\Tests\\": "tests" | ||
}, | ||
"require-dev": { | ||
"humbug/php-scoper": "^0.17.5", | ||
"pestphp/pest": ">= 1", | ||
"php-stubs/woocommerce-stubs": "^8.0", | ||
"phpstan/phpstan": "^1.10", | ||
"spatie/pest-plugin-snapshots": ">= 1", | ||
"szepeviktor/phpstan-wordpress": "^1.3" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"autoload": { | ||
"psr-4": { | ||
"MyParcelNL\\WooCommerce\\": "src" | ||
}, | ||
"files": [ | ||
"src/functions.php" | ||
] | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"": "tests/factories", | ||
"MyParcelNL\\Pdk\\": "vendor/myparcelnl/pdk/tests/factories", | ||
"MyParcelNL\\Pdk\\Tests\\": "vendor/myparcelnl/pdk/tests", | ||
"MyParcelNL\\WooCommerce\\": "tests/Unit", | ||
"MyParcelNL\\WooCommerce\\Tests\\": "tests" | ||
}, | ||
"files": [ | ||
"vendor/myparcelnl/pdk/tests/functions.php", | ||
"vendor/myparcelnl/pdk/tests/usesShared.php", | ||
"tests/functions.php" | ||
] | ||
}, | ||
"config": { | ||
"prepend-autoloader": false, | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true | ||
} | ||
"files": [ | ||
"vendor/myparcelnl/pdk/tests/functions.php", | ||
"vendor/myparcelnl/pdk/tests/usesShared.php", | ||
"tests/functions.php" | ||
] | ||
}, | ||
"config": { | ||
"prepend-autoloader": false, | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true | ||
} | ||
} | ||
} |
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