Skip to content

v16.0.0

Compare
Choose a tag to compare
@Iku-turso Iku-turso released this 15 May 08:10
· 104 commits to master since this release

16.0.0 (2023-05-15)

⚠ BREAKING CHANGES

  • Make sure previous usages of injectable id of meta do not break with the
    new addition of namespace. Eg. what previously was di.injectManyWithMeta(someInjectionToken) ->
    { id: 'some-id', instance: ... }
    ...will now become:
    { id: 'some-scope:some-id', instance: ... }
    ...when a scope is present.

Features

  • Implement computedInjectManyWithMeta, and add missing type tests to computedInjectMany (a8527c1)
  • Make the injectable id for "meta" namespaced to avoid collisions (baa52a9)