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
notes: " * [New](https://github.com/segmentio/analytics-android/pull/536): Look up Advertising ID for Amazon Fire devices.\r\n * [Fix](https://github.com/segmentio/analytics-android/pull/534): Attribution tracking using mobile service should be false by default.\r\n"
notes: " * [Fix](https://github.com/segmentio/analytics-android/pull/487/commits/8649050b4b7b74be17fc7b7e4ec0add7362325fd): Using `Properties#putProducts` was stored as an array instead of a list, and not serialized correctly. This caused it to be unusable by Segment and server side integrations. If you're stuck on a previous version for some reason, you can manually store it as a list:\r\n\r\n ```java\r\n List<Product> products = new ArrayList<>();\r\n products.add(new Product(\"foo\", \"bar\", 10));\r\n// add other products to this list.\r\n\r\n Properties properties = new Properties();\r\n properties.put(\"products\", products);\r\n ```"
notes: " * [Fix](https://github.com/segmentio/analytics-android/pull/495): Update Cartographer. This fixes an issue where sending custom values sent as arrays would not be serialized correctly.\r\n * [Fix](https://github.com/segmentio/analytics-android/pull/494): Make DateFormat access thread safe. This fixes an issue where generated timestamps could be sometimes be malformed and not conform to the ISO 8601 standard.\r\n"
notes: " * [Fix](https://github.com/segmentio/analytics-android/pull/487/commits/8649050b4b7b74be17fc7b7e4ec0add7362325fd): Using `Properties#putProducts` was stored as an array instead of a list, and not serialized correctly. This caused it to be unusable by Segment and server side integrations. If you're stuck on a previous version for some reason, you can manually store it as a list:\r\n\r\n ```java\r\n List<Product> products = new ArrayList<>();\r\nproducts.add(new Product(\"foo\", \"bar\", 10));\r\n // add other products to this list.\r\n\r\n Properties properties = new Properties();\r\n properties.put(\"products\", products);\r\n ```"
notes: "## What's Changed\r\n* fix: refactor getDeviceID to use DRM, remove AndroidID by @oscb in https://github.com/segmentio/analytics-react-native/pull/567\r\n* Logic to handle Integrations listed under maybeBundledConfigIds by @niallzato in https://github.com/segmentio/analytics-react-native/pull/564\r\n\r\n**Full Changelog**: https://github.com/segmentio/analytics-react-native/compare/v2.1.12...v2.2.2"
notes: "## What's Changed\r\n* feat: add attribution callbacks to appsflyer by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/528\r\n* chore: prepare for release by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/530\r\n* feat: new onContextLoad events and awaitable context updates by @oscb in https://github.com/segmentio/analytics-react-native/pull/532\r\n* fix: match identify and reset client methods arguments, add token to context by @oscb in https://github.com/segmentio/analytics-react-native/pull/533\r\n* chore: release packages/core minor by @github-actions in https://github.com/segmentio/analytics-react-native/pull/534\r\n* fix: deepmerge device context on update by @oscb in https://github.com/segmentio/analytics-react-native/pull/543\r\n* chore: add links to each plugin docs, update FBSDK instructions by @oscb in https://github.com/segmentio/analytics-react-native/pull/546\r\n* fix: appsflyer attribution by @Asgaroth in https://github.com/segmentio/analytics-react-native/pull/547\r\n* fix: fix crash on android caused by FBSDK by @oscb in https://github.com/segmentio/analytics-react-native/pull/548\r\n* feat: createClient \"storePersistor\" option by @509dave16 in https://github.com/segmentio/analytics-react-native/pull/549\r\n* chore: release packages/plugins/plugin-appsflyer patch by @github-actions in https://github.com/segmentio/analytics-react-native/pull/550\r\n\r\n## New Contributors\r\n* @Asgaroth made their first contribution in https://github.com/segmentio/analytics-react-native/pull/547\r\n* @509dave16 made their first contribution in https://github.com/segmentio/analytics-react-native/pull/549\r\n\r\n**Full Changelog**: https://github.com/segmentio/analytics-react-native/compare/v2.1.12...v2.2.1"
notes: "\r\n## What's Changed\r\n* feat: add mixpanel plugin by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/498\r\n* fix: fix callback conditional by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/518\r\n* Endpoint fix by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/519\r\n* fix: fix bundle unbundled logic by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/521\r\n\r\n## New Contributors\r\n* @brentvatne made their first contribution in https://github.com/segmentio/analytics-react-native/pull/517\r\n\r\n**Full Changelog**: https://github.com/segmentio/analytics-react-native/compare/v2.1.10...v2.1.12"
notes: "## What's Changed\r\n* docs: add Taplytics under Example Plugins by @chungchantal in https://github.com/segmentio/analytics-react-native/pull/500\r\n* chore(deps): bump moment from 2.29.1 to 2.29.2 in /example by @dependabot in https://github.com/segmentio/analytics-react-native/pull/501\r\n\r\n## New Contributors\r\n* @chungchantal made their first contribution in https://github.com/segmentio/analytics-react-native/pull/500\r\n\r\n**Full Changelog**: https://github.com/segmentio/analytics-react-native/compare/v2.1.10...v2.1.11"
notes: "## What's Changed\r\n* chore: release packages/plugins/plugin-adjust patch by @github-actions in https://github.com/segmentio/analytics-react-native/pull/481\r\n* chore(deps): bump minimist from 1.2.5 to 1.2.6 in /example by @dependabot in https://github.com/segmentio/analytics-react-native/pull/485\r\n* chore(deps): bump minimist from 1.2.5 to 1.2.6 by @dependabot in https://github.com/segmentio/analytics-react-native/pull/486\r\n* feat: add reset to plugins by @alanjcharles in https://github.com/segmentio/analytics-react-native/pull/490\r\n* fix: merge context to preserve plugin injected properties by @oscb in https://github.com/segmentio/analytics-react-native/pull/487\r\n* chore: add dependencies to install instructions on plugins by @oscb in https://github.com/segmentio/analytics-react-native/pull/488\r\n* chore(deps): bump ansi-regex from 4.1.0 to 4.1.1 by @dependabot in https://github.com/segmentio/analytics-react-native/pull/494\r\n* chore(deps): bump plist from 3.0.4 to 3.0.5 by @dependabot in https://github.com/segmentio/analytics-react-native/pull/493\r\n* chore(deps): bump ansi-regex from 4.1.0 to 4.1.1 in /example by @dependabot in https://github.com/segmentio/analytics-react-native/pull/492\r\n* chore(deps): bump plist from 3.0.4 to 3.0.5 in /example by @dependabot in https://github.com/segmentio/analytics-react-native/pull/491\r\n* chore(deps): bump cocoapods-downloader from 1.5.1 to 1.6.3 in /example/ios by @dependabot in https://github.com/segmentio/analytics-react-native/pull/495\r\n* feat: plugins can now disable integrations by marking them as false in the event.integrations by @oscb in https://github.com/segmentio/analytics-react-native/pull/496\r\n\r\n\r\n**Full Changelog**: https://github.com/segmentio/analytics-react-native/compare/v2.1.9...v2.1.10"
notes: "## What's Changed\r\n- Fixes an issue with the `flushInterval` not working properly and causing frequent 1 sec flushes if there where events waiting for retry.\r\n- Deprecates `retryInterval` and `maxRetryEvents` options in the client configuration. Use `flushInterval` and `maxBatchSize` instead.\r\n- Adds support for deeplink tracking with `referral_application` data. Please review the [instructions to set it up on iOS](https://github.com/segmentio/analytics-react-native#ios-deep-link-tracking-setup), no changes required on Android."
notes: "- New public interface to streamline access/observability to settings, context, events, and user info on global scope \r\n\r\n- An entirely new state management framework [@segment/sovran-react-native](https://github.com/segmentio/sovran-react-native)\r\n - Provides a State management for TS/JS projects with little overhead and boilerplate.\r\n - Provides observability events over watched objects in the scope of a React Native app\r\n - Provides a bridge for sending state actions from native code (Kotlin, Java, Swift or Objective C) to RN (TS/JS)\r\n\r\n- General bug fixes, updates, and improvements"
0 commit comments