Oliver Gierke
fb5998fb62
DATAMONGO-1634 - Prepare 1.9.9 (Hopper SR9).
2017-04-19 12:37:52 +02:00
Oliver Gierke
edfd25fbcc
DATAMONGO-1634 - Updated changelog.
2017-04-19 12:37:43 +02:00
Oliver Gierke
325de75b11
DATAMONGO-1633 - Updated changelog.
2017-04-19 11:50:50 +02:00
Oliver Gierke
859d9d5d83
DATAMONGO-1535 - Updated changelog.
2017-04-11 09:07:44 +02:00
Michael J. Simons
8f5091b2d5
DATAMONGO-1662 - Fix classname in reference docs about projections in aggregations.
...
Original pull request: #455 .
2017-04-10 09:12:46 +02:00
Oliver Gierke
ce6193a541
DATAMONGO-1597 - Prepare 1.9.8 (Hopper SR8).
2017-03-02 11:29:33 +01:00
Oliver Gierke
a3c21bf3af
DATAMONGO-1597 - Updated changelog.
2017-03-02 11:29:27 +01:00
Oliver Gierke
850e95946a
DATAMONGO-1598 - Updated changelog.
2017-03-02 11:11:02 +01:00
Oliver Gierke
53eaaa02a0
DATAMONGO-1573 - Prepare 1.9.7 (Hopper SR7).
2017-01-26 11:33:07 +01:00
Oliver Gierke
315b642b3b
DATAMONGO-1573 - Updated changelog.
2017-01-26 11:33:00 +01:00
Oliver Gierke
958752e72f
DATAMONGO-1574 - Updated changelog.
2017-01-26 11:23:29 +01:00
Mark Paluch
a644187131
DATAMONGO-1517 - Add support for Decimal128 BSON type.
...
Support Decimal128 as Mongo simple type if present. Decimal128 is stored as NumberDecimal.
class Person {
String id;
Decimal128 decimal128;
Person(String id, Decimal128 decimal128) {
this.id = id;
this.decimal128 = decimal128;
}
}
mongoTemplate.save(new Person("foo", new Decimal128(new BigDecimal("123.456"))));
is represented as:
{ "_id" : "foo", "decimal128" : NumberDecimal("123.456") }
2017-01-25 16:58:02 +01:00
Mark Paluch
681a4f9855
DATAMONGO-1596 - Fix typo in JavaDoc.
...
Use correct @RelatedDocument annotation in MongoDB cross store reference documentation.
2017-01-25 16:52:54 +01:00
Christoph Strobl
c1ac8767b7
DATAMONGO-1585 - Polishing.
...
Update documentation for better readability in html and pdf format.
Original Pull Request: #433
2017-01-12 10:05:11 +01:00
Mark Paluch
96068eb0e2
DATAMONGO-1585 - Expose synthetic fields in $project aggregation stage.
...
Field projections now expose their fields as synthetic simple fields. Projection aggregation stage redefines the available field set available for later aggregation stages entirely so projected fields are considered synthetic. A simple synthetic field has no target field which causes later aggregation stages to not pick up the underlying target but the exposed field name when rendering aggregation operations to Mongo documents.
The change is motivated by a bug where previously an aggregation consisting of projection of an aliased field and sort caused the sort projection stage to render with the original field name instead of the aliased field. The sort did not apply any sorting since projection redefines the available field set entirely and the original field is no longer accessible.
Original Pull Request: #433
2017-01-12 10:04:19 +01:00
Christoph Strobl
36d2e0942b
DATAMONGO-1576 - Update lifecycle event documentation.
...
Add note on lifecycle event handling for property types.
2017-01-11 13:11:02 +01:00
Mark Paluch
2674880946
DATAMONGO-1508 - Improve reference documentation.
...
Replace Spring Data Document with Spring Data MongoDB. Extend copyright year range. Replace static Spring version leftover with variable. Fix typos.
2017-01-02 11:19:44 +01:00
Ken Dombeck
772e8ac85e
DATAMONGO-1577 - Fix Reference and JavaDoc spelling issues.
...
Replaced invalid class name MongoMappingConverter with actual class name of MappingMongoConverter. Fix typos.
Original pull request: #425 .
2017-01-02 11:19:41 +01:00
Mark Paluch
2bbffed62b
DATAMONGO-1508 - Polishing.
...
Highlight attribute name. Replace tabs with spaces.
Original pull request: #399 .
2017-01-02 11:12:31 +01:00
John Lilley
685990bdd6
DATAMONGO-1508 - Document authentication-dbname attribute in db-factory.
...
Original pull request: #399 .
2017-01-02 11:12:31 +01:00
Oliver Gierke
995a680823
DATAMONGO-1522 - Prepare 1.9.6 (Hopper SR6).
2016-12-21 19:03:39 +01:00
Oliver Gierke
9f0abb69fd
DATAMONGO-1522 - Updated changelog.
2016-12-21 19:03:32 +01:00
Oliver Gierke
d65eebe9c3
DATAMONGO-1469 - Updated changelog.
2016-12-21 18:42:59 +01:00
Oliver Gierke
ed36fd7260
DATAMONGO-1527 - Updated changelog.
2016-11-23 13:52:45 +01:00
Oliver Gierke
91eaae0ef6
DATAMONGO-1502 - Prepare 1.9.5 (Hopper SR5).
2016-11-03 17:56:00 +01:00
Oliver Gierke
785dc6ab78
DATAMONGO-1502 - Updated changelog.
2016-11-03 17:55:53 +01:00
Oliver Gierke
84dc03b9d1
DATAMONGO-1495 - Prepare 1.9.4 (Hopper SR4).
2016-09-29 13:53:26 +02:00
Oliver Gierke
0ce220d54f
DATAMONGO-1495 - Updated changelog.
2016-09-29 13:53:19 +02:00
Oliver Gierke
b693136396
DATAMONGO-1499 - Updated changelog.
2016-09-29 11:42:09 +02:00
Oliver Gierke
e3bddd1c19
DATAMONGO-1494 - Updated changelog.
2016-09-21 07:28:56 +02:00
Oliver Gierke
762569c826
DATAMONGO-1450 - Prepare 1.9.3 (Hopper SR3).
2016-09-20 10:54:16 +02:00
Oliver Gierke
ad7d82f521
DATAMONGO-1450 - Updated changelog.
2016-09-20 10:54:11 +02:00
Mark Paluch
04deaacbec
DATAMONGO-1493 - Fix minor typo in reference documentation.
...
Related pull request: #391 .
2016-09-19 17:02:56 +02:00
Jordan Jennings
ec443f2b5e
DATAMONGO-1493 - Fix minor typo in docs.
...
Original pull request: #391 .
2016-09-19 17:01:01 +02:00
Oliver Gierke
3d0053c61a
DATAMONGO-1409 - Updated changelog.
2016-07-28 08:57:30 +02:00
Oliver Gierke
e8944a6c3a
DATAMONGO-1410 - Prepare 1.9.2 (Hopper SR2).
2016-06-15 13:44:53 +02:00
Oliver Gierke
6fcbc225eb
DATAMONGO-1410 - Updated changelog.
2016-06-15 13:44:46 +02:00
Mark Paluch
8b31ba1836
DATAMONGO-1425 - Polishing.
...
Add NotContaining to documentation. Add integration test for Containing/NotContaining on collection properties.
Original pull request: #363 .
2016-05-09 11:14:03 +02:00
Mark Paluch
0824105377
DATAMONGO-1412 - Fix backticks and code element highlighting.
...
Fixed broken highlighting using backticks followed by chars/single quotes. Convert single quote emphasis of id to backtick code fences. Add missing spaces between words and backticks.
Original Pull Request: #359
2016-05-02 14:18:13 +02:00
Mark Paluch
dc936a5b7b
DATAMONGO-1412 - Document mapping rules for Java types to MongoDB representation.
...
Original Pull Request: #359
Related pull request: #353
Related ticket: DATAMONGO-1404
2016-05-02 14:18:07 +02:00
Oliver Gierke
791cc3a1b8
DATAMONGO-1408 - Prepare 1.9.1 (Hopper SR1).
2016-04-06 22:31:40 +02:00
Oliver Gierke
021c03fbbf
DATAMONGO-1408 - Updated changelog.
2016-04-06 22:31:35 +02:00
Oliver Gierke
47c348e03a
DATAMONGO-1405 - Prepare 1.9 GA (Hopper).
2016-04-06 16:34:45 +02:00
Oliver Gierke
dea86535c1
DATAMONGO-1405 - Updated changelog.
2016-04-06 16:34:39 +02:00
Christoph Strobl
8f5b334951
DATAMONGO-1398 - Mention QBE and add links.
...
Original Pull Request: #349
2016-03-31 21:00:27 +02:00
Mark Paluch
0dc6169282
DATAMONGO-1398, DATAMONGO-1395 - Update Lifecycle Events examples in Reference Documentation.
...
Replace deprecated methods by the supported API.
Original Pull Request: #349
2016-03-31 20:59:53 +02:00
Mark Paluch
abe78f0428
DATAMONGO-1398 - Updated what's new section and general improvements.
...
Update Spring Framework documentation links to point always to the Spring Framework version specified in the pom, where possible. Mention $lookup in aggregation.
Original Pull Request: #349
2016-03-31 20:59:16 +02:00
Oliver Gierke
2f0abe0604
DATAMONGO-1392 - Prepare 1.9 RC1 (Hopper).
2016-03-18 11:06:57 +01:00
Oliver Gierke
4235b44c47
DATAMONGO-1392 - Updated changelog.
2016-03-18 11:06:52 +01:00
Oliver Gierke
43b496287c
DATAMONGO-1245 - Final tweaks to Query by Example documentation.
...
Tweaked section anchor to match conventions. Use level offsets to accommodate changes in Spring Data Commons.
2016-03-18 09:29:46 +01:00