Skip to content

Commit

Permalink
Remove Deprecated method from TaskDefinitionRepository
Browse files Browse the repository at this point in the history
Add deprecation removals from whats-new.doc
  • Loading branch information
cppwfs committed Oct 30, 2024
1 parent 0a0b01c commit 34bf7a3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ public interface TaskDefinitionRepository extends KeyValueRepository<TaskDefinit

Page<TaskDefinition> findByDslTextContains(String dslText, Pageable pageable);

@Deprecated
Page<TaskDefinition> findByTaskNameContainsAndDslTextContains(String taskName, String dslText, Pageable pageable);

/**
* Performs a findByName query and throws an exception if the name is not found.
* @param name the name of the task definition
Expand Down
2 changes: 1 addition & 1 deletion whats-new.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ VersionInfoProperties versionInfoProperties, SecurityStateBean securityStateBean
** stopAll
** getStepNamesForJob
* The following deprecated `Converters` have been removed from SCDF: `AbstractDateTimeConverter`, `DateToStringConverter`, and `StringToDateConverter`. Use the converters provided by Spring Batch.

* `findByTaskNameContainsAndDslTextContains` deprecated method has been removed from `TaskDefinitionRepository`.

=== Breaking Changes
Announce deprecated changes here
Expand Down

0 comments on commit 34bf7a3

Please sign in to comment.