Skip to content
  1. Nov 08, 2016
    • Oleg Nenashev's avatar
      [JENKINS-39465] - Fix the AgentProtocol settings persistency handling (#2621) · 3e2e0171
      Oleg Nenashev authored
      * [JENKINS-39465] - Tweak processing of enabled and disabled protocols in Jenkins instance
      
      Due to whatever reason, without a definition of an array recipient field the data goes to the disk in the following way:
      
      ```
      <enabledAgentProtocol>JNLP3-connect</enabledAgentProtocol>
      <enabledAgentProtocol>JNLP4-connect</enabledAgentProtocol>
      ```
      
      It is supposed to processed by Implicit array correctly, but it does not actually happen.
      With a fix the data is being stored in another format:
      
      ```
        <enabledAgentProtocols>
          <string>JNLP3-connect</string>
          <string>JNLP4-connect</string>
        </enabledAgentProtocols>
      ```
      
      This data now works correctly and gets deserialized correctly. readResolve() just adds a fallback for the case when Implicit array handling starts behaving correctly (?).
      
      * [JENKINS-39465] - Add configuration roundtrip tests
      
      * [JENKINS-39465] - Jenkins#agentProtocols cache must be invalidated when we reload the configuration
      
      * [JENKINS-39465] - Remove obsolete comment from Tests
      3e2e0171
    • Jesse Glick's avatar
    • Sam Van Oort's avatar
      [FIXED JENKINS-39555] Don't do the actions initialization by helper method (#2624) · a63b50f4
      Sam Van Oort authored
      * Coarse fix for JENKINS-39555 - don't do the actions initialization by helper method
      
      * Small cleanup of docs, import
      
      * Testcase
      
      * Review changes
      a63b50f4
    • Oleg Nenashev's avatar
      Changelog: Add the 2.29 release notice (#2623) · 07884f7c
      Oleg Nenashev authored
      * Changelog: Add the 2.29 release notice
      
      * Fix the link
      07884f7c
  2. Nov 07, 2016
  3. Nov 06, 2016
  4. Nov 05, 2016
  5. Nov 04, 2016
  6. Nov 02, 2016
  7. Nov 01, 2016
  8. Oct 31, 2016
  9. Oct 30, 2016
  10. Oct 29, 2016
Loading