Skip to content

Commit

Permalink
chore(kiota): Upgrade/kiota 1.21.0 (Apicurio#5691)
Browse files Browse the repository at this point in the history
* Upgrade the typescript SDK to kiota 1.21.0

* Upgraded kiota to 1.21.0
  • Loading branch information
EricWittmann authored Dec 9, 2024
1 parent db5b229 commit 4dfac6c
Show file tree
Hide file tree
Showing 10 changed files with 575 additions and 592 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ The following {registry} configuration options are available for each component
|Kafka sql storage topic auto create
|`apicurio.sql.db-schema`
|`string`
|
|`*`
|`3.0.6`
|Database schema name (only needed when running two instances of Registry against the same database, in multiple schemas)
|`apicurio.sql.init`
Expand Down
2 changes: 1 addition & 1 deletion go-sdk/pkg/registryclient-v2/kiota-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"descriptionHash": "82EFC37B503048188E2ACE19DAFDDF22AE8876C5CD5EA2D54272BBB765BFC2EF81673B2A2CA2D7F170AC174869144A744865C979DA5CF212AAE2364DB4EA46C6",
"descriptionLocation": "../../v2.json",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.20.0",
"kiotaVersion": "1.21.0",
"clientClassName": "ApiClient",
"typeAccessModifier": "Public",
"clientNamespaceName": "github.com/apicurio/apicurio-registry/go-sdk/pkg/registryclient-v2",
Expand Down
2 changes: 1 addition & 1 deletion go-sdk/pkg/registryclient-v3/kiota-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"descriptionHash": "7537C173C934421678E3DE186D432112255E25EE6716196674E5B766FF7B6F4324F33454D6EFA106153CC6D43577EF7B8DAD49188FB7F285E8DA577347C90856",
"descriptionLocation": "../../v3.json",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.20.0",
"kiotaVersion": "1.21.0",
"clientClassName": "ApiClient",
"typeAccessModifier": "Public",
"clientNamespaceName": "github.com/apicurio/apicurio-registry/go-sdk/pkg/registryclient-v3",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
<kiota.libs.version>1.8.0</kiota.libs.version>
<kiota.community.version>0.0.19</kiota.community.version>

<kiota.version>1.20.0</kiota.version>
<kiota.version>1.21.0</kiota.version>
<kiota.timeout>60</kiota.timeout>
<kiota.base.url>https://github.com/microsoft/kiota/releases/download</kiota.base.url>

Expand Down
466 changes: 240 additions & 226 deletions typescript-sdk/package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions typescript-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,41 +10,41 @@
],
"scripts": {
"clean": "rimraf dist lib/generated-client .kiota",
"kiota-info": "cross-env KIOTA_VERSION=v1.20.0 kiota info -l typescript",
"generate-sources": "cross-env KIOTA_VERSION=v1.20.0 kiota generate --serializer none --deserializer none -l typescript -d ../common/src/main/resources/META-INF/openapi.json -c ApicurioRegistryClient -o ./lib/generated-client",
"kiota-info": "cross-env KIOTA_VERSION=v1.21.0 kiota info -l typescript",
"generate-sources": "cross-env KIOTA_VERSION=v1.21.0 kiota generate --serializer none --deserializer none -l typescript -d ../common/src/main/resources/META-INF/openapi.json -c ApicurioRegistryClient -o ./lib/generated-client",
"dev": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest run"
},
"peerDependencies": {
"@microsoft/kiota-abstractions": "1.0.0-preview.75",
"@microsoft/kiota-http-fetchlibrary": "1.0.0-preview.75",
"@microsoft/kiota-serialization-form": "1.0.0-preview.75",
"@microsoft/kiota-serialization-json": "1.0.0-preview.75",
"@microsoft/kiota-serialization-multipart": "1.0.0-preview.75",
"@microsoft/kiota-serialization-text": "1.0.0-preview.75"
"@microsoft/kiota-abstractions": "1.0.0-preview.77",
"@microsoft/kiota-http-fetchlibrary": "1.0.0-preview.77",
"@microsoft/kiota-serialization-form": "1.0.0-preview.77",
"@microsoft/kiota-serialization-json": "1.0.0-preview.77",
"@microsoft/kiota-serialization-multipart": "1.0.0-preview.77",
"@microsoft/kiota-serialization-text": "1.0.0-preview.77"
},
"devDependencies": {
"@apicurio/eslint-config": "0.3.0",
"@kiota-community/kiota-gen": "1.0.2",
"@types/node": "22.10.1",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.1",
"@types/react": "18.3.14",
"@types/react-dom": "18.3.2",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"@vitejs/plugin-react": "4.3.4",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "7.0.2",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"uuid": "11.0.3",
"vite": "6.0.2",
"vite": "6.0.3",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.8"
}
Expand Down
Loading

0 comments on commit 4dfac6c

Please sign in to comment.