Learn about the changes released for each version of the HubSpot developer platform
platformVersion
field that enables you to control which version of the projects platform you’re developing on. This enables you to access updated functionality and ensure any new features don’t break an app you’ve released on a previous version of the platform.
Below, learn about the available versions and their associated updates to specific APIs and features.
platformVersion
field in your project’s top-level hsproject.json
file.
2025.2
(September 2, 2025)2023.1
(sunset as of March 31, 2024)Parameter | Description |
---|---|
2025.2 | Available as of Sept 2, 2025. This platform version increases the minimum required version of Node.js to v22. Changes include a new file-based build-and-deploy framework. This framework contains an app’s configuration, assets, and other source code. Learn more in the developer platform overview. |
2025.1 | Available as of April 1, 2025. This platform version increases the minimum required version of Node.js to v20. |
2023.2 (Deprecated) | This version was made available on November 21, 2023 and is still supported, but will eventually be sunset on October 1, 2025. Changes primarily impact app functions, including:
|
2023.1 (Sunset) | Initial release of the developer platform. This version is no longer be available as of March 31, 2024. Attempts to upload projects at this version will fail. |
2025.1
increases the minimum version of Node.js to v20 for serverless functions, app functions, and endpoint functions.
2023.2
of the developer platform includes the changes below.
serverless.json
):
runtime
and version
fields have also been removed.async
to the function definition.sendResponse
), and use return statements to return response.await
and try
/catch
instead of promise chaining.context.secrets.PRIVATE_APP_ACCESS_TOKEN
, you’ll now use process.env
rather than context.secrets
. For example:
2023.2
increases log size from 4KB to 256KB and guarantees logs to be in order of execution. You can also take advantage of improved in-app logging, such as log tracing.