Skip to content
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.

Releases: kohesive/injekt

v1.3.0 New Configuration (Typesafe Config) Injection!

21 Aug 21:24
Compare
Choose a tag to compare

see CHANGELOG.md for history of changes. And README.md for documentation.

NEW FEATURE: Configuration Injection w/Typesafe Config. Read more about it in the inject-config-typesafe module.

Gradle:

compile "uy.kohesive.injekt:injekt-core:1.3.+"
compile "uy.kohesive.injekt:injekt-config-typesafe:1.3.+"

Maven:

<dependency>
    <groupId>uy.kohesive.injekt</groupId>
    <artifactId>injekt-core</artifactId>
    <version>[1.3.0,1.4.0)</version>
</dependency>
<dependency>
    <groupId>uy.kohesive.injekt</groupId>
    <artifactId>injekt-config-typesafe</artifactId>
    <version>[1.3.0,1.4.0)</version>
</dependency>

  • Added Configuration injection from Typesafe Config (see README in config-typesafe)
  • Added storage in Injekt scope for addons to work within a scope

v1.2.0 - 2015-08-11 bug fix for Android, breaking changes to import statements

11 Aug 20:12
Compare
Choose a tag to compare

see CHANGELOG.md for history of changes. And README.md for documentation.

Gradle:

compile "uy.kohesive.injekt:injekt-core:1.2.+"

Maven:

<dependency>
    <groupId>uy.kohesive.injekt</groupId>
    <artifactId>injekt-core</artifactId>
    <version>[1.2.0,1.3.0)</version>
</dependency>

  • [BREAKING CHANGE] Fixing #8 - Moved api classes to uy.kohesive.injekt.api package so that separate module jars do not have classes in the same package, breaking use in Android
  • [BREAKING CHANGE] Remove deprecated "injekt_" delegates (replaced with "inject_")

v1.1.1 - 2015-08-11

11 Aug 11:21
Compare
Choose a tag to compare

see CHANGELOG.md for history of changes. And README.md for documentation.

Gradle:

compile "uy.kohesive.injekt:injekt-core:1.1.+"

Maven:

<dependency>
    <groupId>uy.kohesive.injekt</groupId>
    <artifactId>injekt-core</artifactId>
    <version>[1.1.0,1.2.0)</version>
</dependency>

Fix for #7 - factories called again when value already existed, even though correct value was returned. Fixed, although in JDK 7 concurrentHashMap doesn't have a way to prevent some chance of a second factory call, although the correct value would still be returned and the additional factory call would be tossed away.

v1.1.0 - 2015-08-10

09 Aug 17:03
Compare
Choose a tag to compare

see CHANGELOG.md for history of changes. And README.md for documentation.

Gradle:

compile "uy.kohesive.injekt:injekt-core:1.1.+"

Maven:

<dependency>
    <groupId>uy.kohesive.injekt</groupId>
    <artifactId>injekt-core</artifactId>
    <version>[1.1.0,1.2.0)</version>
</dependency>

Seperate API from core JAR. Core depends on API. a lot of small changes to structure for having independent scopes for injection, and cleaning.
Sorry for the breaks, but they will be tiny little changes to clean up.

API Changes:

  • new property delegates that require scope to be passed in.

Core Changes:

  • delegates by default point a the top level scope unless you use the scope-specific version.
  • changed Injekt from object singleton that contained implementation to an var of type InjektScope (no API change, code should compile as-is but does need recompile)
  • [BREAKING CHANGE] changed default registry/factory package to uy.kohesive.injekt.registry.default although unlikely referenced from user code.
  • [BREAKING CHANGE] renamed InjektInstanceFactory to InjektFactory
  • [BREAKING CHANGE] renamed Injekt.Property with delegates removed, use other Delegates.*
  • [BREAKING CHANGE] InkektRegistrar is changed to only be a combination of two interfaces, InjektRegistry and InjektFactory and nothing else.
  • [BREAKING CHANGE] changed InjektMain / InjektScopedMain to also be a module with same registerInjectables method
  • [BREAKING CHANGE] changed exportInjektables to registerInjectables
  • [BREAKING CHANGE] changed other words in method names that used "injekt" to "inject" to be more natural, old versions deprecated to be removed in 1 release
  • Introduced InjektScope which allows different parts of the app to have different injection registries
  • Introduced InjektScopedMain which is like InjektMain but for a specified scope instead of the global scope.