Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"packages/common":"1.8.1","packages/common_client":"1.12.0","packages/event_source_client":"2.1.0","packages/flutter_client_sdk":"4.16.0"}
{"packages/common":"1.8.1","packages/common_client":"1.12.0","packages/event_source_client":"2.1.0","packages/flutter_client_sdk":"4.17.0"}
7 changes: 7 additions & 0 deletions packages/flutter_client_sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to the LaunchDarkly Flutter client-side SDK will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org).

## [4.17.0](https://github.com/launchdarkly/flutter-client-sdk/compare/4.16.0...4.17.0) (2026-06-04)


### Features

* Wire FDv2 connection-mode resolution in flutter SDK ([#280](https://github.com/launchdarkly/flutter-client-sdk/issues/280)) ([ef8ad39](https://github.com/launchdarkly/flutter-client-sdk/commit/ef8ad391173d5c657b4535e77b1af8ef698c75ae))

## [4.16.0](https://github.com/launchdarkly/flutter-client-sdk/compare/4.15.0...4.16.0) (2026-04-23)


Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_client_sdk/example/pubspec.yaml
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why this change is triggering by release-please. Need to investigate.

Copy link
Copy Markdown
Contributor

@tanderson-ld tanderson-ld Jun 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resolved by using generic updater for this file. Fix merged in #288

Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies:
# This defaults to a published package. Using `flutter pub get` will get the package from pub.dev
# If you run `melos bs` in the root of the repository, then it will be linked to the local version
# instead.
launchdarkly_flutter_client_sdk: 4.16.0 # x-release-please-version
launchdarkly_flutter_client_sdk: 4.17.0 # x-release-please-version

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_client_sdk/lib/src/ld_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'persistence/shared_preferences_persistence.dart';
import 'platform_env_reporter.dart';

const sdkName = 'FlutterClientSdk';
const sdkVersion = '4.16.0'; // x-release-please-version
const sdkVersion = '4.17.0'; // x-release-please-version

/// The main interface for the LaunchDarkly Flutter SDK.
///
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_client_sdk/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: launchdarkly_flutter_client_sdk
description: Official Flutter client-side SDK for LaunchDarkly. Get started using LaunchDarkly today!
version: 4.16.0
version: 4.17.0
homepage: https://github.com/launchdarkly/flutter-client-sdk
repository: https://github.com/launchdarkly/flutter-client-sdk/tree/main/packages/flutter_client_sdk

Expand Down
Loading