Skip to content

Releases: jenkinsci/http-request-plugin

v1.9.0

27 Apr 14:19
Compare
Choose a tag to compare

🚀 New features and improvements

🐛 Bug fixes

  • Store response headers in TreeMap with case insensitive comparator (#54) @Pawel-Cieslak

👻 Maintenance

v1.8.27

05 Nov 10:07
Compare
Choose a tag to compare

v1.8.26

10 Apr 15:40
Compare
Choose a tag to compare
  • JENKINS-61863 Fixed backward compatibility, Job were not using default for wrapAsMultipart (true)

v1.8.25 (backward compatibility problem, see 1.8.26)

05 Apr 08:38
Compare
Choose a tag to compare
  • Upload without multipart/form-data wrapping

v1.8.24

02 Dec 20:28
Compare
Choose a tag to compare

v1.8.23

24 Jun 19:18
Compare
Choose a tag to compare
  • Add option to use system properties, default false
    • Break old jobs will be deserialized as true(as it was before), new jobs will use as false, workflow jobs(old and new) will use default as false
    • Thanks to Tomas Bezdek for the pull request
  • JENKINS-55977 Check for null entity
  • Make ResponseContentSupplier public #37
  • JENKINS-57318 fix for null value in validResponseCodes #38
  • Support file uploads

v1.8.21

28 Sep 23:07
Compare
Choose a tag to compare

v1.8.20

14 Jun 20:50
Compare
Choose a tag to compare

v1.8.18

03 Apr 23:09
Compare
Choose a tag to compare
  • JENKINS-36486 - Support to execution in slave node
  • JENKINS-43147 - Added support to send body in DELETE method
  • JENKINS-36760 - Supported Jenkins credentials as basic credential
    • Deprecated basic credentials in global configuration
  • JENKINS-37627 - Added parameter 'outputFile' to save response
    • Added access to InputStream in response.getContentStream()
    • Added ResponseHandle to better control how response is interpreted
      • STRING(default to keep compatibility) will transform the response in string
      • NONE will not read the response content and will close the response after the job execution
      • LEAVE_OPEN will not read the response content but leaves an open inputStream to be read outside the job execution. Using LEAVE_OPEN it is your responsibility to close it after use. 'response.close();'
  • JENKINS-43273 - Error using script generator

v1.8.17

23 Mar 00:39
Compare
Choose a tag to compare
  • JENKINS-42303 - handshake error with aws
  • JENKINS-41934 Invalid certificate doesn't fail job
    • Added parameter 'ignoreSslErrors' to ignore certificate errors, default false but when it deserialize old jobs it uses true to keep compatibility. Breaks default for pipeline, should add ignoreSslErrors:true on invalid certificates requests or import into a keystore
  • Fixed warns and deprecateds