Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add type safe getters to execution context #718

Closed
wants to merge 34 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9af12f8
Update development version to 4.1.1.BUILD-SNAPSHOT
fmbenhassine Oct 30, 2018
50d141d
Add assertion that a serializer was set in the JdbcExecutionContextDao
fmbenhassine Dec 11, 2018
481ad0e
Fix javadoc typo in PartitionStepBuilder#gridSize()
dimitrisli Nov 5, 2018
96e6ae2
Fix typo
fmbenhassine Nov 2, 2018
6dc22a7
Upgrade dependencies for version 4.1.1.RELEASE
fmbenhassine Jan 10, 2019
81552b3
Upgrade Spring Amqp and Integration versions
fmbenhassine Jan 11, 2019
a6d8ac1
Tweak XmlInputFactory settings
fmbenhassine Jan 11, 2019
cc63901
[artifactory-release] Release version 4.1.1.RELEASE
spring-builds Jan 11, 2019
d3ee8ed
[artifactory-release] Next development version
spring-builds Jan 11, 2019
7ea6656
Upgrade dependencies
fmbenhassine Jan 28, 2019
319c67c
Fix tests failing on windows
fmbenhassine Jan 18, 2019
72aaf9c
Minor polish
fmbenhassine Jan 25, 2019
ce82fc5
Fix JobOperatorFunctionalTests#testMultipleSimultaneousInstances
fmbenhassine Jan 15, 2019
eed1bd5
Fix tests failing randomly
fmbenhassine Jan 25, 2019
7803c1b
Fix integration tests
fmbenhassine Jan 30, 2019
008d081
Re-initialize datasource before each integration test
fmbenhassine Jan 30, 2019
bd4f442
Fix concurrency issue in RetryTransactionalPollingIntegrationTests
fmbenhassine Feb 1, 2019
79725d1
Treat MariaDB as MySQL
quaff Jan 31, 2019
9305808
URL Cleanup
spring-operator Mar 16, 2019
e673281
URL Cleanup
spring-operator Mar 21, 2019
d1d37bb
URL Cleanup
spring-operator Mar 26, 2019
167067b
URL Cleanup
spring-operator Mar 26, 2019
e28bcaa
Fix schema location of jsr 352 namespace
fmbenhassine Mar 26, 2019
9e31c42
Bump SF version to 5.1.6.BUILD-SNAPSHOT
fmbenhassine Mar 27, 2019
bf06ca5
Fix typo in log message
saikatbhadra Jan 29, 2019
7064f6b
Fix import in BeanValidatingItemProcessor
fmbenhassine Apr 2, 2019
6756495
Add new line in gradle.properties
fmbenhassine Apr 3, 2019
2590276
Update dependencies
fmbenhassine Apr 3, 2019
1e714b3
[artifactory-release] Release version 4.1.2.RELEASE
spring-builds Apr 3, 2019
c8a74b4
[artifactory-release] Next development version
spring-builds Apr 3, 2019
4fdd5f4
Mark the parameter of LineTokenizer#tokenize as `@Nullable`
fmbenhassine May 9, 2019
488cdaf
Update Spring projects dependencies to latest BUILD-SNAPSHOT
fmbenhassine Jun 14, 2019
dd6c0ea
add type safe getters to execution context
IlyaNerd Jun 25, 2019
4511c6e
sync
IlyaNerd Nov 3, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
URL Cleanup
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).

# Fixed URLs

## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.

* http://projects.spring.io/spring-batch/ with 1 occurrences migrated to:
  https://projects.spring.io/spring-batch/ ([https](https://projects.spring.io/spring-batch/) result 200).
* http://spring.io with 1 occurrences migrated to:
  https://spring.io ([https](https://spring.io) result 200).
* http://www.apache.org/licenses/LICENSE-2.0.txt with 1 occurrences migrated to:
  https://www.apache.org/licenses/LICENSE-2.0.txt ([https](https://www.apache.org/licenses/LICENSE-2.0.txt) result 200).
  • Loading branch information
spring-operator authored and fmbenhassine committed Mar 18, 2019
commit 930580888e95d47b11d06bebdd1cd3e28432fb7d
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ plugins {
}

ext {
linkHomepage = 'http://projects.spring.io/spring-batch/'
linkHomepage = 'https://projects.spring.io/spring-batch/'
linkCi = 'https://build.spring.io/browse/BATCH'
linkIssue = 'https://jira.spring.io/browse/BATCH'
linkScmUrl = 'https://github.com/spring-projects/spring-batch'
Expand Down
4 changes: 2 additions & 2 deletions publish-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ def customizePom(pom, gradleProject) {
url = linkHomepage
organization {
name = 'Spring'
url = 'http://spring.io'
url = 'https://spring.io'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
url 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
Expand Down