Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.17 KB

CHANGELOG.md

File metadata and controls

34 lines (20 loc) · 1.17 KB

Release Note

0.2.1

New Features

  • Added DefaultLogFilter.
  • Added Precondition to check the starting condition of Job and Step. It can be specified as an argument when creating Job and Step instances.

Destructive Changes

  • Deleted DevelopmentLogFilter and ProductionLogFilter.

0.2.0

New Features

  • Added logging feature. Some logs are automatically output to the console during batch processing, but you can output logs at any log level by using the various methods for log output.
  • Enabled parameter exchange between tasks in the same step.
  • Added the concept of SharedParameters, which are shared by the entire batch application.

Destructive Changes

  • Refactored the structure, made JobLauncher private and released BatchApplication as new entry point.
  • Added ExecutionContext as an argument to the execute method of the Task class.

0.1.0

  • Improved documents.
  • Wrapped the return value of execute with Future to allow asynchronous processing in Task. Asynchronous processing defined in Task is safely controlled by the batch library, so you don't need to be aware of it when running JobLauncher.

0.0.1

  • First Release!