Skip to content

Commit

Permalink
Changelog and Javadoc update towards 2.16 (#246)
Browse files Browse the repository at this point in the history
* Changelog: Noting 3.16

* Javadoc: Add @SInCE to the ClassFilter#setDefault() meethod

* Changelog: We already know the target Jenkins weekly release

* Changelog: Fix the reference to #208
  • Loading branch information
oleg-nenashev committed Jan 10, 2018
1 parent 1fda115 commit 46e873d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ This file also provides links to Jenkins versions,
which bundle the specified remoting version.
See [Jenkins changelog](https://jenkins.io/changelog/) for more details.

##### 3.16

Release date: Jan 10, 2018 => Jenkins 2.102

* [PR #208](https://github.com/jenkinsci/remoting/pull/208) -
Introduce the new `ClassFilter.setDefault` API which allows replacing the default Class Filter
* This is a foundation work for [JEP-200](https://github.com/jenkinsci/jep/tree/master/jep/200)/[JENKINS-47736](https://issues.jenkins-ci.org/browse/JENKINS-47736),
which switches the default Remoting/XStream blacklist to whitelist in the Jenkins core
* Other Remoting API users are adviced to do the same
* [PR #208](https://github.com/jenkinsci/remoting/pull/208) -
Update the blacklist in the default Class Filter to align it with the Jenkins core.
New entries:
* `^java[.]lang[.]reflect[.]Method$`
* `^net[.]sf[.]json[.].*`
* `^java[.]security[.]SignedObject$` ([SECURITY-429 advisory](https://jenkins.io/security/advisory/2017-04-26/#cli-unauthenticated-remote-code-execution))
* [JENKINS-48686](https://issues.jenkins-ci.org/browse/JENKINS-48686) -
Replace the _slave_ term by _agent_ in logging, UI and Javadocs


##### 3.15

Release date: Dec 22, 2017 => Jenkins 2.98
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/remoting/ClassFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public boolean isBlacklisted(String name) {
/**
* Changes the effective value of {@link #DEFAULT}.
* @param filter a new default to set; may or may not delegate to {@link STANDARD}
* @since FIXME
* @since 3.16
*/
public static void setDefault(@Nonnull ClassFilter filter) {
CURRENT_DEFAULT = filter;
Expand Down

0 comments on commit 46e873d

Please sign in to comment.