Files
arcane_framework/CHANGELOG.md
T
hans 6f6428b23c v2.0.0 (1): Refactor Arcane framework and enhance logging, theme, and auth services (#8)
* [UNTESTED] Fixes notifiers and adds some additional methods. Adds tests.

Changes:
// ArcaneEnvironment
breaking: context.read<ArcaneEnvironment>() -> ArcaneEnvironment.of(context)
breaking: context.read<ArcaneEnvironment>().state -> ArcaneEnvironment.of(context).environment;

// Feature flag service
added: reset()

// Logging service
added: registerInterface()
added: unregisterInterfaces()
added: unregisterAllInterfaces()

// ArcaneReactiveTheme
fixed: currentMode, dark, light now actually emit new values when changed
added: getters for lightTheme, darkTheme, and systemTheme
TODO: test systemTheme

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Logging service:

- added: reset()
- added: `skipAutodetection` option for module, method, and metadata
- added: unregisterInterface()
- Created FileAndLineNumber mixin

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fix module/method/fileAndLineNumber calculations in logging service

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fixes the reactive theme service to properly follow the system brightness

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fixes tests and updates reactive theme

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fixes broken tests

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fixes bug with following/unfollowing system theme

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Re-add getters on ArcaneTheme

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Update example

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Added logStream to logger. Updated example code.

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Setting a theme style now automatically switches to that theme

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Added examples for feature flags

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Moved platform brightness checking from ArcaneApp to ArcaneThemeSwitcher, where it is more appropriate

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Attempt to correctly address "stable" version in .puro.json

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Another GH action attempt

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Add puro config to git :)

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(framework): Overhauls framework core, services, and app integration for 2.0.0 (#5)

* Made ArcaneTheme private (_ArcaneTheme)

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Updated changelog

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fix updateShouldNotify on ArcaneServiceProvider

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Update service provider

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Put service locators in an extension

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Try using a mixin instead

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Remove 'of' and 'requiredOf' locators

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Re-add service locators. They should be called as:

ArcaneService.of<MyService>(context)

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Renamed getters on ArcaneService

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Renamed serviceInstances => registeredServices and added a removeService method

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Broke up arcane service into separate files

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Added requiredServiceOfType getter on ArcaneServiceProvider

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Updated services section of the readme

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Updated example to add a services example

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Removed unused variable

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Update example documentation

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Update example

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Breaking up example into smaller widgets

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Remove bloc dependency

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fixes the notifier for feature flags and updates the example

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fixed a bug in the example

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Update ServiceProvider to make service instances optional

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Remove unnecessary notifyListeners calls

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Organize theme service

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Fix authentication interface and service methods for logout and login.

* Fix DebugAuthInterface logout method

Added environment key to ArcaneEnvironment constructor
 Renamed switchEnvironment parameter in ArcaneEnvironment constructor

Bumped arcane_helper_utils dependency version

* Enhance theme management with StreamBuilder for dynamic updates

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Add configuration files and update authentication service error handling

- Introduced .vscode/settings.json and .vscode/launch.json for IDE configuration.
- Updated DebugAuthInterface and ArcaneAuthenticationService to return const Result.ok() for consistency.
- Added ArcaneTheme class for theme management.
- Updated pubspec.yaml to change result_monad dependency version.
- Modified authentication_service_test to return const Result.ok() in mock setups.

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Update dependency versions to use 'any' for arcane_helper_utils and arcane_analysis

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Remove unnecessary 'const' keyword from Result.ok calls in DebugAuthInterface methods

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Add 'const' keyword to Result.ok calls in DebugAuthInterface methods

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Enhance logging service with new lifecycle capabilities and interceptor support

- Updated `LoggingInterface` to remove singleton-style initialization.
- Introduced `LoggingInitializable` and `LoggingInitializationMixin` for optional lifecycle management.
- Added `LogEvent` and `LogInterceptor` classes for improved logging event handling and interception.
- Updated `ArcaneLogger` to support multiple logging interfaces and global interceptors.
- Modified `DebugPrint` and `DebugAuthInterface` to align with new logging structure.
- Enhanced tests to cover new logging features and interceptor functionality.

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Add stream-based updates for authentication, feature flags, logging, and theming

- Added `statusChanges` and `signedInChanges` streams to `ArcaneAuth` for real-time authentication updates.
- Introduced `enabledFeaturesChanges` stream in `ArcaneFeatureFlags` for observing feature updates.
- Improved `ArcaneLogger` to maintain `logStream` usability after listener cancellation.
- Updated `ArcaneTheme` to provide streams for theme mode and theme data changes.
- Enhanced documentation and examples to reflect new stream APIs and usage patterns.
- Added regression tests for stream listener cancellation and re-subscription across services.

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Refactor ArcaneEnvironment and AuthenticationService for improved environment management and status handling

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Add application environment management and tests for authentication status coherence

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat: Enhance service management with ArcaneApp provider composition

This commit significantly refactors Arcane's service architecture.
ArcaneApp now acts as a StatefulWidget, composing InheritedWidget-
based providers for core services (features, environment, theme, auth).
Service lookups (e.g., Arcane.features, context.service()) now
prioritize provider-registered instances, falling back to singletons.

Key changes include:
- Renamed ArcaneFeatureFlags to ArcaneFeatureFlagService and
  ArcaneReactiveTheme to ArcaneThemeService (with typedefs).
- Introduced ArcaneEnvironmentService and ArcaneEnvironmentProvider
  for centralized environment management.
- Added BuildContext extensions (e.g., context.featureFlags) for
  reactive, convenient service access.
- Removed .puro.json and its references, streamlining SDK setup.
- Updated CHANGELOG.md to reflect a 2.0.0 release, detailing all
  breaking changes and new features.

* chore(example): Add ignore rules for example builds

* feat(logging): Introduce log interceptors and origin control

Introduces the LogInterceptor class, enabling pre-processing, modification,
or suppression of log events before they reach registered interfaces.
The LogInterceptorContext provides contextual information such as the
originating LoggingInterface.

Adds a `skipAutodetection` parameter to Arcane.log, allowing control
over the automatic detection of log origin (module, method, file/line).

Also makes the LogEvent class extendable to support custom event types
and updates existing interceptor callback signatures for consistency.

* fix(theme): Update theme mode check to use currentModeOf method

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* fix(theme): Improve theme mode detection and toggling

`context.isDarkMode` now reflects the app's effective theme brightness, not
the raw platform brightness. This ensures `isDarkMode` accurately reports the
currently rendered theme.

`switchTheme()` now intelligently toggles from the *effective* theme when
in `ThemeMode.system` by considering the current app brightness.

`followSystemTheme()` is updated to always read the platform brightness
directly, decoupling its behavior from the app's overridden theme settings.

* feat(example): Improve theme and service integration demo

Updates the example application to better demonstrate service and theme
integration. The `FavoriteColorService` now actively sets the app's
color scheme and can initialize its state from the current theme.
Environment display is now reactive, and the UI responds dynamically
to service registration and removal. Initial themes are now explicitly
seeded.

* feat(example): Add interactive persistent metadata toggle

Previously, persistent metadata was added unconditionally.
This change allows users to dynamically enable or disable
the demo persistent metadata via a UI switch, better
showcasing the API functionality.

* feat(theme): Add assignment-style theme setters

Introduces convenience setters for dark and light themes, allowing
`Arcane.theme.dark = ...` and `Arcane.theme.light = ...` as an
alternative to `setDarkTheme` and `setLightTheme`. This improves
developer ergonomics and conciseness.

* docs(README): Add Application Environments section to features list

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* Adds `ArcaneApp.builder` to provide a provider-aware `BuildContext`
for the application root. This deprecates the `ArcaneApp.child`
parameter, improving developer experience for accessing Arcane's
providers at build time.

Updates the `ArcaneThemeSwitcher` to default to `followSystemTheme`
when mounted under `ArcaneApp`, ensuring system theme behavior
is enabled out of the box.

Fixes `setDarkTheme` and `setLightTheme` to only update the rendered
theme if their respective modes are currently active. This prevents
unintended UI changes when updating the definition of an inactive theme.

Updates README and examples to reflect the new `builder` API and
clarified theme logic. Adds new tests for these changes.

* docs(arcane_app): Clarify ArcaneApp API and provider access documentation

Updates the documentation for the `ArcaneApp` constructor to
explicitly detail the preferred `builder` API and the deprecated
`child` parameter, including migration guidance. Also updates the
list of provided services to include `ArcaneFeatureFlagsProvider`.

* feat: Overhaul Arcane framework for 2.0.0 release notes

Migrate Arcane to a static utility surface, removing the instantiable
singleton constructor for simpler and more direct access to services.
Introduce new reactive streams for environment, authentication, and
theme services, enabling real-time observation of state changes.
Enhance `ArcaneApp` integration with the new `builder` callback
and `BuildContext` convenience accessors for services and feature flags.
Update `ArcaneAuthInterface.logout` signature and revise `src` import
paths, requiring consumers to update their implementations and imports.
Deprecate `ArcaneApp.child` and `BuildContext.serviceOfType<T>()`
in favor of new, more idiomatic APIs.
Remove direct `flutter_bloc` dependency and upgrade `result_monad`
to `^4.0.0`.

* refactor(environment): Rename environment access getter to current

This change unifies how the current application environment is accessed
across Arcane's services and providers. The `state` and `environment`
getters have been replaced with a consistent `current` getter,
simplifying API usage and aligning with new patterns.
Includes corresponding updates in example and internal code,
and documents the migration in the CHANGELOG.

* chore: Relax result_monad dependency constraint

The `result_monad` dependency was recently upgraded to `^4.0.0`.
This update relaxes the constraint to `any` to provide greater
flexibility and mitigate potential dependency conflicts for consumers
of Arcane, allowing them to use other compatible versions.

* refactor(logging): Replace LoggingInitializationMixin with LoggingInitialization and add LoggingFeature annotation support

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* docs(changelog): Add migration steps for ArcaneThemeService and update themeMode configuration examples

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* refactor(workflow): Simplify analyze-and-test workflow by removing unused environment variables and steps

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* docs(changelog): Update Arcane.log metadata type and add migration steps for structured values

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* test: Add unit tests for authentication and feature flags functionality

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(theme): track user-defined theme overrides in ArcaneThemeService

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* refactor(service): update service access methods in ArcaneServiceProvider

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* refactor(tests): format login and logout method signatures in MockAuth for improved readability

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(tests): add unit tests for ArcaneThemeService functionality

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

---------

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* fix(dependencies): update result_monad and arcane_helper_utils constraints

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(auth): add callbacks for login/logout events in DebugAuthInterface

fix(logging): ensure proper cancellation of log stream subscriber

refactor(arcane): make built-in services list unmodifiable

fix(app): update service notifier on widget updates

fix(service): improve removeService method to return boolean

fix(auth): update BuildContext parameter to unused in setDebug/setNormal

fix(logging): correct log level reference in LogInterceptorContext documentation

fix(theme): update documentation to reflect ThemeMode instead of ThemeData

fix(theme): ensure unawaited cancellation of theme subscriptions

chore(dependencies): update arcane_analysis version to ^1.0.4

test: make ArcaneAuthenticationService reset asynchronous in tests
Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(logging): implement global and type-scoped interceptors in ArcaneLogger
- Added support for global interceptors that apply to all interfaces.
- Introduced type-scoped interceptors for specific interface types.
- Updated CHANGELOG with migration steps and new API details.
- Adjusted README and tests to reflect changes in interceptor registration.

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* refactor(theme): clean up theme service tests and improve readability

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(logging): enhance logging service tests with type-scoped interceptors and global interceptor functionality

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* fix(gitignore): add .example/.vscode/ to ignore list

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* chore(readme): add Arcane logo to the README for better branding

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

* feat(logging): implement interceptor management with collection-style APIs and scoped matching

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>

---------

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
2026-05-26 16:13:06 +02:00

17 KiB

2.0.0

Arcane Framework

  • [NEW] ArcaneApp now owns and publishes a live service registry for provider-aware static lookups.
  • [CHANGE] Arcane.features, Arcane.auth, Arcane.theme, and Arcane.environment now prefer the live ArcaneApp registry instance when available, then fall back to built-in singletons.
  • [BREAKING] Arcane is now a static utility surface (no instantiable singleton constructor).
  • [BREAKING] Several package:arcane_framework/src/... import paths changed (for example, src/providers/... -> src/service/... and src/services/reactive_theme/... -> src/services/theme/...). Consumers importing from src directly must update import paths.
  • [NEW] Added optional ArcaneApp.builder callback (TransitionBuilder style) for capturing provider-aware build contexts from within ArcaneApp.
  • [DEPRECATED] ArcaneApp.child is now deprecated in favor of ArcaneApp.builder (legacy child usage remains supported during migration).
  • [DEPRECATED] BuildContext.serviceOfType<T>() is now deprecated in favor of BuildContext.service<T>().

Environment Service

  • [NEW] Added ArcaneEnvironmentService as a singleton ArcaneService instance.
  • [CHANGE] Changed ArcaneEnvironment is no longer a Cubit and is now an InheritedWidget.
  • [NEW] Added Arcane.environment shortcut for direct environment access.
  • [NEW] Added environment service to Arcane.services built-in list.
  • [CHANGE] ArcaneEnvironmentProvider is now a StatefulWidget instead of a StatelessWidget with a BlocProvider.
  • [NEW] ArcaneEnvironmentProvider now provides methods for enableDebugMode(), disableDebugMode() and setEnvironment().
  • [NEW] Added environmentChanges stream for realtime environment updates.

Migration Steps (ArcaneEnvironment)

  1. The state getter has been removed from ArcaneEnvironment. If you previously accessed environment state via Arcane.environment.state, update your code to use the new API:

    • Before:

      final env = Arcane.environment.state;
      
    • After:

      final env = Arcane.environment.current;
      
  2. If you were using Cubit-style APIs, migrate to the new InheritedWidget/ValueNotifier-based approach. See the README for updated usage examples.

Authentication Service

  • [BREAKING] ArcaneAuthInterface.logout now accepts optional onLoggedOut callback parameters. ArcaneAuthInterface implementers must update logout signature to accept optional onLoggedOut. See the migration steps for further details.
  • [NEW] Added statusChanges stream to observe AuthenticationStatus updates.
  • [NEW] Added signedInChanges stream to observe sign-in state changes.
  • [FIX] Added stream lifecycle cleanup in dispose with safe lazy recreation.

Migration Steps (ArcaneAuthInterface)

  1. Update ArcaneAuthInterface implementations to accept the new optional onLoggedOut callback parameter in logout(...).
  2. If your implementation performs cleanup side effects on logout, invoke onLoggedOut when provided.
  3. Run tests to confirm your authentication adapter still satisfies your login/logout flows.

Before:

@override
Future<Result<void, String>> logout() async {
  // ...
  return Result.ok(null);
}

After:

@override
Future<Result<void, String>> logout({
  Future<void> Function()? onLoggedOut,
}) async {
  // ...
  if (onLoggedOut != null) await onLoggedOut();
  return Result.ok(null);
}

Feature Flag Service

  • [CHANGE] Renamed service class ArcaneFeatureFlags to ArcaneFeatureFlagService.
  • [NEW] Added backward compatibility typedef: typedef ArcaneFeatureFlags = ArcaneFeatureFlagService.
  • [NEW] Added enabledFeaturesChanges stream to observe enabled feature updates in realtime.
  • [FIX] Added stream lifecycle cleanup in dispose with safe lazy recreation.
  • [NEW] Added ArcaneFeatureFlagProvider (InheritedWidget) and ArcaneFeatureFlagsProvider (StatefulWidget) for first-class feature-flag integration in the widget tree.
  • [DEPRECATED] ArcaneFeatureFlagsScope has been renamed to ArcaneFeatureFlagProvider.
  • [NEW] Added BuildContext convenience accessors for feature flags, including context.featureFlags, context.maybeFeatureFlags, context.isFeatureEnabled(...), and context.isFeatureDisabled(...).
  • [NEW] ArcaneApp now includes ArcaneFeatureFlagsProvider by default, enabling rebuilds for widgets that depend on ArcaneFeatureFlagProvider.of(context).
  • [UPDATE] README now documents ArcaneFeatureFlagProvider and ArcaneApp provider composition.

Theme Service

  • [CHANGE] Renamed ArcaneReactiveTheme to ArcaneThemeService for clearer naming.
  • [NEW] Added backward compatibility typedef: typedef ArcaneReactiveTheme = ArcaneThemeService.
  • [FIX] Theme initialization now respects ThemeMode.system and initializes ThemeData using the effective brightness.
  • [FIX] ArcaneThemeSwitcher now initializes system-follow behavior once on first dependency resolution.
  • [FIX] ArcaneThemeSwitcher now defaults to followSystemTheme(context) when mounted under ArcaneApp, so system-follow is enabled by default and system brightness changes are handled framework-side (no app-level observer needed).
  • [FIX] switchTheme() now toggles from the effective theme when current mode is ThemeMode.system (system dark -> light, system light -> dark).
  • [CHANGE] context.isDarkMode now reflects effective app theme brightness (Theme.of(context).brightness) instead of raw platform brightness.
  • [FIX] followSystemTheme() now reads platform brightness directly to avoid coupling system-follow behavior to app theme overrides.
  • [NEW] Added assignment-style theme setters: Arcane.theme.dark = ... and Arcane.theme.light = ... (in addition to setDarkTheme / setLightTheme).
  • [FIX] Reactive theme stream controllers now close only during service dispose, preventing stream shutdown when a single subscriber cancels.
  • [FIX] Setting a theme (e.g., dark) while in the opposite mode (e.g., light) no longer changes the current brightness or rendered theme. Only the active mode's theme updates the rendered appearance.
  • [NEW] Added themeModeChanges and themeDataChanges streams for realtime theme updates.

Migration Steps (ArcaneThemeService)

  1. Replace legacy ThemeMode reads from Arcane.theme.systemTheme.value with Arcane.theme.currentModeOf(context) when configuring app themeMode.

Before:

MaterialApp(
  theme: Arcane.theme.light,
  darkTheme: Arcane.theme.dark,
  themeMode: Arcane.theme.systemTheme.value,
)

After:

MaterialApp(
  theme: Arcane.theme.light,
  darkTheme: Arcane.theme.dark,
  themeMode: Arcane.theme.currentModeOf(context),
)

Arcane Logger

  • [NEW] Added logStream for realtime log subscriptions.
  • [NEW] Added explicit dispose cleanup for logger stream resources.
  • [NEW] Added optional lifecycle capability via LoggingInitializable and LoggingInitialization.
  • [NEW] Added optional feature tag support via @LoggingFeature(...) annotation.
  • [NEW] Added a skipAutodetection parameter to Arcane.log (defaults to false) that, when enabled, skips detection of the module, method, and file/line number where logs originated from.
  • [NEW] Added the LogInterceptor class which can (optionally) be added to ArcaneLogger to pre-process log messages before they are sent to the registered ArcaneLoggingInterface(s).
  • [NEW] Added collection-style interceptor APIs: Arcane.logger.interceptors.add(...), Arcane.logger.interceptors.remove(...), and Arcane.logger.interceptors.clear() with an optional matcher for explicit type-scoped matching strategies, including subtype-inclusive matching.
  • [CHANGE] Updated Arcane.log metadata type from Map<String, String>? to Map<String, Object?>? to support structured metadata values.
  • [CHANGE] initializeInterfaces() now initializes only interfaces that implement LoggingInitializable; other interfaces are skipped.
  • [BREAKING] LoggingInterface no longer includes built-in singleton-style initialization state.

Migration Steps (LoggingInterface)

  1. Remove initialized and init from interfaces that do not require startup work.
  2. If an interface requires startup/lifecycle management, add LoggingInitialization (or implement LoggingInitializable) and move setup logic into init().
  3. Update log(...) implementations to guard behavior with initialized only for interfaces that opted into initialization.
  4. Run tests to verify interface registration and logging behavior still match expectations.

Before:

class DebugConsole implements LoggingInterface {
  @override
  bool get initialized => true;

  @override
  Future<LoggingInterface?> init() async => this;

  @override
  void log(String message, {Map<String, Object?>? metadata, Level? level}) {}
}

After:

class DebugConsole extends LoggingInterface {
  @override
  void log(String message, {Map<String, Object?>? metadata, Level? level}) {}
}
  • For SDK-backed loggers, opt into initialization with the mixin.
class ExternalLogger extends LoggingInterface with LoggingInitialization {
  @override
  Future<void> init() async {
    if (initialized) return;
    // Start SDK.
    await super.init();
  }

  @override
  void log(String message, {Map<String, Object?>? metadata, Level? level}) {
    if (!initialized) return;
    // Send to SDK.
  }
}
  • If desired, adopt feature for destination-aware filtering in interceptors.

Migration Steps (Arcane.log metadata)

  1. Update Arcane.log(...) call sites that stringify metadata values only to satisfy the previous Map<String, String> type.
  2. Prefer passing native values (for example int, bool, List, or nested Map) directly in metadata when useful.
  3. If your logging destination expects only string metadata, convert Object? values to strings at your logging boundary.

Before:

Arcane.log(
  "Login attempt",
  metadata: {
    "attempt": attempt.toString(),
    "rememberMe": rememberMe.toString(),
  },
);

After:

Arcane.log(
  "Login attempt",
  metadata: {
    "attempt": attempt,
    "rememberMe": rememberMe,
  },
);

Dependencies

  • [CHANGE] Updated result_monad from ^2.3.2 to ^4.0.0.
  • [CHANGE] Removed direct flutter_bloc dependency.
  • [CHANGE] Updated collection from ^1.18.0 to ^1.19.0.

1.2.7

  • Updated dependencies to latest

1.2.6

  • Updated dependencies to latest

1.2.5

  • Improved automatic metadata detection in ArcaneLogger

1.2.4

  • Update package dependencies

1.2.3

  • Added ValueNotifiers to both the ArcaneAuthenticationService and ArcaneFeatureFlags. This enables the possibility of listening for changes to either service.

Example

// Listen to changes in the authentication status
Arcane.auth.isSignedIn.addListener(() {
  if (Arcane.auth.isSignedIn.value) {
    Arcane.log("User is signed in");
  } else {
    Arcane.log("User is signed out");
  }
});

// Listen to changes in the enabled/disabled features
Arcane.features.notifier.addListener(() {
  Arcane.log("Enabled features have been updated: ${Arcane.features.notifier.value}");
});

1.2.2

  • Lowered minimum required collection dependency version to prevent forcing users into the latest Flutter release

1.2.1

  • Lowered minimum required SDK version to prevent forcing users into the latest Flutter release

1.2.0

  • Removed flutter_secure_storage dependency as it was unused

Breaking Changes

The following methods have been moved outside of the ArcaneAuthInterface base class:

  • resendVerificationCode
  • register
  • confirmSignup
  • resetPassword

These methods have been moved to mixin classes. To continue using them, please update your ArcaneAuthInterface implementations.

  • To use resendVerificationCode, register and confirmSignup, use the new ArcaneAuthAccountRegistration mixin.
  • To use resetPassword, use the new ArcaneAuthPasswordManagement mixin.

Migration

In order to migrate your existing interfaces, update them from:

class MyAuthInterface implements ArcaneAuthInterface {}

to:

class MyAuthInterface
    with ArcaneAuthAccountRegistration, ArcaneAuthPasswordManagement
    implements ArcaneAuthInterface {}

If the methods that these mixins provide are not being used, the mixins can safely be omitted. If only one of these mixins is required, the other can be safely omitted.

This change should result in fewer lines of code for interface implementations that do not require these additional features.

1.1.7

  • Fixed an issue with the ArcaneAuthenticationService where an exception would be thrown when attempting to access an authentication token while no ArcaneAuthInterface was registered.

1.1.6

  • Updated logging feature to indicate the feature which was enabled or disabled within the log message, instead of only in the metadata.

1.1.5

  • Update package dependencies. No code changes.

1.1.4

  • Update package dependencies. No code changes.

1.1.3

  • Arcane Auth no longer throws exceptions when log out fails, instead returning a Result<void, String>. This behavior matches the login method.

1.1.2

  • Removed Flutter exception handling from ArcaneLoggingService, as this functionality should be defined by a users' interface.

Migration

Add the following to your ArcaneLoggingInterface's init method to replicate the previous behavior:

// Handles unhandled Flutter errors by logging them.
FlutterError.onError = (errorDetails) {
  Arcane.log(
    errorDetails.exceptionAsString(),
    level: Level.error,
    module: errorDetails.library,
    stackTrace: errorDetails.stack,
  );
};

// Handles unhandled platform-specific errors by logging them.
PlatformDispatcher.instance.onError = (error, stack) {
  Arcane.log(
    "$error",
    level: Level.error,
    stackTrace: stack,
  );
  return false;
};

1.1.1+2

  • Updated example in README

1.1.1+1

  • Updated example in README

1.1.1

  • [BREAKING] Updated ArcaneAuthInterface to make the resendVerificationCode, confirmSignup, and resetPassword methods more versatile

Migration:

Class Migration path
ArcaneAuthInterface resendVerificationCode(String email) -> resendVerificationCode<T>({T? input})
ArcaneAuthInterface confirmSignup({String email, String password}) -> confirmSignup({String? email, String? password})
ArcaneAuthInterface resetPassword({String email, String? newPassword, String? code}) -> resetPassword({String? email, String? newPassword, String? code})

1.1.0

  • [BREAKING] Updated the authentication service and interface to be more versatile

Migration:

Class Migration path
ArcaneAuthInterface loginWtihEmailAndPassword({String email, String password}) -> login<T>({T? input})
ArcaneAuthInterface signup({String email, String password}) -> register<T>({T? input})

1.0.8

  • Added the extra parameter to the Arcane.log shortcut method

1.0.7

  • Added the extra parameter to the LoggingInterface

1.0.6+1

1.0.6

  • Removed get_it as a dependency

1.0.5+2

  • Updated README and example project documentation

1.0.5+1

  • Marked the loginWithEmailAndPassword method in ArcaneAuthenticationService as deprecated and updated example project

1.0.5

  • Added the ability to use a generic type for the login method in ArcaneAuthenticationService
  • Added the ability to reset the ArcaneAuthenticationService, which will unregister the current interface and clear the authentication state
  • Removed unused testing tooling (e.g., @visibleForTesting) from the codebase
    • Migration guide: Remove usages of setMocked in your tests

1.0.4

  • Resolved an issue with authentication using the ArcaneAuthenticationService when logging in with an email and password

1.0.3+1

  • Added example project

1.0.3

  • Added the ability to switch back to the normal environment from the debug environment in ArcaneEnvironment
  • (breaking) Made the optional onLoggedOut callback a Future instead of a void function in ArcaneAuthenticationService
  • Added additional error handling to the login method in ArcaneAuthenticationService
  • Added support for following the system's theme in ArcaneTheme
  • Removed the BuildContext parameter from the switchTheme method in ArcaneTheme

1.0.2

  • Migrated ArcaneAuthenticationService's isSignedIn to a ValueListenable

1.0.1+1

  • Removed ID and secure storage services to improve platform compatibility

1.0.0

  • Initial release