MorphiaRelease Notes
v2.0
A complete re-write from the ground up. ORM based on Fantom Factory's afJson library.
v2.0.4
- New: PickleMode to serialise all fields of an class, except for
@Transient
fields. - Fix: Added a guard against Mongo
getMore()
returning an empty batch.
v2.0.2
- New: Added
connMgr()
anddb()
convenience methods toDatastore
. - Chg: Updated to use afMongo 2.1.
v2.0.0
- New: Everything!
- Chg: IoC support has moved to afMorphiaIoc.
v1.2
v1.2.6
- New:
@Property.defVal
feature - default values are not saved to MongoDB. - Chg: Added advanced (
@NoDoc
)PropertyCache
class to centralise and speed up@Property
searching on entities.
v1.2.4
- New:
Datastore.deleteAll()
convenience method. - Chg: Removed internal references to
DatastoreImpl
soDatastore
may be decoratored. (See upcoming Dirty Cash!)
v1.2.2
- New: Support for optimistic locking via
_version
properties. - New: Mixed inheritance support via
_type
properties. - Chg:
Queries
mixin is now non-const.
v1.2.0
- New: Support for Text Searching!
- New:
Query.toStr()
returns something useful. - Bug: Passing
null
toQueryCriterion.eq()
orQueryCriterion.notEq()
resulted in an NPE.
v1.1
v1.1.2
- Chg:
Query.field()
&QueryExecutor.orderBy()
may now take an actual entity field instance. - Chg: Lists returned from
Datastore.findAll()
are now of the datatype, not Obj. - Chg: Exposed
Converters.get()
. - Chg: Added hook to
ObjConverter
that collects all property fields. - Bug: If using a non-BSON type for ID fields, an Err was thrown after an update if the document hadn't changed.
v1.1.0
- New:
Queries
mixin to ease Query construction. - Chg:
Converter.toMongo()
now takes aType
param as thefantomObj
arg may now be nullable. This allowsnull
Fantom objects to be represented by non-null Mongo objects. (Breaking change.) - Chg: Renamed
@Property.type -> @Property.implType
. (Breaking change.) - Chg: Select methods on
Datastore
may take anull
ID (handy for inlining reads) - as long aschecked
isfalse
! - Chg: Updated to use IoC 3.0.
v1.0
v1.0.10
- Bug:
QueryExecutor.orderByIndex()
always threw an Err. - Bug:
QueryExecutor.limit()
may takenull
.
v1.0.8
- Chg: Map keys are automatically encoded / decoded as unicode escape sequences as MongoDB does not allow characters
$
and.
in keys.
v1.0.6
- New: Added
Datastore.isEmpty()
. - Chg:
MapConverter.makeMap()
now always creates an ordered map. - Bug: Only BSON types could be used for the
_id
field.
v1.0.4
- New:
SimpleConverter
utility class for converting simple serializable types to and fromStr
. - New: Converters for
Depend
,Locale
,MimeType
,Time
,TimeZone
,Unit
,Uuid
,Version
. - Chg: Documented and made public the
Converters
service. - Chg:
Datastore.insert()
now returns the given entity.
v1.0.2
- Bug:
Binary
objects with a generic subtype could not be read from the database as BSON converted them toBuf
objects.
v1.0.0
- New: Introduced the Query Builder API.
- New:
IntSequences
service provides an alternative to unique ObjectIDs. - New: Mongo
Collections
maybe injected in the same manner asDatastore
objects, using the@Inject.type
attribute.
v0.0
v0.0.10
- Chg: Deleted
@DatastoreType
, use@Inject
instead. - Chg: Updated to use IoC 2.0.0 and IoC Config 1.0.16
v0.0.8
- Chg: Updated to use IoC 1.7.6 and IoC Config 1.0.14
v0.0.6
- Chg: Updated to use IoC 1.7.0.
v0.0.4
- Chg:
@Entity
facet is now inherited. - Bug:
Datastore.findOne()
andDatastore.get()
could throw aNullErr
if checked was false.
v0.0.2
- New: Preview Release