Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/actions/normalize-branch-name/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/license-scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
build-command: install
run-tests: false
- name: License XML report
run: mvn org.codehaus.mojo:license-maven-plugin:2.4.0:aggregate-download-licenses
run: mvn org.codehaus.mojo:license-maven-plugin:2.7.1:aggregate-download-licenses
- name: Validate XML report
run: |
LICENSE_REPORT=`xq "//dependency[${{ env.ALLOW_LICENSES }}]" ./${{ env.REPORT_PATH }}/licenses.xml`
Expand Down
48 changes: 24 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,40 +95,40 @@

<!-- Dependency management -->
<xtext.version>2.38.0</xtext.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-text.version>1.12.0</commons-text.version>
<snakeyaml.version>2.2</snakeyaml.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<commons-text.version>1.15.0</commons-text.version>
<snakeyaml.version>2.6</snakeyaml.version>
<org.eclipse.emf.ecore.xcore.lib.version>1.7.0</org.eclipse.emf.ecore.xcore.lib.version>
<maven-plugin-api.version>3.9.14</maven-plugin-api.version>
<maven-plugin-api.version>3.9.16</maven-plugin-api.version>
<!-- Used by maven-plugin-api - bumped from 3.6.0 to 3.6.1 for CVE -->
<plexus-utils.version>3.6.1</plexus-utils.version>
<maven-core.version>3.9.14</maven-core.version>
<maven-plugin-annotations.version>3.13.1</maven-plugin-annotations.version>
<slf4j.version>2.0.13</slf4j.version>
<logback.version>1.5.38</logback.version>
<plexus-utils.version>3.6.2</plexus-utils.version>
<maven-core.version>3.9.16</maven-core.version>
<maven-plugin-annotations.version>3.15.2</maven-plugin-annotations.version>
<slf4j.version>2.0.18</slf4j.version>
<logback.version>1.6.3</logback.version>
<InMemoryJavaCompiler.version>1.3.0</InMemoryJavaCompiler.version>
<jackson.version>2.18.10</jackson.version>
<jackson.version>2.22.2</jackson.version>
<guice.version>6.0.0</guice.version>

<!-- test -->
<junit.version>6.0.1</junit.version>
<mockito-core.version>5.12.0</mockito-core.version>
<junit.version>6.1.3</junit.version>
<mockito-core.version>5.23.0</mockito-core.version>

<!-- Plugin and plugin dependency management -->
<org.eclipse.emf.ecore.xcore.version>1.32.0</org.eclipse.emf.ecore.xcore.version>
<maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
<maven-checkstyle-plugin.version>3.4.0</maven-checkstyle-plugin.version>
<exec-maven-plugin.version>3.3.0</exec-maven-plugin.version>
<maven-clean-plugin.version>3.3.2</maven-clean-plugin.version>
<build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version>
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
<maven-dependency-plugin.version>3.7.0</maven-dependency-plugin.version>
<maven-surefire-plugin.version>3.3.0</maven-surefire-plugin.version>
<maven-plugin-plugin.version>3.13.1</maven-plugin-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<maven-enforcer-plugin.version>3.6.3</maven-enforcer-plugin.version>
<maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version>
<exec-maven-plugin.version>3.6.3</exec-maven-plugin.version>
<maven-clean-plugin.version>3.5.0</maven-clean-plugin.version>
<build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version>
<maven-resources-plugin.version>3.5.0</maven-resources-plugin.version>
<maven-dependency-plugin.version>3.11.0</maven-dependency-plugin.version>
<maven-surefire-plugin.version>3.5.6</maven-surefire-plugin.version>
<maven-plugin-plugin.version>3.15.2</maven-plugin-plugin.version>
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
<appassembler-maven-plugin.version>2.1.0</appassembler-maven-plugin.version>
<frontend-maven-plugin.version>2.0.0</frontend-maven-plugin.version>
<node.version>24.11.1</node.version>
<frontend-maven-plugin.version>2.0.2</frontend-maven-plugin.version>
<node.version>24.19.0</node.version>
</properties>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion rune-ide/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"devDependencies": {
"@types/node": "^24.0.0",
"@types/vscode": "^1.73.1",
"shx": "^0.3.4",
"shx": "^0.4.0",
"typescript": "^6.0.0",
"vscode-test": "^1.6.1"
},
Expand Down
2 changes: 1 addition & 1 deletion rune-profiling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.2</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
2 changes: 1 addition & 1 deletion website/.node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.11.1
24.19.0
16 changes: 8 additions & 8 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.10.1",
"@docusaurus/faster": "3.10.1",
"@docusaurus/core": "3.10.2",
"@docusaurus/faster": "3.10.2",
"@docusaurus/plugin-svgr": "^3.9.2",
"@docusaurus/preset-classic": "3.10.1",
"@docusaurus/theme-mermaid": "3.10.1",
"@docusaurus/preset-classic": "3.10.2",
"@docusaurus/theme-mermaid": "3.10.2",
"@easyops-cn/docusaurus-search-local": "^0.55.0",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
Expand All @@ -29,10 +29,10 @@
"react-dom": "^18.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"typescript": "~5.6.2"
"@docusaurus/module-type-aliases": "3.10.2",
"@docusaurus/tsconfig": "3.10.2",
"@docusaurus/types": "3.10.2",
"typescript": "~5.9.0"
},
"browserslist": {
"production": [
Expand Down
Loading
Loading