Skip to content

v.3.8.0-alpha.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@pkosiec pkosiec released this 02 Oct 20:24
· 8 commits to main since this release

馃挜 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