forked from getconversio/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed order.shipping_lines.id to uint64 (#288)
* Changed order.shipping_lines.id to uint64
- Loading branch information
1 parent
2276db8
commit c8f0c86
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
fixtures/shippinglines/requested_fulfillment_service_id_invalid.json
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,5 +1,5 @@ | ||
{ | ||
"id": "some-id", | ||
"id": 123456789, | ||
"code": "INT.TP", | ||
"price": "4.00", | ||
"price_set": { | ||
|
2 changes: 1 addition & 1 deletion
2
fixtures/shippinglines/requested_fulfillment_service_id_null.json
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,5 +1,5 @@ | ||
{ | ||
"id": "some-id", | ||
"id": 123456789, | ||
"code": "INT.TP", | ||
"price": "4.00", | ||
"price_set": { | ||
|
2 changes: 1 addition & 1 deletion
2
fixtures/shippinglines/requested_fulfillment_service_id_number.json
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,5 +1,5 @@ | ||
{ | ||
"id": "some-id", | ||
"id": 123456789, | ||
"code": "INT.TP", | ||
"price": "4.00", | ||
"price_set": { | ||
|
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,5 +1,5 @@ | ||
{ | ||
"id": "some-id", | ||
"id": 123456789, | ||
"code": "INT.TP", | ||
"price": "4.00", | ||
"price_set": { | ||
|
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
c8f0c86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @roelofjan-elsinga, just come across this issue on our test env as I recently upgraded to the latest v4.
As it's a major issue, breaks all unmarshalling of orders, would it be possible to push this on a new release to replace the latest v4?
Like myself, others will come across it on their upgrade path, and if I didn't look at the commit history I would have raised an issue about it.
For other looking to solve it, do
go get github.com/bold-commerce/go-shopify/v4@master
to get this fix.c8f0c86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for leaving this note @pnmcosta
I'll cut a new release in a few so you don't need to rely on
master
to get the fix.c8f0c86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/bold-commerce/go-shopify/releases/tag/v4.2.0
c8f0c86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's brilliant, thank you so much @oliver006