Releases: arangamani/jenkins_api_client
Releases · arangamani/jenkins_api_client
v0.8.1 release
- Fixed a bug in creating view. Issue #42
v0.8.0 release
- Added capability to send timer trigger while creating a job
- Added rename feature for jobs
- Added support for sending skype notification in job creation and on existing
jobs - Added support for sending Jenkins root URL configuration. Credit: @kevinhcross
- Added
delete_all!
methods for Job, View, and Node. get_eta
in BuildQueue will return "N/A" if the ETA is not given by Jenkins- Creating view accepts params Hash and more configuration through the API
- Spaces are allowed in Job, Node, and View names. Credit: @kevinhcross
- Support has been added to build a job with parameters. Credit: @tjhanley
v0.7.3 release
- Fixed #27 with a bug in create_view including extra character in the end of
the name
v0.7.2 release
- Fixed a minor bug in
get_console_output
of Job.
v0.7.1 release
- Fixed a bug (Issue #23) to remove the usage of "" in Job.
v0.7.0 release
- Fixed a bug where the ignorecase was never used in view list
- Raise an error if the view doesnt exists while listing jobs
- Added capability to change the mode of a node
- Added support for giving node to restrict the job during creation
- Added support for notification_email option when setting up a job
- Added support for CVS provider in SCM
- Added
create_dump_slave
anddelete
methods in Node API - Added BuildQueue class which is accessible by
@client.queue
method - Improvements in all over the code for performance and error handling
v0.6.2 release
- Fixed a bug where running job previously aborted was not recognized by the
color
v0.6.1 release
- Fixed a bug where the last few lines of console output was missed in the CLI
when using thejenkinscli job console
command.
v0.6.0 release
- Added functionality to get progressive console output from Jenkins.
- Added CLI command
console
for printing progressive console output on
terminal. - Fixed a bug with
get_current_build_number
not returning the recent running
build number.
v0.5.0 release
- Added functionality to create jobs with params.
- Added View class and added methods accessing List Views of Jenkins server.
- Added functionality to abort a running job.
- Deprecated
list_running
of Job class.list_by_status('running')
is
suggested.