Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump koinVersion from 3.2.2 to 3.3.0 #60

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 19, 2022

Bumps koinVersion from 3.2.2 to 3.3.0.
Updates koin-core from 3.2.2 to 3.3.0

Changelog

Sourced from koin-core's changelog.

core-3.3.0 - 2022-12-14

[koin-core]

  • [UPDATED] - lib update - Kotlin 1.7.21
  • [FIXED] - #1306 #1016 - Add native Module extensions to allow add defintions without inlined type
  • [FIXED] - #834 - ensure onClose is called when unloading module or closing Koin
  • [FIXED] - #1353 - parameters stack is now secured with call synchronization
  • [UPDATED] - #1359 - constructor DSL udpate to take until 22 parameters into account
  • [FIXED] - #1463 - Fix to allow binding of same type in the current module
  • [UPDATED] - Documentation update - #1469 #1438
  • [UPDATED] - Logger API inlined and cleand out - #1271
  • [FIXED] - Engine resolution race condition #1465
  • [UPDATED] - Use of KoinDsl marker to protect the Koin DSL

[koin-test]

  • [NEW] - verify() on a Module to verify all constructors injection with current Koin configuration (static verification). This comes as a replacement proposal for checkModules, as a more convenient way to verify a configuration with static verification, more than sandbox running with mocks

android-3.3.0 - 2022-10-19

[koin-android]

  • [UPDATED] - lib update - androidx.appcompat:appcompat:1.5.1
  • [UPDATED] - lib update - androidx.activity:activity-ktx:1.5.1
  • [UPDATED] - lib update - androidx.fragment:fragment-ktx:1.5.3
  • [UPDATED] - lib update - androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1
  • [UPDATED] - lib update - androidx.lifecycle:lifecycle-common-java8:2.5.1
  • [UPDATED] - All Koin ViewModel API to use latest ViewModelProvider extras API ViewModel 2.5.1 . API Signature have been changed to keep the existing API. Such API propagates all extras directly to SavedStateHandle. Added ownerProducer: () -> ViewModelStoreOwner, and extrasProducer: (() -> CreationExtras)? parameters to main function.
  • [FIXED] - Fix SavedStateHandle injection and lifecycle follow up with new KoinViewModelFactory
  • [UPDATED] - Sandbox app updated to check new API
  • [DEPRECATED] - all stateViewModel() API functions + all related internals
  • [DEPRECATED] - any use of state: BundleDefinition property in favor of extrasProducer: (() -> CreationExtras). Functions still works, but a conversion from bundle to extras is needed
  • [NEW] - activityViewModel() and getActivityViewModel() added to replace the sharedViewModel functions
  • [DEPRECATED] - all sharedViewModel() fucntions in favor of activityViewModel() functions
  • [UPDATED] - Compile SDK level to 32
  • [UPDATED] - Updated generic API viewModelForClass functions to allow usage of key. state parameters kept, but need conversi onto extras

[koin-android-compat]

  • [UPDATED] - Updated with new ViewModel API internals

[koin-androidx-navigation]

  • [UPDATED] - Updated with new ViewModel API internals. Added ownerProducer: () -> ViewModelStoreOwner, and extrasProducer: (() -> CreationExtras)? parameters

[koin-androidx-compose]

  • [UPDATED] - library update androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1
  • [UPDATED] - library update androidx.navigation:navigation-compose:2.5.2
  • [UPDATED] - Compile SDK level to 32
  • [UPDATED] - Update with koin-android:3.3.0 to realign internal APIs with ViewModel 2.5.1
  • [UPDATED] - Updated koinViewModel() and getViewModel() functions to present all needed parameters. Added key: String and extras: CreationExtrasparameters.
  • [DEPRECATED] - getStateViewModel() function is now deprecated. SavedStateHandle can be injected directly with koinViewModel() and getViewModel() functions
  • [UPDATED] Compose compiler is at "1.2.0"
  • [UPDATED] Compose libraries at "1.2.1"

... (truncated)

Commits

Updates koin-android from 3.2.2 to 3.3.0

Changelog

Sourced from koin-android's changelog.

core-3.3.0 - 2022-12-14

[koin-core]

  • [UPDATED] - lib update - Kotlin 1.7.21
  • [FIXED] - #1306 #1016 - Add native Module extensions to allow add defintions without inlined type
  • [FIXED] - #834 - ensure onClose is called when unloading module or closing Koin
  • [FIXED] - #1353 - parameters stack is now secured with call synchronization
  • [UPDATED] - #1359 - constructor DSL udpate to take until 22 parameters into account
  • [FIXED] - #1463 - Fix to allow binding of same type in the current module
  • [UPDATED] - Documentation update - #1469 #1438
  • [UPDATED] - Logger API inlined and cleand out - #1271
  • [FIXED] - Engine resolution race condition #1465
  • [UPDATED] - Use of KoinDsl marker to protect the Koin DSL

[koin-test]

  • [NEW] - verify() on a Module to verify all constructors injection with current Koin configuration (static verification). This comes as a replacement proposal for checkModules, as a more convenient way to verify a configuration with static verification, more than sandbox running with mocks

android-3.3.0 - 2022-10-19

[koin-android]

  • [UPDATED] - lib update - androidx.appcompat:appcompat:1.5.1
  • [UPDATED] - lib update - androidx.activity:activity-ktx:1.5.1
  • [UPDATED] - lib update - androidx.fragment:fragment-ktx:1.5.3
  • [UPDATED] - lib update - androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1
  • [UPDATED] - lib update - androidx.lifecycle:lifecycle-common-java8:2.5.1
  • [UPDATED] - All Koin ViewModel API to use latest ViewModelProvider extras API ViewModel 2.5.1 . API Signature have been changed to keep the existing API. Such API propagates all extras directly to SavedStateHandle. Added ownerProducer: () -> ViewModelStoreOwner, and extrasProducer: (() -> CreationExtras)? parameters to main function.
  • [FIXED] - Fix SavedStateHandle injection and lifecycle follow up with new KoinViewModelFactory
  • [UPDATED] - Sandbox app updated to check new API
  • [DEPRECATED] - all stateViewModel() API functions + all related internals
  • [DEPRECATED] - any use of state: BundleDefinition property in favor of extrasProducer: (() -> CreationExtras). Functions still works, but a conversion from bundle to extras is needed
  • [NEW] - activityViewModel() and getActivityViewModel() added to replace the sharedViewModel functions
  • [DEPRECATED] - all sharedViewModel() fucntions in favor of activityViewModel() functions
  • [UPDATED] - Compile SDK level to 32
  • [UPDATED] - Updated generic API viewModelForClass functions to allow usage of key. state parameters kept, but need conversi onto extras

[koin-android-compat]

  • [UPDATED] - Updated with new ViewModel API internals

[koin-androidx-navigation]

  • [UPDATED] - Updated with new ViewModel API internals. Added ownerProducer: () -> ViewModelStoreOwner, and extrasProducer: (() -> CreationExtras)? parameters

[koin-androidx-compose]

  • [UPDATED] - library update androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1
  • [UPDATED] - library update androidx.navigation:navigation-compose:2.5.2
  • [UPDATED] - Compile SDK level to 32
  • [UPDATED] - Update with koin-android:3.3.0 to realign internal APIs with ViewModel 2.5.1
  • [UPDATED] - Updated koinViewModel() and getViewModel() functions to present all needed parameters. Added key: String and extras: CreationExtrasparameters.
  • [DEPRECATED] - getStateViewModel() function is now deprecated. SavedStateHandle can be injected directly with koinViewModel() and getViewModel() functions
  • [UPDATED] Compose compiler is at "1.2.0"
  • [UPDATED] Compose libraries at "1.2.1"

... (truncated)

Commits

Updates koin-androidx-compose from 3.2.2 to 3.3.0

Changelog

Sourced from koin-androidx-compose's changelog.

core-3.3.0 - 2022-12-14

[koin-core]

  • [UPDATED] - lib update - Kotlin 1.7.21
  • [FIXED] - #1306 #1016 - Add native Module extensions to allow add defintions without inlined type
  • [FIXED] - #834 - ensure onClose is called when unloading module or closing Koin
  • [FIXED] - #1353 - parameters stack is now secured with call synchronization
  • [UPDATED] - #1359 - constructor DSL udpate to take until 22 parameters into account
  • [FIXED] - #1463 - Fix to allow binding of same type in the current module
  • [UPDATED] - Documentation update - #1469 #1438
  • [UPDATED] - Logger API inlined and cleand out - #1271
  • [FIXED] - Engine resolution race condition #1465
  • [UPDATED] - Use of KoinDsl marker to protect the Koin DSL

[koin-test]

  • [NEW] - verify() on a Module to verify all constructors injection with current Koin configuration (static verification). This comes as a replacement proposal for checkModules, as a more convenient way to verify a configuration with static verification, more than sandbox running with mocks

android-3.3.0 - 2022-10-19

[koin-android]

  • [UPDATED] - lib update - androidx.appcompat:appcompat:1.5.1
  • [UPDATED] - lib update - androidx.activity:activity-ktx:1.5.1
  • [UPDATED] - lib update - androidx.fragment:fragment-ktx:1.5.3
  • [UPDATED] - lib update - androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1
  • [UPDATED] - lib update - androidx.lifecycle:lifecycle-common-java8:2.5.1
  • [UPDATED] - All Koin ViewModel API to use latest ViewModelProvider extras API ViewModel 2.5.1 . API Signature have been changed to keep the existing API. Such API propagates all extras directly to SavedStateHandle. Added ownerProducer: () -> ViewModelStoreOwner, and extrasProducer: (() -> CreationExtras)? parameters to main function.
  • [FIXED] - Fix SavedStateHandle injection and lifecycle follow up with new KoinViewModelFactory
  • [UPDATED] - Sandbox app updated to check new API
  • [DEPRECATED] - all stateViewModel() API functions + all related internals
  • [DEPRECATED] - any use of state: BundleDefinition property in favor of extrasProducer: (() -> CreationExtras). Functions still works, but a conversion from bundle to extras is needed
  • [NEW] - activityViewModel() and getActivityViewModel() added to replace the sharedViewModel functions
  • [DEPRECATED] - all sharedViewModel() fucntions in favor of activityViewModel() functions
  • [UPDATED] - Compile SDK level to 32
  • [UPDATED] - Updated generic API viewModelForClass functions to allow usage of key. state parameters kept, but need conversi onto extras

[koin-android-compat]

  • [UPDATED] - Updated with new ViewModel API internals

[koin-androidx-navigation]

  • [UPDATED] - Updated with new ViewModel API internals. Added ownerProducer: () -> ViewModelStoreOwner, and extrasProducer: (() -> CreationExtras)? parameters

[koin-androidx-compose]

  • [UPDATED] - library update androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1
  • [UPDATED] - library update androidx.navigation:navigation-compose:2.5.2
  • [UPDATED] - Compile SDK level to 32
  • [UPDATED] - Update with koin-android:3.3.0 to realign internal APIs with ViewModel 2.5.1
  • [UPDATED] - Updated koinViewModel() and getViewModel() functions to present all needed parameters. Added key: String and extras: CreationExtrasparameters.
  • [DEPRECATED] - getStateViewModel() function is now deprecated. SavedStateHandle can be injected directly with koinViewModel() and getViewModel() functions
  • [UPDATED] Compose compiler is at "1.2.0"
  • [UPDATED] Compose libraries at "1.2.1"

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps `koinVersion` from 3.2.2 to 3.3.0.

Updates `koin-core` from 3.2.2 to 3.3.0
- [Release notes](https://github.com/InsertKoinIO/koin/releases)
- [Changelog](https://github.com/InsertKoinIO/koin/blob/main/CHANGELOG.md)
- [Commits](InsertKoinIO/koin@3.2.2...core-3.3.0)

Updates `koin-android` from 3.2.2 to 3.3.0
- [Release notes](https://github.com/InsertKoinIO/koin/releases)
- [Changelog](https://github.com/InsertKoinIO/koin/blob/main/CHANGELOG.md)
- [Commits](InsertKoinIO/koin@3.2.2...core-3.3.0)

Updates `koin-androidx-compose` from 3.2.2 to 3.3.0
- [Release notes](https://github.com/InsertKoinIO/koin/releases)
- [Changelog](https://github.com/InsertKoinIO/koin/blob/main/CHANGELOG.md)
- [Commits](InsertKoinIO/koin@3.2.2...core-3.3.0)

---
updated-dependencies:
- dependency-name: io.insert-koin:koin-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.insert-koin:koin-android
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.insert-koin:koin-androidx-compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 19, 2022
@dependabot dependabot bot requested a review from ariefzuhri December 19, 2022 05:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants