From 8f9cc80e83a88ace174edf21be8fbaa15de53070 Mon Sep 17 00:00:00 2001 From: Joshua Sosso Date: Mon, 7 Oct 2024 16:38:12 -0500 Subject: [PATCH] version bump --- languages/dart/dart-codegen/package.json | 20 ++++++++++---- languages/dart/dart-codegen/src/_common.ts | 2 +- languages/dart/dart-codegen/src/procedures.ts | 2 -- languages/kotlin/kotlin-codegen/package.json | 17 +++++++++--- languages/rust/rust-codegen/package.json | 15 ++++++++--- languages/swift/swift-codegen/package.json | 19 ++++++++++---- languages/ts/ts-client/package.json | 17 +++++++++--- .../ts/ts-codegen-reference/package.json | 17 +++++++++--- languages/ts/ts-codegen/package.json | 15 ++++++++--- languages/ts/ts-server/package.json | 17 +++++++++--- tooling/cli/package.json | 21 +++++++++++---- tooling/codegen-utils/package.json | 18 ++++++++++--- tooling/eslint-plugin/package.json | 26 ++++++++++++++----- tooling/json-schema-to-jtd/package.json | 17 +++++++++--- tooling/jtd-utils/package.json | 13 +++++++--- tooling/schema-typebox-adapter/package.json | 21 +++++++++++---- tooling/schema/package.json | 18 ++++++++++--- 17 files changed, 207 insertions(+), 68 deletions(-) diff --git a/languages/dart/dart-codegen/package.json b/languages/dart/dart-codegen/package.json index a5bbc476..e4f392cc 100644 --- a/languages/dart/dart-codegen/package.json +++ b/languages/dart/dart-codegen/package.json @@ -1,10 +1,15 @@ { "name": "@arrirpc/codegen-dart", - "version": "0.62.0", + "version": "0.61.1", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,6 +18,11 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "dependencies": { "@arrirpc/codegen-utils": "workspace:*", "pathe": "^1.1.2" } + "files": [ + "dist" + ], + "dependencies": { + "@arrirpc/codegen-utils": "workspace:*", + "pathe": "^1.1.2" + } } diff --git a/languages/dart/dart-codegen/src/_common.ts b/languages/dart/dart-codegen/src/_common.ts index c47baef6..5f3eac45 100644 --- a/languages/dart/dart-codegen/src/_common.ts +++ b/languages/dart/dart-codegen/src/_common.ts @@ -11,7 +11,7 @@ export interface CodegenContext { generatedTypes: string[]; instancePath: string; schemaPath: string; - clientVersion: string; + clientVersion?: string; isOptional?: boolean; discriminatorParentId?: string; discriminatorValue?: string; diff --git a/languages/dart/dart-codegen/src/procedures.ts b/languages/dart/dart-codegen/src/procedures.ts index 8da1403b..aa6145b4 100644 --- a/languages/dart/dart-codegen/src/procedures.ts +++ b/languages/dart/dart-codegen/src/procedures.ts @@ -144,7 +144,6 @@ export function dartServiceFromSchema( generatedTypes: context.generatedTypes, instancePath: `${context.instancePath}.${key}`, schemaPath: `${context.schemaPath}.${key}`, - clientVersion: context.clientVersion, }); if (subSchemaResult) { subServiceParts.push(subSchemaResult); @@ -165,7 +164,6 @@ export function dartServiceFromSchema( generatedTypes: context.generatedTypes, instancePath: `${context.instancePath}.${key}`, schemaPath: `${context.schemaPath}.${key}`, - clientVersion: context.clientVersion, }); if (subSchemaResult) { rpcParts.push(subSchemaResult); diff --git a/languages/kotlin/kotlin-codegen/package.json b/languages/kotlin/kotlin-codegen/package.json index fe47887c..95e87e9e 100644 --- a/languages/kotlin/kotlin-codegen/package.json +++ b/languages/kotlin/kotlin-codegen/package.json @@ -3,8 +3,13 @@ "version": "0.62.0", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,6 +18,10 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "dependencies": { "@arrirpc/codegen-utils": "workspace:*" } + "files": [ + "dist" + ], + "dependencies": { + "@arrirpc/codegen-utils": "workspace:*" + } } diff --git a/languages/rust/rust-codegen/package.json b/languages/rust/rust-codegen/package.json index c6dea3f4..fa4ce1db 100644 --- a/languages/rust/rust-codegen/package.json +++ b/languages/rust/rust-codegen/package.json @@ -2,8 +2,13 @@ "name": "@arrirpc/codegen-rust", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -12,11 +17,13 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "dependencies": { "@arrirpc/codegen-utils": "workspace:*", "pathe": "^1.1.2" }, "devDependencies": {}, - "version": "0.62.0" + "version": "0.61.1" } diff --git a/languages/swift/swift-codegen/package.json b/languages/swift/swift-codegen/package.json index bfa18fac..b4360d15 100644 --- a/languages/swift/swift-codegen/package.json +++ b/languages/swift/swift-codegen/package.json @@ -1,10 +1,15 @@ { "name": "@arrirpc/codegen-swift", - "version": "0.62.0", + "version": "0.61.1", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,7 +18,11 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "dependencies": { "@arrirpc/codegen-utils": "workspace:*" }, + "files": [ + "dist" + ], + "dependencies": { + "@arrirpc/codegen-utils": "workspace:*" + }, "devDependencies": {} } diff --git a/languages/ts/ts-client/package.json b/languages/ts/ts-client/package.json index 1e27c668..893e9ea3 100644 --- a/languages/ts/ts-client/package.json +++ b/languages/ts/ts-client/package.json @@ -5,10 +5,17 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -20,5 +27,7 @@ "event-source-plus": "^0.1.4", "ws": "^8.18.0" }, - "devDependencies": { "@types/ws": "^8.5.12" } + "devDependencies": { + "@types/ws": "^8.5.12" + } } diff --git a/languages/ts/ts-codegen-reference/package.json b/languages/ts/ts-codegen-reference/package.json index ca89067b..9873d137 100644 --- a/languages/ts/ts-codegen-reference/package.json +++ b/languages/ts/ts-codegen-reference/package.json @@ -4,8 +4,13 @@ "version": "0.62.0", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -14,7 +19,11 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "dependencies": { "@arrirpc/client": "workspace:*" }, + "files": [ + "dist" + ], + "dependencies": { + "@arrirpc/client": "workspace:*" + }, "devDependencies": {} } diff --git a/languages/ts/ts-codegen/package.json b/languages/ts/ts-codegen/package.json index ed8351fd..70856124 100644 --- a/languages/ts/ts-codegen/package.json +++ b/languages/ts/ts-codegen/package.json @@ -1,10 +1,15 @@ { "name": "@arrirpc/codegen-ts", - "version": "0.62.0", + "version": "0.61.1", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,7 +18,9 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "dependencies": { "@arrirpc/codegen-utils": "workspace:*", "prettier": "^3.3.3" diff --git a/languages/ts/ts-server/package.json b/languages/ts/ts-server/package.json index d4bae2c0..8daf5302 100644 --- a/languages/ts/ts-server/package.json +++ b/languages/ts/ts-server/package.json @@ -3,12 +3,19 @@ "version": "0.62.0", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "files": [ + "dist" + ], + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -28,5 +35,7 @@ "source-map-support": "^0.5.21", "uncrypto": "^0.1.3" }, - "devDependencies": { "bun-types": "^1.1.29" } + "devDependencies": { + "bun-types": "^1.1.29" + } } diff --git a/tooling/cli/package.json b/tooling/cli/package.json index 49b47d21..bd107b79 100644 --- a/tooling/cli/package.json +++ b/tooling/cli/package.json @@ -3,9 +3,16 @@ "version": "0.62.0", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bin": { "arri": "./dist/cli.mjs" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bin": { + "arri": "./dist/cli.mjs" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -14,7 +21,9 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "dependencies": { "@arrirpc/codegen-dart": "workspace:*", "@arrirpc/codegen-kotlin": "workspace:*", @@ -38,5 +47,7 @@ "pathe": "^1.1.2", "prettier": "^3.3.3" }, - "devDependencies": { "@types/degit": "^2.8.6" } + "devDependencies": { + "@types/degit": "^2.8.6" + } } diff --git a/tooling/codegen-utils/package.json b/tooling/codegen-utils/package.json index 5d739d89..b15a95bf 100644 --- a/tooling/codegen-utils/package.json +++ b/tooling/codegen-utils/package.json @@ -2,8 +2,13 @@ "name": "@arrirpc/codegen-utils", "version": "0.62.0", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,7 +18,12 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "dependencies": { "jtd-utils": "workspace:*", "scule": "^1.3.0" }, + "files": [ + "dist" + ], + "dependencies": { + "jtd-utils": "workspace:*", + "scule": "^1.3.0" + }, "devDependencies": {} } diff --git a/tooling/eslint-plugin/package.json b/tooling/eslint-plugin/package.json index 6eab925c..d1c17c19 100644 --- a/tooling/eslint-plugin/package.json +++ b/tooling/eslint-plugin/package.json @@ -2,8 +2,13 @@ "name": "@arrirpc/eslint-plugin", "version": "0.62.0", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -12,13 +17,22 @@ "main": "./dist/plugin.cjs", "module": "./dist/plugin.mjs", "exports": { - ".": { "import": "./dist/plugin.mjs", "require": "./dist/plugin.cjs" }, + ".": { + "import": "./dist/plugin.mjs", + "require": "./dist/plugin.cjs" + }, "./configs": { "import": "./dist/configs.mjs", "require": "./dist/configs.cjs" } }, - "files": ["dist"], - "devDependencies": { "@types/eslint": "^9.6.1" }, - "peerDependencies": { "eslint": ">=8.0.0" } + "files": [ + "dist" + ], + "devDependencies": { + "@types/eslint": "^9.6.1" + }, + "peerDependencies": { + "eslint": ">=8.0.0" + } } diff --git a/tooling/json-schema-to-jtd/package.json b/tooling/json-schema-to-jtd/package.json index 186d2526..55e66fee 100644 --- a/tooling/json-schema-to-jtd/package.json +++ b/tooling/json-schema-to-jtd/package.json @@ -2,8 +2,13 @@ "name": "json-schema-to-jtd", "version": "0.62.0", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,6 +18,10 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], - "dependencies": { "jtd-utils": "workspace:*" } + "files": [ + "dist" + ], + "dependencies": { + "jtd-utils": "workspace:*" + } } diff --git a/tooling/jtd-utils/package.json b/tooling/jtd-utils/package.json index 2e8a8732..e2953cf7 100644 --- a/tooling/jtd-utils/package.json +++ b/tooling/jtd-utils/package.json @@ -2,8 +2,13 @@ "name": "jtd-utils", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -12,7 +17,9 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "version": "0.62.0", "dependencies": {} } diff --git a/tooling/schema-typebox-adapter/package.json b/tooling/schema-typebox-adapter/package.json index bed0dc8e..b03dd8f9 100644 --- a/tooling/schema-typebox-adapter/package.json +++ b/tooling/schema-typebox-adapter/package.json @@ -5,10 +5,17 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -18,6 +25,10 @@ "@arrirpc/schema": "workspace:*", "json-schema-to-jtd": "workspace:*" }, - "devDependencies": { "@arrirpc/server": "workspace:*" }, - "peerDependencies": { "@sinclair/typebox": "^0.32" } + "devDependencies": { + "@arrirpc/server": "workspace:*" + }, + "peerDependencies": { + "@sinclair/typebox": "^0.32" + } } diff --git a/tooling/schema/package.json b/tooling/schema/package.json index 731fc9af..186056e2 100644 --- a/tooling/schema/package.json +++ b/tooling/schema/package.json @@ -3,8 +3,13 @@ "version": "0.62.0", "type": "module", "license": "MIT", - "author": { "name": "joshmossas", "url": "https://github.com/joshmossas" }, - "bugs": { "url": "https://github.com/modiimedia/arri/issues" }, + "author": { + "name": "joshmossas", + "url": "https://github.com/joshmossas" + }, + "bugs": { + "url": "https://github.com/modiimedia/arri/issues" + }, "repository": { "type": "git", "url": "https://github.com/modiimedia/arri.git", @@ -13,11 +18,16 @@ "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "dependencies": { "jtd-utils": "workspace:*", "scule": "^1.3.0", "uncrypto": "^0.1.3" }, - "devDependencies": { "ajv": "^8.17.1", "benny": "^3.7.1" } + "devDependencies": { + "ajv": "^8.17.1", + "benny": "^3.7.1" + } }