From 5f347b66dcc664bb08b458c8ef70d0704937147f Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Wed, 9 Sep 2026 05:28:29 -0700 Subject: [PATCH 1/2] chore: release version 10.15.0 --- .codegen.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ package-lock.json | 16 ++++++++-------- package.json | 2 +- src/networking/version.ts | 2 +- 5 files changed, 25 insertions(+), 11 deletions(-) diff --git a/.codegen.json b/.codegen.json index ab694eb0..9a362042 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "322b2fe", "specHash": "88cd5aa", "version": "10.14.0" } +{ "engineHash": "322b2fe", "specHash": "88cd5aa", "version": "10.15.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 92cd7798..eee9f482 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [10.15.0](https://github.com/box/box-node-sdk/compare/v10.14.0...v10.15.0) (2026-09-09) + + +### Bug Fixes + +* Fix type declarations that break `tsc` under `Node-only` `tsconfig` (box/box-codegen[#983](https://github.com/box/box-node-sdk/issues/983)) ([#1602](https://github.com/box/box-node-sdk/issues/1602)) ([874246d](https://github.com/box/box-node-sdk/commit/874246d84713b1aa48b65305bf8c1fdc14496e04)) +* stop double-JSON-encoding error fields in Box API errors (box/box-codegen[#985](https://github.com/box/box-node-sdk/issues/985)) ([#1608](https://github.com/box/box-node-sdk/issues/1608)) ([a517b3d](https://github.com/box/box-node-sdk/commit/a517b3d019085695ad73042ed34983a969fdd779)) + + +### New Features and Enhancements + +* add Japanese ZIP code validation to sign request (box/box-openapi[#615](https://github.com/box/box-node-sdk/issues/615)) ([#1598](https://github.com/box/box-node-sdk/issues/1598)) ([be0d1ff](https://github.com/box/box-node-sdk/commit/be0d1ff043075f7edd7b54f0c6cfaafce6b8cf4f)) +* Support chunk upload session plan API (box/box-openapi[#616](https://github.com/box/box-node-sdk/issues/616)) ([#1601](https://github.com/box/box-node-sdk/issues/1601)) ([f28a496](https://github.com/box/box-node-sdk/commit/f28a496f0843d666c2d5430029df5cfb4472addf)) + ## [10.14.0](https://github.com/box/box-node-sdk/compare/v10.13.0...v10.14.0) (2026-08-05) diff --git a/package-lock.json b/package-lock.json index 9b50a092..082d0633 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "box-node-sdk", - "version": "10.14.0", + "version": "10.15.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "box-node-sdk", - "version": "10.14.0", + "version": "10.15.0", "license": "Apache-2.0", "dependencies": { "@types/node-fetch": "2.6.13", @@ -2743,9 +2743,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.422", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.422.tgz", - "integrity": "sha512-UvA/32XqrLDdZSn7Jllo1AYNcWji/G0d5M0GTViE7KoGBiMunw3a34Sb2KO4ZZyrSEhqsxFoVhWWJshdyfKqJA==", + "version": "1.5.425", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.425.tgz", + "integrity": "sha512-QvPtl41EUOnuT1HBvMKgxXRIaHNcagBPs50u7VULzhZXaGfqTbZyE16LQsctZ/RQHlGu+FOWeDTR4mY6YbeF1g==", "dev": true, "license": "ISC" }, @@ -4900,9 +4900,9 @@ "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.54", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.54.tgz", - "integrity": "sha512-YHs7BmmcsdAI5Ozuf8JZo6PT0mv2GIWC9vMfvUC3dp65M8hn7Ux8CPL+2oBI7juNuj9d0ndhTcznq2ODBps9cQ==", + "version": "2.0.55", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.55.tgz", + "integrity": "sha512-mIrE/Cw9y+9Au6dS5vDKDhQza9YvG6w+ZrS6X+ZzA7yFW/soAeaups4Qzn1bL6g5FVy8WtP79+0j82oPIbqRjQ==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index a4dadab1..4951c79c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "box-node-sdk", "author": "Box ", - "version": "10.14.0", + "version": "10.15.0", "description": "Official SDK for Box Platform APIs", "keywords": [ "box", diff --git a/src/networking/version.ts b/src/networking/version.ts index e504d642..9c047125 100644 --- a/src/networking/version.ts +++ b/src/networking/version.ts @@ -1 +1 @@ -export const sdkVersion = '10.14.0'; +export const sdkVersion = '10.15.0'; From 35011755ab7c11779b8cd63dc8617f6b7d01ee48 Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Wed, 9 Sep 2026 05:32:09 -0700 Subject: [PATCH 2/2] chore: Update `.codegen.json` with commit hash of `codegen` and `openapi` spec [skip ci] --- .codegen.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codegen.json b/.codegen.json index 9a362042..dd1a7f49 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "322b2fe", "specHash": "88cd5aa", "version": "10.15.0" } +{ "engineHash": "8538d8d", "specHash": "88cd5aa", "version": "10.15.0" }