Skip to content

Commit 3261af3

Browse files
committed
DATAES-87 - Polished changelog.
Introduced headline to make sure we can automate the changelog creation going forward. Made sure formatting is consistent.
1 parent 9ce87f1 commit 3261af3

File tree

1 file changed

+72
-91
lines changed

1 file changed

+72
-91
lines changed

src/main/resources/changelog.txt

Lines changed: 72 additions & 91 deletions
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,76 @@
1-
Release Notes - Spring Data Elasticsearch - Version 1.0 M1 (2014-02-07)
2-
-----------------------------------------------------------------------
3-
** Bug
4-
* [DATAES-9] - multiple elasticsearch cluster nodes not getting parsed if using property file
5-
6-
** Improvement
7-
* [DATAES-7] - Migrate to the latest version of elasticsearch 0.90.0
8-
* [DATAES-11] - Missing core types in org.springframework.data.elasticsearch.annotations.FieldType
9-
* [DATAES-15] - Upgrade to latest version of elasticsearch( 0.90.2 )
10-
* [DATAES-19] - Delete specific type in an index, Type exists check
11-
* [DATAES-22] - Add support for TransportClient additional parameters such as client.transport.ignore_cluster_name, client.transport.ping_timeout, client.transport.nodes_sampler_interval
12-
13-
** New Feature
14-
* [DATAES-8] - Add support for Index level configuration
15-
* [DATAES-17] - Add support to retrieve highlighted text in search result
16-
17-
** Task
18-
* [DATAES-1] - Migrate sources to SpringSource GitHub repository
19-
* [DATAES-3] - Move to Spring Data build system
20-
* [DATAES-4] - Initial round of JavaDoc polish
21-
* [DATAES-5] - Add Apache license headers where necessary
22-
* [DATAES-6] - Add ability to let NodeClient clean up working directory
23-
* [DATAES-45] - Release 1.0 M1.
24-
25-
Issues maintaine in GitHub tracker:
26-
27-
- #42 - org.springframework.data.elasticsearch.client.NodeClientFactoryBean' is not a valid value for 'anyURI'
28-
- #40 - how to create index for json objects?
29-
- #38 - Configure with native Client with embedded elasticsearch
30-
- #37 - embedded elasticsearch client - how to recover data after process is restarted?
31-
- #36 - FieldType.Date annotation
32-
- #35 - @Transient property still inserted into elastic
33-
- #33 - timestamp mapping
34-
- #32 - BigDecimal @Field(type = FieldType.Double)
35-
- #31 - DATAES-33: Mapping of parent-child relationships
36-
- #29 - Added DefaultMapper support to map only partial fields from result instead of whole source field.
37-
- #28 - Documentation (README.md) for Geo Location / Filter Feature
38-
- #27 - Adding support for letting Elasticsearch generate Id for document
39-
- #25 - Aliases
40-
- #24 - DATAES-31 Adding ability to use ES Java API setSource directly
41-
- #22 - spring-elasticsearch-1.0.xsd not found on www.springframework.com
42-
- #21 - Autogenerated elastic search id isn't returned
43-
- #20 - Exception while using CustomRepository
44-
- #19 - Compilation issue with 0.90.5. (ElasticsearchTemplate.refresh API)
45-
- #18 - problem with ES 0.9.5
46-
- #17 - FacetResult extension is not possible
47-
- #16 - Configuration of ObjectMapper in the ElasticsearchTemplate
48-
- #15 - Added support for @Transient annotation to skip fields from mapping
49-
- #14 - added format and pattern support for date fieldtype + fixed nullpointer...
50-
- #12 - Where is the maven repository for this artifact?
51-
- #11 - Build fails
52-
- #10 - Elasticsearch + elasticsearch-river-rabbitmq
53-
- #9 - MappingBuilder circular reference issue
54-
- #8 - java.lang.NoSuchMethodError: org.springframework.data.elasticsearch.core.mapping.ElasticsearchPersistentProperty.isVersionProperty()Z
55-
- #7 - Missing core types in org.springframework.data.elasticsearch.annotations.FieldType
56-
- #6 - spirng-data-elasticsearch with elasticsearch-river-mongodb
1+
Spring Data Elasticsearch Changelog
2+
===================================
573

584
Release Notes - Spring Data Elasticsearch - Version 1.0 M2 (2014-03-27)
595
-----------------------------------------------------------------------
60-
** Bug
61-
62-
* [DATAES-74] - NPE in MappingElasticsearchEntityInformation
63-
* [DATAES-73] - NullPointerException while persist a Map as part of persistent entity
64-
* [DATAES-69] - Sorting on String field not working
65-
* [DATAES-67] - ElasticsearchTemplate#count does not respect specified index
66-
* [DATAES-56] - while specifying index and type at runtime indexing is failing
67-
* [DATAES-53] - @Field annotations (perhaps others?) ignored in included objects on mapping creation
68-
* [DATAES-48] - Mapping for multiple level nested document is getting created wrong
69-
* [DATAES-35] - Investigate why build failed
6+
* DATAES-74 - NPE in MappingElasticsearchEntityInformation
7+
* DATAES-73 - NullPointerException while persist a Map as part of persistent entity
8+
* DATAES-69 - Sorting on String field not working
9+
* DATAES-67 - ElasticsearchTemplate#count does not respect specified index
10+
* DATAES-56 - while specifying index and type at runtime indexing is failing
11+
* DATAES-53 - @Field annotations (perhaps others?) ignored in included objects on mapping creation
12+
* DATAES-48 - Mapping for multiple level nested document is getting created wrong
13+
* DATAES-35 - Investigate why build failed
14+
* DATAES-72 - Enhance Delete Index in ElasticsearchTemplate
15+
* DATAES-71 - Enhance Create Index in ElasticsearchTemplate
16+
* DATAES-61 - Upgrade to elasticsearch 1.0.1
17+
* DATAES-60 - Java config support - default values in TransportClientFactoryBean
18+
* DATAES-54 - Upgrade to elasticsearch 1.0
19+
* DATAES-47 - Spring Application(Context) is not getting started up if elasticsearch nodes are not available
20+
* DATAES-14 - Dynamic Search Type Support
21+
* DATAES-79 - Upgrade to elasticsearch 1.1.0
22+
* DATAES-64 - Add dynamic settings using @Setting annotation
23+
* DATAES-52 - Support Get & Multi Get
24+
* DATAES-51 - Allow for multiple sort builders when using NativeSearchQuery
25+
* DATAES-78 - Release 1.0 M2
26+
* DATAES-65 - Overhaul README.md
27+
* DATAES-55 - polish test cases and remove unwanted files
28+
* DATAES-46 - Remove unused imports & class
29+
* DATAES-2 - Apply Spring Data formatting to sources
7030

71-
** Improvement
72-
73-
* [DATAES-72] - Enhance Delete Index in ElasticsearchTemplate
74-
* [DATAES-71] - Enhance Create Index in ElasticsearchTemplate
75-
* [DATAES-61] - Upgrade to elasticsearch 1.0.1
76-
* [DATAES-60] - Java config support - default values in TransportClientFactoryBean
77-
* [DATAES-54] - Upgrade to elasticsearch 1.0
78-
* [DATAES-47] - Spring Application(Context) is not getting started up if elasticsearch nodes are not available
79-
* [DATAES-14] - Dynamic Search Type Support
80-
* [DATAES-79] - Upgrade to elasticsearch 1.1.0
81-
82-
** New Feature
83-
84-
* [DATAES-64] - Add dynamic settings using @Setting annotation
85-
* [DATAES-52] - Support Get & Multi Get
86-
* [DATAES-51] - Allow for multiple sort builders when using NativeSearchQuery
87-
88-
89-
** Task
90-
91-
* [DATAES-78] - Release 1.0 M2
92-
* [DATAES-65] - Overhaul README.md
93-
* [DATAES-55] - polish test cases and remove unwanted files
94-
* [DATAES-46] - Remove unused imports & class
95-
* [DATAES-2] - Apply Spring Data formatting to sources
31+
Release Notes - Spring Data Elasticsearch - Version 1.0 M1 (2014-02-07)
32+
-----------------------------------------------------------------------
33+
* DATAES-9 - multiple elasticsearch cluster nodes not getting parsed if using property file
34+
* DATAES-7 - Migrate to the latest version of elasticsearch 0.90.0
35+
* DATAES-11 - Missing core types in org.springframework.data.elasticsearch.annotations.FieldType
36+
* DATAES-15 - Upgrade to latest version of elasticsearch( 0.90.2 )
37+
* DATAES-19 - Delete specific type in an index, Type exists check
38+
* DATAES-22 - Add support for TransportClient additional parameters such as client.transport.ignore_cluster_name, client.transport.ping_timeout, client.transport.nodes_sampler_interval
39+
* DATAES-8 - Add support for Index level configuration
40+
* DATAES-17 - Add support to retrieve highlighted text in search result
41+
* DATAES-1 - Migrate sources to SpringSource GitHub repository
42+
* DATAES-3 - Move to Spring Data build system
43+
* DATAES-4 - Initial round of JavaDoc polish
44+
* DATAES-5 - Add Apache license headers where necessary
45+
* DATAES-6 - Add ability to let NodeClient clean up working directory
46+
* DATAES-45 - Release 1.0 M1.
47+
* #42 - org.springframework.data.elasticsearch.client.NodeClientFactoryBean' is not a valid value for 'anyURI'
48+
* #40 - how to create index for json objects?
49+
* #38 - Configure with native Client with embedded elasticsearch
50+
* #37 - embedded elasticsearch client - how to recover data after process is restarted?
51+
* #36 - FieldType.Date annotation
52+
* #35 - @Transient property still inserted into elastic
53+
* #33 - timestamp mapping
54+
* #32 - BigDecimal @Field(type = FieldType.Double)
55+
* #31 - DATAES-33: Mapping of parent-child relationships
56+
* #29 - Added DefaultMapper support to map only partial fields from result instead of whole source field.
57+
* #28 - Documentation (README.md) for Geo Location / Filter Feature
58+
* #27 - Adding support for letting Elasticsearch generate Id for document
59+
* #25 - Aliases
60+
* #24 - DATAES-31 Adding ability to use ES Java API setSource directly
61+
* #22 - spring-elasticsearch-1.0.xsd not found on www.springframework.com
62+
* #21 - Autogenerated elastic search id isn't returned
63+
* #20 - Exception while using CustomRepository
64+
* #19 - Compilation issue with 0.90.5. (ElasticsearchTemplate.refresh API)
65+
* #18 - problem with ES 0.9.5
66+
* #17 - FacetResult extension is not possible
67+
* #16 - Configuration of ObjectMapper in the ElasticsearchTemplate
68+
* #15 - Added support for @Transient annotation to skip fields from mapping
69+
* #14 - added format and pattern support for date fieldtype + fixed nullpointer...
70+
* #12 - Where is the maven repository for this artifact?
71+
* #11 - Build fails
72+
* #10 - Elasticsearch + elasticsearch-river-rabbitmq
73+
* #9 - MappingBuilder circular reference issue
74+
* #8 - java.lang.NoSuchMethodError: org.springframework.data.elasticsearch.core.mapping.ElasticsearchPersistentProperty.isVersionProperty()Z
75+
* #7 - Missing core types in org.springframework.data.elasticsearch.annotations.FieldType
76+
* #6 - spirng-data-elasticsearch with elasticsearch-river-mongodb

0 commit comments

Comments
 (0)