Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mengdaming committed Dec 23, 2024
1 parent d5009f6 commit e0872a1
Show file tree
Hide file tree
Showing 12 changed files with 251 additions and 270 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
- name: Build
working-directory: go
run: go build -v ./...
Expand Down
2 changes: 1 addition & 1 deletion cpp/cmake/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cmake 3.31.0
cmake 3.31.3
4 changes: 2 additions & 2 deletions go/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
- [Go SDK](https://go.dev/dl/)
<details><summary>Go Version</summary>

The kata is configured to run with Go version 1.22 by default.
The kata is configured to run with Go version 1.23 by default.

To use a different version, simply modify the line below in [go.mod](go.mod).

```text
go 1.22
go 1.23
```
</details>
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/murex/kata/roman_numerals

go 1.22
go 1.23

require github.com/stretchr/testify v1.10.0

Expand Down
39 changes: 18 additions & 21 deletions java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ repositories {

dependencies {
// JUnit 5
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

// Guava utility package
implementation group: 'com.google.guava', name: 'guava', version: '33.3.1-jre'
implementation group: 'com.google.guava', name: 'guava', version: '33.4.0-jre'
}

test {
Expand All @@ -30,29 +30,26 @@ test {
}
}

group = 'com.murex.xpcoaching'
version = '1.0-SNAPSHOT'

tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}

testlogger {
theme 'standard'
showExceptions true
showStackTraces true
showFullStackTraces false
showCauses true
slowThreshold 5000
showSummary true
showSimpleNames false
showPassed true
showSkipped true
showFailed true
showStandardStreams false
showPassedStandardStreams true
showSkippedStandardStreams true
showFailedStandardStreams true
logLevel 'lifecycle'
theme = 'standard'
showExceptions = true
showStackTraces = true
showFullStackTraces = false
showCauses = true
slowThreshold = 5000
showSummary = true
showSimpleNames = false
showPassed = true
showSkipped = true
showFailed = true
showStandardStreams = false
showPassedStandardStreams = true
showSkippedStandardStreams = true
showFailedStandardStreams = true
logLevel = 'lifecycle'
}

2 changes: 1 addition & 1 deletion java/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 1 addition & 2 deletions java/gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
10 changes: 5 additions & 5 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<!-- JUnit 5 BOM -->
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.11.3</version>
<version>5.11.4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -40,7 +40,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.3.1-jre</version>
<version>33.4.0-jre</version>
</dependency>

</dependencies>
Expand Down Expand Up @@ -74,7 +74,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.1</version>
<version>3.11.2</version>
<configuration>
<show>public</show>
<nohelp>true</nohelp>
Expand All @@ -93,7 +93,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.21.0</version>
<version>4.0.0-M16</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -126,7 +126,7 @@
<configuration>
<rules>
<requireMavenVersion>
<version>3.5.0</version>
<version>3.6.3</version>
</requireMavenVersion>
</rules>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytest == 7.0.1; python_version < '3.7'
pytest == 7.4.4; python_version in '3.7'
pytest == 8.3.3; python_version >= '3.8'
pytest == 8.3.4; python_version >= '3.8'
pytest-parametrization == 2022.2.1
mypy == 0.971; python_version < '3.7'
mypy == 1.4.1; python_version in '3.7'
mypy == 1.13.0; python_version >= '3.8'
mypy == 1.14.0; python_version >= '3.8'
1 change: 1 addition & 0 deletions typescript/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
**/node_modules/
**/test_results/
**/coverage/
**/reports/
.pnp.*
.yarn/
.yarnrc.yml
Expand Down
2 changes: 1 addition & 1 deletion typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"devDependencies": {
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.5",
Expand Down
Loading

0 comments on commit e0872a1

Please sign in to comment.