Branch: refs/heads/rc
Home: https://github.com/jenkinsci/jenkins
Commit: 492599af4d286a2211f38ae34ff763eff8be50d8
https://github.com/jenkinsci/jenkins/commit/492599af4d286a2211f38ae34ff763eff8be50d8
Author: Daniel Beck <[email protected]>
Date: 2014-05-24 (Sat, 24 May 2014)
Changed paths:
M core/src/main/java/hudson/console/ModelHyperlinkNote.java
Log Message:
-----------
Return correct URL to Jenkins master node
Commit: f2110db998f08934f67001c2602bef52e60bb70f
https://github.com/jenkinsci/jenkins/commit/f2110db998f08934f67001c2602bef52e60bb70f
Author: Daniel Beck <[email protected]>
Date: 2014-05-24 (Sat, 24 May 2014)
Changed paths:
M core/src/main/java/hudson/console/ModelHyperlinkNote.java
Log Message:
-----------
Use full display name by default for model links to Items
Commit: 5bad446dd51d31efd60538eab5c87bdde57114e9
https://github.com/jenkinsci/jenkins/commit/5bad446dd51d31efd60538eab5c87bdde57114e9
Author: Stephen Connolly <[email protected]>
Date: 2014-06-19 (Thu, 19 Jun 2014)
Changed paths:
M core/src/main/java/jenkins/model/Jenkins.java
Log Message:
-----------
[FIXED JENKINS-23294] Interpret X-Forwarded-Port
- Also fixed handling of X-Forwarded-Proto and added support for
X-Forwarded-Host
- Additional complexity is that there can be multiple headers with the same
name (which was handled by default by accident) and
that a header value may contain a comma separated list if there were multiple
forwarding hops.
Commit: cffe9df0176b0ff895554ce7f2ea4d2f20062351
https://github.com/jenkinsci/jenkins/commit/cffe9df0176b0ff895554ce7f2ea4d2f20062351
Author: Jesse Glick <[email protected]>
Date: 2014-06-19 (Thu, 19 Jun 2014)
Changed paths:
M core/src/main/java/hudson/diagnosis/ReverseProxySetupMonitor.java
M core/src/main/java/jenkins/model/Jenkins.java
M core/src/test/java/jenkins/model/JenkinsGetRootUrlTest.java
M test/src/test/java/hudson/diagnosis/ReverseProxySetupMonitorTest.java
Log Message:
-----------
[FIXED JENKINS-23294] Deal with X-Forwarded-Port.
If this is set, use it instead of ServletRequest.getServerPort() for purposes
of getRootUrlFromRequest().
Also treat the default port as scheme-specific in that method (which presumes
that we in fact got the reported port right).
And enhance the reverse proxy setup monitor to validate that the Referer header
(/manage)
actually matches what we have computed from getRootUrlFromRequest;
if it does not, something is messed up, though it may require some digging to
find what.
(Would be better to let the monitor specify the exact problem it determined,
though this is not always actually possible;
for example if you are missing AllowEncodedSlashes NoDecode in Apache,
you just get a 404 from Apache without even getting to Jenkins.)
Commit: 333b05e356c70e90a7a1eeab9cb7d964c00fcd02
https://github.com/jenkinsci/jenkins/commit/333b05e356c70e90a7a1eeab9cb7d964c00fcd02
Author: Stephen Connolly <[email protected]>
Date: 2014-06-19 (Thu, 19 Jun 2014)
Changed paths:
M core/src/main/java/jenkins/model/Jenkins.java
Log Message:
-----------
[FIXED JENKINS-23294] Interpret X-Forwarded-Port
- Also fixed handling of X-Forwarded-Proto and added support for
X-Forwarded-Host
- Additional complexity is that there can be multiple headers with the same
name (which was handled by default by accident) and
that a header value may contain a comma separated list if there were multiple
forwarding hops.
Commit: 454e510d8f825885fbbd360755e5f0dd676ed869
https://github.com/jenkinsci/jenkins/commit/454e510d8f825885fbbd360755e5f0dd676ed869
Author: Stephen Connolly <[email protected]>
Date: 2014-06-19 (Thu, 19 Jun 2014)
Changed paths:
M test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java
Log Message:
-----------
Since the javadoc for the method says that the relative path should start
without a leading '/' strip any leading '/' characters
- I had been tempted to throw IllegalArgumentException but that would break a
lot of tests
Commit: 0ae4c2cff61f8b0cac8c2544f4583a3101f7a74a
https://github.com/jenkinsci/jenkins/commit/0ae4c2cff61f8b0cac8c2544f4583a3101f7a74a
Author: Stephen Connolly <[email protected]>
Date: 2014-06-19 (Thu, 19 Jun 2014)
Changed paths:
M test/src/test/java/jenkins/security/RekeySecretAdminMonitorTest.java
Log Message:
-----------
Somebody did not read the javadoc for the goTo method (urls not supposed to
start with a /)
Commit: 264bd1a2d574e3fc64fab2f8e1a02827e4326014
https://github.com/jenkinsci/jenkins/commit/264bd1a2d574e3fc64fab2f8e1a02827e4326014
Author: Kohsuke Kawaguchi <[email protected]>
Date: 2014-06-29 (Sun, 29 Jun 2014)
Changed paths:
M cli/pom.xml
M core/pom.xml
M plugins/pom.xml
M pom.xml
M test/pom.xml
M war/pom.xml
Log Message:
-----------
the trunk is toward 1.572-SNAPSHOT
Commit: b578b67f8c2e161c2bf5d3663a538833958f3d09
https://github.com/jenkinsci/jenkins/commit/b578b67f8c2e161c2bf5d3663a538833958f3d09
Author: Daniel Beck <[email protected]>
Date: 2014-06-30 (Mon, 30 Jun 2014)
Changed paths:
M core/src/main/java/hudson/console/ModelHyperlinkNote.java
M core/src/main/java/hudson/model/Computer.java
M core/src/main/java/hudson/model/Node.java
Log Message:
-----------
Reuse Computer.getUrl() for ModelHyperlinkNote and getSearchUrl()s
Commit: b9903dd89a98f77ec94132f8669d032c3401498c
https://github.com/jenkinsci/jenkins/commit/b9903dd89a98f77ec94132f8669d032c3401498c
Author: Jesse Glick <[email protected]>
Date: 2014-06-30 (Mon, 30 Jun 2014)
Changed paths:
M test/src/main/java/org/jvnet/hudson/test/JenkinsRule.java
Log Message:
-----------
Jenkins core does not automatically call Descriptor.load(), so JenkinsRule
should not do so either.
Reverts 66528e4 so as to make test cases more faithful to real behavior.
Commit: 70b0c21f4517f448358f35d9639f482884132bf1
https://github.com/jenkinsci/jenkins/commit/70b0c21f4517f448358f35d9639f482884132bf1
Author: Kanstantsin Shautsou <[email protected]>
Date: 2014-07-01 (Tue, 01 Jul 2014)
Changed paths:
M core/src/main/java/hudson/model/ParameterValue.java
Log Message:
-----------
Fix documentation.
Commit: 308ec2eba1b24775d494616db7747524eaaa436f
https://github.com/jenkinsci/jenkins/commit/308ec2eba1b24775d494616db7747524eaaa436f
Author: Jesse Glick <[email protected]>
Date: 2014-07-01 (Tue, 01 Jul 2014)
Changed paths:
M core/src/main/java/hudson/model/ParameterValue.java
Log Message:
-----------
Merge pull request #1305 from KostyaSha/fix2
Fix documentation.
Commit: b06e2aa3414d480d8b44459b0632226921be85f6
https://github.com/jenkinsci/jenkins/commit/b06e2aa3414d480d8b44459b0632226921be85f6
Author: Daniel Beck <[email protected]>
Date: 2014-07-04 (Fri, 04 Jul 2014)
Changed paths:
M core/src/main/java/hudson/lifecycle/Lifecycle.java
Log Message:
-----------
[FIXED JENKINS-23683] Check whether war's directory is writable
Commit: f277502a8304e38f51160897b9cb2e4ed9910e2c
https://github.com/jenkinsci/jenkins/commit/f277502a8304e38f51160897b9cb2e4ed9910e2c
Author: tfennelly <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
A .editorconfig
M core/src/main/resources/hudson/model/AllView/noJob.jelly
M core/src/main/resources/lib/form/breadcrumb-config-outline/init.css
M core/src/main/resources/lib/hudson/projectView.jelly
M core/src/main/resources/lib/layout/breadcrumbs.css
M core/src/main/resources/lib/layout/breadcrumbs.js
M core/src/main/resources/lib/layout/layout.jelly
M test/src/test/resources/scripts/BehaviorTest/testSelectorOrdering.jelly
A war/src/main/webapp/css/responsive-grid.css
M war/src/main/webapp/css/style.css
A war/src/main/webapp/images/jenkins-redbg.png
M war/src/main/webapp/scripts/hudson-behavior.js
Log Message:
-----------
New general layout using <div>s
Commit: a239197a8fd17e3831af36bfb9b3c90c550a9bb1
https://github.com/jenkinsci/jenkins/commit/a239197a8fd17e3831af36bfb9b3c90c550a9bb1
Author: Stephen Connolly <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
M core/src/main/java/hudson/diagnosis/ReverseProxySetupMonitor.java
M core/src/main/java/jenkins/model/Jenkins.java
M core/src/test/java/jenkins/model/JenkinsGetRootUrlTest.java
M test/src/main/java/org/jvnet/hudson/test/HudsonTestCase.java
M test/src/test/java/hudson/diagnosis/ReverseProxySetupMonitorTest.java
M test/src/test/java/jenkins/security/RekeySecretAdminMonitorTest.java
Log Message:
-----------
Merge pull request #1294 from jenkinsci/pull/1265/head
[FIXED JENKINS-23294] Interpret X-Forwarded-Port
Commit: ca53100caea754b9e00e02743fc75e207d029ffe
https://github.com/jenkinsci/jenkins/commit/ca53100caea754b9e00e02743fc75e207d029ffe
Author: Stephen Connolly <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
M core/src/main/java/hudson/console/ModelHyperlinkNote.java
M core/src/main/java/hudson/model/Computer.java
M core/src/main/java/hudson/model/Node.java
Log Message:
-----------
Merge pull request #1253 from daniel-beck/ModelHyperlinkNote-MasterNode
Return correct URL to Jenkins master node
Commit: 773144f0a1f786f50086bac6e3af65380ceff9fb
https://github.com/jenkinsci/jenkins/commit/773144f0a1f786f50086bac6e3af65380ceff9fb
Author: Oleg Nenashev <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
M core/src/main/java/hudson/lifecycle/Lifecycle.java
Log Message:
-----------
Merge pull request #1311 from daniel-beck/JENKINS-23683
[FIXED JENKINS-23683] Check whether war's directory is writable
Commit: 5e39f687fba0f47fa17a4ba15ae20f364868acae
https://github.com/jenkinsci/jenkins/commit/5e39f687fba0f47fa17a4ba15ae20f364868acae
Author: Jesse Glick <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
M core/src/main/java/hudson/ExtensionList.java
M core/src/main/java/hudson/model/listeners/SaveableListener.java
M core/src/main/java/jenkins/model/Jenkins.java
M test/src/test/java/hudson/ExtensionListTest.java
Log Message:
-----------
Suppressing NPE from SaveableListener.all during shutdown.
https://gist.githubusercontent.com/vivek/0d4d153cd9faad6e5743/raw/78a1d1b317894360c2ca06c7f4469f694ca7d573/gistfile1.java
Commit: 4f39bd09142fed1b9cce1cdfacaa1012109c34c0
https://github.com/jenkinsci/jenkins/commit/4f39bd09142fed1b9cce1cdfacaa1012109c34c0
Author: Kohsuke Kawaguchi <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
M changelog.html
M debian/debian/changelog
Log Message:
-----------
merged back the RC branch
Commit: 77d7e52110df458f31a5b6ce59a052f66b253387
https://github.com/jenkinsci/jenkins/commit/77d7e52110df458f31a5b6ce59a052f66b253387
Author: Kohsuke Kawaguchi <[email protected]>
Date: 2014-07-07 (Mon, 07 Jul 2014)
Changed paths:
M changelog.html
Log Message:
-----------
creating an RC branch
Compare:
https://github.com/jenkinsci/jenkins/compare/7f475c505698...77d7e52110df
--
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 [email protected].
For more options, visit https://groups.google.com/d/optout.