Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
chore(deps): upgrade dependencies (#153)
Browse files Browse the repository at this point in the history
* chore(deps): upgrade dependencies

| datasource     | package                                                         | from   | to      |
| -------------- | --------------------------------------------------------------- | ------ | ------- |
| npm            | @angular-devkit/core                                            | 17.0.3 | 17.0.5  |
| npm            | @angular-devkit/schematics                                      | 17.0.3 | 17.0.5  |
| npm            | @angular-devkit/schematics-cli                                  | 17.0.3 | 17.0.5  |
| npm            | @docusaurus/core                                                | 3.0.0  | 3.0.1   |
| npm            | @docusaurus/module-type-aliases                                 | 3.0.0  | 3.0.1   |
| npm            | @docusaurus/preset-classic                                      | 3.0.0  | 3.0.1   |
| npm            | @swc/core                                                       | 1.3.99 | 1.3.100 |
| npm            | @types/node                                                     | 20.9.4 | 20.10.3 |
| nuget          | NUnit                                                           | 3.14.0 | 4.0.1   |
| nuget          | NUnit.Analyzers                                                 | 3.9.0  | 3.10.0  |
| github-tags    | actions/setup-java                                              | v3     | v4      |
| crate          | async-openai                                                    | 0.17.0 | 0.17.1  |
| npm            | eslint                                                          | 8.54.0 | 8.55.0  |
| gradle-version | gradle                                                          | 8.4    | 8.5     |
| github-tags    | gradle/gradle-build-action                                      | v2.9.0 | v2.10.0 |
| npm            | lint-staged                                                     | 15.1.0 | 15.2.0  |
| maven          | org.apache.maven:apache-maven                                   | 3.9.5  | 3.9.6   |
| npm            | openai                                                          | 4.20.0 | 4.20.1  |
| npm            | rollup                                                          | 4.5.1  | 4.6.1   |
| npm            | ts-mustache                                                     | 0.0.3  | 0.0.4   |
| crate          | virtual-fs                                                      | 0.9.0  | 0.10.0  |
| crate          | wasmer                                                          | 4.2.3  | 4.2.4   |
| crate          | wasmer-cache                                                    | 4.2.3  | 4.2.4   |
| crate          | wasmer-registry                                                 | 5.9.0  | 5.10.0  |
| crate          | wasmer-vm                                                       | 4.2.3  | 4.2.4   |
| crate          | wasmer-wasix                                                    | 0.16.0 | 0.17.0  |
| npm            | zod-to-json-schema                                              | 3.22.0 | 3.22.1  |
| maven          | com.diffplug.spotless:spotless-maven-plugin                     | 2.40.0 | 2.41.0  |
| maven          | org.apache.maven.plugins:maven-javadoc-plugin                   | 3.6.2  | 3.6.3   |
| maven          | org.jetbrains.kotlin.jvm:org.jetbrains.kotlin.jvm.gradle.plugin | 1.9.20 | 1.9.21  |

* fix(csharp): remove .netcoreapp3.1 add .net8.0

* fix(csharp): update cdci script

* fix: wasix

Signed-off-by: Yuhang Shi <clszzyh@gmail.com>

* update

Signed-off-by: Yuhang Shi <clszzyh@gmail.com>

---------

Signed-off-by: Yuhang Shi <clszzyh@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: moyil <moyilong@foxmail.com>
Co-authored-by: Yuhang Shi <clszzyh@gmail.com>
  • Loading branch information
3 people authored Dec 4, 2023
1 parent 2fc3203 commit 4439110
Show file tree
Hide file tree
Showing 25 changed files with 711 additions and 758 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ jobs:
- uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: gradle

- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0
with:
gradle-version: wrapper

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/csharp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
#- windows-latest
#- macos-latest
dotnet-version:
- framework: netcoreapp3.1
runtime: 3.1
- framework: net6.0
runtime: 6.0
- framework: net7.0
runtime: 7.0
- framework: net8.0
runtime: 8.0
steps:
- uses: actions/checkout@v4

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csharp-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1
6.0
7.0
8.0
env:
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-bindings-build-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java-bindings-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '8'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java-bindings-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- uses: actions/checkout@v4

- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/kotlin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
- uses: actions/checkout@v4

- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
cache: gradle

- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0
with:
gradle-version: wrapper

Expand Down Expand Up @@ -99,14 +99,14 @@ jobs:
- uses: actions/checkout@v4

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
cache: gradle

- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0
with:
gradle-version: wrapper

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kotlin-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: gradle/wrapper-validation-action@v1

- name: Setup Gradle
uses: gradle/gradle-build-action@v2.9.0
uses: gradle/gradle-build-action@v2.10.0
with:
gradle-version: wrapper

Expand Down
6 changes: 3 additions & 3 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "3.0.0",
"@docusaurus/preset-classic": "3.0.0",
"@docusaurus/core": "3.0.1",
"@docusaurus/preset-classic": "3.0.1",
"@mdx-js/react": "3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.0.0",
"@docusaurus/module-type-aliases": "3.0.1",
"@tsconfig/docusaurus": "^2.0.0",
"typescript": "^5.2.2"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<Import Project="../../../packages/csharp/Directory.Build.props" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net7.0;net6.0;net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<RootNamespace>Pleisto.Flappy.Tests</RootNamespace>
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net7.0;net6.0;net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit" Version="4.0.1" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.9.0">
<PackageReference Include="NUnit.Analyzers" Version="3.10.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion packages/csharp/Pleisto.Flappy/Pleisto.Flappy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<ProductName>Pleisto.Flappy</ProductName>
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.1</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
Expand Down
2 changes: 1 addition & 1 deletion packages/kotlin/flappy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import java.net.URL

plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.9.20"
id("org.jetbrains.kotlin.jvm") version "1.9.21"
id("org.jetbrains.dokka") version "1.9.10"

// Apply the java-library plugin for API and implementation separation.
Expand Down
Binary file modified packages/kotlin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/kotlin/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.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
16 changes: 8 additions & 8 deletions packages/kotlin/gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, types that shell name before the whole
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
Expand Down Expand Up @@ -145,15 +145,15 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -202,11 +202,11 @@ fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down
Loading

0 comments on commit 4439110

Please sign in to comment.