diff --git a/CHANGELOG.md b/CHANGELOG.md index 7181bea..be49786 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [3.3.0](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/compare/v3.2.0...v3.3.0) (2024-12-03) + + +### Features + +* add `sealedResult` support ([5dec0bf](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/5dec0bf9893976bbe3c62ad41863dd7cec84c3fc)) +* add `timeoutMs` argument for `getVisitorId` and `getVisitorData` methods ([822504a](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/822504aadc140f180bcb60188f841af4dff1e06c)) +* use Fingerprint Pro Android v2.7.0 ([d2f24f2](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/d2f24f20a7758953e88f416d24cf880be66dfa7b)) +* use Fingerprint Pro iOS v2.7.0 ([7144b0a](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/7144b0ada6cd466d63670c1403da192ed38b3246)) +* use Fingerprint Pro JSAgent loader v3.11.3 ([b789fb0](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/b789fb01c36978f2d51cab507b652f7cabb5b3a7)) + + +### Bug Fixes + +* fix JSAgent issue with empty `ipLocation` ([ae53e8b](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/ae53e8b0f58995383f2cb852e93e0cf72bf32cdf)) + ## [3.2.0](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/compare/v3.1.0...v3.2.0) (2024-10-08) diff --git a/README.md b/README.md index ed29e52..96e2757 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ dependencies: flutter: sdk: flutter ... - fpjs_pro_plugin: ^3.2.0 + fpjs_pro_plugin: ^3.3.0 ``` Run `pub get` to download and install the package. diff --git a/android/build.gradle b/android/build.gradle index 5eeeadd..8afcd45 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.fingerprintjs.flutter.fpjs_pro.fpjs_pro_plugin' -version '3.2.0' +version '3.3.0' buildscript { ext.kotlin_version = '1.8.10' diff --git a/example/pubspec.lock b/example/pubspec.lock index 03c909b..5f80423 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -94,7 +94,7 @@ packages: path: ".." relative: true source: path - version: "3.2.0" + version: "3.3.0" js: dependency: transitive description: diff --git a/ios/fpjs_pro_plugin.podspec b/ios/fpjs_pro_plugin.podspec index 089022d..d7dcc51 100644 --- a/ios/fpjs_pro_plugin.podspec +++ b/ios/fpjs_pro_plugin.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'fpjs_pro_plugin' - s.version = '3.2.0' + s.version = '3.3.0' s.summary = 'Flutter plugin for FingerprintJS Pro.' s.description = <<-DESC Flutter plugin for FingerprintJS Pro. diff --git a/lib/fpjs_pro_plugin.dart b/lib/fpjs_pro_plugin.dart index 86578ac..6364820 100644 --- a/lib/fpjs_pro_plugin.dart +++ b/lib/fpjs_pro_plugin.dart @@ -8,7 +8,7 @@ import 'package:fpjs_pro_plugin/region.dart'; import 'package:fpjs_pro_plugin/result.dart'; // Update it on each release -const pluginVersion = '3.2.0'; +const pluginVersion = '3.3.0'; /// A plugin that accesses native FingerprintJS Pro libraries to get a device identifier class FpjsProPlugin { diff --git a/pubspec.yaml b/pubspec.yaml index 6f6bfda..28c6088 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: fpjs_pro_plugin description: Flutter plugin that can be used in an application to call the native FingerprintJS Pro libraries and identify devices. -version: 3.2.0 +version: 3.3.0 homepage: https://fingerprint.com repository: https://github.com/fingerprintjs/fingerprintjs-pro-flutter