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 (#149)
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.0  | 17.0.3   |
| npm         | @angular-devkit/schematics                               | 17.0.0  | 17.0.3   |
| npm         | @angular-devkit/schematics-cli                           | 17.0.0  | 17.0.3   |
| npm         | @roarr/cli                                               | 5.12.3  | 5.12.4   |
| npm         | @swc/core                                                | 1.3.96  | 1.3.99   |
| npm         | @types/node                                              | 20.9.0  | 20.9.4   |
| npm         | @types/yargs                                             | 17.0.31 | 17.0.32  |
| nuget       | Microsoft.SourceLink.GitHub                              | 1.1.1   | 8.0.0    |
| npm         | eslint                                                   | 8.53.0  | 8.54.0   |
| github-tags | nodejs/node                                              | 20.9.0  | v20.10.0 |
| npm         | openai                                                   | 4.18.0  | 4.20.0   |
| npm         | prism-react-renderer                                     | 2.2.0   | 2.3.0    |
| npm         | roarr                                                    | 7.18.3  | 7.21.0   |
| npm         | rollup                                                   | 4.4.1   | 4.5.1    |
| crate       | serde                                                    | 1.0.192 | 1.0.193  |
| npm         | ts-mustache                                              | 0.0.2   | 0.0.3    |
| npm         | typescript                                               | 5.2.2   | 5.3.2    |
| crate       | webc                                                     | 5.8.0   | 5.8.1    |
| npm         | zod-to-json-schema                                       | 3.21.4  | 3.22.0   |
| maven       | org.codehaus.mojo:exec-maven-plugin                      | 3.1.0   | 3.1.1    |
| maven       | com.fasterxml.jackson.dataformat:jackson-dataformat-yaml | 2.15.3  | 2.16.0   |
| maven       | com.fasterxml.jackson.module:jackson-module-kotlin       | 2.15.3  | 2.16.0   |
| maven       | com.theokanning.openai-gpt3-java:service                 | 0.17.0  | 0.18.2   |

* fix: mustacheType

Signed-off-by: Yuhang Shi <[email protected]>

---------

Signed-off-by: Yuhang Shi <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Yuhang Shi <[email protected]>
  • Loading branch information
renovate[bot] and Yuhang Shi authored Nov 23, 2023
1 parent bea1241 commit 8a86f77
Show file tree
Hide file tree
Showing 9 changed files with 176 additions and 177 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"docs"
],
"volta": {
"node": "20.9.0"
"node": "20.10.0"
},
"config": {
"commitizen": {
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 @@ -23,7 +23,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
6 changes: 3 additions & 3 deletions packages/kotlin/flappy/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ dependencies {
implementation("io.ktor:ktor-client-java-jvm:2.3.6")
implementation("io.ktor:ktor-client-core:2.3.6")
implementation("io.ktor:ktor-client-okhttp:2.3.6")
implementation("com.theokanning.openai-gpt3-java:service:0.17.0")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.15.3")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.3")
implementation("com.theokanning.openai-gpt3-java:service:0.18.2")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.0")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.16.0")
implementation("io.github.cdimascio:dotenv-kotlin:6.4.1")
implementation("com.github.spullara.mustache.java:compiler:0.9.11")
implementation("com.pleisto:flappy-java-bindings:0.0.8")
Expand Down
19 changes: 14 additions & 5 deletions packages/nodejs/src/renderer/mustacheTypes.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
type MustacheValue = string | number | boolean

type MustacheRecord<T> = T

type MustacheSection<T> = T[] | T

interface Test_ping {
name: MustacheValue
}
Expand Down Expand Up @@ -48,4 +44,17 @@ export type TemplateMap = {
'features/synthesized/systemMessage': Features_synthesized_systemMessage,
'features/codeInterpreter/evalCode': Features_codeInterpreter_evalCode,
'features/codeInterpreter/description': Features_codeInterpreter_description,
}
}

export type TemplateName = keyof TemplateMap

export const TEMPLATES = [
'test/ping',
'error/retry',
'agent/userMessage',
'agent/systemMessage',
'features/synthesized/userMessage',
'features/synthesized/systemMessage',
'features/codeInterpreter/evalCode',
'features/codeInterpreter/description',
] as const
2 changes: 1 addition & 1 deletion packages/rust-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ derivative = "2.2.0"
anyhow = "1.0.75"
thiserror = "1.0.50"
num_cpus = "1.16.0"
serde = "1.0.192"
serde = "1.0.193"
serde_json = "1.0.108"
lazy_static = "1.4.0"
secrecy = "0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/rust-core/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ wasmer-wasix = { version = "0.16.0", features = [
virtual-mio = { version = "0.3.0" }
dirs = "5.0.1"

webc = "5.8.0"
webc = "5.8.1"
virtual-fs = { version = "0.9.0", features = ["host-fs"] }
virtual-net = { version = "0.6.1", features = ["host-net"] }
openssl.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion packages/rust-core/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
<maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
<exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
<exec-maven-plugin.version>3.1.1</exec-maven-plugin.version>
<os-maven-plugin.version>1.7.1</os-maven-plugin.version>
<palantir-java-format.version>2.36.0</palantir-java-format.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
Expand Down
4 changes: 2 additions & 2 deletions tools/devkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"extends": "../../package.json"
},
"devDependencies": {
"@swc/core": "1.3.96",
"@swc/core": "1.3.99",
"@swc/helpers": "^0.5.3",
"@types/node": "^20.8.7",
"@types/yargs": "^17.0.29"
Expand All @@ -22,7 +22,7 @@
"@angular-devkit/schematics-cli": "^17.0.0",
"chalk": "^4.1.2",
"jsonc": "^2.0.0",
"ts-mustache": "^0.0.2",
"ts-mustache": "^0.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"v8-compile-cache": "^2.4.0",
Expand Down
Loading

0 comments on commit 8a86f77

Please sign in to comment.