You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Core library: Configuration now uses bulkWriteOptions instead of of collectionInsertManyOptions:
Before
After
exportinterfaceSeederConfig{database: SeederDatabaseConfig;// (...)mongoClientOptions?: MongoClientOptions;// CollectionInsertManyOptions was a type from the "mongodb" packagecollectionInsertManyOptions?: CollectionInsertManyOptions;}
exportinterfaceSeederConfig{database: SeederDatabaseConfig;// (...)mongoClientOptions?: MongoClientOptions;// BulkWriteOptions is a type from the "mongodb" packagebulkWriteOptions?: BulkWriteOptions;
Core library: Errors from underlying Mongo Seeding dependencies are no longer wrapped with the MongoSeedingError one.
Docker image: All previous images has been migrated to the ghcr.io repository. Upcoming ones won't be pushed to the docker.io repository anymore. From now one, use ghcr.io/pkosiec/mongo-seeding:{versionNumber}!
🚀 Enhancements
#214 Rework merging DB connection configuration (@pkosiec)