Skip to content

Commit 4257b3f

Browse files
author
Dave Syer
committed
Add release notes for 2.1.9
1 parent d957090 commit 4257b3f

File tree

3 files changed

+88
-5
lines changed

3 files changed

+88
-5
lines changed

src/site/apt/downloads.apt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Spring Batch Downloads
99

10-
The current GA release is <<2.1.8.RELEASE>>, the latest snapshots are <<2.2.0.BUILD-SNAPSHOT>>. The version 2.0.x and 1.x branches are now in maintenance (the last release was <<2.0.4.RELEASE>>).
10+
The current GA release is <<2.1.9.RELEASE>>, the latest snapshots are <<2.2.0.BUILD-SNAPSHOT>>. The version 2.0.x and 1.x branches are now in maintenance (the last release was <<2.0.4.RELEASE>>).
1111

1212
For runtime concerns and a container for running a Job as a service see the {{{http://static.springframework.org/spring-batch-admin}Spring Batch Admin}} project and the {{{http://static.springframework.org/spring-batch-admin/getting-started.html}getting started}} link there.
1313

@@ -41,7 +41,7 @@ Source code can also be browsed and downloaded at {{{http://github.com/SpringSou
4141
<dependency>
4242
<groupId>org.springframework.batch</groupId>
4343
<artifactId>spring-batch-core</artifactId>
44-
<version>2.1.8.RELEASE</version>
44+
<version>2.1.9.RELEASE</version>
4545
</dependency>
4646
+---------------
4747

@@ -74,7 +74,7 @@ Source code can also be browsed and downloaded at {{{http://github.com/SpringSou
7474
<dependency>
7575
<groupId>org.springframework.batch</groupId>
7676
<artifactId>org.springframework.batch.core</artifactId>
77-
<version>2.1.8.RELEASE</version>
77+
<version>2.1.9.RELEASE</version>
7878
</dependency>
7979
+---------------
8080

@@ -100,7 +100,7 @@ Source code can also be browsed and downloaded at {{{http://github.com/SpringSou
100100
<dependency>
101101
<groupId>org.springframework.batch</groupId>
102102
<artifactId>spring-batch-core</artifactId>
103-
<version>2.1.8.RELEASE</version>
103+
<version>2.1.9.RELEASE</version>
104104
</dependency>
105105
+---------------
106106

@@ -124,7 +124,7 @@ Source code can also be browsed and downloaded at {{{http://github.com/SpringSou
124124
<dependency>
125125
<groupId>org.springframework.batch</groupId>
126126
<artifactId>org.springframework.batch.core</artifactId>
127-
<version>2.1.8.RELEASE</version>
127+
<version>2.1.9.RELEASE</version>
128128
</dependency>
129129
+---------------
130130

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
Spring Batch 2.1.9 Release Notes
2+
3+
* Bug
4+
5+
* {{{https://jira.springframework.org/browse/BATCH-1751}[BATCH-1751]}} - Not possible to use property-placeholder values in batch-attributes
6+
7+
* {{{https://jira.springframework.org/browse/BATCH-1756}[BATCH-1756]}} - Make round-trip <<<JobParameters-Properties-JobParameters>>> work for double parameters
8+
9+
* {{{https://jira.springframework.org/browse/BATCH-1761}[BATCH-1761]}} - Only first item in chunk is re-processed on retry of failed write
10+
11+
* {{{https://jira.springframework.org/browse/BATCH-1772}[BATCH-1772]}} - missing closing xml tag in spring batch html user guide: 5.1.1. Configuring a Step
12+
13+
* {{{https://jira.springframework.org/browse/BATCH-1775}[BATCH-1775]}} - Inner beans of same type inside <<<<chunk/>>>> elements with scope ="step" leads to mistaken override of bean definitions
14+
15+
* {{{https://jira.springframework.org/browse/BATCH-1776}[BATCH-1776]}} - Batch Src Build unable to find FoundryLogic.vpp
16+
17+
* {{{https://jira.springframework.org/browse/BATCH-1783}[BATCH-1783]}} - Throwing exceptions inside a ChunkListener results in endless loop
18+
19+
* {{{https://jira.springframework.org/browse/BATCH-1798}[BATCH-1798]}} - MultiResourceItemReader fails on Restart if read() method was not called.
20+
21+
* {{{https://jira.springframework.org/browse/BATCH-1804}[BATCH-1804]}} - Retry does not work if additional exception occurs in the ItemWriter during scan for failure
22+
23+
* {{{https://jira.springframework.org/browse/BATCH-1812}[BATCH-1812]}} - ItemWriteListener does not work as expected, not called when writer runs in "recoverer"
24+
25+
* {{{https://jira.springframework.org/browse/BATCH-1813}[BATCH-1813]}} - BeanWrapperFieldSetMapper properties caching is broken
26+
27+
* {{{https://jira.springframework.org/browse/BATCH-1821}[BATCH-1821]}} - Possible mistake in current batch documentation
28+
29+
* {{{https://jira.springframework.org/browse/BATCH-1822}[BATCH-1822]}} - Job execution marked as STOPPED when exception occurs while committing StepExecution
30+
31+
* {{{https://jira.springframework.org/browse/BATCH-1826}[BATCH-1826]}} - Null pointer exception if optional parameter of type DATE is null
32+
33+
* {{{https://jira.springframework.org/browse/BATCH-1840}[BATCH-1840]}} - job execution continues when step is in status unknown
34+
35+
* {{{https://jira.springframework.org/browse/BATCH-1841}[BATCH-1841]}} - Upgrading to spring batch 2.1.8 causes error in processing xml configuration
36+
37+
* {{{https://jira.springframework.org/browse/BATCH-1848}[BATCH-1848]}} - JdbcPagingItemReader does not support table or column aliases due to sortKey being used in where clause, order by clause and for retrieval of result set column
38+
39+
* {{{https://jira.springframework.org/browse/BATCH-1852}[BATCH-1852]}} - Very quick (lt 1ms) jobs are poorly identified
40+
41+
* Defect
42+
43+
* {{{https://jira.springframework.org/browse/BATCH-1753}[BATCH-1753]}} - Problems With FlatFileItemWriter: error while trying to restart an execution
44+
45+
* Improvement
46+
47+
* {{{https://jira.springframework.org/browse/BATCH-1760}[BATCH-1760]}} - JobConfigurationRegistry referenced in MapJobRegistry comments
48+
49+
* {{{https://jira.springframework.org/browse/BATCH-1764}[BATCH-1764]}} - Correct JavaDoc for HibernateItemWriter
50+
51+
* {{{https://jira.springframework.org/browse/BATCH-1769}[BATCH-1769]}} - FlatFileItemReader javadocs
52+
53+
* {{{https://jira.springframework.org/browse/BATCH-1777}[BATCH-1777]}} - org.springframework.batch.core.converter.DefaultJobParametersConverter not safe for use with certain Locales
54+
55+
* {{{https://jira.springframework.org/browse/BATCH-1800}[BATCH-1800]}} - AbstractItemCountingItemStreamItemReader could implement ItemStreamReader interface instead of ItemStream and ItemReader
56+
57+
* {{{https://jira.springframework.org/browse/BATCH-1805}[BATCH-1805]}} - Clarify JavaDoc for JobParametersConverter
58+
59+
* {{{https://jira.springframework.org/browse/BATCH-1806}[BATCH-1806]}} - Javadoc for FlowExecutionStatus
60+
61+
* {{{https://jira.springframework.org/browse/BATCH-1815}[BATCH-1815]}} - RunIdIncrementer goes against java best practices
62+
63+
* {{{https://jira.springframework.org/browse/BATCH-1818}[BATCH-1818]}} - JobInterruptedException should not be logged
64+
65+
* {{{https://jira.springframework.org/browse/BATCH-1830}[BATCH-1830]}} - Don't log the JobInterruptedException when stopping a job
66+
67+
* {{{https://jira.springframework.org/browse/BATCH-1834}[BATCH-1834]}} - allow nested tasklets to be specified in the schema
68+
69+
* {{{https://jira.springframework.org/browse/BATCH-1861}[BATCH-1861]}} - Concurrency Support for in-memory repositories
70+
71+
* {{{https://jira.springframework.org/browse/BATCH-1862}[BATCH-1862]}} - Update README to reflect Maven 3.0 works
72+
73+
* {{{https://jira.springframework.org/browse/BATCH-1867}[BATCH-1867]}} - StaxEventItemWriter should be easier to override
74+
75+
* {{{https://jira.springframework.org/browse/BATCH-1874}[BATCH-1874]}} - provide a regex based line mapper
76+
77+
* {{{https://jira.springframework.org/browse/BATCH-1881}[BATCH-1881]}} - force sync to underlying file system in FlatFileItemWriter and StaxEventItemWriter
78+
79+
* New Feature
80+
81+
* {{{https://jira.springframework.org/browse/BATCH-1758}[BATCH-1758]}} - Round trip <<<Properties-String-Properties>>> broken for short Strings in PropertiesConverter

src/site/apt/migration/index.apt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
Links:
1515

16+
* {{{2.1.8-2.1.9.html}2.1.8 to 2.1.9}}
17+
1618
* {{{2.1.7-2.1.8.html}2.1.7 to 2.1.8}}
1719

1820
* {{{2.1.6-2.1.7.html}2.1.6 to 2.1.7}}

0 commit comments

Comments
 (0)