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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.4.0] - 2025-10-21

- Add `setSession` in platform client

## [3.3.7] - 2025-10-20

- API migration support UUIDs (FE-58)
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.3.7"
version: "3.4.0"
flutter_lints:
dependency: "direct dev"
description:
Expand Down
5 changes: 5 additions & 0 deletions lib/src/platform_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1333,6 +1333,11 @@ class PlatformClient {
return (state, null);
}

/// Sets the current session
void setSession(Session? session) {
_session = session;
}

Future<Map<String, dynamic>> _httpSend(
String method,
String unencodedPath, {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_aira
description: The Aira Flutter SDK.
version: 3.3.7
version: 3.4.0
homepage: https://github.com/aira/flutter_aira

environment:
Expand Down