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 org.jetbrains.kotlinx:kotlinx-serialization-json from 1.1.0 to 1.5.0 #552

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2023

Bumps org.jetbrains.kotlinx:kotlinx-serialization-json from 1.1.0 to 1.5.0.

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's releases.

1.5.0

This release contains all features and bugfixes from 1.5.0-RC plus some experimental features and bugfixes on its own (see below). Kotlin 1.8.10 is used as a default.

HoconEncoder and HoconDecoder interfaces and HOCON-specific serializers

These interfaces work in a way similar to JsonEncoder and JsonDecoder: they allow intercepting (de)serialization process, making writing if custom HOCON-specific serializers easier. New ConfigMemorySizeSerializer and JavaDurationSerializer already make use of them. See more details in the PR. Big thanks to Alexander Mikhailov for contributing this!

Ability to read buffered huge strings in custom Json deserializers

New interface ChunkedDecoder allows you to read huge strings that may not fit in memory by chunks. Currently, this interface is only implemented by Json decoder that works with strings and streams, but we may expand it later, if there's a demand for it. See more details in the PR authored by Alexey Sviridov.

Bugfixes

  • Improve runtime exceptions messages (#2180)
  • Added support for null values for nullable enums in lenient mode (#2176)
  • Prevent class loaders from leaking when using ClassValue cache (#2175)

1.5.0-RC

This is a release candidate for the next version with many new features to try. It uses Kotlin 1.8.0 by default.

Json naming strategies

A long-awaited feature (#33) is available in this release. A new interface, JsonNamingStrategy and Json configuration property namingStrategy allow defining a transformation that is applied to all properties' names serialized by a Json instance. There's also a predefined implementation for the most common use case: Json { namingStrategy = JsonNamingStrategy.SnakeCase }. Check out the PR for more details and documentation.

Json unquoted literals

kotlinx-serialization-json has an API for manipulating raw Json values: functions and classes JsonObject, JsonPrimitive, etc. In this release, there is a new addition to this API: JsonUnquotedLiteral constructor function. It allows to produce a string that is not quoted in the Json output. This function has a lot of valuable applications: from writing unsigned or large numbers to embedding whole Json documents without the need for re-parsing. For an example, read the Encoding literal Json content docs. This huge feature was contributed to us by aSemy: #2041.

Stabilization of serializer(java.lang.Type) function family

Functions serializer, serializerOrNull and extensions SerializersModule.serializer, SerializersModule.serializerOrNull have JVM-only overloads that accept java.lang.Type. These overloads are crucial for interoperability: with them, third-party Java frameworks like Spring, which usually rely on Java's reflection and type tokens, can retrieve KSerializer instance and use kotlinx.serialization properly.

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's changelog.

1.5.0 / 2023-02-27

This release contains all features and bugfixes from 1.5.0-RC plus some experimental features and bugfixes on its own (see below). Kotlin 1.8.10 is used as a default.

HoconEncoder and HoconDecoder interfaces and HOCON-specific serializers

These interfaces work in a way similar to JsonEncoder and JsonDecoder: they allow intercepting (de)serialization process, making writing if custom HOCON-specific serializers easier. New ConfigMemorySizeSerializer and JavaDurationSerializer already make use of them. See more details in the PR. Big thanks to Alexander Mikhailov for contributing this!

Ability to read buffered huge strings in custom Json deserializers

New interface ChunkedDecoder allows you to read huge strings that may not fit in memory by chunks. Currently, this interface is only implemented by Json decoder that works with strings and streams, but we may expand it later, if there's a demand for it. See more details in the PR authored by Alexey Sviridov.

Bugfixes

  • Improve runtime exceptions messages (#2180)
  • Added support for null values for nullable enums in lenient mode (#2176)
  • Prevent class loaders from leaking when using ClassValue cache (#2175)

1.5.0-RC / 2023-01-25

This is a release candidate for the next version with many new features to try. It uses Kotlin 1.8.0 by default.

Json naming strategies

A long-awaited feature (#33) is available in this release. A new interface, JsonNamingStrategy and Json configuration property namingStrategy allow defining a transformation that is applied to all properties' names serialized by a Json instance. There's also a predefined implementation for the most common use case: Json { namingStrategy = JsonNamingStrategy.SnakeCase }. Check out the PR for more details and documentation.

Json unquoted literals

kotlinx-serialization-json has an API for manipulating raw Json values: functions and classes JsonObject, JsonPrimitive, etc. In this release, there is a new addition to this API: JsonUnquotedLiteral constructor function. It allows to produce a string that is not quoted in the Json output. This function has a lot of valuable applications: from writing unsigned or large numbers to embedding whole Json documents without the need for re-parsing. For an example, read the Encoding literal Json content docs. This huge feature was contributed to us by aSemy: #2041.

Stabilization of serializer(java.lang.Type) function family

... (truncated)

Commits
  • 8a2c1c0 Prepare 1.5.0 release (#2207)
  • 88f782c Removed redundant usages of @​Serializer annotations (#2200)
  • e9b9064 ~lower coverage percentage
  • b6e9f4b Merge remote-tracking branch 'origin/master' into dev
  • acb0988 Introduce HoconEncoder and HoconDecoder interfaces (#2094)
  • 90113a9 Added ability to read buffered huge strings in custom KSerializers (#2012)
  • 623dcad Use the same message in intrinsified serializer() and reflective serializer()
  • 270b5e5 Improve message about missing polymorphic serializer
  • 2cb7f7d Added support for null values for nullable enums in lanient mode (#2176)
  • b454f34 Prevent class loaders from leaking when using ClassValue cache (#2175)
  • Additional commits viewable in compare view

Dependabot compatibility score

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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file minor labels Mar 27, 2023
@dependabot dependabot bot requested a review from wax911 March 27, 2023 01:59
@wax911 wax911 removed the minor label Apr 1, 2023
Bumps [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.1.0 to 1.5.0.
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.serialization@v1.1.0...v1.5.0)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@wax911 wax911 force-pushed the dependabot/gradle/develop/org.jetbrains.kotlinx-kotlinx-serialization-json-1.5.0 branch from 6acc203 to a10be50 Compare April 1, 2023 09:15
@wax911 wax911 enabled auto-merge (squash) April 1, 2023 09:16
@wax911 wax911 merged commit 3b44f86 into develop Apr 1, 2023
@wax911 wax911 deleted the dependabot/gradle/develop/org.jetbrains.kotlinx-kotlinx-serialization-json-1.5.0 branch April 1, 2023 09:21
wax911 added a commit that referenced this pull request Jan 27, 2024
* Release/1.10.0 (#517)

* Bump version from [1.9.12 to 1.10.0]

* Add "TRENDING MANGA" tab to What's Trending page

Also rename "BEING WATCHED" to "TRENDING ANIME" so that it fits better.

Closes: #512

* Add long press to copy URL in media stats fragment

Closes: #513

* Update .idea

* Update changelog

---------

Co-authored-by: LuK1337 <[email protected]>

* Update workflows (#519)

* Refactor/architecture improvement (#533)

* Minor improvements to simplify/automate architectural changes

* Update PULL_REQUEST_TEMPLATE.md

* Add version name and code generator for BuildConfig

* Bump com.google.firebase:firebase-crashlytics-gradle from 2.9.1 to 2.9.4 (#531)

Bumps com.google.firebase:firebase-crashlytics-gradle from 2.9.1 to 2.9.4.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics-gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androix-lifecycle from 2.5.1 to 2.6.0

Bumps `androix-lifecycle` from 2.5.1 to 2.6.0.

Updates `androidx.lifecycle:lifecycle-runtime-ktx` from 2.5.1 to 2.6.0

Updates `androidx.lifecycle:lifecycle-livedata-ktx` from 2.5.1 to 2.6.0

Updates `androidx.lifecycle:lifecycle-viewmodel-ktx` from 2.5.1 to 2.6.0

Updates `androidx.lifecycle:lifecycle-livedata-core-ktx` from 2.5.1 to 2.6.0

---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.lifecycle:lifecycle-livedata-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.lifecycle:lifecycle-livedata-core-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump androidx-test-ext from 1.1.4 to 1.1.5

Bumps `androidx-test-ext` from 1.1.4 to 1.1.5.

Updates `androidx.test.ext:junit` from 1.1.4 to 1.1.5

Updates `androidx.test.ext:junit-ktx` from 1.1.4 to 1.1.5

---
updated-dependencies:
- dependency-name: androidx.test.ext:junit
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.test.ext:junit-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump bumptech-glide from 4.12.0 to 4.15.0

Bumps `bumptech-glide` from 4.12.0 to 4.15.0.

Updates `com.github.bumptech.glide:glide` from 4.12.0 to 4.15.0
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](https://github.com/bumptech/glide/compare/v4.12.0...v4.15.0)

Updates `com.github.bumptech.glide:compiler` from 4.12.0 to 4.15.0
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](https://github.com/bumptech/glide/compare/v4.12.0...v4.15.0)

---
updated-dependencies:
- dependency-name: com.github.bumptech.glide:glide
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: com.github.bumptech.glide:compiler
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump com.google.android.material:material from 1.7.0 to 1.8.0

Bumps [com.google.android.material:material](https://github.com/material-components/material-components-android) from 1.7.0 to 1.8.0.
- [Release notes](https://github.com/material-components/material-components-android/releases)
- [Commits](https://github.com/material-components/material-components-android/compare/1.7.0...1.8.0)

---
updated-dependencies:
- dependency-name: com.google.android.material:material
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump com.google.gms:google-services from 4.3.13 to 4.3.15

Bumps com.google.gms:google-services from 4.3.13 to 4.3.15.

---
updated-dependencies:
- dependency-name: com.google.gms:google-services
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump io-objectbox from 2.9.1 to 3.5.1

Bumps `io-objectbox` from 2.9.1 to 3.5.1.

Updates `io.objectbox:objectbox-android` from 2.9.1 to 3.5.1
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V2.9.1...V3.5.1)

Updates `io.objectbox:objectbox-processor` from 2.9.1 to 3.5.1
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V2.9.1...V3.5.1)

Updates `io.objectbox:objectbox-gradle-plugin` from 2.9.1 to 3.5.1
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V2.9.1...V3.5.1)

---
updated-dependencies:
- dependency-name: io.objectbox:objectbox-android
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.objectbox:objectbox-processor
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: io.objectbox:objectbox-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump androidx.activity:activity-ktx from 1.6.0 to 1.6.1

Bumps androidx.activity:activity-ktx from 1.6.0 to 1.6.1.

---
updated-dependencies:
- dependency-name: androidx.activity:activity-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump androidx-fragment from 1.5.3 to 1.5.5 (#523)

Bumps `androidx-fragment` from 1.5.3 to 1.5.5.

Updates `androidx.fragment:fragment-ktx` from 1.5.3 to 1.5.5

Updates `androidx.fragment:fragment-testing` from 1.5.3 to 1.5.5

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Bump com.jakewharton.threetenabp:threetenabp from 1.4.3 to 1.4.4

Bumps [com.jakewharton.threetenabp:threetenabp](https://github.com/JakeWharton/ThreeTenABP) from 1.4.3 to 1.4.4.
- [Release notes](https://github.com/JakeWharton/ThreeTenABP/releases)
- [Changelog](https://github.com/JakeWharton/ThreeTenABP/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/JakeWharton/ThreeTenABP/compare/1.4.3...1.4.4)

---
updated-dependencies:
- dependency-name: com.jakewharton.threetenabp:threetenabp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump cn.jzvd:jiaozivideoplayer from 7.6.0 to 7.7.2.3300

Bumps [cn.jzvd:jiaozivideoplayer](https://github.com/Jzvd/JZVideo) from 7.6.0 to 7.7.2.3300.
- [Release notes](https://github.com/Jzvd/JZVideo/releases)
- [Commits](https://github.com/Jzvd/JZVideo/commits)

---
updated-dependencies:
- dependency-name: cn.jzvd:jiaozivideoplayer
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump com.google.firebase:firebase-crashlytics from 18.2.11 to 18.3.5

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.2.11 to 18.3.5.
- [Release notes](https://github.com/firebase/firebase-android-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump androidx.test.espresso:espresso-core from 3.4.0 to 3.5.1

Bumps androidx.test.espresso:espresso-core from 3.4.0 to 3.5.1.

---
updated-dependencies:
- dependency-name: androidx.test.espresso:espresso-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump io-mockk from 1.13.2 to 1.13.4

Bumps `io-mockk` from 1.13.2 to 1.13.4.

Updates `io.mockk:mockk` from 1.13.2 to 1.13.4
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.2...v1.13.4)

Updates `io.mockk:mockk-android` from 1.13.2 to 1.13.4
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.2...v1.13.4)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.mockk:mockk-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Resolve dependency conflicts (#544)

* Bump com.github.medyo:android-about-page from 1.2.5 to 1.3.1 (#539)

Bumps [com.github.medyo:android-about-page](https://github.com/medyo/android-about-page) from 1.2.5 to 1.3.1.
- [Release notes](https://github.com/medyo/android-about-page/releases)
- [Commits](https://github.com/medyo/android-about-page/commits)

---
updated-dependencies:
- dependency-name: com.github.medyo:android-about-page
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-core from 17.4.4 to 21.1.1

Bumps com.google.firebase:firebase-core from 17.4.4 to 21.1.1.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-core
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump bumptech-glide from 4.15.0 to 4.15.1

Bumps `bumptech-glide` from 4.15.0 to 4.15.1.

Updates `com.github.bumptech.glide:glide` from 4.15.0 to 4.15.1
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](https://github.com/bumptech/glide/compare/v4.15.0...v4.15.1)

Updates `com.github.bumptech.glide:compiler` from 4.15.0 to 4.15.1
- [Release notes](https://github.com/bumptech/glide/releases)
- [Commits](https://github.com/bumptech/glide/compare/v4.15.0...v4.15.1)

---
updated-dependencies:
- dependency-name: com.github.bumptech.glide:glide
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.github.bumptech.glide:compiler
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump uk.co.samuelwall:material-tap-target-prompt from 3.1.0 to 3.3.2 (#541)

Bumps [uk.co.samuelwall:material-tap-target-prompt](https://github.com/sjwall/MaterialTapTargetPrompt) from 3.1.0 to 3.3.2.
- [Release notes](https://github.com/sjwall/MaterialTapTargetPrompt/releases)
- [Changelog](https://github.com/sjwall/MaterialTapTargetPrompt/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sjwall/MaterialTapTargetPrompt/compare/v3.1.0...v3.3.2)

---
updated-dependencies:
- dependency-name: uk.co.samuelwall:material-tap-target-prompt
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Initial draft bumping min version and updating workflows (#545)

* Update README.md

* Remove .vscode

* Bump com.google.firebase:firebase-analytics-ktx from 18.0.2 to 21.2.0 (#521)

Bumps com.google.firebase:firebase-analytics-ktx from 18.0.2 to 21.2.0.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-analytics-ktx
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Update packaging options

* Bump androix-lifecycle from 2.6.0 to 2.6.1 (#546)

Bumps `androix-lifecycle` from 2.6.0 to 2.6.1.

Updates `androidx.lifecycle:lifecycle-runtime-ktx` from 2.6.0 to 2.6.1

Updates `androidx.lifecycle:lifecycle-livedata-ktx` from 2.6.0 to 2.6.1

Updates `androidx.lifecycle:lifecycle-viewmodel-ktx` from 2.6.0 to 2.6.1

Updates `androidx.lifecycle:lifecycle-livedata-core-ktx` from 2.6.0 to 2.6.1

---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.lifecycle:lifecycle-livedata-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.lifecycle:lifecycle-livedata-core-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-analytics-ktx from 21.2.0 to 21.2.1 (#548)

Bumps com.google.firebase:firebase-analytics-ktx from 21.2.0 to 21.2.1.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-analytics-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump org.greenrobot:eventbus from 3.2.0 to 3.3.1 (#551)

Bumps [org.greenrobot:eventbus](https://github.com/greenrobot/EventBus) from 3.2.0 to 3.3.1.
- [Release notes](https://github.com/greenrobot/EventBus/releases)
- [Commits](https://github.com/greenrobot/EventBus/compare/V3.2.0...V3.3.1)

---
updated-dependencies:
- dependency-name: org.greenrobot:eventbus
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx.activity:activity-ktx from 1.6.1 to 1.7.0 (#553)

Bumps androidx.activity:activity-ktx from 1.6.1 to 1.7.0.

---
updated-dependencies:
- dependency-name: androidx.activity:activity-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx-fragment from 1.5.5 to 1.5.6 (#550)

Bumps `androidx-fragment` from 1.5.5 to 1.5.6.

Updates `androidx.fragment:fragment-ktx` from 1.5.5 to 1.5.6

Updates `androidx.fragment:fragment-testing` from 1.5.5 to 1.5.6

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Bump com.google.firebase:firebase-crashlytics from 18.3.5 to 18.3.6 (#549)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.3.5 to 18.3.6.
- [Release notes](https://github.com/firebase/firebase-android-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Bump org.jetbrains.kotlinx:kotlinx-serialization-json (#552)

Bumps [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.1.0 to 1.5.0.
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.1.0...v1.5.0)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.jakewharton.threetenabp:threetenabp from 1.4.4 to 1.4.6 (#555)

Bumps [com.jakewharton.threetenabp:threetenabp](https://github.com/JakeWharton/ThreeTenABP) from 1.4.4 to 1.4.6.
- [Release notes](https://github.com/JakeWharton/ThreeTenABP/releases)
- [Changelog](https://github.com/JakeWharton/ThreeTenABP/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/JakeWharton/ThreeTenABP/compare/1.4.4...1.4.6)

---
updated-dependencies:
- dependency-name: com.jakewharton.threetenabp:threetenabp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump app.cash.turbine:turbine from 0.12.1 to 0.12.3 (#556)

Bumps [app.cash.turbine:turbine](https://github.com/cashapp/turbine) from 0.12.1 to 0.12.3.
- [Release notes](https://github.com/cashapp/turbine/releases)
- [Changelog](https://github.com/cashapp/turbine/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/cashapp/turbine/compare/0.12.1...0.12.3)

---
updated-dependencies:
- dependency-name: app.cash.turbine:turbine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add remaining media related keys to notification builder (#557)

* refactor/buildSrc module name correction (#558)

* Correct buildSrc module module name type

* Update version.json

* Remove dangling import

* Bump androidx.core:core-ktx from 1.9.0 to 1.10.0 (#559)

Bumps androidx.core:core-ktx from 1.9.0 to 1.10.0.

---
updated-dependencies:
- dependency-name: androidx.core:core-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-analytics-ktx from 21.2.1 to 21.2.2 (#560)

Bumps com.google.firebase:firebase-analytics-ktx from 21.2.1 to 21.2.2.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-analytics-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics-gradle from 2.9.4 to 2.9.5 (#561)

Bumps com.google.firebase:firebase-crashlytics-gradle from 2.9.4 to 2.9.5.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics-gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump io-mockk from 1.13.4 to 1.13.5 (#563)

Bumps `io-mockk` from 1.13.4 to 1.13.5.

Updates `io.mockk:mockk` from 1.13.4 to 1.13.5
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/v1.13.4...1.13.5)

Updates `io.mockk:mockk-android` from 1.13.4 to 1.13.5
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/v1.13.4...1.13.5)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.mockk:mockk-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx-fragment from 1.5.6 to 1.5.7 (#564)

Bumps `androidx-fragment` from 1.5.6 to 1.5.7.

Updates `androidx.fragment:fragment-ktx` from 1.5.6 to 1.5.7

Updates `androidx.fragment:fragment-testing` from 1.5.6 to 1.5.7

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx.activity:activity-ktx from 1.7.0 to 1.7.1 (#565)

Bumps androidx.activity:activity-ktx from 1.7.0 to 1.7.1.

---
updated-dependencies:
- dependency-name: androidx.activity:activity-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics from 18.3.6 to 18.3.7 (#568)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.3.6 to 18.3.7.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.android.material:material from 1.8.0 to 1.9.0 (#569)

Bumps [com.google.android.material:material](https://github.com/material-components/material-components-android) from 1.8.0 to 1.9.0.
- [Release notes](https://github.com/material-components/material-components-android/releases)
- [Commits](https://github.com/material-components/material-components-android/compare/1.8.0...1.9.0)

---
updated-dependencies:
- dependency-name: com.google.android.material:material
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jetbrains-kotlinx-coroutines from 1.6.4 to 1.7.1 (#572)

Bumps `jetbrains-kotlinx-coroutines` from 1.6.4 to 1.7.1.

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.6.4 to 1.7.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.4...1.7.1)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.6.4 to 1.7.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.4...1.7.1)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-test` from 1.6.4 to 1.7.1
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.4...1.7.1)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump app.cash.turbine:turbine from 0.12.3 to 0.13.0

Bumps [app.cash.turbine:turbine](https://github.com/cashapp/turbine) from 0.12.3 to 0.13.0.
- [Release notes](https://github.com/cashapp/turbine/releases)
- [Changelog](https://github.com/cashapp/turbine/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/cashapp/turbine/compare/0.12.3...0.13.0)

---
updated-dependencies:
- dependency-name: app.cash.turbine:turbine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump androidx.core:core-ktx from 1.10.0 to 1.10.1

Bumps androidx.core:core-ktx from 1.10.0 to 1.10.1.

---
updated-dependencies:
- dependency-name: androidx.core:core-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump org.jetbrains.kotlinx:kotlinx-serialization-json (#574)

Bumps [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) from 1.5.0 to 1.5.1.
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.5.0...v1.5.1)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Bump io-objectbox from 3.5.1 to 3.6.0 (#575)

Bumps `io-objectbox` from 3.5.1 to 3.6.0.

Updates `io.objectbox:objectbox-android` from 3.5.1 to 3.6.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.5.1...V3.6.0)

Updates `io.objectbox:objectbox-processor` from 3.5.1 to 3.6.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.5.1...V3.6.0)

Updates `io.objectbox:objectbox-gradle-plugin` from 3.5.1 to 3.6.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.5.1...V3.6.0)

---
updated-dependencies:
- dependency-name: io.objectbox:objectbox-android
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.objectbox:objectbox-processor
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.objectbox:objectbox-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-analytics-ktx from 21.2.2 to 21.3.0 (#576)

Bumps com.google.firebase:firebase-analytics-ktx from 21.2.2 to 21.3.0.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-analytics-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx.activity:activity-ktx from 1.7.1 to 1.7.2 (#577)

Bumps androidx.activity:activity-ktx from 1.7.1 to 1.7.2.

---
updated-dependencies:
- dependency-name: androidx.activity:activity-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx-fragment from 1.5.7 to 1.6.0 (#580)

Bumps `androidx-fragment` from 1.5.7 to 1.6.0.

Updates `androidx.fragment:fragment-ktx` from 1.5.7 to 1.6.0

Updates `androidx.fragment:fragment-testing` from 1.5.7 to 1.6.0

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics-gradle from 2.9.5 to 2.9.6 (#581)

Bumps com.google.firebase:firebase-crashlytics-gradle from 2.9.5 to 2.9.6.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics-gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump app.cash.turbine:turbine from 0.13.0 to 1.0.0 (#582)

Bumps [app.cash.turbine:turbine](https://github.com/cashapp/turbine) from 0.13.0 to 1.0.0.
- [Release notes](https://github.com/cashapp/turbine/releases)
- [Changelog](https://github.com/cashapp/turbine/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/cashapp/turbine/compare/0.13.0...1.0.0)

---
updated-dependencies:
- dependency-name: app.cash.turbine:turbine
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump jetbrains-kotlinx-coroutines from 1.7.1 to 1.7.2 (#583)

Bumps `jetbrains-kotlinx-coroutines` from 1.7.1 to 1.7.2.

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.1...1.7.2)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.1...1.7.2)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-test` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.1...1.7.2)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics-gradle from 2.9.6 to 2.9.7 (#585)

Bumps com.google.firebase:firebase-crashlytics-gradle from 2.9.6 to 2.9.7.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics-gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics from 18.3.7 to 18.4.0 (#586)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.3.7 to 18.4.0.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Bump jetbrains-kotlinx-coroutines from 1.7.2 to 1.7.3 (#589)

Bumps `jetbrains-kotlinx-coroutines` from 1.7.2 to 1.7.3.

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.2...1.7.3)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.2...1.7.3)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-test` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.7.2...1.7.3)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx-fragment from 1.6.0 to 1.6.1 (#587)

Bumps `androidx-fragment` from 1.6.0 to 1.6.1.

Updates `androidx.fragment:fragment-ktx` from 1.6.0 to 1.6.1

Updates `androidx.fragment:fragment-testing` from 1.6.0 to 1.6.1

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update release-drafter-config.yml

* Update application icon (#592)

* Release 1.11.0 (#593)

* Bump com.google.firebase:firebase-crashlytics-gradle from 2.9.7 to 2.9.8 (#594)

Bumps com.google.firebase:firebase-crashlytics-gradle from 2.9.7 to 2.9.8.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics-gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx-preference from 1.2.0 to 1.2.1 (#595)

Bumps `androidx-preference` from 1.2.0 to 1.2.1.

Updates `androidx.preference:preference` from 1.2.0 to 1.2.1

Updates `androidx.preference:preference-ktx` from 1.2.0 to 1.2.1

---
updated-dependencies:
- dependency-name: androidx.preference:preference
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.preference:preference-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump io-mockk from 1.13.5 to 1.13.7 (#596)

Bumps `io-mockk` from 1.13.5 to 1.13.7.

Updates `io.mockk:mockk` from 1.13.5 to 1.13.7
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.5...1.13.7)

Updates `io.mockk:mockk-android` from 1.13.5 to 1.13.7
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.5...1.13.7)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.mockk:mockk-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics-gradle from 2.9.8 to 2.9.9 (#598)

Bumps com.google.firebase:firebase-crashlytics-gradle from 2.9.8 to 2.9.9.

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics-gradle
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump io-objectbox from 3.6.0 to 3.7.0 (#601)

Bumps `io-objectbox` from 3.6.0 to 3.7.0.

Updates `io.objectbox:objectbox-android` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.6.0...V3.7.0)

Updates `io.objectbox:objectbox-processor` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.6.0...V3.7.0)

Updates `io.objectbox:objectbox-gradle-plugin` from 3.6.0 to 3.7.0
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.6.0...V3.7.0)

---
updated-dependencies:
- dependency-name: io.objectbox:objectbox-android
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.objectbox:objectbox-processor
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.objectbox:objectbox-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics from 18.4.0 to 18.4.1 (#599)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.4.0 to 18.4.1.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Maxwell Mapako <[email protected]>

* Bump androix-lifecycle from 2.6.1 to 2.6.2 (#605)

Bumps `androix-lifecycle` from 2.6.1 to 2.6.2.

Updates `androidx.lifecycle:lifecycle-runtime-ktx` from 2.6.1 to 2.6.2

Updates `androidx.lifecycle:lifecycle-livedata-ktx` from 2.6.1 to 2.6.2

Updates `androidx.lifecycle:lifecycle-viewmodel-ktx` from 2.6.1 to 2.6.2

Updates `androidx.lifecycle:lifecycle-livedata-core-ktx` from 2.6.1 to 2.6.2

---
updated-dependencies:
- dependency-name: androidx.lifecycle:lifecycle-runtime-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.lifecycle:lifecycle-livedata-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.lifecycle:lifecycle-viewmodel-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.lifecycle:lifecycle-livedata-core-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.gms:google-services from 4.3.15 to 4.4.0 (#608)

Bumps com.google.gms:google-services from 4.3.15 to 4.4.0.

---
updated-dependencies:
- dependency-name: com.google.gms:google-services
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics from 18.4.1 to 18.4.3 (#607)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.4.1 to 18.4.3.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump io-mockk from 1.13.7 to 1.13.8 (#609)

Bumps `io-mockk` from 1.13.7 to 1.13.8.

Updates `io.mockk:mockk` from 1.13.7 to 1.13.8
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.7...1.13.8)

Updates `io.mockk:mockk-android` from 1.13.7 to 1.13.8
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/compare/1.13.7...1.13.8)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.mockk:mockk-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx.collection:collection-ktx from 1.2.0 to 1.3.0 (#612)

Bumps androidx.collection:collection-ktx from 1.2.0 to 1.3.0.

---
updated-dependencies:
- dependency-name: androidx.collection:collection-ktx
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics from 18.4.3 to 18.5.0 (#614)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.4.3 to 18.5.0.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump androidx-fragment from 1.6.1 to 1.6.2 (#617)

Bumps `androidx-fragment` from 1.6.1 to 1.6.2.

Updates `androidx.fragment:fragment-ktx` from 1.6.1 to 1.6.2

Updates `androidx.fragment:fragment-testing` from 1.6.1 to 1.6.2

---
updated-dependencies:
- dependency-name: androidx.fragment:fragment-ktx
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: androidx.fragment:fragment-testing
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump com.google.firebase:firebase-crashlytics from 18.5.0 to 18.6.0 (#623)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.5.0 to 18.6.0.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump io-objectbox from 3.7.0 to 3.7.1 (#625)

Bumps `io-objectbox` from 3.7.0 to 3.7.1.

Updates `io.objectbox:objectbox-android` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.7.0...V3.7.1)

Updates `io.objectbox:objectbox-processor` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.7.0...V3.7.1)

Updates `io.objectbox:objectbox-gradle-plugin` from 3.7.0 to 3.7.1
- [Release notes](https://github.com/objectbox/objectbox-java/releases)
- [Commits](https://github.com/objectbox/objectbox-java/compare/V3.7.0...V3.7.1)

---
updated-dependencies:
- dependency-name: io.objectbox:objectbox-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.objectbox:objectbox-processor
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.objectbox:objectbox-gradle-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump io-mockk from 1.13.8 to 1.13.9 (#631)

Bumps `io-mockk` from 1.13.8 to 1.13.9.

Updates `io.mockk:mockk` from 1.13.8 to 1.13.9
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/commits)

Updates `io.mockk:mockk-android` from 1.13.8 to 1.13.9
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](https://github.com/mockk/mockk/commits)

---
updated-dependencies:
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: io.mockk:mockk-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: setup fastlane

* Bump com.google.firebase:firebase-crashlytics from 18.6.0 to 18.6.1 (#634)

Bumps [com.google.firebase:firebase-crashlytics](https://github.com/firebase/firebase-android-sdk) from 18.6.0 to 18.6.1.
- [Changelog](https://github.com/firebase/firebase-android-sdk/blob/master/docs/make_release_notes.py)
- [Commits](https://github.com/firebase/firebase-android-sdk/commits)

---
updated-dependencies:
- dependency-name: com.google.firebase:firebase-crashlytics
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore: reduce per paging limit (#635)

* chore: reduce default per paging limit
* chore: reduce pager items and revert back to serial threadpool

* Update android-build.yaml

Bump wait-on-check-action to v1.3.3

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: LuK1337 <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.

1 participant