liquibase-mongodb icon indicating copy to clipboard operation
liquibase-mongodb copied to clipboard

MongoDB extension for Liquibase

Results 45 liquibase-mongodb issues
Sort by recently updated
recently updated
newest added

After executing an insert I need to get the generated id to include it in a later insert It would be possible to create a property with a query and...

Hello there! Is there a plan to have a constructor **new Liquibase(File, Database)** in addition to **Liquibase(String changeLogFile, ResourceAccessor resourceAccessor, Database database)**? This is useful when we are working with...

Hello there! Currently I'm facing issue to use **liquibase-core V 4.8.0** & **liquibase-mongodb V 4.8.0** with **Spring Boot V 2.6.3** as following screenshot: ![image](https://user-images.githubusercontent.com/19582007/155508221-9ac8d7c7-b809-4ca4-a0bf-54c0f7586e47.png) Here is the code: ![image](https://user-images.githubusercontent.com/19582007/155508286-37242844-b977-4ef2-a917-9c754709fc6e.png) But...

I'm building a docker container with liquibase-mongodb and run test changelogs on empty mongodb: * [changelog-create-index](https://github.com/liquibase/liquibase-mongodb/blob/main/src/test/resources/liquibase/ext/changelog.create-index.test.xml) **failed** * [changelog-insert-many](https://github.com/liquibase/liquibase-mongodb/blob/main/src/test/resources/liquibase/ext/changelog.insert-many.test.xml) **passed** Index creation was failed with the exception: ``` Caused by:...

For example insertOne with { "id": "1",, "updatedDate1": ISODate("2021-06-01T19:06:40Z") "updatedDate2": ISODate("2022-02-22T22:02:22Z") } I want to update "updatedDate1" with the value of "updatedDate2". Expected result { "id": "1",, "updatedDate1": ISODate("2022-02-22T22:02:22Z") "updatedDate2":...

After testing the [executeCommand](https://docs.liquibase.com/change-types/community/execute-command.html) change type, it appears that the change set containing the executeCommand change type fails. Steps to reproduce: Create a changeset with the executeCommand change type. Example:...

MongoDB has introduced a new serverless offering. When the dns is queried it returns a TXT record containing `authSource=admin&loadBalanced=true` The loadBalanced parameter is unique to serverless so drivers that have...

liquibase-mongodb -> 4.5.0 rule validations are not created. example of a databaseChangeLog: { "databaseChangeLog": [ { "changeSet": { "id": "1", "author": "author", "preConditions": [ { "onFail": "WARN" }, { "documentExists":...

getting below error: Caused by: liquibase.exception.CommandExecutionException: java.lang.ClassCastException: class liquibase.ext.mongodb.database.MongoConnection cannot be cast to class liquibase.database.jvm.JdbcConnection (liquibase.ext.mongodb.database.MongoConnection and liquibase.database.jvm.JdbcConnection are in unnamed module of loader 'app')