Skip to content

Latest commit

 

History

History
74 lines (74 loc) · 2.58 KB

CHANGELOG.md

File metadata and controls

74 lines (74 loc) · 2.58 KB

0.1.0

  • Initial version.

0.2.0

  • Add a container parameter to singleton factories

0.3.0

  • Remove fluent style returns

0.4.0

  • Refactor (breaking changes) to fix singleton issues

0.5.0

  • Drop a dependency version down

0.6.0

  • Add more documentation and fix some code analysis issues

0.7.0

  • Give the name of a missing service in the exception.

0.8.0

  • Adds scoping with the scoped() and getScoped() extensions
  • Adds ability to dispose of scoped services with the dispose extension

0.9.0

  • Documentation

0.10.0

  • Documentation

0.11.0

  • Add the init() extension for async initialization

0.12.0

  • Documentation

0.13.0

  • Documentation

0.14.0

  • Documentation

0.15.0

  • Documentation

1.0.0

Async Focus

This version focuses on async initalization. New methods addAsync() and addSingletonAsync() make it easy to add async factories, and you can now perform async disposals. Call getAsync() or getAsyncSafe() to get async services.

Performance enhancement

There is a big improvement on the get() method. This version brings a set of benchmarks that measure performance against similar libraries. Check the benchmarks folder.

Breaking Changes

  • init() renamed to getAsync(). The feedback was that init was a bad name
  • The dispose() method now returns a future. If you need to dispose services and wait for the result, you must await this call
  • toContainer() no longer initializes all singletons and the isLazy parameter was removed. All initialization is lazy now. If you want to intialize all singletons call the initializeSingletons() extension

Other Changes

  • This version drops the meta dependency. This means that the container no longer has the @immutable annotation. See the documentation about immutability.
  • Containers now have an isScoped flag. If this is true, all factories act like singletons. Use the scoped() method to create a scoped version of the container
  • The merge() method allows you to copy the singletons/scope from one container to another

1.0.1

  • Fix Dart formatting

1.0.2

  • Firebase doco

1.0.3

  • Firebase doco

1.0.4

  • Firebase doco

1.0.5

  • Firebase doco

1.0.6

  • More explicit wording around getAsyncSafe()

1.0.7

  • Format code

1.0.8

  • Documentation emojification 🎉

1.0.9

  • Coverage badge

1.0.10

  • Documentation overhaul

1.0.11

  • Upgrade austerity
  • Documentation changes and add icon

1.0.12

  • Fix icon link

2.0.0-beta

  • Async locking. See documentation

2.0.1-beta

  • Fixes and issue where it was impossible to set the dispose method unless you create fresh factories for the scopes