Skip to content

Commit

Permalink
Merge pull request #4 from alvarobcprado/feature/update-dependencies
Browse files Browse the repository at this point in the history
Feature/update dependencies
  • Loading branch information
alvarobcprado authored Dec 17, 2023
2 parents fd638f2 + 4e64f19 commit f5492f6
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 22 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.3
- Update dependencies

## 0.1.2
- Fix README.md

Expand Down
2 changes: 1 addition & 1 deletion lib/src/mp_analytics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class MPAnalytics {
}

final metadata = <String, Object?>{
for (final service in metadataServiceList) ...await service.getMetadata()
for (final service in metadataServiceList) ...await service.getMetadata(),
};

final eventData = <String, Object?>{
Expand Down
38 changes: 23 additions & 15 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ packages:
dependency: transitive
description:
name: dart_internal
sha256: dae3976f383beddcfcd07ad5291a422df2c8c0a8a03c52cda63ac7b4f26e0f4e
sha256: "689dccc3d5f62affd339534cca548dce12b3a6b32f0f10861569d3025efc0567"
url: "https://pub.dev"
source: hosted
version: "0.2.8"
version: "0.2.9"
file:
dependency: transitive
description:
Expand Down Expand Up @@ -149,10 +149,10 @@ packages:
dependency: "direct main"
description:
name: logger
sha256: "7ad7215c15420a102ec687bb320a7312afd449bac63bfb1c60d9787c27b9767f"
sha256: "6bbb9d6f7056729537a4309bda2e74e18e5d9f14302489cc1e93f33b3fe32cac"
url: "https://pub.dev"
source: hosted
version: "1.4.0"
version: "2.0.2+1"
logging:
dependency: transitive
description:
Expand All @@ -173,10 +173,10 @@ packages:
dependency: "direct main"
description:
name: meta
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
sha256: d584fa6707a52763a52446f02cc621b077888fb63b93bbcb1143a7be5a0c0c04
url: "https://pub.dev"
source: hosted
version: "1.9.1"
version: "1.11.0"
mime:
dependency: transitive
description:
Expand All @@ -189,10 +189,10 @@ packages:
dependency: "direct main"
description:
name: mocktail
sha256: "80a996cd9a69284b3dc521ce185ffe9150cde69767c2d3a0720147d93c0cef53"
sha256: f603ebd85a576e5914870b02e5839fc5d0243b867bf710651cf239a28ebb365e
url: "https://pub.dev"
source: hosted
version: "0.3.0"
version: "1.0.2"
node_preamble:
dependency: transitive
description:
Expand Down Expand Up @@ -221,10 +221,10 @@ packages:
dependency: "direct main"
description:
name: platform_info
sha256: "012e73712166cf0b56d3eb95c0d33491f56b428c169eca385f036448474147e4"
sha256: "61f3bd25642d6624b3d3111892b517cdb17c37a1837189fee346fcc6dd09b052"
url: "https://pub.dev"
source: hosted
version: "3.2.0"
version: "4.0.2"
pool:
dependency: transitive
description:
Expand Down Expand Up @@ -297,6 +297,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.9.1"
sprintf:
dependency: transitive
description:
name: sprintf
sha256: "1fc9ffe69d4df602376b52949af107d8f5703b77cda567c4d7d86a0693120f23"
url: "https://pub.dev"
source: hosted
version: "7.0.0"
stack_trace:
dependency: transitive
description:
Expand Down Expand Up @@ -365,18 +373,18 @@ packages:
dependency: "direct main"
description:
name: uuid
sha256: "648e103079f7c64a36dc7d39369cabb358d377078a051d6ae2ad3aa539519313"
sha256: bb55f38968b9427ce5dcdb8aaaa41049282195e0cfa4cf48593572fa3d1f36bc
url: "https://pub.dev"
source: hosted
version: "3.0.7"
version: "4.3.1"
very_good_analysis:
dependency: "direct dev"
description:
name: very_good_analysis
sha256: ebc48c51db35beeeec8c414e32f7bd78e612bd7f5992ccb0d46e19edaeb40b08
sha256: "9ae7f3a3bd5764fb021b335ca28a34f040cd0ab6eec00a1b213b445dae58a4b8"
url: "https://pub.dev"
source: hosted
version: "4.0.0+1"
version: "5.1.0"
vm_service:
dependency: transitive
description:
Expand Down Expand Up @@ -418,4 +426,4 @@ packages:
source: hosted
version: "3.1.2"
sdks:
dart: ">=3.0.0 <3.2.0"
dart: ">=3.0.0 <3.3.0"
12 changes: 6 additions & 6 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dart_mp_analytics
description: A dart only package for wrapper around the Firebase Measurement Protocol API.
version: 0.1.2
version: 0.1.3
repository: https://github.com/alvarobcprado/dart_mp_analytics
issue_tracker: https://github.com/alvarobcprado/dart_mp_analytics/issues

Expand All @@ -9,12 +9,12 @@ environment:

dependencies:
http: ">=0.13.4 <2.0.0"
logger: ">=1.4.0 <=2.0.0"
logger: ^2.0.2+1
meta: ^1.3.0
mocktail: ">=0.2.0 <0.4.0"
platform_info: ^3.2.0
uuid: ^3.0.7
mocktail: ^1.0.2
platform_info: ^4.0.2
uuid: ^4.3.1

dev_dependencies:
test: ^1.21.0
very_good_analysis: ^4.0.0+1
very_good_analysis: ^5.1.0

0 comments on commit f5492f6

Please sign in to comment.