Releases: seedstack/mongodb-addon
Releases · seedstack/mongodb-addon
v4.0.0
v3.1.3
- [fix] Avoid calling
ensureIndexes()
andensureCaps()
for each datastore instantiation which adds a considerable
overhead in some circumstances. It is now done at application startup and can be controlled with
mongoDb.morphia.ensureCapsAtStartup
andmongoDb.morphia.ensureIndexesAtStartup
config options.
v3.0.3
- [fix] Avoid calling
ensureIndexes()
andensureCaps()
for each datastore instantiation which adds a considerable
overhead in some circumstances. It is now done at application startup and can be controlled with
mongoDb.morphia.ensureCapsAtStartup
andmongoDb.morphia.ensureIndexesAtStartup
config options.
v3.1.2
- [chg] Updated for seed 3.10+
v3.1.1
- [fix] Fix
BaseMorphiaRepository.get(id)
always returning the first document from the collection (ignoring given id).
v3.1.0
- [new] Morphia repository now has the ability to stream results from the database as consumed (using a cursor instead of a list behind the scenes).
- [chg] Update the Morphia module to work with business framework 4.3.0+.
- [chg] Updated Morphia to 1.5.8 (its package has changed to
dev.morphia
, update project code accordingly if necessary).
v3.0.2
v3.0.1
- [fix] During translation of composite specifications (or, and), set the field for each member (avoid "No field has been set" exception).
v3.0.0
- [new] Implements automatic translation of business specifications to Morphia queries.
v2.0.0
- [brk] Update to new configuration system.