Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4a70590
Add GenericParameters to exec signature. (#1407)
LadyCailin Feb 18, 2026
8868c6e
Add Env/GenericParams overloads to various methods. (#1408)
LadyCailin Feb 20, 2026
d0f2eac
Reverse the order of the getBooleanValue parameters.
LadyCailin Feb 21, 2026
aae5d12
Upgrade some call sites to non-deprecated versions
LadyCailin Feb 22, 2026
09cf9d1
Fix more deprecation warnings
LadyCailin Feb 23, 2026
5d63334
Change 'environment' to 'env' everywhere
LadyCailin Feb 24, 2026
775f496
Fix more deprecations
LadyCailin Feb 24, 2026
bd2d563
Merge additional changes from genericsTake2 to reduce the diff.
LadyCailin Feb 24, 2026
da53a81
Continue fixing deprecations
LadyCailin Feb 26, 2026
b3da9fa
Refactor ObjectGenerator
LadyCailin Feb 28, 2026
5b43bba
Remove unneeded item() overload
LadyCailin Feb 28, 2026
01dc036
Upgrade MCTagType
LadyCailin Feb 28, 2026
1878205
Cherry-pick select changes from genericsTake2
LadyCailin Feb 28, 2026
df60f3e
Add .mvn folder to gitignore
LadyCailin Mar 2, 2026
145b8bd
Fix optimization issue in material_info
LadyCailin Mar 14, 2026
f2015bc
Also fix max_stack_size
LadyCailin Mar 14, 2026
0b86419
Convert to an iterative eval loop instead of a recursive one (#1409)
LadyCailin Mar 21, 2026
4005cf8
Unwrap CREs from the reflection exception
LadyCailin Mar 25, 2026
8248b83
Debugger (#1410)
LadyCailin Apr 4, 2026
b0e911c
Bump ajv, @typespec/compiler, @typespec/http, @typespec/openapi, @typ…
dependabot[bot] Apr 4, 2026
077e508
Bump picomatch in /src/main/resources/apps.methodscript.com (#1412)
dependabot[bot] Apr 4, 2026
890c549
Bump yaml, @typespec/compiler, @typespec/http, @typespec/openapi, @ty…
dependabot[bot] Apr 4, 2026
010110c
fix: pom.xml to reduce vulnerabilities (#1405)
LadyCailin Apr 4, 2026
2df8a62
Bump com.microsoft.sqlserver:mssql-jdbc (#1404)
dependabot[bot] Apr 4, 2026
ebbb3af
Convert wiki to markdown in LangServ
LadyCailin Apr 4, 2026
e873365
Fix Debugger links
LadyCailin Apr 5, 2026
0795156
Replace RSAEncrypt with SSHKeyPair supporting Ed25519/ECDSA/RSA; (#1414)
LadyCailin Apr 7, 2026
787ac1e
Fix which env bind uses
LadyCailin Apr 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ nbactions.xml
/preferences.*
.DS_Store
/test-backend/
.mvn/
/nbproject/
dependency-reduced-pom.xml

Expand Down
6 changes: 6 additions & 0 deletions checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
<property name="message" value="Javadoc comment at column [\d]+ has parse error\. Details: no viable alternative at input '[\\t]+ \*' while parsing JAVADOC_TAG"/>
</module>

<!-- Allow braceless else when it directly contains a switch expression -->
<module name="SuppressionXpathSingleFilter">
<property name="checks" value="NeedBraces"/>
<property name="query" value="//LITERAL_ELSE[./EXPR/ASSIGN/LITERAL_SWITCH]"/>
</module>

<!-- Indent must use tab characters -->
<module name="RegexpSinglelineJava">
<property name="format" value="^\t* ([^\*]|$)"/> <!-- Javadoc and multiline comments have a single leading whitespace, so allow " *" -->
Expand Down
39 changes: 33 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
<repositories>
<repository>
Expand Down Expand Up @@ -227,7 +227,7 @@
<!-- GPL -->
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.3.0</version>
<version>9.4.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
Expand All @@ -248,7 +248,7 @@
<!-- NOTE: If you change this version, you also have to change the install-mssql-auth command to
download the corresponding version of the mssql-auth dll. This will also require users to re-install
it, so an upgrade routine will need to be released as well. -->
<version>12.6.1.jre11</version>
<version>12.8.0.jre8</version>
</dependency>

<!-- Yaml parsing -->
Expand Down Expand Up @@ -376,6 +376,11 @@
<artifactId>org.eclipse.lsp4j</artifactId>
<version>0.22.0</version>
</dependency>
<dependency>
<groupId>org.eclipse.lsp4j</groupId>
<artifactId>org.eclipse.lsp4j.debug</artifactId>
<version>0.22.0</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
Expand All @@ -394,7 +399,7 @@
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio-jvm</artifactId>
<version>3.10.0</version>
<version>3.16.0</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand Down Expand Up @@ -489,10 +494,12 @@
<version>3.12.1</version>
<configuration>
<showDeprecation>true</showDeprecation>
<release>16</release>
<release>21</release>
<compilerArgs>
<arg>-XDignore.symbol.file</arg>
<arg>-parameters</arg>
<arg>-Xmaxwarns</arg>
<arg>9999</arg>
</compilerArgs>
</configuration>
</plugin>
Expand Down Expand Up @@ -567,6 +574,8 @@
<include>org.brotli:dec:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j.debug:jar:*</include>
<include>org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc.debug:jar:*</include>
<!-- We don't currently actually depend on these 2, but lsp4j does, so we
need to shade it in. In the future, we may rip out org.json:json,
and replace it with this, however, in which case we only need to
Expand Down Expand Up @@ -840,6 +849,24 @@
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.eclipse.lsp4j:org.eclipse.lsp4j.debug:jar:*</artifact>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc.debug:jar:*</artifact>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>com.google.code.gson:gson:jar:*</artifact>
<includes>
Expand Down
249 changes: 0 additions & 249 deletions src/main/java/com/laytonsmith/PureUtilities/Common/RSAEncrypt.java

This file was deleted.

Loading
Loading