You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-20Lines changed: 2 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,8 @@ The main [segment_analytics](http://pub.dev/packages/segment_analytics) package.
15
15
16
16
[Docs](packages/core#readme)
17
17
18
+
[Changelog](packages/core/CHANGELOG.md)
19
+
18
20
## Plugins
19
21
20
22
### Adjust (`segment_analytics_plugin_adjust`)
@@ -62,26 +64,6 @@ Some destination plugins might not support all platform functionality. Refer to
62
64
63
65
See the [example app](./example/README.md) to check a full test app of how to integrate Analytics-Flutter into your own Flutter app.
64
66
65
-
## Release Notes
66
-
67
-
### Version 1.1.7
68
-
69
-
1.**Release Date** - 21<sup>st</sup> May 2025.
70
-
71
-
2.**Fixes Github Issue [#144](https://github.com/segmentio/analytics_flutter/issues/144)** - Up to version 1.1.6, the `setFlushPolicies` method inadvertently overwrote the `Configuration.collectDeviceId`property. This issue has been resolved in version 1.1.7.
72
-
73
-
3.**Fixes Github Issue [#147](https://github.com/segmentio/analytics_flutter/issues/147)** - The `compileSdkVersion` in the `build.gradle` file has been updated from 31 to 35. Previously, this caused the following error:
74
-
`Android build error "Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type 'android.content.pm.ApplicationInfo?"` . This update resolves the issue with `compileSdkVersion 35`.
75
-
76
-
4.**Fixes Github Issue [#138](https://github.com/segmentio/analytics_flutter/issues/138)** - Prior to version 1.1.7, the version field returned the browser's version string instead of the app version from `pubspec.yaml`. Since `pubspec.yaml` is a build-time configuration file and not accessible at runtime (especially in browser environments), this was expected behavior.
77
-
As of version 1.1.7, if the following tag is added to `<project-root>/web/index.html`: `<meta name="app-version" content="1.2.3">`
78
-
the app will return the value in the `content` attribute.
79
-
**Note:** This value should be manually synchronized with the version in `pubspec.yaml`.
80
-
81
-
5.**Fixes Github Issue [#152](https://github.com/segmentio/analytics_flutter/issues/152) and [#98](https://github.com/segmentio/analytics_flutter/issues/98)** - Until version 1.1.6, the `integrations: {}` field was missing in the data payload sent to the Segment server. This has been addressed in version 1.1.7.
82
-
83
-
6.**Fixes Github Issue [#157](https://github.com/segmentio/analytics_flutter/issues/157)** - Resolves the `Concurrent modification during iteration: Instance(length: 6) of '_GrowableList'` error that occurred when multiple plugins were added simultaneously.
84
-
85
67
## Contributing
86
68
87
69
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
Copy file name to clipboardExpand all lines: packages/core/CHANGELOG.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,23 @@
1
+
## 1.1.9
2
+
3
+
- Fix for storageJson configuration properly enabling/disabling writing of files on all platforms #171
4
+
1
5
## 1.1.8
2
6
3
-
- Reverting fix for #152
7
+
- Reverting fix for #152 - The `integrations` field is vestigial and remains available for SDK users to populate to suppress extra events from server side destinations.
4
8
5
9
## 1.1.7
6
10
7
-
- Fix for setFlushPolicies method is overwriting Configuration properties #144
8
-
- Fix for Android build error on nullable receiver in sdk 35 #147
9
-
- Fix for Context app version wrong on Flutter web #138
10
-
- Fix for Integrations field is empty in segment analytics #152
11
+
- Fix for setFlushPolicies method is overwriting Configuration properties #144 - Up to version 1.1.6, the `setFlushPolicies` method inadvertently overwrote the `Configuration.collectDeviceId`property.
12
+
- Fix for Android build error on nullable receiver in sdk 35 #147 - The `compileSdkVersion` in the `build.gradle` file has been updated from 31 to 35. Previously, this caused the following error:
13
+
`Android build error "Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type 'android.content.pm.ApplicationInfo?"`.
14
+
- Fix for Context app version wrong on Flutter web #138 - Prior to version 1.1.7, the version field returned the browser's version string instead of the app version from `pubspec.yaml`. Since `pubspec.yaml` is a build-time configuration file and not accessible at runtime (especially in browser environments), this was expected behavior.
15
+
As of version 1.1.7, if the following tag is added to `<project-root>/web/index.html`: `<meta name="app-version" content="1.2.3">`
16
+
the app will return the value in the `content` attribute.
17
+
**Note:** This value should be manually synchronized with the version in `pubspec.yaml`.
18
+
- Fix for Integrations field is empty in segment analytics #152 - Until version 1.1.6, the `integrations: {}` field was missing in the data payload sent to the Segment server.
11
19
- Fix for AppsFlyer Destination not initializing properly #98
12
-
- fix for Crash in Timeline.applyPlugins #157
20
+
- fix for Crash in Timeline.applyPlugins #157 - Resolves the `Concurrent modification during iteration: Instance(length: 6) of '_GrowableList'` error that occurred when multiple plugins were added simultaneously.
Copy file name to clipboardExpand all lines: packages/core/README.md
+1-19Lines changed: 1 addition & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -578,25 +578,7 @@ See the [example app](../../example/README.md) to check a full test app of how t
578
578
579
579
## Release Notes
580
580
581
-
### Version 1.1.8 (10 Jul 2025)
582
-
583
-
Reverting fix for #152
584
-
585
-
### Version 1.1.7 (21 May 2025)
586
-
587
-
1.**Fixes Github Issue [#144](https://github.com/segmentio/analytics_flutter/issues/144)** - Up to version 1.1.6, the `setFlushPolicies` method inadvertently overwrote the `Configuration.collectDeviceId`property. This issue has been resolved in version 1.1.7.
588
-
589
-
2.**Fixes Github Issue [#147](https://github.com/segmentio/analytics_flutter/issues/147)** - The `compileSdkVersion` in the `build.gradle` file has been updated from 31 to 35. Previously, this caused the following error:
590
-
`Android build error "Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type 'android.content.pm.ApplicationInfo?"` . This update resolves the issue with `compileSdkVersion 35`.
591
-
592
-
3.**Fixes Github Issue [#138](https://github.com/segmentio/analytics_flutter/issues/138)** - Prior to version 1.1.7, the version field returned the browser's version string instead of the app version from `pubspec.yaml`. Since `pubspec.yaml` is a build-time configuration file and not accessible at runtime (especially in browser environments), this was expected behavior.
593
-
As of version 1.1.7, if the following tag is added to `<project-root>/web/index.html`: `<meta name="app-version" content="1.2.3">`
594
-
the app will return the value in the `content` attribute.
595
-
**Note:** This value should be manually synchronized with the version in `pubspec.yaml`.
596
-
597
-
4.**Fixes Github Issue [#152](https://github.com/segmentio/analytics_flutter/issues/152) and [#98](https://github.com/segmentio/analytics_flutter/issues/98)** - Until version 1.1.6, the `integrations: {}` field was missing in the data payload sent to the Segment server. This has been addressed in version 1.1.7.
598
-
599
-
5.**Fixes Github Issue [#157](https://github.com/segmentio/analytics_flutter/issues/157)** - Resolves the `Concurrent modification during iteration: Instance(length: 6) of '_GrowableList'` error that occurred when multiple plugins were added simultaneously.
581
+
See our [Changelog](./CHANGELOG.md) for release notes.
0 commit comments