Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.2.2
* Fixed a NullPointerException on Android when `requestId` was omitted (null) on `createTransactionWithBill`/`WithCashtray`/`WithCheck`/`WithCpm` and `createTransactionWithJwt` -- a null `requestId` is now passed through to the native SDK instead of being parsed as a UUID
* Added validation for `requestId`: it must be a lowercase RFC 4122 UUID in the 8-4-4-4-12 hexadecimal form, and a malformed value now throws a `ProcessingError` on both platforms. Previously iOS silently dropped a malformed `request_id`, creating a non-idempotent transaction that could double-charge on retry
* Bumped the iOS `Pokepay` dependency to 2.2.1

## 2.2.1
* Fixed a FormatException when parsing dates on iOS devices set to 12-hour time (the date formatter now uses the `en_US_POSIX` locale)

Expand Down
4 changes: 2 additions & 2 deletions ios/pokepay_sdk.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'pokepay_sdk'
s.version = '2.2.1'
s.version = '2.2.2'
s.summary = 'Pokepay flutter SDK'
s.description = <<-DESC
Pokepay flutter SDK
Expand All @@ -15,7 +15,7 @@ Pokepay flutter SDK
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.dependency 'Flutter'
s.dependency 'Pokepay', '2.2.0'
s.dependency 'Pokepay', '2.2.1'
s.platform = :ios, '12.0'

# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: pokepay_sdk
description: SDK for pokepay
version: 2.2.1
version: 2.2.2
homepage: https://pay.pocket-change.jp/

environment:
Expand Down
Loading