ShopifySharp 3.4.4

ShopifySharp is a .NET library that enables you to authenticate and make API calls to Shopify.

No packages depend on ShopifySharp.

3.4.4 ===== - New ShopifyCustomerUpdateOptions: Update a customer's password during ShopifyCustomerService.UpdateAsync [(#92)](https://github.com/nozzlegear/shopifysharp/pull/92). 3.4.3 ===== - Bugfix: ShopifyCustomerService.CreateAsync wasn't properly serializing the CustomerCreateOptions class. 3.4.2 ===== - Bugfix: ShopifyOrderRisk.CauseCancel should be nullable [(#88)](https://github.com/nozzlegear/shopifysharp/issues/88). 3.4.1 ===== - Added the new `DisplayScope` property to ShopifyScriptTag. Known values are 'online_store', 'order_status' and 'all'. Defaults to 'all'. 3.4.0 ===== - New ShopifyArticleService: Create, get, update, list, count, and delete articles, in addition to listing authors and listing tags. 3.3.0 ===== - New ShopifyApplicationCreditService: Create, list and get Application Credits [(#84)](https://github.com/nozzlegear/ShopifySharp/issues/84). - Support for "Offline Access" and "Online Access" tokens when creating an authorization URL for OAuth integration [(#83)](https://github.com/nozzlegear/ShopifySharp/issues/83). - Support for canceling an order [(#85)](https://github.com/nozzlegear/ShopifySharp/issues/85). 3.2.0 ===== - New ShopifyBlogService: Create, get, update, count, list and delete a shop's blogs [(#80)](https://github.com/nozzlegear/ShopifySharp/issues/80). 3.1.1 ===== - Bugfix: ShopifyMetaFieldService.GetAsync was returning null due to bad deserialization [(#81)](https://github.com/nozzlegear/ShopifySharp/issues/81). 3.1.0 ===== - New ShopifyProductVariantService: Create, get, update, count, list and delete a product's variants [(#73)](https://github.com/nozzlegear/ShopifySharp/issues/73). - New ShopifySmartCollectionService: Create, get, update, count, list and delete smart collections [(#72)](https://github.com/nozzlegear/ShopifySharp/issues/72). - New ShopifyOrderRiskService: Create, get, update, list and delete order risks [(#71)](https://github.com/nozzlegear/ShopifySharp/issues/71). - When an API call reaches Shopify's rate limit, a ShopifyRateLimitException will now be thrown. This exception inherits from the base ShopifyException, so previous code will still catch the exception [(#67)](https://github.com/nozzlegear/ShopifySharp/issues/67). - Bugfix: ShopifySharp will not properly parse the "authorization code was not found or was already used" error when trying to reuse an OAuth code [(#70)](https://github.com/nozzlegear/ShopifySharp/issues/70). - Bugfix: Closing and opening an order should return the ShopifyOrder object [(#76)](https://github.com/nozzlegear/ShopifySharp/issues/76). 3.0.0 ===== - Breaking release: all enums have been removed and replaced with strings to avoid unannounced changes from Shopify breaking your apps. Reasoning for this change is documented at https://github.com/nozzlegear/ShopifySharp/pull/65. 2.4.0 ===== - New ShopifyEventService: List, get and count Shopify events. 2.3.0 ===== - New ShopifyLocationService: List and get Shopify store locations. 2.2.0 ===== - New ShopifyUsageChargeService: Create, get and list usage charges. - New property: ShopifyRecurringCharge.Terms. Must be used to create a ShopifyUsageCharge. - New property: ShopifyRecurringCharge.CappedAmount. Must be used to create a ShopifyUsageCharge. 2.1.4 ===== - New ShopifyAuthorizationScopes: `WriteShipping`, `ReadAnalytics`, `ReadUsers`, `WriteUsers`. - New ShopifyThemeRole: `Mobile`. 2.1.3 ===== - Bugfix: `ShopifyOrder.TotalWeight` is now a long number. #56. 2.1.2 ===== - New `ShopifyLineItem.Properties` property. #55. 2.1.1 ===== - Bugfix: `ShopifyShop.ForceSSL` wasn't serializing or deserializing properly. 2.1.0 ===== - New feature: ShopifyProductImage. Create, get, count, list, update and delete a product's images. - New property: ShopifyShop.ForceSSL. 2.0.3 ===== - Added an optional state parameter to OAuth installation URL built with ShopifyAuthorizationService.BuildAuthorizationUrl. #51 - Added ThemePublished webhook, which gets fired when a Shopify shop changes its current published theme. #47. 2.0.2 ====== - Bugfix: ShopifyProductVariant.Grams field could occasionally be null, throwing a deserialization exception. Null value now defaults to 0. #48 2.0.1 ====== - Fixed a bug where ShopifySharp would throw an `ArgumentNullException` while trying to deserialize an empty response error from Shopify. #46 2.0.0 ====== Version 2.0.0 is a major update to ShopifySharp, it contains some breaking changes. We strongly recommend updating to 2.0.0+ **before** June 1st, 2016. Shopify will completely deprecate the method for verifying authentic requests used in `ShopifyAuthorizationService.IsAuthenticRequest` on June 1st, 2016. After that date, this method will always return false in v1 builds. Breaking changes: - `ShopifyException.Error.Errors` is now a `Dictionary{string, IEnumerable{string}}` on the ShopifyException itself. To maintain some back compat, `ShopifyException.JsonError` is the raw JSON-serialized error returned by Shopify. It's functionally identical to the old ex.Error.Errors, which was also the raw JSON string. - Any enums that previously had a `.Unknown` default value are now nullable and have had those values removed. Instead of checking if `Enum == Enum.Unknown`, you should instead check if `Enum == null` or `Enum != Enum.Value`. - `ShopifyRecurringChargeStatus` has been merged into `ShopifyChargeStatus`. - All `*FilterOptions` and `*ListOptions` (used in many Service.ListAsync and Service.CountAsync calls) have been renamed to `*Filter` and moved into the `ShopifySharp.Filters` namespace. Other changes: - New feature: Forcefully uninstall your app from the shop with `ShopifyShopService.UninstallAppAsync()`. 1.17.1 ====== - Bugfix: ShopifyAuthorizationService.IsAuthentic* methods threw an exception when signature was null, rather than returning false. 1.17.0 ====== - New feature: ShopifyCustomCollectionService. Create, get, list, count, update and delete custom collections. 1.16.0 ====== - New feature: ShopifyMetaFieldService. Create, get, list, count, update and delete metafields. 1.15.1 ====== - Support for publishing and unpublishing a Shopify product. - Bugfix: Creating an unpublished product was broken and would create it as published. 1.15.0 ====== - New feature: ShopifyPageService. Create, get, list, count, update and delete a shop's web pages. ([#25](https://github.com/nozzlegear/ShopifySharp/pull/25)) - Enhancement: Removed Humanizer dependency in favor of C# 6.0's native string interpolation. ([#23](https://github.com/nozzlegear/ShopifySharp/issues/23)) - Enhancement: Added additional filter options to `ShopifyOrderFilterOptions`. ([#27](https://github.com/nozzlegear/ShopifySharp/pull/27)) - Bugfix: Changed the `Title`, `Vendor`, `Handle` and `ProductType` properties in `ShopifyProductFilterOptions` from long to string. ([#29](https://github.com/nozzlegear/ShopifySharp/issues/29)) - Bugfix: `ShopifyProductFilterOptions` failed to parse the `CollectionId` from JSON. ([#28](https://github.com/nozzlegear/ShopifySharp/issues/28)) 1.14.0 ====== - New feature: ShopifyTransactionService. Create, get, list and count an order's transactions. 1.13.0 ====== - New feature: ShopifyFulfillmentService. Create, retrieve, update, list, count, complete and cancel an order's fulfillments. 1.12.0 ====== - New feature: ShopifyCollectService. Create, retrieve, list, count and delete a store's Collects. 1.11.4 ====== - Adds a `SinceId` filter to `ShopifyOrderFilterOptions`, letting you filter a list of orders to those created after the given id. 1.11.3 ====== - Makes ShopifyShop.PasswordEnabled a nullable Boolean. Null values here previously threw a deserialization exception. 1.11.2 ====== - Fixed a bug ShopifyOrderService.ListAsync and ShopifyProductService.ListAsync where filtering the results to specific ids was broken. - https://github.com/nozzlegear/shopifysharp/issues/17 1.11.1 ====== - Validate proxy page requests with ShopifyAuthorizationService.IsAuthenticProxyRequest. 1.11.0 ====== - New feature: ShopifyRedirectService. Create, retrieve, list, update, count and delete a store's redirects. 1.10.0 ====== - New feature: ShopifyThemeService. Create, retrieve, list, update and delete a store's themes. - This version marks the first use of NullableEnumConverter, which is the final solution for Shopify's undocumented, sometimes-null-sometimes-not enum values. Nullable enums are not backwards-compatible, though, so we'll have to wait until version 2.0 to apply the changes to older enums. 1.9.0 ===== - New feature: ShopifyProductService. Create, retrieve, count, list, update and delete a store's products. 1.8.0 ===== - New feature: ShopifyAssetService. Create, retrieve, list, update and copy a store theme's assets. 1.7.3 ===== - New property: ShopifyOrder.ContactEmail. See this announcement thread for important information about ShopifyOrder.ContactEmail and ShopifyOrder.Email: https://ecommerce.shopify.com/c/api-announcements/t/changes-to-order-email-address-294544 1.7.2 ===== - Bugfix: ShopifyOrder.TotalWeight can be null. Changed from "int" to "int?". 1.7.1 ===== - Bugfix: ShopifySharp.Enums.ShopifyProcessingMethod did not contain 'free' value, threw exception on deserialization. Fixed by adding 'free' value and a converter that will set any future unknown values to 'Unknown'. Next release will apply this to all enums, owing to the fact that Shopify does not document all valid enums, making it impossible to include them all without trial and error. 1.7.0 ===== - New feature: ShopifyScriptTagService. Script tags let you add remote javascript tags that are loaded into the page's of a shop's storefront, letting you dynamically change the functionality of their shop without editing the store's template. 1.6.0 ===== - New feature: ShopifyChargeService. Create, retrieve, list and activate a one-time application charge. - Added "expired" and "cancelled" to ShopifyRecurringChargeStatus enum. - Bugfix: ShopifyRecurringChargeConverter did not properly convert unknown enums to ShopifyRecurringChargeStatus.Unknown. Caused exceptions when receiving charges with previously undocumented "expired" and "cancelled" statuses. 1.5.0 ===== - Added a ShopifyRecurringChargeStatus enum to the ShopifyRecurringCharge object. 1.4.0 ===== - New feature: ShopifyRecurringChargeService. Create, retrieve, list, activate and delete recurring application charges. 1.3.6 ===== - Bugfix: ShopifyAuthorizationService.IsAuthenticWebhook disposed the input stream when it should not have. 1.3.5 ===== - Bugfix: ShopifyDiscountCode is nullable, but null value was not handled. 1.3.4 ===== - Service constructors now attempt to add a URI scheme before determining that the myShopifyUrl string is invalid. 1.3.3 ===== - Implemented ShopifyWebhookService, which which enables creating, retrieving, deleting, updating, listing, and counting a shop's webhooks. 1.3.2 ===== - Including XML documentation. 1.3.1 ===== - Bugfix: ShopifyFulfillment.TrackingUrl and ShopifyFulfillment.TrackingUrls props were missing. 1.3.0 ===== - New ShopifyAuthorizationService.IsValidMyShopifyUrl function. - Bugfix: ShopifyOrder.TotalPriceUsd was missing. - Bugfix: ShopifyOrder.PaymentDetails was missing.

Any 0.0

Version Downloads Last updated
7.0.0-b166 1 03/09/2024
6.22.0-b228 0 01/04/2025
6.22.0-b227 0 01/03/2025
6.22.0-b223 0 12/10/2024
6.22.0-b221 0 12/10/2024
6.22.0-b220 0 12/06/2024
6.21.0 0 12/04/2024
6.21.0-b219 0 12/04/2024
6.20.0 0 11/29/2024
6.20.0-b218 0 11/29/2024
6.19.0 0 10/01/2024
6.19.0-b216 0 11/27/2024
6.19.0-b215 2 12/09/2024
6.19.0-b214 2 10/31/2024
6.19.0-b213 0 10/04/2024
6.18.0 3 07/05/2024
6.18.0-b212 0 10/01/2024
6.18.0-b209 0 07/18/2024
6.18.0-b208 2 07/27/2024
6.18.0-b207 2 07/13/2024
6.17.0 0 05/16/2024
6.17.0-b206 2 07/05/2024
6.17.0-b204 2 07/05/2024
6.16.1 2 08/27/2024
6.16.0 0 05/14/2024
6.16.0-b197 2 06/03/2024
6.15.1 2 05/30/2024
6.15.1-b195 0 05/14/2024
6.15.1-b193 0 05/14/2024
6.15.0 0 04/30/2024
6.15.0-b192 2 05/30/2024
6.15.0-b191 2 07/02/2024
6.14.1 7 06/18/2024
6.14.1-b190 2 07/13/2024
6.14.0 1 06/17/2024
6.14.0-b189 2 06/23/2024
6.14.0-b188 2 07/26/2024
6.13.0 2 03/21/2024
6.13.0-b187 1 08/14/2024
6.13.0-b186 3 06/13/2024
6.13.0-b184 2 03/20/2024
6.13.0-b182 2 03/10/2024
6.13.0-b181 6 03/21/2024
6.13.0-b179 2 03/21/2024
6.13.0-b178 2 06/23/2024
6.13.0-b177 1 03/08/2024
6.13.0-b176 2 03/21/2024
6.13.0-b174 1 03/22/2024
6.13.0-b173 2 03/22/2024
6.12.2 3 03/08/2024
6.12.2-b172 7 07/31/2024
6.12.2-b171 2 03/21/2024
6.12.1 2 03/21/2024
6.12.1-b170 2 03/22/2024
6.12.0 2 03/21/2024
6.12.0-b169 0 01/29/2024
6.12.0-b168 6 03/08/2024
6.11.0 4 03/21/2024
6.11.0-b165 3 03/08/2024
6.10.0 2 06/26/2024
6.10.0-b160 4 05/31/2024
6.9.0 2 03/21/2024
6.9.0-b158 3 06/01/2024
6.8.3 1 03/07/2024
6.8.3-b156 2 03/21/2024
6.8.3-b155 2 03/21/2024
6.8.2 4 03/21/2024
6.8.2-b154 2 03/08/2024
6.8.2-b153 1 03/22/2024
6.8.0 5 03/20/2024
6.8.0-b151 1 03/22/2024
6.8.0-b131 2 03/08/2024
6.8.0-b130 5 03/09/2024
6.8.0-b129 1 03/21/2024
6.8.0-b128 2 03/08/2024
6.7.0 3 03/22/2024
6.7.0-b150 2 06/23/2024
6.7.0-b149 2 03/07/2024
6.7.0-b146 3 03/07/2024
6.7.0-b145 2 03/21/2024
6.7.0-b144 3 03/08/2024
6.7.0-b127 3 03/07/2024
6.7.0-b126 5 03/08/2024
6.7.0-b125 0 10/16/2023
6.7.0-b122 2 03/08/2024
6.6.1 6 03/21/2024
6.6.1-b143 3 03/08/2024
6.6.1-b142 2 06/01/2024
6.6.1-b141 2 03/21/2024
6.6.1-b139 2 07/12/2024
6.6.1-b138 7 10/03/2024
6.6.1-b137 1 10/15/2024
6.6.1-b136 2 03/08/2024
6.6.1-b135 1 03/22/2024
6.6.1-b134 2 03/08/2024
6.6.1-b133 2 03/21/2024
6.6.1-b132 0 11/13/2023
6.6.0 3 03/08/2024
6.6.0-b121 2 03/21/2024
6.6.0-b120 2 03/08/2024
6.6.0-b119 3 03/08/2024
6.6.0-b118 2 03/22/2024
6.4.0 1 11/02/2024
6.4.0-b116 0 09/14/2023
6.3.3 0 08/04/2023
6.3.3-b112 2 03/21/2024
6.3.2 3 03/21/2024
6.3.2-b111 2 03/21/2024
6.3.1 1 11/01/2024
6.3.1-b109 2 06/01/2024
6.3.0 2 11/01/2024
6.3.0-b108 2 10/06/2024
6.2.0 1 03/08/2024
6.2.0-b107 3 03/21/2024
6.1.2 3 03/21/2024
6.1.2-b106 2 03/21/2024
6.1.2-b105 3 10/31/2024
6.1.2-b104 2 03/21/2024
6.1.1 0 06/27/2023
6.1.1-b103 2 03/21/2024
6.1.1-b101 2 05/23/2024
6.1.1-b100 6 03/12/2024
6.1.0 5 03/21/2024
6.1.0-b99 1 06/17/2024
6.1.0-b98 0 06/24/2023
6.0.1 2 08/14/2024
6.0.1-b97 2 03/21/2024
6.0.1-b91 2 08/26/2024
6.0.1-b86 1 03/23/2024
5.19.1 1 03/09/2024
5.19.1-b83 2 03/21/2024
5.19.0 2 08/07/2024
5.19.0-b76 3 03/21/2024
5.19.0-b74 3 06/13/2024
5.18.12 2 06/25/2024
5.18.12-b73 2 05/31/2024
5.18.11 1 03/22/2024
5.18.11-b72 1 03/22/2024
5.18.11-b71 0 12/08/2022
5.18.11-b70 2 03/21/2024
5.18.10 1 10/31/2024
5.18.10-b69 3 07/27/2024
5.18.9 2 03/21/2024
5.18.9-b68 1 10/31/2024
5.18.8 0 11/10/2022
5.18.8-b67 2 03/22/2024
5.18.7 2 05/31/2024
5.18.7-b66 1 03/21/2024
5.18.6 1 03/08/2024
5.18.6-b65 1 03/28/2024
5.18.5 2 03/08/2024
5.18.5-b64 4 03/20/2024
5.18.5-b62 1 06/03/2024
5.18.5-b61 3 06/16/2024
5.18.5-b60 2 06/26/2024
5.18.4 1 03/22/2024
5.18.4-b59 0 09/28/2022
5.18.3 1 03/22/2024
5.18.3-b57 6 03/22/2024
5.18.3-b55 2 03/21/2024
5.18.2 0 08/30/2022
5.18.2-b54 2 03/21/2024
5.18.1 2 03/21/2024
5.18.1-b53 4 03/21/2024
5.18.0 0 08/12/2022
5.18.0-b52 1 03/22/2024
5.18.0-b47 1 06/30/2024
5.17.0 1 03/22/2024
5.17.0-b46 2 03/21/2024
5.16.0 2 03/23/2024
5.16.0-b39 3 03/21/2024
5.16.0-b32 1 03/22/2024
5.15.0 3 03/21/2024
5.15.0-b55 0 06/23/2022
5.15.0-b30 3 10/31/2024
5.15.0-b3 0 06/23/2022
5.15.0-b26 2 07/27/2024
5.15.0-b25 2 03/21/2024
5.15.0-b2 2 07/27/2024
5.15.0-b17 2 03/08/2024
5.15.0-b12 2 03/08/2024
5.15.0-b1 2 03/21/2024
5.15.0-b00504 0 05/31/2022
5.15.0-b00503 2 10/31/2024
5.15.0-b00496 2 03/21/2024
5.14.4 0 01/12/2022
5.14.4-b00495 0 02/14/2022
5.14.4-b00494 0 01/12/2022
5.14.3 2 03/21/2024
5.14.3-b00493 0 01/11/2022
5.14.2 1 10/15/2024
5.14.2-b00492 1 09/23/2024
5.14.2-b00491 0 01/04/2022
5.14.2-b00490 3 03/08/2024
5.14.1 0 11/18/2021
5.14.1-b00489 1 03/08/2024
5.14.1-b00488 2 03/21/2024
5.14.1-b00487 3 06/07/2024
5.14.0 1 10/13/2024
5.14.0-b00486 4 05/31/2024
5.14.0-b00485 0 11/18/2021
5.14.0-b00481 2 06/06/2024
5.13.1 5 03/22/2024
5.13.1-b00477 2 03/21/2024
5.13.1-b00474 2 10/03/2024
5.13.1-b00473 5 12/03/2024
5.13.1-b00472 2 10/31/2024
5.13.1-b00470 0 10/14/2021
5.13.1-b00468 3 10/31/2024
5.13.0 2 03/21/2024
5.13.0-b00467 3 03/10/2024
5.13.0-b00465 2 10/31/2024
5.12.1 3 06/03/2024
5.12.1-b00463 2 03/21/2024
5.12.1-b00462 2 03/21/2024
5.12.0 0 07/10/2021
5.12.0-b00461 10 03/21/2024
5.12.0-b00460 3 05/20/2024
5.12.0-b00458 0 07/09/2021
5.11.1 3 03/21/2024
5.11.1-b00456 2 03/21/2024
5.11.1-b00455 2 05/29/2024
5.11.1-b00453 2 03/21/2024
5.11.1-b00452 0 06/30/2021
5.11.0 1 10/03/2024
5.11.0-b00451 3 06/03/2024
5.11.0-b00450 7 07/27/2024
5.10.0 2 03/09/2024
5.10.0-b00447 2 08/14/2024
5.10.0-b00446 0 05/26/2021
5.10.0-b00445 2 03/21/2024
5.9.0 3 03/21/2024
5.9.0-b00444 3 06/17/2024
5.9.0-b00442 2 03/21/2024
5.8.1 2 10/31/2024
5.8.1-b00441 2 03/21/2024
5.8.1-b00438 1 03/21/2024
5.8.0 0 11/25/2020
5.8.0-b00435 0 11/25/2020
5.7.0 0 09/15/2020
5.7.0-b00434 3 05/31/2024
5.7.0-b00433 3 06/17/2024
5.7.0-b00432 3 03/21/2024
5.7.0-b00431 2 08/26/2024
5.7.0-b00430 2 03/21/2024
5.7.0-b00428 2 03/22/2024
5.6.0 0 09/12/2020
5.6.0-b00427 4 04/09/2024
5.6.0-b00426 3 03/21/2024
5.5.0 3 10/31/2024
5.5.0-b00424 2 06/24/2024
5.5.0-b00423 2 08/13/2024
5.5.0-b00417 0 08/22/2020
5.4.0 0 07/23/2020
5.4.0-b00415 1 03/08/2024
5.4.0-b00414 2 03/23/2024
5.3.0 3 03/08/2024
5.3.0-b00413 1 03/22/2024
5.3.0-b00412 3 03/21/2024
5.3.0-b00410 5 03/21/2024
5.2.0 3 03/21/2024
5.2.0-b00409 2 08/27/2024
5.2.0-b00405 2 08/27/2024
5.1.1 2 03/22/2024
5.1.1-b00401 2 03/21/2024
5.1.0 3 10/31/2024
5.1.0-b00393 2 03/18/2024
5.1.0-b00391 2 07/30/2024
5.0.4 2 03/08/2024
5.0.4-b00388 2 03/21/2024
5.0.4-b00385 4 03/20/2024
5.0.3 2 08/14/2024
5.0.2 4 10/31/2024
5.0.1 2 03/21/2024
5.0.1-b00378 3 03/21/2024
5.0.0 3 06/13/2024
5.0.0-b00376 1 03/08/2024
5.0.0-b00375 3 05/30/2024
5.0.0-b00372 2 03/21/2024
5.0.0-b00369 0 03/01/2020
5.0.0-b00366 4 03/21/2024
5.0.0-b00365 2 06/23/2024
5.0.0-b00363 1 03/22/2024
5.0.0-b00360 4 03/23/2024
5.0.0-b00351 2 03/18/2024
4.25.3 0 03/01/2020
4.25.2 5 03/21/2024
4.25.1 2 03/22/2024
4.25.1-b00339 2 05/31/2024
4.25.0 3 03/21/2024
4.25.0-b00337 3 06/01/2024
4.24.0 2 03/22/2024
4.24.0-b00335 3 06/01/2024
4.24.0-b00332 1 03/07/2024
4.24.0-b00330 0 01/16/2020
4.23.0 3 03/20/2024
4.23.0-b00328 2 10/31/2024
4.23.0-b00327 2 03/21/2024
4.23.0-b00326 2 05/31/2024
4.22.1 2 10/31/2024
4.22.1-b00323 2 03/20/2024
4.22.0-b00320 11 03/22/2024
4.21.8 2 03/20/2024
4.21.7 2 06/23/2024
4.21.6 4 08/10/2024
4.21.6-b00312 3 03/07/2024
4.21.6-b00311 1 03/22/2024
4.21.6-b00310 3 10/31/2024
4.21.6-b00308 2 09/07/2024
4.21.6-b00307 0 09/28/2019
4.21.6-b00306 1 10/15/2024
4.21.6-b00298 2 10/31/2024
4.21.5 2 03/08/2024
4.21.4 2 03/21/2024
4.21.3 1 03/28/2024
4.21.1 2 03/11/2024
4.21.0 4 03/21/2024
4.20.0 1 10/15/2024
4.19.2 2 10/31/2024
4.19.1 2 08/08/2024
4.19.0 0 02/26/2019
4.18.2 0 02/26/2019
4.18.1 2 03/25/2024
4.18.0 8 03/21/2024
4.17.3 2 03/21/2024
4.17.2 3 03/21/2024
4.17.1 0 11/29/2018
4.17.0 1 08/27/2024
4.16.4 3 03/20/2024
4.16.3 5 03/21/2024
4.16.2 0 08/08/2018
4.16.1 1 03/08/2024
4.16.0 1 06/26/2024
4.15.2 0 06/22/2018
4.15.1 2 08/14/2024
4.15.0 2 03/08/2024
4.14.2 4 03/15/2024
4.14.1 2 03/20/2024
4.14.0 2 08/27/2024
4.13.0 6 03/21/2024
4.12.1 2 03/21/2024
4.12.0 0 04/06/2018
4.11.0 2 03/21/2024
4.10.2 2 03/22/2024
4.10.1 1 03/22/2024
4.10.0 2 12/03/2024
4.9.2 0 01/23/2018
4.9.1 5 03/21/2024
4.9.0 2 03/21/2024
4.8.4 0 01/16/2018
4.8.3 1 03/22/2024
4.8.2 0 01/05/2018
4.8.1 2 03/10/2024
4.8.0 9 03/20/2024
4.7.2 2 03/21/2024
4.7.1 2 03/21/2024
4.7.0 3 06/19/2024
4.6.1 3 08/27/2024
4.6.0 1 03/21/2024
4.5.0 1 03/22/2024
4.4.0 0 09/21/2017
4.3.0 3 06/01/2024
4.2.0 0 08/28/2017
4.1.1 0 08/22/2017
4.1.0 14 03/21/2024
4.0.2 2 07/03/2024
4.0.1 2 03/07/2024
4.0.0 1 03/22/2024
4.0.0-alpha-2 3 07/13/2024
4.0.0-alpha-1 0 07/14/2017
3.9.0 3 08/11/2024
3.8.0 3 03/21/2024
3.7.0 0 05/07/2017
3.6.2 4 10/15/2024
3.6.1 2 08/27/2024
3.6.0 4 03/21/2024
3.5.5 2 03/21/2024
3.5.4 0 02/28/2017
3.5.3 1 03/08/2024
3.5.2 3 10/31/2024
3.5.1 3 03/21/2024
3.5.0 2 10/31/2024
3.4.4 2 03/21/2024
3.4.3 2 03/20/2024
3.4.2 1 05/30/2024
3.4.1 2 03/07/2024
3.4.0 3 09/09/2024
3.3.0 2 03/21/2024
3.2.0 2 03/07/2024
3.1.1 1 03/22/2024
3.1.0 6 03/21/2024
3.0.0 2 03/08/2024
2.4.0 2 03/22/2024
2.3.0 3 03/21/2024
2.2.0 3 06/01/2024
2.1.4 3 05/30/2024
2.1.3 1 08/14/2024
2.1.2 2 10/18/2024
2.1.1 5 03/21/2024
2.1.0 2 08/14/2024
2.0.3 1 03/22/2024
2.0.2 1 09/22/2024
2.0.1 3 06/01/2024
2.0.0 4 03/08/2024
1.17.1 1 03/08/2024
1.17.0 2 08/02/2024
1.16.0 0 02/26/2016
1.15.1 2 10/03/2024
1.15.0 2 03/11/2024
1.14.0 3 03/08/2024
1.13.0 4 03/08/2024
1.12.0 0 12/25/2015
1.11.4 2 09/03/2024
1.11.3 4 06/01/2024
1.11.2 2 09/10/2024
1.11.1 2 09/03/2024
1.11.0 7 10/15/2024
1.10.0 0 11/11/2015
1.9.0 3 06/07/2024
1.8.0 4 03/20/2024
1.7.3 1 03/08/2024
1.7.2 3 05/31/2024
1.7.1 3 03/08/2024
1.7.0 3 03/21/2024
1.6.0 1 03/22/2024
1.5.0 1 06/18/2024
1.4.0 0 09/12/2015
1.3.6 1 03/08/2024
1.3.5 3 08/14/2024
1.3.4 2 03/21/2024
1.3.3 5 03/21/2024
1.3.2 3 03/21/2024
1.3.1 1 03/22/2024
1.3.0 1 03/17/2024
1.2.0 4 03/11/2024
1.1.0 0 08/12/2015
1.0.0 2 03/21/2024