Skip to content

Commit

Permalink
secure bot updates (#1346)
Browse files Browse the repository at this point in the history
* secure bot updates

* fixed pom template with lf endings
  • Loading branch information
supertick authored Oct 12, 2023
1 parent d6b17bd commit 11f47e3
Show file tree
Hide file tree
Showing 8 changed files with 958 additions and 959 deletions.
958 changes: 479 additions & 479 deletions pom.xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class IvyWrapper extends Repo implements Serializable {

private static final long serialVersionUID = 1L;

public static final String IVY_VERSION = "2.5.1";
public static final String IVY_VERSION = "2.5.2";

class IvyWrapperLogger extends AbstractMessageLogger {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/myrobotlab/service/Python.java
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,6 @@ public void releaseService() {

inputQueueThread.stop();
thread.interruptAllThreads();
Py.getSystemState()._systemRestart = true;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/myrobotlab/service/meta/GitMeta.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public GitMeta() {
addCategory("programming");

// EDL (new-style BSD) licensed
addDependency("org.eclipse.jgit", "org.eclipse.jgit", "5.4.0.201906121030-r");
addDependency("org.eclipse.jgit", "org.eclipse.jgit", "6.6.1.202309021850-r");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public OpenWeatherMapMeta() {
addDescription("This service will query OpenWeatherMap for the current weather. Get an API key at http://openweathermap.org/");
addCategory("weather");
setCloudService(true);
addDependency("org.json", "json", "20090211");
addDependency("org.json", "json", "20230227");

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ProgramABMeta() {

addDependency("com.fasterxml.jackson.dataformat", "jackson-dataformat-xml", "2.14.0");

addDependency("org.json", "json", "20090211");
addDependency("org.json", "json", "20230227");
// used by FileIO
addDependency("commons-io", "commons-io", "2.7");
// TODO: This is for CJK support in ProgramAB move this into the published
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/myrobotlab/service/meta/PythonMeta.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public PythonMeta() {
addCategory("programming", "control");

includeServiceInOneJar(true);
addDependency("org.python", "jython-standalone", "2.7.1");
addDependency("org.python", "jython-standalone", "2.7.2");

}

Expand Down
Loading

0 comments on commit 11f47e3

Please sign in to comment.