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

chore(deps): upgrade dependencies #149

Merged
merged 2 commits into from
Nov 23, 2023
Merged
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
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
Loading