Skip to content

Update neo4j.version to v3.2.39

shepard bot requested to merge renovate/neo4j.version into master

This MR contains the following updates:

Package Change Age Adoption Passing Confidence
org.neo4j:neo4j-ogm-bolt-native-types (source) 3.2.38 -> 3.2.39 age adoption passing confidence
org.neo4j:neo4j-ogm-core (source) 3.2.38 -> 3.2.39 age adoption passing confidence

Release Notes

neo4j/neo4j-ogm

v3.2.39

Compare Source

  • Allow for classes to be registered dynamically with DomainInfo.
  • Introduce simple DTO mapping.
  • Fix testing with local instance.
  • Check both index and classpath for known entities
  • Introduce equals/hashCode for Class/FieldInfo.
  • Make use of driver provider in test.
  • Add this branch to GH workflow.
  • Allow dynamic user and database selection.

Dynamic user and database selection works over Bolt only, make sure you have included the right version of the underlying Neo4j-Java-Driver. It might be that you need to pin it in addition to the OGM dependencies. Configuration should work along these lines:

Configuration ogmConfiguration = new Configuration.Builder()
    .uri("neo4j://yourInstance:7687")
    .credentials("neo4j", "verysecret")
    // In case you need this
    // .databaseSelectionProvider(() -> DatabaseSelection.select("anotherDatabase"))
    // Can also be something that picks the data from a JWT, whatever
    .userSelectionProvider(() -> UserSelection.impersonate("theImposter"))
    // Anything else you need
    .build();

SessionFactory sessionFactory = new SessionFactory(ogmConfiguration, "your.packages");

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 MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this MR and you won't be reminded about these updates again.


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

This MR has been generated by Renovate Bot.

Merge request reports

Loading