DATAREST-258 - Prepare 2.0.1.RELEASE.
This commit is contained in:
@@ -6,10 +6,7 @@ The first exporter implemented is a JPA Repository exporter. This takes your JPA
|
||||
|
||||
### Installation
|
||||
|
||||
Installation instructions are in the docs:
|
||||
|
||||
* [http://static.springsource.org/autorepo/docs/spring-data-rest/1.1.0.BUILD-SNAPSHOT/reference/htmlsingle/](http://static.springsource.org/autorepo/docs/spring-data-rest/1.1.0.BUILD-SNAPSHOT/reference/htmlsingle/)
|
||||
|
||||
Installation instructions are in the [reference documentation](http://docs.spring.io/spring-data/rest/docs/current/reference/html/install-chapter.html)
|
||||
|
||||
### License
|
||||
|
||||
@@ -20,12 +17,12 @@ The Spring Data REST is [Apache 2.0 licensed](http://www.apache.org/licenses/LIC
|
||||
Here are some ways for you to get involved in the community:
|
||||
|
||||
* Get involved with the Spring community on the Spring Community Forums. Please help out on the [forum](http://forum.springsource.org/forumdisplay.php?f=27) by responding to questions and joining the debate.
|
||||
* Create [JIRA](https://jira.springsource.org/browse/DATAREST) tickets for bugs and new features and comment and vote on the ones that you are interested in.
|
||||
* Create [JIRA](https://jira.springsource.org/browse/DATAREST) tickets for bugs and new features and comment and vote on the ones that you are interested in.
|
||||
* Github is for social coding: if you want to write code, we encourage contributions through pull requests from [forks of this repository](http://help.github.com/forking/). If you want to contribute code this way, please reference a JIRA ticket as well covering the specific issue you are addressing.
|
||||
* Watch for upcoming articles on Spring by [subscribing](http://www.springsource.org/node/feed) to springframework.org
|
||||
|
||||
Before we accept a non-trivial patch or pull request we will need you to sign the [contributor's agreement](https://support.springsource.com/spring_committer_signup). Signing the contributor's agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. Active contributors might be asked to join the core team, and given the ability to merge pull requests.
|
||||
|
||||
### Note
|
||||
We disabled the github issues since we want to use [JIRA](https://jira.springsource.org/browse/DATAREST) as the only only issue tracker.
|
||||
We disabled the github issues since we want to use [JIRA](https://jira.spring.io/browse/DATAREST) as the only only issue tracker.
|
||||
All open existing issues have been automatically imported into JIRA, so nothing was lost :)
|
||||
|
||||
14
pom.xml
14
pom.xml
@@ -13,7 +13,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
<version>1.3.1.BUILD-SNAPSHOT</version>
|
||||
<version>1.3.1.RELEASE</version>
|
||||
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
@@ -27,10 +27,10 @@
|
||||
<project.type>multi</project.type>
|
||||
<dist.id>spring-data-rest</dist.id>
|
||||
|
||||
<springdata.commons>1.7.1.BUILD-SNAPSHOT</springdata.commons>
|
||||
<springdata.jpa>1.5.1.BUILD-SNAPSHOT</springdata.jpa>
|
||||
<springdata.mongodb>1.4.1.BUILD-SNAPSHOT</springdata.mongodb>
|
||||
<springdata.neo4j>3.0.1.BUILD-SNAPSHOT</springdata.neo4j>
|
||||
<springdata.commons>1.7.1.RELEASE</springdata.commons>
|
||||
<springdata.jpa>1.5.1.RELEASE</springdata.jpa>
|
||||
<springdata.mongodb>1.4.1.RELEASE</springdata.mongodb>
|
||||
<springdata.neo4j>3.0.1.RELEASE</springdata.neo4j>
|
||||
<springdata.gemfire>1.3.3.RELEASE</springdata.gemfire>
|
||||
|
||||
<hibernate.version>4.2.0.Final</hibernate.version>
|
||||
@@ -150,8 +150,8 @@
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>spring-libs-snapshot</id>
|
||||
<url>http://repo.spring.io/libs-snapshot</url>
|
||||
<id>spring-libs-release</id>
|
||||
<url>http://repo.spring.io/libs-release</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
|
||||
@@ -1,6 +1,21 @@
|
||||
Spring Data REST Changelog
|
||||
==========================
|
||||
|
||||
Changes in version 2.0.1.RELEASE (2014-03-13)
|
||||
---------------------------------------------
|
||||
** Bug
|
||||
* [DATAREST-150] - PUT vs PATCH with JPA
|
||||
* [DATAREST-247] - NPE when calling count Queries in SD MongoDB Repositories
|
||||
* [DATAREST-253] - AssociationOmittingSerializerModifier suffers from potential NullPointerException
|
||||
* [DATAREST-254] - org.springframework.data.rest.webmvc.json.PersistentEntityJackson2Module does not properly handle JPA @Transient annotation during serialization yeilding a NPE
|
||||
* [DATAREST-261] - RepositoryRelProvider is not registered
|
||||
* [DATAREST-267] - (Potentially) unwanted behaviour for self hrefs with projections
|
||||
* [DATAREST-268] - Exception when putting element with return type
|
||||
* [DATAREST-271] - PaginationCustomizations are not applied
|
||||
|
||||
** Task
|
||||
* [DATAREST-258] - Release 2.0.1
|
||||
|
||||
Changes in version 2.0.0.RELEASE (2014-02-24)
|
||||
---------------------------------------------
|
||||
** Bug
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Spring Data REST 2.0 RELEASE
|
||||
Spring Data REST 2.0.1 RELEASE
|
||||
Copyright (c) 2012-2014 Pivotal Software, Inc.
|
||||
|
||||
This product is licensed to you under the Apache License, Version 2.0
|
||||
|
||||
Reference in New Issue
Block a user