Skip to content

Releases: jenkinsci/github-plugin

v1.29.3

08 Oct 10:08

Choose a tag to compare

  • #198 - JENKINS-53149 Fix build data calculation when there is more than one build action
    This change should help with wrong sha errors using status setter

v1.29.2

08 Oct 09:54

Choose a tag to compare

Fix security issue

v1.29.1

08 Oct 09:54

Choose a tag to compare

Fix security issues

v1.29.0

16 Jan 22:51

Choose a tag to compare

  • #188 [JENKINS-48012] Require a X-Hub-Signature header when receiving a hook payload and if a secret is configured

v1.28.1

22 Oct 20:34

Choose a tag to compare

  • #178 - Cleanup help text blocks
  • #177 - [JENKINS-43786] Adapted the administrative monitor to the new UI definition (changes will be visible using new J cores)

v1.28.0

04 Aug 09:57

Choose a tag to compare

  • #172 - Add a display name to GitHub Servers configuration

v1.27.0

18 Apr 12:04

Choose a tag to compare

  • #167 - Use display-url-plugin to generate backref link in status setter by default

v1.26.2

03 Apr 10:51

Choose a tag to compare

  • #168 - Improvements for status/info/help texts

v1.26.1

26 Feb 14:07

Choose a tag to compare

  • #166 - Add support for "githubPush" declarative pipeline trigger (with help of symbol)
pipeline {
    agent any
    triggers {
        githubPush()
    }

    stages {
         // ...
    }
}

v1.26.0

10 Feb 14:01

Choose a tag to compare

  • #164 - [JENKINS-41811] - Expose event origin to listeners. Now GitHub trigger is origin aware.

    Internal changes

    This adds internal dependency to scm-api and wraps payload/event name to transport object.
    Now subscribers and trigger use this wrapper objects to communicate (see pr for details)

    Now deprecated:

    • com.cloudbees.jenkins.GitHubWebHook.Listener - subscriber extensions can be used instead
    • com.cloudbees.jenkins.GitHubTrigger - this interface is not used by this plugin anymore to search trigger, as it has only one implementation forewer (other implementation don't need such interface because they do another job).