analytics_hub_firebase
Firebase Analytics provider for analytics_hub. Sends LogEvent events to Firebase via the official SDK.
0.5.0
4akLoon/analytics_hub
What this package is like to depend on
Last release 18 days ago
05 Aug 2026
Release timing varies
gaps range from 2 weeks to 5 months
Nearly every release is documented
notes for 10 of 10 stable releases
Nothing withdrawn
no release was ever pulled
6 months old
10 releases · first in 2026
10 releases in the last 12 months
see the full history below
Release timeline
10 releases · Feb 2026 to Aug 2026Releases
latest 10-
0.5.005 Aug 2026Release notes
Open source →- Release 0.5.0: port zeely-mobile fixes, drop session support, add CI
Port behavior fixes made in the zeely-mobile copies of these packages:
- ProviderIdentifier equality/hashCode now include the runtime type so
identifiers of different subclasses with the same name don't collide - AnalyticsHub.initialize initializes providers sequentially
(Future.forEach) instead of concurrently - Quieter logging: sendEvent logs at fine level and the dispatch
pipeline no longer logs each step - Provider constructors accept an optional interceptors parameter
Remove session support (breaking): Session, HubSessionDelegate,
AnalyticsHub.sessionDelegate and AnalytycsProvider.setSession are gone;
apps manage user identity directly on the underlying SDKs. The
getAnonymousId parameters of the Mixpanel/Appsflyer providers are
removed with it.Add GitHub Actions CI modeled on basalt_dart: analyze/format/test plus
publish dry-run on every push/PR, and tag-driven pub.dev publishing via
OIDC (-v tags).Co-Authored-By: Claude Fable 5 [email protected]
- Audit cleanup: drop dead code and unnecessary dependencies
- Firebase/Appsflyer providers: remove flush() overrides that existed
only to log a "not supported" message — the base AnalytycsProvider
flush() is already a no-op. This drops the logging dependency from
all three provider packages (mixpanel no longer imported it at all). - analytics_hub core is now a pure Dart package: flutter_test dev
dependency removed (tests only use package:test), sodart test
works without a Flutter SDK. - Remove unused dev dependencies:
testfrom the provider packages
(their tests use flutter_test),lintsfrom mixpanel (inherited from
the workspace root),testfrom the root package (no tests there). - Provider tests: delete dead _TestEvent classes and
registerFallbackValue setup left over from the removed setSession
tests, plus the now-unused analytics_hub imports. - Core internals: remove unused DispatchTarget.providerIdentifier
getter; EventDispatcher.dispatch returns the executor future directly
instead of awaiting into a local. - Root README: close the unterminated yaml code fence in Quick start
that swallowed the rest of the page on render.
Co-Authored-By: Claude Fable 5 [email protected]
- Rename AnalytycsProvider to AnalyticsProvider, fix workspace layout
Fix the long-standing typo in the provider base class name across all
packages, docs, examples, and tests. No compatibility alias is kept —
the packages have no external consumers yet.Also move
resolution: workspacefrom pubspec_overrides.yaml into each
package's pubspec.yaml (the layout basalt_dart and zeely-mobile use, and
whatdart test's workspace validation expects) and delete the
overrides files.Co-Authored-By: Claude Fable 5 [email protected]
- Fix mixpanel_flutter lower bound for pub.dev score compliance
Ran pana (the tool pub.dev uses to compute package score) against all
four packages. analytics_hub itself scores a clean 160/160.Found a real bug via the "compatible with dependency constraint lower
bounds" check: mixpanel_flutter's declared minimum (2.0.0) allows
versions up to 2.2.0 where Mixpanel.track() returns void instead of
Future. MixpanelEventResolver.resolve declares a Future
return type and returns the track() call directly, so pinning an old
2.x mixpanel_flutter breaks analysis (and would break at runtime for
anyone actually on that range). Raised the lower bound to >=2.3.0,
where track() became async. Verifieddart analyzeis clean and tests
pass with dependencies downgraded to their lower bounds.The three provider packages can't get a full pana score yet since they
depend on analytics_hub, which isn't published to pub.dev — pana (like
pub.dev itself) resolves dependency_overrides are ignored for scoring,
so this is a publish-order concern rather than a code issue: publish
analytics_hub first, then the providers.Co-Authored-By: Claude Fable 5 [email protected]
- Add design spec for basalt_dart-style documentation
Covers badges + workspace banners on all READMEs, a "what's inside"
reference table in the core README, a packages/analytics_hub/doc/
folder with four deep-dive guides, and a root CONTRIBUTING.md —
scoped down from basalt_dart's equivalent docs to this repo's size.Co-Authored-By: Claude Fable 5 [email protected]
- Add basalt_dart-style documentation
Badges + "part of workspace" banners on every README (EN/UA), a
"what's inside" reference table in the core README, a
packages/analytics_hub/doc/ folder with four deep-dive guides
(getting started, providers, interceptors & context, testing), and a
root CONTRIBUTING.md — implements the design spec, which is removed
now that it's realized in the actual docs.Skipped the MIT license badge from the original spec: the repo has no
LICENSE file, so that badge would have been false.Co-Authored-By: Claude Sonnet 5 [email protected]
- Remove initialize and dispose from provider lifecycle
SDK lifecycle belongs in the app — keep only flush for buffered backends.
Co-authored-by: Cursor [email protected]
- Fix example formatting for CI
Co-authored-by: Cursor [email protected]
Co-authored-by: Claude Fable 5 [email protected]
Co-authored-by: Cursor [email protected]Release notes
Open source →Added
- Optional
interceptorsconstructor parameter for provider-level interceptors.
Changed
- Removed the
loggingdependency;flush()no longer logs a "not supported" message and simply inherits the base no-op.
Breaking Changes
- Removed
setSessionalong with core session support. Set the Firebase user id directly viaFirebaseAnalytics.setUserId. - Removed
initializeoverride that calledsetAnalyticsCollectionEnabled(true). Enable collection on theFirebaseAnalyticsinstance in the app if needed. - Updated dependency constraint to
analytics_hub: ">=0.5.0 <0.6.0".
-
0.4.026 Feb 2026Release notes
Open source →Changed
- Updated dependency constraint to
analytics_hub: ">=0.4.0 <0.5.0"to align with the core 0.4.0 release and the newEventProvider.overridesAPI. - Renamed provider identifier from
FirebaseAnalyticsHubProviderIdentifiertoFirebaseAnalyticsHubIdentifierfor consistency with other official providers.
Breaking Changes
- Event definitions and imports must now use
FirebaseAnalyticsHubIdentifierinstead ofFirebaseAnalyticsHubProviderIdentifier.
- Updated dependency constraint to
-
0.3.324 Feb 2026Release notes
Open source →Changed
- Updated dependency constraint to
analytics_hub: ">=0.3.3 <0.4.0". - Added
loggingdependency and provider-level logging for lifecycle behavior. - Updated
FirebaseAnalyticsHubProviderconstructor call to the new core provider contract (explicitinterceptors). - Implemented provider
flush()override (no-op with informational log; Firebase SDK has no explicit flush API). - Added tests for the provider flush behavior.
- Updated dependency constraint to
-
0.3.124 Feb 2026Release notes
Open source →Changed
- Updated dependency constraint to
analytics_hub: ">=0.3.1 <0.4.0". - Synced resolver/tests with the refined typed context API used by core (
Context/ContextEntry-based dispatch context). - Updated README docs (EN/UA) and version snippets to
0.3.1.
- Updated dependency constraint to
-
0.3.024 Feb 2026Release notes
Open source →Changed
- Reverted Firebase provider to a single
LogEventflow. - Refreshed examples/tests/docs for
List<EventProvider>andProviderIdentifier. - Updated dependency constraint to
analytics_hub: ">=0.3.0 <0.4.0". - Migrated
FirebaseAnalyticsEventResolverto new core resolver API based onResolvedEventandEventDispatchContext. - Updated tests for the new dispatch contract.
Removed
FirebaseAnalyticsECommerceEventResolver.ECommerceEventResolverimplementation fromFirebaseAnalyticsEventResolver.- All README references to GA4 e-commerce event classes in this package.
Breaking Changes
analytics_hub_firebaseno longer supports e-commerce event types from core.- Resolver implementation now must implement
resolve({required ResolvedEvent event, required EventDispatchContext context}).
- Reverted Firebase provider to a single
-
0.2.223 Feb 2026Release notes
Open source →Changed
- Updated
FirebaseAnalyticsEventResolverto support nullable values inLogEvent.propertiesby filtering outnullentries before callingFirebaseAnalytics.logEvent. - Updated dependency constraint to
analytics_hub: ">=0.2.2 <0.3.0".
- Updated
-
0.2.123 Feb 2026Release notes
Open source →Changed
- Updated README to use
providersandFirebaseAnalyticsHubProviderIdentifier. - Refreshed supported-events docs to match current Firebase e-commerce coverage.
Breaking Changes
FirebaseAnalyticsHubProviderKeywas renamed toFirebaseAnalyticsHubProviderIdentifier.
- Updated README to use
-
0.2.023 Feb 2026Release notes
Open source →Changed
- Migrated provider identity usage from
ProviderKeytoProviderIdentifier. - Updated examples and tests to the new
Event.providersAPI withEventProvider. - Updated dependency constraint to
analytics_hub: ">=0.2.0 <0.3.0".
Breaking Changes
FirebaseAnalyticsHubProvidernow usesidentifierinstead ofkey.FirebaseAnalyticsHubProviderKeynow extendsProviderIdentifier<FirebaseAnalyticsEventResolver>.- Events targeting Firebase must define
providers(List<EventProvider<...>>) instead ofproviderKeys.
- Migrated provider identity usage from
-
0.1.011 Feb 2026Release notes
Open source →Added
- Implemented all GA4 e-commerce events in
FirebaseAnalyticsECommerceEventResolver:AddToCart,AddToWishlist,ViewCart,AddPaymentInfo,AddShippingInfo,BeginCheckout,Purchase,RemoveFromCart,SelectItem,ViewItem,ViewItemList,ViewPromotion,Refund(in addition to existingSelectPromotion). - Public API documentation for provider, key, and resolvers.
- Dependency on
analytics_hub: ">=0.1.0 <0.2.0".
- Implemented all GA4 e-commerce events in
-
0.0.110 Feb 2026Release notes
Open source →Added
- Initial Firebase Analytics provider integration for
analytics_hub. FirebaseAnalyticsHubProviderandFirebaseAnalyticsHubProviderKeyfor routing events to Firebase.FirebaseAnalyticsEventResolvermappingLogEventtoFirebaseAnalytics.logEvent.FirebaseAnalyticsECommerceEventResolverhandlingSelectPromotionECommerceEventviaFirebaseAnalytics.logSelectPromotion.- Session handling in provider using
FirebaseAnalytics.setUserIdbased onSession.id.
- Initial Firebase Analytics provider integration for