Branch: refs/heads/housemarque Home: https://github.com/jenkinsci/plasticscm-plugin
Commit: e61263e10f7b5e6a217bb5d87fd7f39af1bdc51b https://github.com/jenkinsci/plasticscm-plugin/commit/e61263e10f7b5e6a217bb5d87fd7f39af1bdc51b Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-01 (Thu, 01 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Fix update issues The checkout action won't update the workspace if it's set to a changeset or a label. The update will only take place if you change the selector or your workspace is switched to a branch. Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: ebc691d244cff3f14313cb435a1bfafa73ae8aee https://github.com/jenkinsci/plasticscm-plugin/commit/ebc691d244cff3f14313cb435a1bfafa73ae8aee Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-02 (Fri, 02 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Rename method to avoid confusion with mustUpdateSelector Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: ae2b66e42653af7c6ea4baaaaf9b4732f49a282d https://github.com/jenkinsci/plasticscm-plugin/commit/ae2b66e42653af7c6ea4baaaaf9b4732f49a282d Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-02 (Fri, 02 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Improve the selector type detection Instead of simply checking the selector string, perform a CLI command to determine the selector type. This avoids issues if e.g. the branch name contains the word "changeset" or "label". Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 454fb3c5f91921d2f3f4269fba34cdb5ce045190 https://github.com/jenkinsci/plasticscm-plugin/commit/454fb3c5f91921d2f3f4269fba34cdb5ce045190 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Simplify the checkout action Always set the selector to trigger the update - that way we don't run into update issues with the changeset selector. Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: c99a03d4050543763dd615b5d9c3d6acc1e9f1a1 https://github.com/jenkinsci/plasticscm-plugin/commit/c99a03d4050543763dd615b5d9c3d6acc1e9f1a1 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Remove unused method Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 6d9c3b420ecdc865d5fbac9aa9bd09c32853dc42 https://github.com/jenkinsci/plasticscm-plugin/commit/6d9c3b420ecdc865d5fbac9aa9bd09c32853dc42 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Clean the workspace only if it already exists Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 8621c7675d6943d5ec4191506c8c27ca576304a1 https://github.com/jenkinsci/plasticscm-plugin/commit/8621c7675d6943d5ec4191506c8c27ca576304a1 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Remove unused imports Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 6ecb76f72b9385503584f5523f92b5f17620bfa1 https://github.com/jenkinsci/plasticscm-plugin/commit/6ecb76f72b9385503584f5523f92b5f17620bfa1 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Bring back the log line Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 1b8481ec7056933f4bc3ab15cfc726a6c64c0afd https://github.com/jenkinsci/plasticscm-plugin/commit/1b8481ec7056933f4bc3ab15cfc726a6c64c0afd Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetLogCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/DetailedHistoryCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/FindChangesetCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/FindOutputParser.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/LogOutputParser.java A src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/SafeFilePath.java Log Message: ----------- Fix file not found issues We need to use FilePath instead of File. FilePath represents files in a local or remote machine. It prevents the kind of issues we're experiencing since it provides the tools to operate on remote files. The code is generally run on the 'master' machine but remotely on the agents. The filesystem context is always the one from the 'master' machine. Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 68996eced9a9ed5b563fcea89d1e66a313bd007c https://github.com/jenkinsci/plasticscm-plugin/commit/68996eced9a9ed5b563fcea89d1e66a313bd007c Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetRangeLogCommand.java Log Message: ----------- Fix ChangesetRangeLogCommand Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 344c6108cf1fac6282a77bca13eb83590902e95e https://github.com/jenkinsci/plasticscm-plugin/commit/344c6108cf1fac6282a77bca13eb83590902e95e Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/OutputTempFile.java Log Message: ----------- Update OutputTempFile to use a FilePath Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 381dd557e892a3904d56704ed213f02a5e90131a https://github.com/jenkinsci/plasticscm-plugin/commit/381dd557e892a3904d56704ed213f02a5e90131a Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/FindOutputParser.java Log Message: ----------- Fix exists check in FindOutputParser Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 1e8e0367b9e6d43ac22265e7da86d00f5c0a4770 https://github.com/jenkinsci/plasticscm-plugin/commit/1e8e0367b9e6d43ac22265e7da86d00f5c0a4770 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/FindOutputParser.java Log Message: ----------- Remove InterruptedException from signature Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 2658d076c0c92c201f8417cdc97a9666d07379b1 https://github.com/jenkinsci/plasticscm-plugin/commit/2658d076c0c92c201f8417cdc97a9666d07379b1 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/PlasticSCM.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetsRetriever.java Log Message: ----------- Pass the workspace path where needed Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 19275a2d945497bc12048259d556333a94e8efb0 https://github.com/jenkinsci/plasticscm-plugin/commit/19275a2d945497bc12048259d556333a94e8efb0 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/FindOutputParser.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/LogOutputParser.java Log Message: ----------- Remove unused imports Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 54788ab8c437d4b1b0937c41e105a0b7ae578c06 https://github.com/jenkinsci/plasticscm-plugin/commit/54788ab8c437d4b1b0937c41e105a0b7ae578c06 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-05 (Mon, 05 Oct 2020) Changed paths: Log Message: ----------- Retry failed Jenkins build The build failed in ci.jenkins.io for some unexpected AWS issues. Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: ee3dc3ef2204f1b85e82c8ee806c42c6745a497b https://github.com/jenkinsci/plasticscm-plugin/commit/ee3dc3ef2204f1b85e82c8ee806c42c6745a497b Author: Miguel <mgonza...@codicesoftware.com> Date: 2020-10-06 (Tue, 06 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/OutputTempFile.java M src/main/java/com/codicesoftware/plugins/hudson/PlasticSCM.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetLogCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetRangeLogCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetsRetriever.java M src/main/java/com/codicesoftware/plugins/hudson/commands/DetailedHistoryCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/FindChangesetCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/FindOutputParser.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/LogOutputParser.java A src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/SafeFilePath.java Log Message: ----------- Merge pull request #37 from jenkinsci/scm27719 Fix XML output in commands Commit: edf90851d01b2c2f99be47f5886e58105665f81a https://github.com/jenkinsci/plasticscm-plugin/commit/edf90851d01b2c2f99be47f5886e58105665f81a Author: Miguel <mgonza...@codicesoftware.com> Date: 2020-10-07 (Wed, 07 Oct 2020) Changed paths: M src/main/java/com/codicesoftware/plugins/hudson/actions/CheckoutAction.java Log Message: ----------- Merge pull request #35 from jenkinsci/scm27141 Only run cm update with branch selector Commit: e4c55a9009360e3aac1b8c27d453bfc0a4243cb1 https://github.com/jenkinsci/plasticscm-plugin/commit/e4c55a9009360e3aac1b8c27d453bfc0a4243cb1 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-07 (Wed, 07 Oct 2020) Changed paths: M README.md Log Message: ----------- Update README Include an explicit mention to the undo operation that runs before any update. This was mentioned in issue #31 Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 2adcb84457124a3245cd1020ae3cb0c123894e50 https://github.com/jenkinsci/plasticscm-plugin/commit/2adcb84457124a3245cd1020ae3cb0c123894e50 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-07 (Wed, 07 Oct 2020) Changed paths: M pom.xml Log Message: ----------- [maven-release-plugin] prepare release plasticscm-plugin-3.4 Commit: a97ee9e752c8857cba0d649389e807bccf9df968 https://github.com/jenkinsci/plasticscm-plugin/commit/a97ee9e752c8857cba0d649389e807bccf9df968 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-07 (Wed, 07 Oct 2020) Changed paths: M pom.xml Log Message: ----------- [maven-release-plugin] prepare for next development iteration Commit: e45a341bdf0033dbaa960df38601efa9e454fcd7 https://github.com/jenkinsci/plasticscm-plugin/commit/e45a341bdf0033dbaa960df38601efa9e454fcd7 Author: Miguel González <mgonza...@codicesoftware.com> Date: 2020-10-07 (Wed, 07 Oct 2020) Changed paths: M CHANGELOG.md Log Message: ----------- Add release 3.4 to changelog Signed-off-by: Miguel González <mgonza...@codicesoftware.com> Commit: 988aa74a209c1ecd67930cf9f4552af55403e307 https://github.com/jenkinsci/plasticscm-plugin/commit/988aa74a209c1ecd67930cf9f4552af55403e307 Author: Krzysztof Knapik <kna...@gmail.com> Date: 2020-10-07 (Wed, 07 Oct 2020) Changed paths: M CHANGELOG.md M README.md M pom.xml M src/main/java/com/codicesoftware/plugins/hudson/OutputTempFile.java M src/main/java/com/codicesoftware/plugins/hudson/PlasticSCM.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetLogCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetRangeLogCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/ChangesetsRetriever.java M src/main/java/com/codicesoftware/plugins/hudson/commands/DetailedHistoryCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/FindChangesetCommand.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/FindOutputParser.java M src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/LogOutputParser.java A src/main/java/com/codicesoftware/plugins/hudson/commands/parsers/SafeFilePath.java Log Message: ----------- Synchronize with latest changes in 'master' branch Compare: https://github.com/jenkinsci/plasticscm-plugin/compare/0bd5073e84b9...988aa74a209c -- 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/plasticscm-plugin/push/refs/heads/housemarque/0bd507-988aa7%40github.com.