super_good-solidus_taxjar 0.17.0 → 0.17.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b11bc18ca6b156d505c9327b733da737feb0712f55daf51d014c43e67a94f17b
4
- data.tar.gz: 20143b4baa4080ca6eb57375459d9918fbaf8964e11e0169134029b7ffb8559a
3
+ metadata.gz: a31766c3361794c3a8180a0a8f8b6af7f2b8e970929e203fa5a9b02e8b917f5a
4
+ data.tar.gz: 7f588d8f3f693426ead6eb43ca801a1e1d7cb9151d951d2ec4af11bb666b49f8
5
5
  SHA512:
6
- metadata.gz: b95355ed63090f876d59814c9a4ecfb94681c156a2880775b4c14d897527479b675d9c1a864a3e0f9ca08e6c3e6d0581f6375c445d33c021595d640aabba132c
7
- data.tar.gz: 79c294c8ed4b6207c1f493fdc22243d288e5da5d2bcfe9d0194f15abf734ee4df31bba0f48996f7695718638af590f8c91ce9d9c4d35ad485421401c8c233e44
6
+ metadata.gz: 588484c98a53622a57266891dfc5c504e637c5962071268847bf7bcbab7f6242c32b60f81130cdfe6858acd8d9502272a18ebcb7f7b30ca3d7bf86973e7dc585
7
+ data.tar.gz: ef6153d10eb4cfd65e19d4ed1805f4b7e30a1190b65ba07fda2602b66ebf3450fb58ab57c2c197e758e4e9d1da2f34c5cc65a8b320fd71225f1059a42fe9ad57
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## v0.17.1
6
+
7
+ - Fixed bug where shipping calculator was not used for order shipping param. (Thanks @spaghetticode!)
8
+
5
9
  ## v0.17.0
6
10
 
7
11
  - Added `SuperGood::SolidusTaxJar.custom_order_params` to allow for custom overrides to the parameters sent to TaxJar when calculating order taxes. For example, if you needed to send a custom nexus address you could do:
@@ -7,7 +7,7 @@ module SuperGood
7
7
  .merge(customer_params(order))
8
8
  .merge(order_address_params(order.tax_address))
9
9
  .merge(line_items_params(order.line_items))
10
- .merge(shipping: order.shipment_total)
10
+ .merge(shipping: shipping(order))
11
11
  .merge(SuperGood::SolidusTaxJar.custom_order_params.(order))
12
12
  .tap do |params|
13
13
  next unless SuperGood::SolidusTaxJar.logging_enabled
@@ -1,5 +1,5 @@
1
1
  module SuperGood
2
2
  module SolidusTaxJar
3
- VERSION = "0.17.0"
3
+ VERSION = "0.17.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_good-solidus_taxjar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.17.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Norman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-04 00:00:00.000000000 Z
11
+ date: 2020-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solidus_core