Skip to content

Releases: arangamani/jenkins_api_client

v0.8.1 release

10 Jul 05:39
Compare
Choose a tag to compare
  • Fixed a bug in creating view. Issue #42

v0.8.0 release

10 Jul 05:40
Compare
Choose a tag to compare
  • 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

10 Jul 05:40
Compare
Choose a tag to compare
  • Fixed #27 with a bug in create_view including extra character in the end of
    the name

v0.7.2 release

10 Jul 05:41
Compare
Choose a tag to compare
  • Fixed a minor bug in get_console_output of Job.

v0.7.1 release

10 Jul 05:41
Compare
Choose a tag to compare
  • Fixed a bug (Issue #23) to remove the usage of "" in Job.

v0.7.0 release

10 Jul 05:42
Compare
Choose a tag to compare
  • 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 and delete 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

10 Jul 05:43
Compare
Choose a tag to compare
  • Fixed a bug where running job previously aborted was not recognized by the
    color

v0.6.1 release

10 Jul 05:43
Compare
Choose a tag to compare
  • Fixed a bug where the last few lines of console output was missed in the CLI
    when using the jenkinscli job console command.

v0.6.0 release

10 Jul 05:44
Compare
Choose a tag to compare
  • 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

10 Jul 05:44
Compare
Choose a tag to compare
  • 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.