Skip to content

Commit

Permalink
chore(release): 5.0.0-beta.11 [skip ci]
Browse files Browse the repository at this point in the history
## 🚧 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
myparcel-bot[bot] committed Sep 20, 2024
1 parent 19c8fd8 commit b7c9119
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 52 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
100 changes: 50 additions & 50 deletions composer.json
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
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myparcel-woocommerce/monorepo",
"version": "5.0.0-beta.10",
"version": "5.0.0-beta.11",
"private": true,
"homepage": "https://github.com/myparcelnl/woocommerce#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-myparcel.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Description: Export your WooCommerce orders to MyParcel and print labels directly from the WooCommerce admin
Author: MyParcel
Author URI: https://myparcel.nl
Version: 5.0.0-beta.10
Version: 5.0.0-beta.11
License: MIT
License URI: http://www.opensource.org/licenses/mit-license.php
*/
Expand Down

0 comments on commit b7c9119

Please sign in to comment.