Branch: refs/heads/master
  Home:   https://github.com/jenkinsci/gerrit-code-review-plugin
  Commit: a5fdcbc97f246a73c88e6080f9c8d367f170b6b9
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/a5fdcbc97f246a73c88e6080f9c8d367f170b6b9
  Author: Luca Milanesio <luca.milane...@gmail.com>
  Date:   2020-08-15 (Sat, 15 Aug 2020)

  Changed paths:
    M src/main/java/jenkins/plugins/gerrit/GerritEnvironmentContributor.java

  Log Message:
  -----------
  [JENKINS-61107] Avoid excessive query for change-info

When building the environment for a job, do not call the change
info REST-API all the times but instead store the ChangeInfo
into an InvisibleAction in the current Run.

The positive side-effect is that for each run the change will
be queried only once and the result will be reused many times
throughout the execution of the job's run.

Change-Id: I390ed109eda76754f8b8ba5941f2cfa044c5d42e


  Commit: 39b07cc6571ebbd0461adb6c67007c51a548db7c
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/39b07cc6571ebbd0461adb6c67007c51a548db7c
  Author: Thomas Draebing <thomas.draeb...@sap.com>
  Date:   2021-02-18 (Thu, 18 Feb 2021)

  Changed paths:
    A src/main/resources/META-INF/hudson.remoting.ClassFilter

  Log Message:
  -----------
  [JENKINS-64899] Add exemptions to ClassFilter

Since Jenkins 2.107.1 Jenkins has introduced JEP-200 [1]. This led to
the block of some classes that this plugin used and that are part of
the Gerrit project. Since it would not make much sense changing them
in Gerrit, this change adds exemptions for these classes.

[1] https://www.jenkins.io/blog/2018/03/15/jep-200-lts/

Change-Id: Ia853757b7154bd1785bad5ea5320746063faa7e4


  Commit: d8e031ecd51752b065293e845671a0dd255724c5
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/d8e031ecd51752b065293e845671a0dd255724c5
  Author: Joe Hansche <jhans...@themeetgroup.com>
  Date:   2021-05-01 (Sat, 01 May 2021)

  Changed paths:
    M 
src/main/java/com/google/gerrit/plugins/checks/client/AbstractEndpoint.java
    A 
src/main/java/com/google/gerrit/plugins/checks/client/UTCTimestampTypeAdapter.java
    M src/test/java/jenkins/plugins/gerrit/workflow/GerritCheckStepTest.java

  Log Message:
  -----------
  [JENKINS-63437] Resolve improper timestamp format

Gerrit expects timestamps in UTC timezone, but not in ISO-8601 format.
Previously Gson was automatically formatting these in local time zone,
but with no zone representation. Therefore when Gerrit displays the
times in the UI, they are double-shifted.

Change-Id: I80d59d51a9eeccd3ee9abe689fd32717a763441c


  Commit: 46bf63c21ae967d6662dfb049a2904f7fa5edab3
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/46bf63c21ae967d6662dfb049a2904f7fa5edab3
  Author: Thomas Draebing <thomas.draeb...@sap.com>
  Date:   2021-05-01 (Sat, 01 May 2021)

  Changed paths:
    M pom.xml

  Log Message:
  -----------
  Format pom.xml and sort dependencies

Change-Id: Ieb8d611077257361b8266bf5aa72c623fa211165


  Commit: dfa4b536664bf21352fff5405d6b7caa959514d8
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/dfa4b536664bf21352fff5405d6b7caa959514d8
  Author: Thomas Draebing <thomas.draeb...@sap.com>
  Date:   2021-05-01 (Sat, 01 May 2021)

  Changed paths:
    M src/main/java/jenkins/plugins/gerrit/AbstractGerritSCMSource.java
    M src/main/java/jenkins/plugins/gerrit/ChangeSCMHead.java

  Log Message:
  -----------
  [JENKINS-61469] Persist change rev over rebuilds of child jobs

If a child job building a patchset was failing and then manually
restarted, the SCM failed with `ERROR: Could not determine exact
tip revision of <change-ref>; falling back to nondeterministic
checkout`. This was caused by the fetch method used in child jobs
only taking refs into account that were manually configured in
the parent jobs SCM. A workaround was to add `refs/changes/*` to
this ref configuration, but that would lead to a lot of refs being
fetched with every run.

Now in case of a change being built by the child job, the SCM will
directly be told to fetch the patchset's revision.

Change-Id: I31d35c909a0f9d9c0729d89a07bb27074b261cd5


  Commit: b8368cf04a3180ab85c8d11d9eb4500370245b30
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/b8368cf04a3180ab85c8d11d9eb4500370245b30
  Author: Luca Milanesio <luca.milane...@gmail.com>
  Date:   2021-05-01 (Sat, 01 May 2021)

  Changed paths:
    M src/main/java/com/google/gerrit/plugins/checks/client/Checks.java

  Log Message:
  -----------
  Add more diagnostic data when update Checks API fails

Change-Id: Ic082bb8a51f50100d3d9bbfffb401bacc5ed0c37


  Commit: adc7700310db02c582f12d089a38348f456f5e5b
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/adc7700310db02c582f12d089a38348f456f5e5b
  Author: Thomas Draebing <thomas.draeb...@sap.com>
  Date:   2021-05-01 (Sat, 01 May 2021)

  Changed paths:
    M src/main/java/jenkins/plugins/gerrit/AbstractGerritSCMSource.java

  Log Message:
  -----------
  Remove unnecessary variable declaration/instantiation

Change-Id: I8a26b3ef5c52f7088976f613c3d3dcb036e92915


  Commit: 2eef9b80ca02659355f30b549d93c2c1bca85390
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/2eef9b80ca02659355f30b549d93c2c1bca85390
  Author: Rafal Klys <rafalk...@wp.pl>
  Date:   2021-05-13 (Thu, 13 May 2021)

  Changed paths:
    M BUILD.md
    M README.md

  Log Message:
  -----------
  Move Jenkins Setup section from Build.md to README.md

This way the most important information, that is how to use it is
right in the README. Previously possible user woudl have to somehow
guess that user guide is inside BUILD.md:)


  Commit: fd5bd23e590982a4f696abf84fa68a0840f4b340
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/fd5bd23e590982a4f696abf84fa68a0840f4b340
  Author: Johannes Carlsson <johannes....@gmail.com>
  Date:   2021-05-13 (Thu, 13 May 2021)

  Changed paths:
    M src/main/java/jenkins/plugins/gerrit/GerritWebHook.java

  Log Message:
  -----------
  Remove unused queue from webhook

The SequentialExecutionQueue is not used so remove it and related
import statements.

Change-Id: I55b5d503843ec2e4713ab7a936145d0554bf11ec


  Commit: 49b44e18b769d146d3cf6ad3fd8468a0650a6a7e
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/49b44e18b769d146d3cf6ad3fd8468a0650a6a7e
  Author: Rafal Klys <rafalk...@wp.pl>
  Date:   2021-05-14 (Fri, 14 May 2021)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Merge duplicated examples after moving Jenkins Setup section


  Commit: a8bc61d1df8e38e75a8d40b1d284eed2d7563a0c
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/a8bc61d1df8e38e75a8d40b1d284eed2d7563a0c
  Author: Rafal Klys <rafalk...@wp.pl>
  Date:   2021-05-14 (Fri, 14 May 2021)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Reorder Issues and Integrating with the Gerrit Checks plugin sections

Issues moved above Plugin Releases, to make it easier to find.

"Integrating with the Gerrit Checks plugin" section moved to "Jenkins
Setup" from "Why a new name?".

Also fixed header level for Issues and Plugin Releases, it should be h2,
that is section title, not h1, that is page title.

Also changes some header levels


  Commit: 05ca16d36281cc1d90d1e2d7a1fde2384a135c2e
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/05ca16d36281cc1d90d1e2d7a1fde2384a135c2e
  Author: Felipe Santos <felipecassi...@gmail.com>
  Date:   2021-06-09 (Wed, 09 Jun 2021)

  Changed paths:
    M src/main/java/jenkins/plugins/gerrit/GerritURI.java
    M src/test/java/jenkins/plugins/gerrit/GerritURITest.java

  Log Message:
  -----------
  Fix prefix extract when project contain dots

And also add some test cases for common URIs taken
from GERRIT_CHANGE_URL.

Change-Id: I787e4692716c65ffc833245cf0d92419899de184


  Commit: d73aa8b75ce6f415f41f4d7fa0dd2cdea34ef59c
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/d73aa8b75ce6f415f41f4d7fa0dd2cdea34ef59c
  Author: Francois Ferrand <thet...@gmail.com>
  Date:   2021-09-04 (Sat, 04 Sep 2021)

  Changed paths:
    M README.md
    M src/main/java/jenkins/plugins/gerrit/GerritEnvironmentContributor.java

  Log Message:
  -----------
  Expose GERRIT_REFSPEC variable, like gerrit-trigger

In gerrit-trigger, the ref name is exposed through the
GERRIT_REFSPEC variable, while GERRIT_REFNAME is exposed
only for 'Reference Updated' events.

Expose the GERRIT_REFSPEC variable to make existing jobs
compatible with both gerrit-trigger and gerrit-code-review plugins.

Change-Id: I12b72a69b1aa38fbd19a284869c2b480a0ced916


  Commit: 30591dd4653282aa2743fba52228aa78782d2e58
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/30591dd4653282aa2743fba52228aa78782d2e58
  Author: Grzegorz Golawski <grzegorz.golaw...@nokia.com>
  Date:   2021-09-04 (Sat, 04 Sep 2021)

  Changed paths:
    M src/main/java/jenkins/plugins/gerrit/ProjectChanges.java
    A src/test/java/jenkins/plugins/gerrit/ProjectChangesTest.java

  Log Message:
  -----------
  Support Gerrit < 2.15

Check if Gerrit server version is < 2.15 and
remove unsupported options before using changes API.

Change-id: I45765e594503d0836a73913643f5923b5ed1bb7e


  Commit: 3b2fab3f83104a9eb2134b7b687a23169eb7caa6
      
https://github.com/jenkinsci/gerrit-code-review-plugin/commit/3b2fab3f83104a9eb2134b7b687a23169eb7caa6
  Author: Luca Milanesio <luca.milane...@gmail.com>
  Date:   2021-09-04 (Sat, 04 Sep 2021)

  Changed paths:
    M README.md

  Log Message:
  -----------
  Prepare release notes for v0.4.5

Change-Id: I06ecd616184100b38ead74a23a75174f685b306b


Compare: 
https://github.com/jenkinsci/gerrit-code-review-plugin/compare/c2dc7a7e1287...3b2fab3f8310

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-commits/jenkinsci/gerrit-code-review-plugin/push/refs/heads/master/c2dc7a-3b2fab%40github.com.

Reply via email to