Skip to content

Releases: box/box-node-sdk

v10.4.0

11 Feb 13:17
a938e4d

Choose a tag to compare

Bug Fixes

  • Correct enum value for legal hold policy changes (box/box-openapi#581) (#1319) (c14bb0d)
  • Fix config to make esm build esm compatible (box/box-codegen#915) (#1315) (ecb8967)

New Features and Enhancements

  • add confidence scores for structured extract (box/box-openapi#582) (#1321) (e7738ba)
  • add signer language, cancel sign request reason (box/box-openapi#584) (#1343) (f4def35)
  • Add watermarking permissions and sources information (box/box-openapi#579) (#1312) (92a3ed4)

v4.4.0

11 Feb 12:40
a974d0f

Choose a tag to compare

Bug Fixes

  • boxsdk: Bump cypress/request to fix CVE-2025-15284 (#1309) (bbd6b88)
  • boxsdkgen: Correct enum value for legal hold policy changes (box/box-openapi#581) (#1318) (00305a0)

New Features and Enhancements

  • boxsdkgen: add confidence scores for structured extract (box/box-openapi#582) (#1320) (e8435d0)
  • boxsdkgen: add signer language, cancel sign request reason (box/box-openapi#584) (#1342) (f77ee6b)
  • boxsdkgen: Add watermarking permissions and sources information (box/box-openapi#579) (#1310) (4c89711)

v10.3.0

19 Dec 15:21
4c549b1

Choose a tag to compare

Bug Fixes

  • add taxonomy to Metadata Field (read) definition (box/box-openapi#572) (#1275) (0935d71)
  • fix RetryAfter function when there's no Retry-After header (box/box-codegen#903) (#1251) (a334d81)

New Features and Enhancements

v4.3.0

19 Dec 15:12
67407b5

Choose a tag to compare

Bug Fixes

  • boxsdkgen: add taxonomy to Metadata Field (read) definition (box/box-openapi#572) (#1274) (3850e6b)
  • boxsdkgen: fix RetryAfter function when there's no Retry-After header (box/box-codegen#903) (#1250) (cd917ee)

New Features and Enhancements

  • boxsdkgen: add Metadata Taxonomies api (box/box-openapi#569) (#1256) (12d8c9f)
  • boxsdkgen: text input validation for Box Sign (box/box-openapi#568) (#1253) (5d4f8bf)
  • boxsdkgen: Treat nullable fields as Optional (box/box-codegen#906) (#1259) (50d7080)
  • Reuse auth and network settings between legacy and sdk-gen (#1242) (320c35e)

v10.2.0

10 Dec 14:28
426792f

Choose a tag to compare

Bug Fixes

New Features and Enhancements

  • Remove confidence_score and include_confidence_score from AI extract (box/box-openapi#567) (#1243) (55d6cd0)
  • support includeConfidenceScore and includeConfidenceScore fields in AI extract structured (box/box-openapi#566) (#1228) (4bf9f46)
  • Support new sign request metadata (box/box-openapi#565) (#1226) (8dfc1cc)
  • update error message on exception (box/box-codegen#896) (#1233) (b298afa)

v4.2.0

10 Dec 14:10
276708d

Choose a tag to compare

Bug Fixes

New Features and Enhancements

  • boxsdkgen: Remove confidence_score and include_confidence_score from AI extract (box/box-openapi#567) (#1245) (3a74388)
  • boxsdkgen: support includeConfidenceScore and includeConfidenceScore fields in AI extract structured (box/box-openapi#566) (#1227) (8e2b109)
  • boxsdkgen: Support new sign request metadata (box/box-openapi#565) (#1225) (955b6ba)
  • boxsdkgen: update error message on exception (box/box-codegen#896) (#1232) (b140428)

v4.1.1

12 Nov 15:49
fc2b2b4

Choose a tag to compare

Bug Fixes

  • boxsdkgen: Fix error propagation and empty fetch response handling in node SDK (box/box-codegen#883) (#1196) (9615a34)

v10.1.0

10 Nov 23:15
fa8a97d

Choose a tag to compare

Bug Fixes

New Features and Enhancements

v4.1.0

07 Nov 15:37
a80e722

Choose a tag to compare

Bug Fixes

New Features and Enhancements

  • boxsdkgen: Add GET enterprise configuration endpoint (box/box-openapi#559) (#1149) (55ffde1)
  • boxsdkgen: add update Archive API (box/box-openapi#563) (#1172) (fbe3d0f)

v4.0.0

23 Oct 11:23
9ab9800

Choose a tag to compare

Introducing a new major version of Box Node SDK v4 that includes two modules — the manually maintained module and the generated module. The coexisting modules provide easier access to the latest Box API features and support gradual migration to the standalone generated module.

Breaking Changes

  • With v4 of Box Node SDK, support for Node version below 18 has been dropped. While it may still be possible to download and use this SDK under Node below 18, we do not provide support for issues encountered on that version.

  • We have updated the module export style in the manually maintained box-node-sdk module to support the ES module and be more consistent with the generated sdk-gen module. Classes in the manual SDK are now exported as default exports from their respective files. When importing via CommonJS (require), use .default to access the class (e.g., const BoxSDK = require('box-node-sdk').default;).

For more information about migrating to v4 visit v3 to v4 migration guide

What's New in v4

With this SDK version, alongside the existing manually maintained module, we’re introducing a new generated sdk-gen module under box-node-sdk/sdk-gen import path, which gives you access to:

  • Full API Support — Complete coverage of the Box API ecosystem, giving you access to all the latest features and functionalities to build feature-rich applications.

  • Rapid API Updates — Our new auto-generation approach enables Box API additions within days, ensuring you can leverage the most up-to-date features without delay.

  • Embedded Documentation — All objects and parameters are documented directly in the SDK source code, keeping essential information in one place.

  • Enhanced Convenience Methods — New methods for authentication, chunk uploads, automatic retries, retry strategy, and more.

Important Notes

This version allows you to gradually migrate your codebase to the sdk-gen module. The key differences between the modules are documented in the module migration guide.

Ultimately, we recommend to migrate to v10 which includes only the generated sdk-gen module. To migrate from v4 to v10 follow this migration guide.

For more information, see the SDK versioning strategy document. Follow developer changelog for future updates.