Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/maven/org.jenkins-ci-jenkins-1.109
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed Jan 9, 2024
2 parents a497785 + 1eb29a8 commit b551594
Show file tree
Hide file tree
Showing 20 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/ExtensionList.java
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public static <T> ExtensionList<T> create(Jenkins jenkins, Class<T> type) {
* @return the singleton instance of the given type in its list.
* @throws IllegalStateException if there are no instances
*
* @since TODO
* @since 2.435
*/
public static @NonNull <U> U lookupFirst(Class<U> type) {
var all = lookup(type);
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/Functions.java
Original file line number Diff line number Diff line change
Expand Up @@ -1909,7 +1909,7 @@ public static String joinPath(String... components) {
* Computes the link to the console for the run for the specified executable, taking {@link ConsoleUrlProvider} into account.
* @param executable the executable (normally a {@link Run})
* @return the absolute URL for accessing the build console for the executable, or null if there is no build associated with the executable
* @since TODO
* @since 2.433
*/
public static @CheckForNull String getConsoleUrl(Queue.Executable executable) {
if (executable == null) {
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/model/BuildTimelineWidget.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
*
* @author Kohsuke Kawaguchi
* @since 1.372
* @deprecated since TODO
* @deprecated since 2.431
*/
@Deprecated
@Deprecated(since = "2.431")
public class BuildTimelineWidget {
protected final RunList<?> builds;

Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/model/View.java
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ public boolean isFilterExecutors() {
}

/**
* @since TODO
* @since 2.426
*/
@DataBoundSetter
public void setFilterExecutors(boolean filterExecutors) {
Expand All @@ -421,7 +421,7 @@ public boolean isFilterQueue() {
}

/**
* @since TODO
* @since 2.426
*/
@DataBoundSetter
public void setFilterQueue(boolean filterQueue) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected AbstractNodeMonitorDescriptor() {
* method and return false.
*
* @return true if this monitor might take agents offline
* @since TODO
* @since 2.437
*/
public boolean canTakeOffline() {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,11 @@ public long getFreeSize() {
/**
* Gets GB left.
*
* @deprecated since TODO
* @deprecated
* Directly use the size field or to get a human-readable value with units use
* {@link Functions#humanReadableByteSize(long)}
*/
@Deprecated
@Deprecated(since = "2.434")
public String getGbLeft() {
long space = size;
space /= 1024L; // convert to KB
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* {@link NodeProperty} that allows users to set agent specific disk space thresholds.
*
* @since TODO
* @since 2.434
*/
public class DiskSpaceMonitorNodeProperty extends NodeProperty<Node> {
private final String freeDiskSpaceThreshold;
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/console/ConsoleUrlProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
* Pipeline flow graph, there may be various edge cases where your visualization does not work at all, but the classic
* console view is unaffected.
* @see Functions#getConsoleUrl
* @since TODO
* @since 2.433
*/
public interface ConsoleUrlProvider extends Describable<ConsoleUrlProvider> {
@Restricted(NoExternalUse.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
/**
* Allows administrators to activate and sort {@link ConsoleUrlProvider} extensions to set defaults for all users.
* @see ConsoleUrlProviderUserProperty
* @since TODO
* @since 2.433
*/
@Extension
@Symbol("consoleUrlProvider")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
/**
* Allows users to activate and sort {@link ConsoleUrlProvider} extensions based on their preferences.
* @see ConsoleUrlProviderGlobalConfiguration
* @since TODO
* @since 2.433
*/
@Restricted(NoExternalUse.class)
public class ConsoleUrlProviderUserProperty extends UserProperty {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* Default implementation of {@link ConsoleUrlProvider} that uses the standard Jenkins console view.
* <p>Exists so that users have a way to override {@link ConsoleUrlProviderGlobalConfiguration} and specify the default
* console view if desired via {@link ConsoleUrlProviderUserProperty}.
* @since TODO
* @since 2.433
*/
@Restricted(value = NoExternalUse.class)
public class DefaultConsoleUrlProvider implements ConsoleUrlProvider {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/model/Loadable.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Object whose state can be loaded from disk. In general, also implements {@link Saveable}.
*
* @since TODO
* @since 2.428
*/
public interface Loadable {

Expand Down
12 changes: 6 additions & 6 deletions core/src/main/java/jenkins/model/PeepholePermalink.java
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public void onCompleted(Run<?, ?> run, @NonNull TaskListener listener) {
}

/**
* @since TODO
* @since 2.436
*/
public static final Permalink LAST_STABLE_BUILD = new PeepholePermalink() {
@Override
Expand All @@ -262,7 +262,7 @@ public boolean apply(Run<?, ?> run) {
};

/**
* @since TODO
* @since 2.436
*/
public static final Permalink LAST_SUCCESSFUL_BUILD = new PeepholePermalink() {
@Override
Expand All @@ -283,7 +283,7 @@ public boolean apply(Run<?, ?> run) {
};

/**
* @since TODO
* @since 2.436
*/
public static final Permalink LAST_FAILED_BUILD = new PeepholePermalink() {
@Override
Expand All @@ -303,7 +303,7 @@ public boolean apply(Run<?, ?> run) {
};

/**
* @since TODO
* @since 2.436
*/
public static final Permalink LAST_UNSTABLE_BUILD = new PeepholePermalink() {
@Override
Expand All @@ -323,7 +323,7 @@ public boolean apply(Run<?, ?> run) {
};

/**
* @since TODO
* @since 2.436
*/
public static final Permalink LAST_UNSUCCESSFUL_BUILD = new PeepholePermalink() {
@Override
Expand All @@ -343,7 +343,7 @@ public boolean apply(Run<?, ?> run) {
};

/**
* @since TODO
* @since 2.436
*/
public static final Permalink LAST_COMPLETED_BUILD = new PeepholePermalink() {
@Override
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/security/FIPS140.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* The environment (host, JVM and servlet container), must be suitably configured which is outside the scope of the Jenkins project.
* @see <a href="https://csrc.nist.gov/pubs/fips/140-2/upd2/final">FIPS-140-2</a>
* @see <a href="https://github.com/jenkinsci/jep/tree/master/jep/237#readme">JEP-237</a>
* @since TODO
* @since 2.426
*/
public class FIPS140 {

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/util/DefaultScriptListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
/**
* Basic default implementation of {@link jenkins.util.ScriptListener} that just logs.
*
* @since TODO
* @since 2.427
*/
@Extension
@Restricted(NoExternalUse.class)
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/jenkins/util/ScriptListener.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
* @see hudson.cli.GroovyshCommand
* @see jenkins.util.groovy.GroovyHookScript
*
* @since TODO
* @since 2.427
*/
public interface ScriptListener extends ExtensionPoint {

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ THE SOFTWARE.
<changelog.url>https://www.jenkins.io/changelog</changelog.url>

<!-- Bundled Remoting version -->
<remoting.version>3198.v03a_401881f3e</remoting.version>
<remoting.version>3203.v94ce994fdb_31</remoting.version>
<!-- Minimum Remoting version, which is tested for API compatibility -->
<remoting.minimum.supported.version>4.13</remoting.minimum.supported.version>

Expand Down
2 changes: 1 addition & 1 deletion test/src/test/java/hudson/tasks/MavenTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private void verify() throws Exception {
assertNotNull(isp.installers.get(MavenInstaller.class));
}

@Test @WithTimeout(300) public void sensitiveParameters() throws Exception {
@Test @WithTimeout(500) public void sensitiveParameters() throws Exception {
FreeStyleProject project = j.createFreeStyleProject();
ParametersDefinitionProperty pdb = new ParametersDefinitionProperty(
new StringParameterDefinition("string", "defaultValue", "string description"),
Expand Down
2 changes: 1 addition & 1 deletion war/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"postcss-preset-env": "9.3.0",
"postcss-scss": "4.0.9",
"prettier": "3.1.1",
"sass": "1.69.6",
"sass": "1.69.7",
"sass-loader": "13.3.3",
"style-loader": "3.3.3",
"stylelint": "16.1.0",
Expand Down
10 changes: 5 additions & 5 deletions war/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4465,7 +4465,7 @@ __metadata:
postcss-preset-env: "npm:9.3.0"
postcss-scss: "npm:4.0.9"
prettier: "npm:3.1.1"
sass: "npm:1.69.6"
sass: "npm:1.69.7"
sass-loader: "npm:13.3.3"
sortablejs: "npm:1.15.1"
style-loader: "npm:3.3.3"
Expand Down Expand Up @@ -6458,16 +6458,16 @@ __metadata:
languageName: node
linkType: hard

"sass@npm:1.69.6":
version: 1.69.6
resolution: "sass@npm:1.69.6"
"sass@npm:1.69.7":
version: 1.69.7
resolution: "sass@npm:1.69.7"
dependencies:
chokidar: "npm:>=3.0.0 <4.0.0"
immutable: "npm:^4.0.0"
source-map-js: "npm:>=0.6.2 <2.0.0"
bin:
sass: sass.js
checksum: 8153db8e51e74a9007bb54332e14d122c34288c7d21a5f2eaefef753a1b7bb13f35e042dc6247253dab5b1550b05cea27970371e7548286b4f50f23dd1147d89
checksum: 773d0938e7d4ff3972d3fda3132f34fe98a2f712e028a58e28fecd615434795eff3266eddc38d5e13f03b90c0d6360d0e737b30bff2949a47280c64a18e0fb18
languageName: node
linkType: hard

Expand Down

0 comments on commit b551594

Please sign in to comment.