Browse Source

DATAMONGO-732 - Prepare 1.3.0.RC1.

Updated changelog, notice and readme. Upgraded to Spring Data Build parent 1.1.1.RELEASE. Upgraded to Spring Data Commons RC1. Switched to milestone repository. Updated links to the parts of the Spring Data Commons reference documentation.
pull/59/head
Oliver Gierke 13 years ago
parent
commit
def6079795
  1. 4
      README.md
  2. 8
      pom.xml
  3. 6
      src/docbkx/index.xml
  4. 64
      src/main/resources/changelog.txt
  5. 4
      src/main/resources/notice.txt
  6. 4
      src/main/resources/readme.txt

4
README.md

@ -26,7 +26,7 @@ Add the Maven dependency:
<dependency> <dependency>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId> <artifactId>spring-data-mongodb</artifactId>
<version>1.2.1.RELEASE</version> <version>1.2.3.RELEASE</version>
</dependency> </dependency>
``` ```
@ -36,7 +36,7 @@ If you'd rather like the latest snapshots of the upcoming major version, use our
<dependency> <dependency>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-mongodb</artifactId> <artifactId>spring-data-mongodb</artifactId>
<version>1.2.1.RELEASE</version> <version>1.3.0.BUILD-SNAPSHOT</version>
</dependency> </dependency>
<repository> <repository>

8
pom.xml

@ -15,7 +15,7 @@
<parent> <parent>
<groupId>org.springframework.data.build</groupId> <groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId> <artifactId>spring-data-parent</artifactId>
<version>1.1.0.RELEASE</version> <version>1.1.1.RELEASE</version>
<relativePath>../spring-data-build/parent/pom.xml</relativePath> <relativePath>../spring-data-build/parent/pom.xml</relativePath>
</parent> </parent>
@ -29,7 +29,7 @@
<properties> <properties>
<project.type>multi</project.type> <project.type>multi</project.type>
<dist.id>spring-data-mongodb</dist.id> <dist.id>spring-data-mongodb</dist.id>
<springdata.commons>1.6.0.BUILD-SNAPSHOT</springdata.commons> <springdata.commons>1.6.0.RC1</springdata.commons>
<mongo>2.10.1</mongo> <mongo>2.10.1</mongo>
</properties> </properties>
@ -91,8 +91,8 @@
<repositories> <repositories>
<repository> <repository>
<id>spring-lib-snapshot</id> <id>spring-lib-milestone</id>
<url>http://repo.springsource.org/libs-snapshot-local</url> <url>http://repo.springsource.org/libs-milestone-local</url>
</repository> </repository>
</repositories> </repositories>

6
src/docbkx/index.xml

@ -56,7 +56,7 @@
<xi:include href="introduction/why-sd-doc.xml"/> <xi:include href="introduction/why-sd-doc.xml"/>
<xi:include href="introduction/requirements.xml"/> <xi:include href="introduction/requirements.xml"/>
<xi:include href="introduction/getting-started.xml"/> <xi:include href="introduction/getting-started.xml"/>
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.M1/src/docbkx/repositories.xml"> <xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.RC1/src/docbkx/repositories.xml">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" /> <xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" />
</xi:include> </xi:include>
</part> </part>
@ -76,10 +76,10 @@
<part id="appendix"> <part id="appendix">
<title>Appendix</title> <title>Appendix</title>
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.M1/src/docbkx/repository-namespace-reference.xml"> <xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.RC1/src/docbkx/repository-namespace-reference.xml">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml" /> <xi:fallback href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml" />
</xi:include> </xi:include>
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.M1/src/docbkx/repository-query-keywords-reference.xml"> <xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.6.0.RC1/src/docbkx/repository-query-keywords-reference.xml">
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml" /> <xi:fallback href="../../../spring-data-commons/src/docbkx/repository-query-keywords-reference.xml" />
</xi:include> </xi:include>
</part> </part>

64
src/main/resources/changelog.txt

@ -1,6 +1,70 @@
Spring Data MongoDB Changelog Spring Data MongoDB Changelog
============================= =============================
Changes in version 1.3.0.RC1 (2013-08-05)
-----------------------------------------
** Bug
* [DATAMONGO-392] - Updating an object does not write type information for objects to be updated
* [DATAMONGO-685] - JMX ServerInfo bean may return wrong info
* [DATAMONGO-688] - There is no precedence between @Id annotation and field named "id" - both are attempted to be used
* [DATAMONGO-693] - MongoFactoryBean should create a mongo instance with host/port if replicaset is null or empty
* [DATAMONGO-702] - Spring Data MongoDB projection search, is not properly configured with respective Java Pojo
* [DATAMONGO-704] - Remove references to SimpleMongoConverter from JavaDoc.
* [DATAMONGO-705] - QueryMapper doesn't handles exists query with DBRef field
* [DATAMONGO-706] - QueryMapper does not transform DBRefs in nested keywords correctly
* [DATAMONGO-709] - Polymorphic query on documents in same collection
* [DATAMONGO-717] - Application context is not properly distributed to persistent entities
* [DATAMONGO-721] - Polymorphic attribute type not persisted on update operations
** Improvement
* [DATAMONGO-701] - Improve performance of indexed starts-with queries
* [DATAMONGO-713] - Typos in readme.md
** New Feature
* [DATAMONGO-544] - Support for TTL collection via Indexed annotation
* [DATAMONGO-586] - Add support for new Aggregation Framework
** Task
* [DATAMONGO-714] - Add latest formatter to project sources
* [DATAMONGO-723] - Clean up test cases
* [DATAMONGO-728] - Add missing package-info.java files
* [DATAMONGO-731] - Adapt refactorings in Spring Data Commons
* [DATAMONGO-732] - Release 1.3 RC1
Changes in version 1.2.3.GA (2013-07-24)
----------------------------------------
** Task
* [DATAMONGO-728] - Add missing package-info.java files
* [DATAMONGO-729] - Release 1.2.3.
Changes in version 1.2.2.GA (2013-07-19)
----------------------------------------
** Bug
* [DATAMONGO-663] - org.springframework.data.mongodb.core.query.Field needs an equals method
* [DATAMONGO-677] - QueryMapper does not handled correctly Map with DBRef value
* [DATAMONGO-679] - MongoTemplate.doSave(…) passed a JSON String doesn't save it.
* [DATAMONGO-683] - QueryMapper does not handle default _id when no MappingMetadata is present
* [DATAMONGO-685] - JMX ServerInfo bean may return wrong info
* [DATAMONGO-693] - MongoFactoryBean should create a mongo instance with host/port if replicaset is null or empty
* [DATAMONGO-704] - Remove references to SimpleMongoConverter from JavaDoc.
* [DATAMONGO-705] - QueryMapper doesn't handles exists query with DBRef field
* [DATAMONGO-706] - QueryMapper does not transform DBRefs in nested keywords correctly
* [DATAMONGO-717] - Application context is not properly distributed to persistent entities
** Improvement
* [DATAMONGO-682] - Remove performance hotspots
* [DATAMONGO-701] - Improve performance of indexed starts-with queries
** Task
* [DATAMONGO-658] - Minor formatting changes to README.md
* [DATAMONGO-678] - Performance improvements in CustomConversions
* [DATAMONGO-714] - Add latest formatter to project sources
* [DATAMONGO-723] - Clean up test cases
* [DATAMONGO-727] - Release 1.2.2
Changes in version 1.3.0.M1 (2013-06-04) Changes in version 1.3.0.M1 (2013-06-04)
---------------------------------------- ----------------------------------------
** Bug ** Bug

4
src/main/resources/notice.txt

@ -1,5 +1,5 @@
Spring Data Document 1.3 M1 Spring Data Document 1.3 RC1
Copyright (c) [2010-2013] SpringSource, a division of VMware, Inc. Copyright (c) [2010-2013] Pivotal Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License"). This product is licensed to you under the Apache License, Version 2.0 (the "License").
You may not use this product except in compliance with the License. You may not use this product except in compliance with the License.

4
src/main/resources/readme.txt

@ -1,5 +1,5 @@
SPRING DATA MongoDB 1.3.0.M1 SPRING DATA MongoDB 1.3.0.RC1
---------------------------- -----------------------------
Spring Data MongoDB is released under the terms of the Apache Software License Version 2.0 (see license.txt). Spring Data MongoDB is released under the terms of the Apache Software License Version 2.0 (see license.txt).

Loading…
Cancel
Save