Skip to content

Commit

Permalink
Merge pull request #99 from Floating-Dartists/fix/#98_update-http-dep…
Browse files Browse the repository at this point in the history
…endency

Fix/#99 update http dependency
  • Loading branch information
TesteurManiak authored May 30, 2023
2 parents 3ec28b9 + e1a44f9 commit 0b27158
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [4.0.0-dev.2]

**Check the [Migration Guide](https://github.com/Floating-Dartists/matomo-tracker#v400) to learn about breaking changes in this version**

* Contributions from [Eric Prokop](https://github.com/EPNW-Eric)
* feat: Added content tracking [#86](https://github.com/Floating-Dartists/matomo-tracker/pull/86)
* feat: Added performance tracking [#87](https://github.com/Floating-Dartists/matomo-tracker/pull/87)
* feat: Ability to drop the dispatch queue [#89](https://github.com/Floating-Dartists/matomo-tracker/pull/89)
* feat: Serialize `MatomoAction` immediately [#94](https://github.com/Floating-Dartists/matomo-tracker/pull/94)
* feat: Attach the last `pvId` automatically [#96](https://github.com/Floating-Dartists/matomo-tracker/pull/96)
* Contributions from [TesteurManiak](https://github.com/TesteurManiak)
* Upgraded dependencies [#99](https://github.com/Floating-Dartists/matomo-tracker/pull/99)

## [4.0.0-dev.1]

**Check the [Migration Guide](https://github.com/Floating-Dartists/matomo-tracker#v400) to learn about breaking changes in this version**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ When using cookieless tracking, neither the user_id nor the first_visit will be
* Occurences of `widgetId` have been renamed to `pvId`.
* An object of type `EventInfo` has been added, it has the following properties: `category`, `action`, `name` and `value`, use it instead of passing the event name, action and value as separate parameters.
* For `TraceableClientMixin` and `TraceableWidget` to work you will have to add the `matomoObserver` to your `MaterialApp` or `WidgetsApp`:

```dart
MaterialApp(
// ...
Expand All @@ -215,6 +214,7 @@ MaterialApp(
],
);
```
* `MatomoEvent` has been renamed to `MatomoAction`

## v3.0.0

Expand Down
12 changes: 6 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: matomo_tracker
description: A fully cross-platform wrap of the Matomo tracking client for
Flutter, using the Matomo API.
version: 4.0.0-dev.1
version: 4.0.0-dev.2
homepage: https://github.com/Floating-Dartists/matomo-tracker
repository: https://github.com/Floating-Dartists/matomo-tracker
issue_tracker: https://github.com/Floating-Dartists/matomo-tracker/issues

environment:
sdk: ">=2.18.0 <4.0.0"
sdk: ">=3.0.0 <4.0.0"
flutter: ">=3.3.0"

dependencies:
clock: ^1.1.1
device_info_plus: ^9.0.0
device_info_plus: ^9.0.2
flutter:
sdk: flutter
http: ^0.13.6
package_info_plus: ^4.0.0
http: ^1.0.0
package_info_plus: ^4.0.2
shared_preferences: ^2.1.1
uuid: ^3.0.7

dev_dependencies:
fd_lints: ^1.1.0
fd_lints: ^1.1.1
flutter_test:
sdk: flutter
meta: ^1.9.1
Expand Down

0 comments on commit 0b27158

Please sign in to comment.