Skip to content

Commit

Permalink
Testing and fixes for 1.14.9
Browse files Browse the repository at this point in the history
  • Loading branch information
iverok committed Jul 19, 2023
1 parent 129d173 commit ac84988
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Vipps.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -2529,7 +2529,7 @@ public function callback_destroy_session () {
// When we get callbacks from Vipps, we want to restore the Woo session in place for the order.
// For many plugins this is strictly neccessary because they don't check to see if there is a session
// or not - and for many others, wrong results are produced without the (correct) session. IOK 2019-10-22
protected function callback_restore_session ($orderid) {
public function callback_restore_session ($orderid) {
$this->callbackorder = $orderid;
unset(WC()->session);
require_once(dirname(__FILE__) . "/VippsCallbackSessionHandler.class.php");
Expand Down
17 changes: 9 additions & 8 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
=== Pay with Vipps for WooCommerce ===
Contributors: wphostingdev, iverok, pmbakken, perwilhelmsen
Tags: woocommerce, vipps
Version: 1.14.8
Stable tag: 1.14.8
Version: 1.14.9
Stable tag: 1.14.9
Requires at least: 4.7
Tested up to: 6.2.2
Tested up to: 6.3
Requires PHP: 5.6
WC requires at least: 3.3.4
WC tested up to: 7.8.0
WC tested up to: 7.9.0
License: MIT
License URI: https://choosealicense.com/licenses/mit/

Expand Down Expand Up @@ -79,9 +79,9 @@ Shareable links and QR codes can be generated from the Vipps tab on the product
This project is hosted on Github at: https://github.com/vippsas/vipps-woocommerce

== Upgrade Notice ==
Robustness against certain caches added.
Back-button fixes applied

Support Free shipping for Porterbuddy in Vipps Checkout
Fix issue with Woo 5.8.x and above where Express Checkout required email confirmation before the thankyou page was shown.
Improve callback handling

== Frequently Asked Questions ==

Expand Down Expand Up @@ -217,8 +217,9 @@ From version 1.1.13 you can also modify the javascript using the new WP hooks li
* 'vippsStatusCheckErrorHandler' - A filter that should return function taking a statustext and an error object. It receives the default error handler, and is called when checking the order status with ajax for some reason ends up in an error.

== Changelog ==
= 2023-07-xx version 1.14.9 =
= 2023-07-19 version 1.14.9 =
Support Free shipping for Porterbuddy in Vipps Checkout
Fix issue with Woo 5.8.x and above where Express Checkout required email confirmation before the thankyou page was shown.

= 2023-06-22 version 1.14.8 =
Fix back button on express checkout
Expand Down
10 changes: 5 additions & 5 deletions woo-vipps.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
Author URI: https://www.wp-hosting.no/
Text-domain: woo-vipps
Domain Path: /languages
Version: 1.14.8
Stable tag: 1.14.8
Version: 1.14.9
Stable tag: 1.14.9
Requires at least: 4.7
Tested up to: 6.2.2
Tested up to: 6.3
Requires PHP: 5.6
WC requires at least: 3.3.4
WC tested up to: 7.8.0
WC tested up to: 7.9.0
License: MIT
License URI: https://choosealicense.com/licenses/mit/
Expand Down Expand Up @@ -48,7 +48,7 @@


// Report version externally
define('WOO_VIPPS_VERSION', '1.14.8');
define('WOO_VIPPS_VERSION', '1.14.9');

if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
Expand Down

0 comments on commit ac84988

Please sign in to comment.