npm mongo-seeding-cli 3.8.0-alpha.0
v.3.8.0-alpha.0

latest releases: 4.0.0, 4.0.0-alpha.0
12 months ago

💥 Breaking Changes

  • Core library: Configuration now uses bulkWriteOptions instead of of collectionInsertManyOptions:
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

Committers: 1

Don't miss a new mongo-seeding-cli release

NewReleases is sending notifications on new releases.