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

Update dependency io.realm.kotlin:library-base to v1.16.0 #18

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 10, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.realm.kotlin:library-base (source) 1.9.0 -> 1.16.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

realm/realm-kotlin (io.realm.kotlin:library-base)

v1.16.0

[!NOTE]
This release will bump the Realm file format from version 23 to 24. Opening a file with an older format will automatically upgrade it from file format v10. If you want to upgrade from an earlier file format version you will have to use Realm Kotlin v1.13.1 or earlier. Downgrading to a previous file format is not possible.

Breaking changes
  • None.
Enhancements
  • Add support for changing the App Services base URL. It allows to roam between Atlas and Edge Server. Changing the url would trigger a client reset. (Issue #​1659/RKOTLIN-1013)
Fixed
  • Fixed a bug when running a IN query (or a query of the pattern x == 1 OR x == 2 OR x == 3) when evaluating on a string property with an empty string in the search condition. Matches with an empty string would have been evaluated as if searching for a null string instead. (Core issue realm/realm-core#7628 since Core v10.0.0-beta.9)
  • Fixed several issues around encrypted file portability (copying a "bundled" encrypted Realm from one device to another). (Core issues realm/realm-core#7322 and realm/realm-core#7319)
  • Queries using query paths on Mixed values returns inconsistent results (Core issue realm/realm-core#7587, since Core v14.0.0)
  • [Sync] App.allUsers() included logged out users only if they were logged out while the App instance existed. It now always includes all logged out users. (Core issue realm/realm-core#7300)
  • [Sync] Deleting the active user left the active user unset rather than selecting another logged-in user as the active user like logging out and removing users did. (Core issue realm/realm-core#7300)
  • [Sync] Schema initialization could hit an assertion failure if the sync client applied a downloaded changeset while the Realm file was in the process of being opened (Core issue realm/realm-core#7041, since Core v11.4.0).
Known issues
  • Missing initial download progress notification when there is no active downloads. (Issue realm/realm-core#7627, since 1.15.1)
Compatibility
  • File format: Generates Realms with file format v24 (reads and upgrades file format v10 or later).
  • Realm Studio 15.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
  • Minimum R8: 8.0.34.
Internal
  • Updated to Realm Core 14.6.1 commit cde3adb.

v1.15.0

[!NOTE]
This release will bump the Realm file format from version 23 to 24. Opening a file with an older format will automatically upgrade it from file format v10. If you want to upgrade from an earlier file format version you will have to use Realm Kotlin v1.13.1 or earlier. Downgrading to a previous file format is not possible.

Breaking changes
  • If you want to query using @type operation, you must use 'objectlink' to match links to objects. 'object' is reserved for dictionary types.
  • Binary data and String data are now strongly typed for comparisons and queries. This change is especially relevant when querying for a string constant on a RealmAny property, as now only strings will be returned. If searching for Binary data is desired, then that type must be specified by the constant. In RQL the new way to specify a binary constant is to use mixed = bin('xyz') or mixed = binary('xyz'). (Core issue realm/realm-core#6407).
Enhancements
  • Add support for using aggregate operations on RealmAny properties in queries (Core issue realm/realm-core#7398)
  • Property keypath in RQL can be substituted with value given as argument. Use $P<i> in query string. (Core issue realm/realm-core#7033)
  • You can now use query substitution for the @​type argument (Core issue realm/realm-core#7289)
  • Storage of Decimal128 properties has been optimised so that the individual values will take up 0 bits (if all nulls), 32 bits, 64 bits or 128 bits depending on what is needed. (Core issue realm/realm-core#6111)
  • Querying a specific entry in a collection (in particular 'first and 'last') is supported. (Core issue realm/realm-core#4269)
  • Index on list of strings property now supported (Core issue realm/realm-core#7142)
  • Improved performance of RQL (parsed) queries on a non-linked string property using: >, >=, <, <=, operators and fixed behaviour that a null string should be evaulated as less than everything, previously nulls were not matched. (Core issue realm/realm-core#3939.
  • Updated bundled OpenSSL version to 3.2.0 (Core issue realm/realm-core#7303)
  • [Sync] The default base url in AppConfiguration has been updated to point to services.cloud.mongodb.com. See https://www.mongodb.com/docs/atlas/app-services/domain-migration/ for more information. (Issue #​1685)
Fixed
  • Sorting order of strings has changed to use standard unicode codepoint order instead of grouping similar english letters together. A noticeable change will be from "aAbBzZ" to "ABZabz". (Core issue realm/realm-core#2573)
  • @count/@size is now supported for RealmAny properties (Core issue realm/realm-core#7280, since v10.0.0)
  • Fixed equality queries on a RealmAny property with an index possibly returning the wrong result if values of different types happened to have the same StringIndex hash. (Core issue realm/realm-core6407, since v11.0.0-beta.5).
  • If you have more than 8388606 links pointing to one specific object, the program will crash. (Core issue realm/realm-core#6577, since v6.0.0)
  • Query for NULL value in RealmAny<RealmAny> would give wrong results (Core issue [realm/realm-core6748])https://github.com/realm/realm-core/issues/67488), since v10.0.0)
  • Fixed queries like indexed_property == NONE {x} which mistakenly matched on only x instead of not x. This only applies when an indexed property with equality (==, or IN) matches with NONE on a list of one item. If the constant list contained more than one value then it was working correctly. (Core issue realm/realm-core#7777, since v12.5.0)
  • Uploading the changesets recovered during an automatic client reset recovery may lead to 'Bad server version' errors and a new client reset. (Core issue realm/realm-core7279, since v13.24.1)
  • Fixed crash in fulltext index using prefix search with no matches (Core issue realm/realm-core#7309, since v13.18.0)
  • Fix a minor race condition when backing up Realm files before a client reset which could have lead to overwriting an existing file. (Core issue realm/realm-core#7341).
  • Fix opening realm with cached user while offline results in fatal error and session does not retry connection. (Core issue realm/realm-core#7349, since v13.26.0)
  • Fixed conflict resolution bug which may result in an crash when the AddInteger instruction on Mixed properties is merged against updates to a non-integer type (Core issue realm/realm-code#7353)
  • Fix a spurious crash related to opening a Realm on background thread while the process was in the middle of exiting (Core issue realm/realm-core#7420)
Compatibility
  • File format: Generates Realms with file format v24 (reads and upgrades file format v10 or later).
  • Realm Studio 15.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
  • Minimum R8: 8.0.34.
Internal
  • Remove CMake required version.
  • Updated URL to documentation.
  • Refactored to allow compilation with Kotlin 2.0

v1.14.1

Breaking Changes
  • None.
Enhancements
  • Fixes missing binaries files for Windows and Linux platforms when releasing. (Issue #​1671 JIRA)
Fixed
  • None.
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
  • Minimum R8: 8.0.34.
Internal

v1.14.0

Breaking Changes
  • None.
Enhancements
  • The Unpacking of JVM native library will use the current library version instead of a calculated hash for the path. (Issue #​1617).
  • [Sync] Added option to use managed WebSockets via OkHttp instead of Realm's built-in WebSocket client for Sync traffic (Only Android and JVM targets for now). Managed WebSockets offer improved support for proxies and firewalls that require authentication. This feature is currently opt-in and can be enabled by using AppConfiguration.usePlatformNetworking(). Managed WebSockets will become the default in a future version. (PR #​1528).
  • [Sync] AutoClientResetFailed exception now reports as the throwable cause any user exceptions that might occur during a client reset. (Issue #​1580)
Fixed
  • Cache notification callback JNI references at startup to ensure that symbols can be resolved in core callbacks. (Issue #​1577)
  • Using Realm.asFlow() could miss an update if a write was started right after opening the Realm. (Issue #​1582)
  • Guarded analytic errors so that they do not fail user builds.
  • Using keypaths in Flows could sometimes throw java.lang.IllegalStateException: [RLM_ERR_WRONG_THREAD]: Realm accessed from incorrect thread.. (Issue [#​1594][https://github.com/realm/realm-kotlin/pull/1594](https://redirect.github.com/realm/realm-kotlin/pull/1594)4, since 1.13.0)
  • Non-IllegalStateExceptions in a write-block would not cancel transactions, but leave it open. (Issue #​1615).
  • [Sync] NullPointerException while waiting for the synchronization of a subscription set if the client was set in AwaitingMark state. (Issue #​1671 JIRA)
  • Github Action: Snapshot publishing with Github Action. (Issue #​1654 JIRA)
  • Github Action: automate release process to Maven Central. (Issue JIRA)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
  • Minimum R8: 8.0.34.
Internal
  • Update to Ktor 2.3.4.
  • Updated to CMake 3.27.7
  • Updated to Realm Core 13.26.0, commit 5533505.
  • Adding Sync tests via Github Action.
  • Updated to Swig 4.2.0. (Issue GitHub #​1632 JIRA RKOTLIN-1001)

v1.13.0

Breaking Changes
  • None.
Enhancements
  • Support for experimental K2-compilation with kotlin.experimental.tryK2=true. (Issue #​1483)
  • Added support for keypaths in asFlow() methods on objects and queries. This makes it possible to control which properties will trigger change events, including properties on objects below the default nested limit of 4. (Issue #​661)
  • [Sync] Added support for multiplexing sync connections. When enabled, a single
    connection is used per sync user rather than one per synchronized Realm. This
    reduces resource consumption when multiple Realms are opened and will
    typically improve performance. The behavior can be controlled through [AppConfiguration.Builder.enableSessionMultiplexing]. It will be made the default
    in a future release. (Issue #​1578)
  • [Sync] Various sync timeout options can now be configured through AppConfiguration.Builder.syncTimeouts(). (Issue #​971).
Fixed
  • RealmInstant.now used an API (java.time.Clock.systemUTC().instant()) introduced in API 26, current minSDK is 16. (Issue #​1564)
  • Fix compiler crash caused by a change in Kotlin 1.9.20 ((toIrConst moved under common IrUtils)[JetBrains/kotlin@ca8db7d0b83f6dfd6afcea7a5fe7556d38f325d8]). (Issue #​1566)
  • Fix craches caused by posting to a released scheduler. (Issue #​1543)
  • Fix NPE when applying query aggregators on classes annotated with @PersistedName. (Issue 1569)
  • [Sync] Fix crash when syncing data if the log level was set to LogLevel.TRACE or LogLevel.ALL. (Issue #​1560)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
  • Minimum R8: 8.0.34.
Internal
  • Updated to Realm Core 13.24.0, commit e593a5f.

v1.12.0

This release upgrades the Sync metadata in a way that is not compatible with older versions. To downgrade a Sync app from this version, you'll need to manually delete the metadata folder located at $[SYNC-ROOT-DIRECTORY]/mongodb-realm/[APP-ID]/server-utility/metadata/. This will log out all users.

Breaking Changes
  • None.
Enhancements
  • Realm will no longer set the JVM bytecode to 1.8 when applying the Realm plugin. (Issue #​1513)
  • The Realm Gradle Plugin no longer has a dependency on KAPT. (Issue #​1513)
Fixed
  • Realm.getNumberOfActiveVersions now returns the actual number of active versions. (Core issue #​6960)
  • Fixed memory leak on Darwin caused by a reference cycle between resources and the GC cleaner. (Issue #​1530)
  • Fixed memory leaks on the JVM platform, see PR for more information. (Issue #​1526)
  • Removed pin on the initial realm version after opening a Realm. (Issue #​1519)
  • Realm.close() is now idempotent.
  • Fix error in RealmAny.equals that would sometimes return true when comparing RealmAnys wrapping same type but different values. (Issue #​1523)
  • [Sync] If calling a function on App Services that resulted in a redirect, it would only redirect for GET requests. (Issue #​1517)
  • [Sync] Manual client reset on Windows would not trigger correctly when run inside onManualResetFallback. (Issue #​1515)
  • [Sync] ClientResetRequiredException.executeClientReset() now returns a boolean indicating if the manual reset fully succeeded or not. (Issue #​1515)
  • [Sync] If calling a function on App Services that resulted in a redirect, it would only redirect for
    GET requests. (Issue #​1517)
  • [Sync] If calling a function on App Services that resulted in a redirect, it would only redirect for GET requests. (Issue #​1517)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • Updated to Realm Core 13.23.2, commit e6271d7.

v1.11.1

Enhancements
  • None.
Fixed
  • Opening a Realm would crash with No built-in scheduler implementation for this platform on Linux (JVM) and Windows. (Issue #​1502, since 1.11.0)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • None.

v1.11.0

Breaking Changes
  • BaseRealmObject.equals() has changed from being identity-based only (===) to instead return true if two objects come from the same Realm version. This e.g means that reading the same object property twice will now be identical. Note, two Realm objects, even with identical values will not be considered equal if they belong to different versions.
val childA: Child = realm.query<Child>().first().find()!!
val childB: Child = realm.query<Child>().first().find()!!

// This behavior is the same both before 1.11.0 and before
childA === childB // false

// This will return true in 1.11.0 and onwards. Before it will return false
childA == childB

realm.writeBlocking { /* Do a write */ }
val childC = realm.query<Child>().first().find()!!

// This will return false because childA belong to version 1, while childC belong to version 2.
// Override equals/hashCode if value semantics are wanted.
childA == childC
Enhancements
  • Fulltext queries now support prefix search by using the * operator, like description TEXT 'alex*'. (Core issue #​6860)
  • Realm model classes now generate custom toString, equals and hashCode implementations. This makes it possible to compare by object reference across multiple collections. Note that two objects at different versions will not be considered equal, even
    if the content is the same. Custom implementations of these methods will be respected if they are present. (Issue #​1097)
  • Support for performing geospatial queries using the new classes: GeoPoint, GeoCircle, GeoBox, and GeoPolygon. See GeoPoint documentation on how to persist locations. (Issue #​1403)
  • Support for automatic resolution of embedded object constraints during migration through RealmConfiguration.Builder.migration(migration: AutomaticSchemaMigration, resolveEmbeddedObjectConstraints: Boolean). (Issue #​1464
  • [Sync] Add support for customizing authorization headers and adding additional custom headers to all Atlas App service requests with AppConfiguration.Builder.authorizationHeaderName() and AppConfiguration.Builder.addCustomRequestHeader(...). (Issue #​1453)
  • [Sync] Added support for manually triggering a reconnect attempt for Device Sync. This is done through a new App.Sync.reconnect() method. This method is also now called automatically when a mobile device toggles off airplane mode. (Issue #​1479)
Fixed
  • Rare corruption causing 'Invalid streaming format cookie'-exception. Typically following compact, convert or copying to a new file. (Issue #​1440)
  • Compiler error when using Kotlin 1.9.0 and backlinks. (Issue #​1469)
  • Leaking JVMScheduler instances. In certain circumstances, it could lead to a JNI crash. (Issue #​1463)
  • [Sync] Changing a subscriptions query type or query itself will now trigger the WaitForSync.FIRST_TIME behaviour, rather than only checking changes to the name. (Issues #​1466)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • Updated to Realm Core 13.20.0, commit c258e26.

v1.10.2

Breaking Changes
  • None.
Enhancements
  • None.
Fixed
  • RealmInstant could be instantiated with invalid arguments. (Issue #​1443)
  • equals and hashCode on unmanaged RealmList and RealmSet resulted in incorrect values. (Issue #​1454)
  • [Sync] HTTP requests were not logged when the log level was set in RealmLog.level. (Issue #​1456)
  • [Sync] RealmLog.level is set to WARN after creating an App or Realm configuration. (Issue #​1456)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • Updated to Realm Core 13.17.0, commit f1e962c.

v1.10.1

Breaking Changes
  • None.
Enhancements
  • [Sync] Optimized the opening of Flexible Sync Realms when waitForInitialRemoteData is used. (Issue #​1438)
Fixed
  • [Sync] Using SyncConfiguration.waitForInitialRemoteData() would require a network connection, even after opening the realm file for the first time. (Issue #​1439)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • None.

v1.10.0

Breaking Changes
  • Generic arguments have been cleaned up. In a lot of places, BaseRealmObject was accepted as input. This was too broad and could result in runtime exceptions. In those places the argument has been restricted to the correct TypedRealmObject.
Enhancements
  • Loading the native library on Android above API 22 is no longer using Relinker, but now uses the normal System.loadLibrary().
  • Running Android Unit tests on the JVM is now supported instead of throwing java.lang.NullPointerException. This includes both pure Android projects (in the /test directory) and common tests in Multiplatform projects.
  • Support for passing list, sets or iterable arguments to queries with IN-operators, e.g. query<TYPE>("<field> IN $0", listOf(1,2,3)). (Issue #​929)
  • [Sync] Support for RealmQuery.subscribe() and RealmResults.subscribe() as an easy way to create subscriptions in the background while continuing to use the query result. This API is experimental. (Issue #​1363)
  • [Sync] Support for "write-only" objects which can be written to MongoDB time-series collections. This can be useful for e.g. telemetry data. Use this by creating a model classes that inherit from the new AsymmetricRealmObject base class. See this class for more information. (Issue #​1420)
Fixed
  • None
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • Updated to Realm Core 13.15.2, commit b8f3244.
  • Bumped Android Gradle Version to 7.3.1.
  • Add bundle ID sync connection parameter.
  • Enabled profiling for unit test modules.

v1.9.1

Breaking Changes
  • None.
Enhancements
  • None.
Fixed
  • Deleting RealmResults created by by backlinks() would crash with Cannot delete custom Deleteable objects: ObjectBoundRealmResults. (Issue #​1413)
  • Incremental compilation in combination with @PersistedName on model class names could result in schema errors when opening the Realm (Issue #​1401).
  • [Sync] Native crash if a server error was reported while using SyncConfiguration.waitForInitialRemoteData(). (Issue #​1401)
Compatibility
  • File format: Generates Realms with file format v23.
  • Realm Studio 13.0.0 or above is required to open Realms created by this version.
  • This release is compatible with the following Kotlin releases:
  • Minimum Kbson 0.3.0.
  • Minimum Gradle version: 6.8.3.
  • Minimum Android Gradle Plugin version: 4.1.3.
  • Minimum Android SDK: 16.
Internal
  • None.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.5.2 Update dependency io.realm.kotlin:library-base to v1.6.0 Jan 25, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 061c222 to 6ca1a30 Compare January 25, 2023 16:09
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 6ca1a30 to 9abe8e1 Compare February 3, 2023 04:13
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.6.0 Update dependency io.realm.kotlin:library-base to v1.6.1 Feb 3, 2023
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.6.1 Update dependency io.realm.kotlin:library-base to v1.6.2 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 9abe8e1 to 7ee9707 Compare March 16, 2023 06:40
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.6.2 Update dependency io.realm.kotlin:library-base to v1.7.0 Apr 3, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 7ee9707 to cd01e78 Compare April 3, 2023 15:41
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.7.0 Update dependency io.realm.kotlin:library-base to v1.9.0 May 28, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from cd01e78 to adfbc63 Compare May 28, 2023 10:02
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.9.0 Update dependency io.realm.kotlin:library-base to v1.9.1 Jun 8, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from adfbc63 to a9b9480 Compare June 8, 2023 16:00
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from a9b9480 to 1e0c613 Compare June 28, 2023 11:18
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.9.1 Update dependency io.realm.kotlin:library-base to v1.10.0 Jun 28, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 1e0c613 to c76db3c Compare June 28, 2023 19:47
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.10.0 Update dependency io.realm.kotlin:library-base to v1.10.1 Jun 30, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from c76db3c to b01e8b3 Compare June 30, 2023 16:42
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.10.1 Update dependency io.realm.kotlin:library-base to v1.10.2 Jul 22, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from b01e8b3 to 282b7bd Compare July 22, 2023 01:42
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.10.2 Update dependency io.realm.kotlin:library-base to v1.11.0 Sep 2, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 282b7bd to 9c0f325 Compare September 2, 2023 01:16
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.11.0 Update dependency io.realm.kotlin:library-base to v1.11.1 Sep 7, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 9c0f325 to 633e269 Compare September 7, 2023 16:18
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.11.1 Update dependency io.realm.kotlin:library-base to v1.12.0 Nov 2, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 633e269 to 1293863 Compare November 2, 2023 16:10
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.12.0 Update dependency io.realm.kotlin:library-base to v1.13.0 Dec 1, 2023
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 1293863 to 73bda86 Compare December 1, 2023 19:07
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 73bda86 to 0a18d68 Compare March 8, 2024 22:24
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.13.0 Update dependency io.realm.kotlin:library-base to v1.14.0 Mar 8, 2024
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from 0a18d68 to b348416 Compare March 19, 2024 14:22
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.14.0 Update dependency io.realm.kotlin:library-base to v1.14.1 Mar 19, 2024
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from b348416 to bbd1073 Compare April 17, 2024 16:06
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.14.1 Update dependency io.realm.kotlin:library-base to v1.15.0 Apr 17, 2024
@renovate renovate bot force-pushed the renovate/io.realm.kotlin-library-base-1.x branch from bbd1073 to 3002e7a Compare May 2, 2024 02:35
@renovate renovate bot changed the title Update dependency io.realm.kotlin:library-base to v1.15.0 Update dependency io.realm.kotlin:library-base to v1.16.0 May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants