Skip to content

Commit

Permalink
chore(release): 3.3.0 \n\n## [3.3.0](v3.2.0...v3.3.0) (2024-12-03)
Browse files Browse the repository at this point in the history
### Features

* add `sealedResult` support ([5dec0bf](5dec0bf))
* add `timeoutMs` argument for `getVisitorId` and `getVisitorData` methods ([822504a](822504a))
* use Fingerprint Pro Android v2.7.0 ([d2f24f2](d2f24f2))
* use Fingerprint Pro iOS v2.7.0 ([7144b0a](7144b0a))
* use Fingerprint Pro JSAgent loader v3.11.3 ([b789fb0](b789fb0))

### Bug Fixes

* fix JSAgent issue with empty `ipLocation` ([ae53e8b](ae53e8b))
  • Loading branch information
semantic-release-bot committed Dec 3, 2024
1 parent 95c6392 commit 25878d9
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.2.0"
version: "3.3.0"
js:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/fpjs_pro_plugin.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/fpjs_pro_plugin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
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: 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

Expand Down

0 comments on commit 25878d9

Please sign in to comment.