DATAES-45 - Preparing 1.0 M1 release.
Removed obsolete resources. Adapted changelog, notice and readme.
This commit is contained in:
@@ -1,49 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<assembly>
|
||||
<!-- distribution assembly descriptor. packages up jars, source jars, documentation,
|
||||
dependencies and other resources into a single archive suitable for download
|
||||
and standalone use. see pom.xml 'maven-assembly-plugin' declaration see src/main/scripts/build-distribution.sh
|
||||
see http://www.sonatype.com/books/mvnref-book/reference/assemblies-set-dist-assemblies.html -->
|
||||
<id>distribution</id>
|
||||
<formats>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<includeBaseDirectory>true</includeBaseDirectory>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<!-- adds readme and other textfiles to the root of the distribution archive -->
|
||||
<directory>src/main/resources</directory>
|
||||
<includes>
|
||||
<include>license.txt</include>
|
||||
<include>notice.txt</include>
|
||||
<include>changelog.txt</include>
|
||||
</includes>
|
||||
<outputDirectory />
|
||||
<lineEnding>dos</lineEnding>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<!-- adds reference manual (html and pdf) to the distribution archive
|
||||
under the 'docs/reference' directory see pom.xml 'maven-javadoc-plugin' declaration -->
|
||||
<directory>target/site/reference</directory>
|
||||
<outputDirectory>docs/reference</outputDirectory>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<!-- adds javadoc html to the distribution archive under the 'docs/javadoc'
|
||||
directory see pom.xml 'maven-javadoc-plugin' declaration -->
|
||||
<directory>target/site/apidocs</directory>
|
||||
<outputDirectory>docs/javadoc</outputDirectory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
<files>
|
||||
<file>
|
||||
<source>target/${dist.finalName}.jar</source>
|
||||
<outputDirectory>dist</outputDirectory>
|
||||
<fileMode>0644</fileMode>
|
||||
</file>
|
||||
<file>
|
||||
<source>target/${dist.finalName}-sources.jar</source>
|
||||
<outputDirectory>sources</outputDirectory>
|
||||
<fileMode>0644</fileMode>
|
||||
</file>
|
||||
</files>
|
||||
</assembly>
|
||||
@@ -1,19 +0,0 @@
|
||||
<assembly
|
||||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||||
<id>all</id>
|
||||
<formats>
|
||||
<format>jar</format>
|
||||
</formats>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
<useProjectArtifact>true</useProjectArtifact>
|
||||
<unpack>true</unpack>
|
||||
<scope>runtime</scope>
|
||||
<useTransitiveFiltering>true</useTransitiveFiltering>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
</assembly>
|
||||
@@ -0,0 +1,56 @@
|
||||
Release Notes - Spring Data Elasticsearch - Version 1.0 M1 (2014-02-07)
|
||||
-----------------------------------------------------------------------
|
||||
** Bug
|
||||
* [DATAES-9] - multiple elasticsearch cluster nodes not getting parsed if using property file
|
||||
|
||||
** Improvement
|
||||
* [DATAES-7] - Migrate to the latest version of elasticsearch 0.90.0
|
||||
* [DATAES-11] - Missing core types in org.springframework.data.elasticsearch.annotations.FieldType
|
||||
* [DATAES-15] - Upgrade to latest version of elasticsearch( 0.90.2 )
|
||||
* [DATAES-19] - Delete specific type in an index, Type exists check
|
||||
* [DATAES-22] - Add support for TransportClient additional parameters such as client.transport.ignore_cluster_name, client.transport.ping_timeout, client.transport.nodes_sampler_interval
|
||||
|
||||
** New Feature
|
||||
* [DATAES-8] - Add support for Index level configuration
|
||||
* [DATAES-17] - Add support to retrieve highlighted text in search result
|
||||
|
||||
** Task
|
||||
* [DATAES-1] - Migrate sources to SpringSource GitHub repository
|
||||
* [DATAES-3] - Move to Spring Data build system
|
||||
* [DATAES-4] - Initial round of JavaDoc polish
|
||||
* [DATAES-5] - Add Apache license headers where necessary
|
||||
* [DATAES-6] - Add ability to let NodeClient clean up working directory
|
||||
* [DATAES-45] - Release 1.0 M1.
|
||||
|
||||
Issues maintaine in GitHub tracker:
|
||||
|
||||
- #42 - org.springframework.data.elasticsearch.client.NodeClientFactoryBean' is not a valid value for 'anyURI'
|
||||
- #40 - how to create index for json objects?
|
||||
- #38 - Configure with native Client with embedded elasticsearch
|
||||
- #37 - embedded elasticsearch client - how to recover data after process is restarted?
|
||||
- #36 - FieldType.Date annotation
|
||||
- #35 - @Transient property still inserted into elastic
|
||||
- #33 - timestamp mapping
|
||||
- #32 - BigDecimal @Field(type = FieldType.Double)
|
||||
- #31 - DATAES-33: Mapping of parent-child relationships
|
||||
- #29 - Added DefaultMapper support to map only partial fields from result instead of whole source field.
|
||||
- #28 - Documentation (README.md) for Geo Location / Filter Feature
|
||||
- #27 - Adding support for letting Elasticsearch generate Id for document
|
||||
- #25 - Aliases
|
||||
- #24 - DATAES-31 Adding ability to use ES Java API setSource directly
|
||||
- #22 - spring-elasticsearch-1.0.xsd not found on www.springframework.com
|
||||
- #21 - Autogenerated elastic search id isn't returned
|
||||
- #20 - Exception while using CustomRepository
|
||||
- #19 - Compilation issue with 0.90.5. (ElasticsearchTemplate.refresh API)
|
||||
- #18 - problem with ES 0.9.5
|
||||
- #17 - FacetResult extension is not possible
|
||||
- #16 - Configuration of ObjectMapper in the ElasticsearchTemplate
|
||||
- #15 - Added support for @Transient annotation to skip fields from mapping
|
||||
- #14 - added format and pattern support for date fieldtype + fixed nullpointer...
|
||||
- #12 - Where is the maven repository for this artifact?
|
||||
- #11 - Build fails
|
||||
- #10 - Elasticsearch + elasticsearch-river-rabbitmq
|
||||
- #9 - MappingBuilder circular reference issue
|
||||
- #8 - java.lang.NoSuchMethodError: org.springframework.data.elasticsearch.core.mapping.ElasticsearchPersistentProperty.isVersionProperty()Z
|
||||
- #7 - Missing core types in org.springframework.data.elasticsearch.annotations.FieldType
|
||||
- #6 - spirng-data-elasticsearch with elasticsearch-river-mongodb
|
||||
@@ -1,4 +1,5 @@
|
||||
Spring Data Elasticsearch
|
||||
Spring Data Elasticsearch 1.0 M1
|
||||
Copyright (c) [2013-2014] Pivotal Inc.
|
||||
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user