Branch: refs/heads/1.20.0-beta2
  Home:   https://github.com/jenkinsci/git-client-plugin
  Commit: ae68a851171393fdcb47709602fd94e6f6266ebc
      
https://github.com/jenkinsci/git-client-plugin/commit/ae68a851171393fdcb47709602fd94e6f6266ebc
  Author: Gennady Trafimenkov <gennady.trafimen...@gmail.com>
  Date:   2015-12-15 (Tue, 15 Dec 2015)

  Changed paths:
    M .gitignore

  Log Message:
  -----------
  Changes in .gitignore


  Commit: c99c91fcf497e784204398761be5c10f438d0e55
      
https://github.com/jenkinsci/git-client-plugin/commit/c99c91fcf497e784204398761be5c10f438d0e55
  Author: Gennady Trafimenkov <gennady.trafimen...@gmail.com>
  Date:   2015-12-15 (Tue, 15 Dec 2015)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/gitclient/CliGitAPIImpl.java
    M src/test/java/org/jenkinsci/plugins/gitclient/GitAPITestCase.java
    A src/test/resources/unicodeCharsInChangelogRepo.zip
    A src/test/resources/unicodeCharsInChangelogRepoCreate.sh

  Log Message:
  -----------
  Fixed garbled commit messages on Windows

On windows changelog commit messages with unicode characters are
not saved correctly to changelog.xml when CliGitAPI
implementation is in use.

That happens because "git whatchanged" gives byte stream of data.
Commit messages in that stream are encoded in UTF-8.  It is
necessary to explicitly decode bytestream to strings using UTF-8
encoding, otherwise default system encoding will be used.

This should fix issues:
  https://issues.jenkins-ci.org/browse/JENKINS-6203
  https://issues.jenkins-ci.org/browse/JENKINS-14798
  https://issues.jenkins-ci.org/browse/JENKINS-23091


  Commit: 7fffa152885993a3a6d7725b300894f5d57b0735
      
https://github.com/jenkinsci/git-client-plugin/commit/7fffa152885993a3a6d7725b300894f5d57b0735
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-03 (Wed, 03 Feb 2016)

  Changed paths:
    M .gitignore
    M src/main/java/org/jenkinsci/plugins/gitclient/CliGitAPIImpl.java
    M src/test/java/org/jenkinsci/plugins/gitclient/GitAPITestCase.java
    A src/test/resources/unicodeCharsInChangelogRepo.zip
    A src/test/resources/unicodeCharsInChangelogRepoCreate.sh

  Log Message:
  -----------
  Merge pull request #194 from gennady/fix-for-garbled-commit-messages-2

 Fixed garbled commit messages on Windows


  Commit: 4bb9717fa8592eac8e482986f49905e322d2062e
      
https://github.com/jenkinsci/git-client-plugin/commit/4bb9717fa8592eac8e482986f49905e322d2062e
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-03 (Wed, 03 Feb 2016)

  Changed paths:
    M src/test/java/org/jenkinsci/plugins/gitclient/CredentialsTest.java

  Log Message:
  -----------
  Reduce test time by disabling credentialed clone test

Code uses fetch rather than clone when creating a new workspace. Need
faster test execution while evaluating credential related changes,
rather than deep comparisons between the implementation of fetch_()
and clone_().


  Commit: 5a660af09232f487df3ee9ef5aab315cf3513d74
      
https://github.com/jenkinsci/git-client-plugin/commit/5a660af09232f487df3ee9ef5aab315cf3513d74
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-03 (Wed, 03 Feb 2016)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/gitclient/CliGitAPIImpl.java

  Log Message:
  -----------
  Remove trailing space from DOS echo in command launcher


  Commit: e564b6ca704130bb5706ad7bd504c99aab050087
      
https://github.com/jenkinsci/git-client-plugin/commit/e564b6ca704130bb5706ad7bd504c99aab050087
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-03 (Wed, 03 Feb 2016)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/gitclient/CliGitAPIImpl.java

  Log Message:
  -----------
  Disable ssh password and passphrase prompting

Since we're already using StrictHostKeyChecking=no, we should be able
to use BatchMode, another OpenSSH configuration setting to reduce the
changes of git blocking to prompt for a password.

The ssh_config man page for OpenSSH says:

BatchMode

If set to “yes”, passphrase/password querying will be disabled. This
option is useful in scripts and other batch jobs where no user is present
to supply the password. The argument must be “yes” or “no”. The
default is “no”.


  Commit: 8db15d4eeba1828031a3fc4705d739d1d60185d7
      
https://github.com/jenkinsci/git-client-plugin/commit/8db15d4eeba1828031a3fc4705d739d1d60185d7
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-03 (Wed, 03 Feb 2016)

  Changed paths:
    M src/test/java/org/jenkinsci/plugins/gitclient/NetrcTest.java

  Log Message:
  -----------
  Avoid NPE in NetrcTest


  Commit: fc965bebf5f4a77ca216e14b97aff67b796401ae
      
https://github.com/jenkinsci/git-client-plugin/commit/fc965bebf5f4a77ca216e14b97aff67b796401ae
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-03 (Wed, 03 Feb 2016)

  Changed paths:
    M src/main/java/org/jenkinsci/plugins/gitclient/CliGitAPIImpl.java

  Log Message:
  -----------
  Explicitly unset credential.username if it is empty


  Commit: 30e1c252a9fa84e620b7a7f75381de594487daed
      
https://github.com/jenkinsci/git-client-plugin/commit/30e1c252a9fa84e620b7a7f75381de594487daed
  Author: Mark Waite <mark.earl.wa...@gmail.com>
  Date:   2016-02-05 (Fri, 05 Feb 2016)

  Changed paths:
    M .gitignore
    M src/main/java/org/jenkinsci/plugins/gitclient/CliGitAPIImpl.java
    M src/test/java/org/jenkinsci/plugins/gitclient/CredentialsTest.java
    M src/test/java/org/jenkinsci/plugins/gitclient/GitAPITestCase.java
    M src/test/java/org/jenkinsci/plugins/gitclient/NetrcTest.java
    A src/test/resources/unicodeCharsInChangelogRepo.zip
    A src/test/resources/unicodeCharsInChangelogRepoCreate.sh

  Log Message:
  -----------
  Merge branch 'master' into 1.20.0-beta2


Compare: 
https://github.com/jenkinsci/git-client-plugin/compare/83c7ddcbdd4e...30e1c252a9fa

-- 
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