Skip to content

Commit b01303e

Browse files
Moved Release Notes from root README.md to packages/core/README.md (#164)
* Release Notes for version 1.1.7 * Moved Release Notes from root README.md to packages/core/README.md * Removed extra quote from the package name in readme
1 parent 8eeb1a7 commit b01303e

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is a monorepo containing all Segment packages
99

1010
## Core (`segment_analytics`)
1111

12-
The main [`segment_analytics](http://pub.dev/packages/segment_analytics) package.
12+
The main [segment_analytics](http://pub.dev/packages/segment_analytics) package.
1313

1414
[Pub.dev](http://pub.dev/packages/segment_analytics)
1515

packages/core/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Some destination plugins might not support all platform functionality. Refer to
4747
- [Handling errors](#handling-errors)
4848
- [Reporting errors from plugins](#reporting-errors-from-plugins)
4949
- [Example App](#example-app)
50+
- [Release Notes](#release-notes)
5051
- [Contributing](#contributing)
5152
- [Code of Conduct](#code-of-conduct)
5253
- [License](#license)
@@ -575,6 +576,24 @@ try {
575576

576577
See the [example app](../../example/README.md) to check a full test app of how to integrate Analytics-Flutter into your own Flutter app.
577578

579+
## Release Notes
580+
581+
### Version 1.1.7 (21 May 2025)
582+
583+
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.
584+
585+
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:
586+
`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`.
587+
588+
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.
589+
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">`
590+
the app will return the value in the `content` attribute.
591+
**Note:** This value should be manually synchronized with the version in `pubspec.yaml`.
592+
593+
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.
594+
595+
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.
596+
578597
## Contributing
579598

580599
See the [contributing guide](./CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

0 commit comments

Comments
 (0)