💥 Breaking Changes
- Core library: Configuration now uses
bulkWriteOptions
instead of ofcollectionInsertManyOptions
:
Before | After |
export interface SeederConfig {
database: SeederDatabaseConfig;
// (...)
mongoClientOptions?: MongoClientOptions;
// CollectionInsertManyOptions was a type from the "mongodb" package
collectionInsertManyOptions?: CollectionInsertManyOptions;
} |
export interface SeederConfig {
database: SeederDatabaseConfig;
// (...)
mongoClientOptions?: MongoClientOptions;
// BulkWriteOptions is a type from the "mongodb" package
bulkWriteOptions?: BulkWriteOptions; |
🚀 Enhancements
🔨 Maintenance
- #210 Update MongoDB driver to v6 and other dependencies (@pkosiec)
- #207 Bump all dependencies (@pkosiec)
- #205 Migrate Docker images to ghcr.io (@pkosiec)
- #204 Migrate to ESLint and run linter on CI (@pkosiec)
- #203 Update MongoDB driver to v5 and all other dependencies (@pkosiec)
- #201 Update dependencies (@pkosiec)
- #198 Update packages and images metadata (@pkosiec)
- #197 Update dependencies (@pkosiec)
Committers: 1
- Pawel Kosiec (@pkosiec)