Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/pretested-integration-plugin
  Commit: 55029cbb43e3478990b3e2af913d02eb6c630f81
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/55029cbb43e3478990b3e2af913d02eb6c630f81
  Author: Mads Nielsen <m...@praqma.net>
  Date:   2015-01-12 (Mon, 12 Jan 2015)

  Changed paths:
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/AccumulatedCommitStrategyIT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/GeneralBehaviourIT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/JENKINS_25546_IT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/MultipleScm_threeRepos_IT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/SquashCommitStrategyIT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/TestUtilsFactory.java

  Log Message:
  -----------
  Fixed all test to use bare repositories


  Commit: da8b51057a91741918355861d081ee5f4744daea
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/da8b51057a91741918355861d081ee5f4744daea
  Author: Andrius Ordojan <a...@praqma.net>
  Date:   2015-03-05 (Thu, 05 Mar 2015)

  Changed paths:
    A 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/GetAllCommitsFromBranchCallback.java

  Log Message:
  -----------
  Created a new callback to get all the commits from a branch


  Commit: 3d85657b08890bdcab8270ad921287c193121060
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/3d85657b08890bdcab8270ad921287c193121060
  Author: Andrius Ordojan <a...@praqma.net>
  Date:   2015-03-05 (Thu, 05 Mar 2015)

  Changed paths:
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/BuildResultValidator.java

  Log Message:
  -----------
  Added more feedback when the validation fails


  Commit: 052bc2607fcc0da90944eae5330da81b3080dd8e
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/052bc2607fcc0da90944eae5330da81b3080dd8e
  Author: Andrius Ordojan <a...@praqma.net>
  Date:   2015-03-05 (Thu, 05 Mar 2015)

  Changed paths:
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/AccumulatedCommitStrategyIT.java

  Log Message:
  -----------
  Created a test to run verify the behavior of the merge strategy


  Commit: 0135c4b010fd09fd333a3266bfc36caae79c2e54
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/0135c4b010fd09fd333a3266bfc36caae79c2e54
  Author: Andrius Ordojan <a...@praqma.net>
  Date:   2015-03-05 (Thu, 05 Mar 2015)

  Changed paths:
    M 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/AccumulatedCommitStrategy.java

  Log Message:
  -----------
  started using the callback for gathering all the commits from a branch


  Commit: 165704029aa3ecbbd5c629980a407b11fecc2fe5
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/165704029aa3ecbbd5c629980a407b11fecc2fe5
  Author: Andrius Ordojan <a...@praqma.net>
  Date:   2015-03-05 (Thu, 05 Mar 2015)

  Changed paths:
    M 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/GetAllCommitsFromBranchCallback.java

  Log Message:
  -----------
  added a check for when the walk reaches the root of the branch


  Commit: 605041754b52c3f26df0f2b5c2f50a3af31a7304
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/605041754b52c3f26df0f2b5c2f50a3af31a7304
  Author: Bue Petersen <b...@praqma.net>
  Date:   2015-03-06 (Fri, 06 Mar 2015)

  Changed paths:
    M 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/AccumulatedCommitStrategy.java
    M 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/GetAllCommitsFromBranchCallback.java
    A 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/AccumulatedCommitMessageIT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/AccumulatedCommitStrategyIT.java
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/TestUtilsFactory.java

  Log Message:
  -----------
  JENKINS-26568: New accumulated commit message:

The accumulated commit strategy is now using a commit message that is
almost identical to the squash commit message. It includes the commit
message of every included commit.

Implementation change details:

- Fixed the callback method, by limiting JGit tree walk to only work on
  branch and ignore master. That is, master commits are not collected
  and the tree walk stops.

- Minor helper method implemented in TestUtilsFactory that can count
  commits on a branch.

- All tests are moved to its own class, and there are tests written for
  a series of common cases. Each test case verifies selected text
  strings are in the new commit message.


  Commit: b3bfd2d5ec32945c22ff48a54e06d2d6eacfe413
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/b3bfd2d5ec32945c22ff48a54e06d2d6eacfe413
  Author: Bue Petersen <b...@praqma.net>
  Date:   2015-03-06 (Fri, 06 Mar 2015)

  Changed paths:
    M 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/AccumulatedCommitStrategy.java
    M 
src/main/java/org/jenkinsci/plugins/pretestedintegration/scm/git/GetAllCommitsFromBranchCallback.java

  Log Message:
  -----------
  JENKINS-26568: Static analysis code fixes

Fixed some warnings from our build pipeline around our statis analysis
of the code.


  Commit: 78d265c2e8fb0e8796c0e06ec24d916874977966
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/78d265c2e8fb0e8796c0e06ec24d916874977966
  Author: Bue Petersen <b...@praqma.net>
  Date:   2015-03-06 (Fri, 06 Mar 2015)

  Changed paths:
    M README.md

  Log Message:
  -----------
  JENKINS-26568: Readme note on running tests on Win


  Commit: df433874851e4136763701dcdda6758f9573a0df
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/df433874851e4136763701dcdda6758f9573a0df
  Author: Bue Petersen <b...@praqma.net>
  Date:   2015-03-06 (Fri, 06 Mar 2015)

  Changed paths:
    M 
src/test/java/org/jenkinsci/plugins/pretestedintegration/integration/scm/git/AccumulatedCommitMessageIT.java

  Log Message:
  -----------
  JENKINS-26568: Made integation test Windows compl.

Newline (unix) was used, so changed all strings in the tests to use
string formattings that works on all platforms.


  Commit: 63b83cbebeb6e57ba7f7b5bc4d9e3235b1e3ba34
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/63b83cbebeb6e57ba7f7b5bc4d9e3235b1e3ba34
  Author: ReleasePraqma <rele...@praqma.net>
  Date:   2015-03-06 (Fri, 06 Mar 2015)

  Changed paths:
    M pom.xml

  Log Message:
  -----------
  [maven-release-plugin] prepare release pretested-integration-2.2.1


  Commit: 4a0fd36c6089dacff11729e1d01bbe0d12715424
      
https://github.com/jenkinsci/pretested-integration-plugin/commit/4a0fd36c6089dacff11729e1d01bbe0d12715424
  Author: ReleasePraqma <rele...@praqma.net>
  Date:   2015-03-06 (Fri, 06 Mar 2015)

  Changed paths:
    M pom.xml

  Log Message:
  -----------
  [maven-release-plugin] prepare for next development iteration


Compare: 
https://github.com/jenkinsci/pretested-integration-plugin/compare/247b3682f28f...4a0fd36c6089

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-commits+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to