Skip to content

fix(deps): update io.objectbox to v5.4.1#1001

Merged
renovate[bot] merged 1 commit into
developfrom
renovate/io.objectbox
May 28, 2026
Merged

fix(deps): update io.objectbox to v5.4.1#1001
renovate[bot] merged 1 commit into
developfrom
renovate/io.objectbox

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 14, 2026

This PR contains the following updates:

Package Change Age Confidence
io.objectbox:objectbox-gradle-plugin (source) 5.2.05.4.1 age confidence
io.objectbox:objectbox-processor (source) 5.2.05.4.1 age confidence
io.objectbox:objectbox-android (source) 5.2.05.4.1 age confidence

Warning

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


Release Notes

objectbox/objectbox-java (io.objectbox:objectbox-android)

v5.4.1

  • Update Android and JVM libraries to database version 5.3.1-2026-03-26
Sync
  • Critical fix for sync clock property handling

v5.4.0

  • Update Android and JVM libraries to database version 5.3.0-2026-03-23
  • Admin: Status tab "Count and Sizes" and "System and Info" improved
Sync
  • Conflict resolution via the new annotations @SyncClock and @SyncPrecedence (allows last win with custom conflict
    resolution)
  • Fix bad Sync client state after multiple full sync messages were interrupted
  • Fix adding indexes to Sync types

v5.3.0

  • Gradle plugin: to apply the plugin, it is no longer necessary to add a manual mapping of the plugin ID in your
    projects Gradle settings file. This was resolved by publishing Gradle plugin marker artifacts.
    #​960
  • Gradle plugin: it is no longer necessary to apply the plugin after the dependencies block when manually including
    ObjectBox dependencies.
  • Update database libraries for Android and JVM to database version 5.2.0-next-2026-03-10
  • (Minor) performance improvements of HNSW vector search on Linux ARM targets
Sync
  • Sync protocol version 10
  • SyncClient: support updating filter variables. After login, stage updates using put and remove, then schedule to send
    them to the server with applyFilterVariables().
  • Update client sync filters variables when online
  • Clients report errors to the server
Migration instructions
Drop the Gradle plugin ID mapping

If your settings.gradle.kts or settings.gradle file contains lines similar to:

pluginManagement {
    repositories {
        mavenCentral()
    }
    
    resolutionStrategy {
        eachPlugin {
            if (requested.id.id == "io.objectbox") {
                useModule("io.objectbox:objectbox-gradle-plugin:${requested.version}")
            }
        }
    }
}

Update them to remove the plugin mapping configuration:

pluginManagement {
    repositories {
        mavenCentral()
    }
}
Apply the plugin using plugins syntax

If your build scripts are applying the plugin after the dependencies block similar to:

dependencies {
    // ...  
} 

apply(plugin = "io.objectbox")

Change them to apply the plugin using plugins syntax:

plugins {
    id("io.objectbox")
}

dependencies {
    // ...  
}

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every weekend"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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

🔕 Ignore: Close this PR and you won't be reminded about these updates 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 enabled auto-merge (squash) March 14, 2026 15:06
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Auto approved automated PR

@github-actions github-actions Bot added the dependencies Pull requests that update a dependency file label Mar 14, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 72e97b1 to 4898a45 Compare March 24, 2026 16:29
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.3.0 fix(deps): update io.objectbox to v5.4.0 Mar 24, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 4898a45 to a489cf6 Compare March 27, 2026 01:46
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.0 fix(deps): update io.objectbox Mar 27, 2026
@renovate renovate Bot changed the title fix(deps): update io.objectbox fix(deps): update io.objectbox to v5.4.1 Mar 27, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from a489cf6 to eba0e03 Compare May 5, 2026 19:13
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.1 fix(deps): update io.objectbox to v5.4.2 May 5, 2026
@codacy-production
Copy link
Copy Markdown

codacy-production Bot commented May 5, 2026

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@renovate renovate Bot force-pushed the renovate/io.objectbox branch from eba0e03 to 8288c4f Compare May 12, 2026 17:54
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.2 fix(deps): update io.objectbox to v5.4.1 May 12, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 8288c4f to dc4fbd0 Compare May 13, 2026 19:45
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.1 fix(deps): update io.objectbox to v5.4.2 May 13, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from dc4fbd0 to 313dbe3 Compare May 16, 2026 07:58
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.2 fix(deps): update io.objectbox to v5.4.1 May 16, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 313dbe3 to 3acdc80 Compare May 16, 2026 09:41
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.1 fix(deps): update io.objectbox to v5.4.2 May 16, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 3acdc80 to 27faf50 Compare May 18, 2026 14:56
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.2 fix(deps): update io.objectbox to v5.4.1 May 18, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 27faf50 to 79c2f27 Compare May 18, 2026 22:08
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.1 fix(deps): update io.objectbox to v5.4.2 May 18, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 79c2f27 to 491cc7c Compare May 22, 2026 20:43
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.2 fix(deps): update io.objectbox to v5.4.1 May 22, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 491cc7c to cd4a944 Compare May 23, 2026 01:53
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.1 fix(deps): update io.objectbox to v5.4.2 May 23, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from cd4a944 to b250236 Compare May 28, 2026 16:09
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.2 fix(deps): update io.objectbox to v5.4.1 May 28, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from b250236 to 69aae1f Compare May 28, 2026 20:37
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.1 fix(deps): update io.objectbox to v5.4.2 May 28, 2026
@renovate renovate Bot force-pushed the renovate/io.objectbox branch from 69aae1f to e27c0a7 Compare May 28, 2026 21:39
@renovate renovate Bot changed the title fix(deps): update io.objectbox to v5.4.2 fix(deps): update io.objectbox to v5.4.1 May 28, 2026
@renovate renovate Bot merged commit 959482f into develop May 28, 2026
10 checks passed
@renovate renovate Bot deleted the renovate/io.objectbox branch May 28, 2026 21:43
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