Skip to main content

Whatโ€™s changed in v18.3.0

Released: 2026-03-12 Add support for function-based dynamic dropdowns cli
  • ๐ŸŽ‰ Add support for function-based dynamic dropdown to the invoke command (#1206)
core None! schema
  • ๐ŸŽ‰ Add FieldDynamicChoicesSchema for function-based dynamic dropdowns (#1206)

Whatโ€™s changed in v18.2.3

Released: 2026-03-04 Bug fixes for the CLI build command and pnpm compatibility. cli
  • ๐Ÿ› Surface package manager errors in build command (#1254)
core
  • ๐Ÿ› Declare zapier-platform-legacy-scripting-runner as an optional peer dep to fix pnpm strict module resolution (#1255)
schema None!

Whatโ€™s changed in v18.2.2

Released: 2026-02-26 Improved error handling when loading the legacy-scripting-runner module in core. The runtime now logs a warning with the actual error message when the module is installed but fails to load, making it easier to diagnose issues like missing transitive dependencies. cli None! core
  • ๐Ÿ› Log a warning when zapier-platform-legacy-scripting-runner is installed but fails to load, instead of silently returning null (#1247)
schema None! misc
  • ๐Ÿ”จ Fix publishing workflow to run on pushes to main (#1243)
  • ๐Ÿ”จ Add non-interactive mode to bump script (#1249)

User migrations must stay within the same major version

Effective: 2026-02-26 Same-major-version migrations only

Whatโ€™s changed in v18.2.1

Released: 2026-02-23 Resolved a bug in the CLI that caused the build command to fail when using a symlink-based package manager (like pnpm). cli
  • ๐Ÿ› zapier-platform build no longer raises EEXIST when using a symlink-based package manager (#1244)
core None! schema None!

Pushing unlabelled semantic versions must be sequential

Effective: 2026-02-23 What changed These rules apply to unlabelled semantic versions only (for example 1.2.3). Labelled versions (such as 1.2.3-beta or 0.0.0-my-feature) are not part of these checks. When you push a new unlabelled version, the platform validates two things in addition to existing format checks. 1. You cannot skip a required predecessor The API must see the right previous unlabelled release before it accepts the new one:
  • Patch bump (1.2.3): the exact unlabelled 1.2.2 must already exist.
  • Minor bump (1.3.0): at least one unlabelled 1.2.x must exist.
  • Major bump (2.0.0 when coming from 1.x): at least one unlabelled 1.x.x must exist.
1.0.0 is unchanged: there is no prior semver to require. If the predecessor is missing, push fails with 403 and guidance like: Version X requires Y to exist. Push version Y, then try again. 2. You cannot insert an โ€œintermediateโ€ version behind a newer line You also cannot push a version if a newer unlabelled version already exists in the segment that would make yours a backward insert:
  • 1.2.3: blocked if any unlabelled 1.2.4 or higher on the same 1.2.* line already exists. Pushing 1.3.0 is still allowed when only 1.3.x or 2.x.x existsโ€”those are not on the 1.2.* patch line.
  • 1.3.0: blocked if any unlabelled 1.4.x or higher on the same major (1.*) already exists. 2.0.0 is still allowed when only 2.x.x exists.
  • 2.0.0: blocked if any unlabelled 3.x.x or higher already exists.
If that applies, push fails with 403 and a message that an existing version would make this an intermediate release, which is not allowed. What this means for you
  • Plan patch โ†’ patch โ†’ minor โ†’ major (or the minimal chain your history needs) using unlabelled semver when you are ready to record real releases; use labelled snapshots while iterating.
  • If you are stuck because old versions were removed, you may still use deprecation and, when appropriate, delete a deprecated version so your remaining unlabelled history matches what you want to push next.

Whatโ€™s changed in v18.2.0

Released: 2026-02-18 The main change in this release is to support function-based choices in the invoke command, which will allow developers to test perform-based dynamic dropdowns. cli
  • ๐ŸŽ‰ zapier-platform invoke now supports function-based choices (#1237)
core
  • ๐Ÿ› If we attempt to stash a large response but itโ€™s bigger than the max limit, throw a descriptive error with the actual size and the limit (#1238)
  • ๐Ÿ”จ Add an environment variable to allow suppressing cleaning up env vars (#1242)
schema None! misc
  • ๐Ÿ”จ CI: Use environment to publish (#1239)
  • ๐Ÿ”จ CI: Automate the boilerplate upload (#1240)

Whatโ€™s changed in v18.1.1

Released: 2026-01-29 Main change introduced here is fixing missing HTTP error logs that were prematurely lost during a Lambda invocation. cli None! core
  • ๐Ÿ› Restore missing HTTP error logs (#1227)
schema None! misc

Whatโ€™s changed in v18.1.0

Released: 2026-01-19 The zapier-platform invoke command now supports a remote mode. By adding a --remote (-r for short) flag to the invoke command, such as:
zapier-platform invoke -r
โ€ฆ all invocations, including trigger/action invocation itself, input field definitions, and dynamic dropdown choices, will be executed remotely by the Zapier production environment. This means:
  • The integration version you want to test has to be deployed first.
  • The invocation results and the bundle payload passed to your integration code will match what you see in live production, which is great for testing.
  • Remote mode is slower than local mode (without the -r flag).
Read more about the three different modes in the zapier-platform invoke --help documentation. We also fixed an issue where the build and test commands were not correctly detecting package managers (like npm, yarn, pnpm, or bun) when your integration was part of a monorepo. Now, the CLI doesnโ€™t just look in the current directory for package manager indicators (like package-lock.json for npm), but also checks parent directories up to four levels up. cli
  • ๐ŸŽ‰ Add --remote flag to invoke command (#1220)
  • ๐Ÿ› Fix package manager detection in build and test commands to include parent directories (#1225)
core None! schema None! misc
  • ๐Ÿ“œ Improve internal development docs (#1221)

Whatโ€™s changed in v18.0.7

Released: 2026-01-07 In response to the previous Shai-Hulud incident, weโ€™re changing our package publishing process to improve security. This release also includes a schema extension that allows outputFields to have a sample field. Lastly, weโ€™ve refactored the invoke command to make upcoming enhancements easier. cli
  • ๐Ÿ”จ Refactor invoke command (#1217)
core None! schema
  • ๐ŸŽ‰ Allow a sample field to be provided for dynamic outputFields (#1211)
misc

Whatโ€™s changed in v18.0.6

Released: 2025-12-24 The zapier build command was harcoded to use npm install. As alternate package managers gain adoption, the zapier build command will respect your appโ€™s package manager of choice. It does this by checking the packageManager on the package.json file. If it is not defined, it will look for any relevant lock files. If still, none is defined, then will fallback to npm. If you are familiar with using zapier build with the flag --skip-npm-install, this flag has been renamed to --skip-dep-install, but will continue to still work as an alias. In the future, we will remove the --skip-npm-install flag. cli
  • ๐Ÿ’… CLI build respects the integrationโ€™s package manager (#1216)
core None! schema None! misc
  • ๐Ÿ”จ Bump tmp from 0.2.4 to 0.2.5 (#1207)
  • ๐Ÿ”จ Bump form-data from 4.0.4 to 4.0.5 (#1208)

Whatโ€™s changed in v18.0.5

Released: 2025-12-10
Weโ€™re releasing v18.0.5, skipping comprimised versions v18.0.2, v18.0.3, and v18.0.4, due to the prior security incident.
This release fixes a potential security vulnerability in the build command related to zip file decompression. cli
  • ๐Ÿ› Remove problematic decompress-tar dependency (#1202)
core None! schema None! misc
  • ๐Ÿ”จ Switch to pnpm as package manager and task runner (#1204)

Incident: Unauthorized Access to Zapier NPM Packages

Released: 2025-11-24 Unauthorized Access to Zapier npm Packages Note: No action is needed from Zapier users, only from Zapier developers using one of the NPM package versions listed on this page. See that link for detailed mitigation recommendations. All Zapier products are operating as expected and there is no indication of data loss or leak. Please see this link for the most up-to-date information.

Whatโ€™s changed in v18.0.1

Released: 2025-11-05 This release addresses an npx resolution issue introduced in v18.0.0 and fixes TypeScript typing for nested input fields when working with line items. cli
  • ๐Ÿ› Fix npx resolution issue with dual binary entries (#1191)
core
  • ๐Ÿ› Fix children input types when line items are present (#1188)
schema None! misc None!

Whatโ€™s changed in v18.0.0

Released: 2025-10-30 Version 18.0.0 is a BREAKING CHANGE release that contains several important upgrades and changes. Here is a brief breakdown of the main changes (โ— denotes a breaking change): โ— Node.js 22 Support Zapier Platform v18 runs on Node.js 22 runtime. This is a breaking change as it may affect compatibility with older Node.js versions and dependencies. โ— Schema Changes The skipCleanArrayInputData experimental flag has been replaced with cleanInputData. This provides more consistent data cleaning behavior across the platform. This change is breaking only if youโ€™re using skipCleanArrayInputData. See cleanInputData flag documentation for more details on how to configure this behavior. โ— New Throttling Middleware A new throwForThrottling middleware has been added to prevent afterResponse middleware from suppressing 429 (throttling) responses. This ensures proper handling of rate limiting scenarios. This change is breaking if you want to handle 429 responses in your afterResponse. See v18.x and above: the built-in throwForThrottling middleware for how to handle 429s yourself. New Executable Name zapier-platform The CLI now includes a new executable name zapier-platform while deprecating the old zapier command. Both will work for now, but zapier-platform is the recommended command going forward.
Apart from these major changes, here are the detailed release notes for this release (note that โ— denotes a breaking change): cli
  • ๐ŸŽ‰ Add executable name zapier-platform and deprecate zapier (#1181)
  • ๐Ÿ”จ Update outdated dependencies with security vulnerabilities (#1111)
  • ๐Ÿ”จ Apply prettier formatting to generated auth files since gen.fs.write bypasses transform streams
  • ๐Ÿ”จ Add ESM wrapper improvements for better module support
core
  • โ— Add Node.js 22 support (#1078)
  • ๐ŸŽ‰ Add throwForThrottling middleware with backward-compatible default behavior (#1151)
  • ๐Ÿ› Add better error message for 413 responses (#1110)
schema
  • โ— Replace skipCleanArrayInputData with cleanInputData (#1183)
  • ๐Ÿ”จ Add global cleanInputData flag for consistent data cleaning behavior
misc
  • โ— Major dependency updates across all packages (#1079)
  • ๐Ÿ”จ Update CI configuration for Node.js 22 support
  • ๐Ÿ”จ Pin exact xmldom version for security

Whatโ€™s changed in v17.9.1

Released: 2025-10-28 This release addresses a bug in the zapier push command and includes dependency updates. cli
  • ๐Ÿ› Fix issue where zapier push fail if the app wasnโ€™t built already (may have affected ESM builds) (#1187)
core None! schema None! misc
  • ๐Ÿ”จ Bump vite from 6.3.6 to 6.4.1 (#1185)

Self-serve static IP for private integrations

Released: 2025-10-21 Self-serve static IP for private integrations
  • ๐ŸŽ‰ Static IP can now be enabled by team members for private integrations:
    • Platform UI toggle: Navigate to the Settings tab on the Advanced page to enable static IP addresses for your private integration without contacting support.
    • Published integrations: Continue to contact Zapier Support to enable static IP for published integrations.

Labeled Versions now available in CLI and Platform UI

Released: 2025-10-21 Labeled Versions
  • ๐ŸŽ‰ Labeled Versions are now publicly available!
    • Versions like 2.0.0-beta can be used for testing and avoiding version collisions during parallel development
    • More flexible โ€œsnapshotโ€ versions like 0.0.0-my-feature can be used to push integration updates without committing to a semantic version number

Whatโ€™s changed in v17.9.0

Released: 2025-10-20 This release fixes an issue with validation for labeled versions, and improves failures on zapier env:set. cli
  • ๐Ÿ› Validate snapshot labels for 12 chars instead of 18 (#1182)
  • ๐Ÿ’… Display failure reasons for env:set (#1180)
core None! schema None!

Whatโ€™s changed in v17.8.0

Released: 2025-10-07 Aside from some clean up work, this release adds support for natural snapshots to zapier push. This is currently only supported internally but look out for a public release soon! cli
  • ๐Ÿ’… zapier push supports natural snapshots (#1172)
  • ๐Ÿ› Address punycode deprecation warning by removing node-fetch (#1171)
  • ๐Ÿ“œ Fix incorrect docs in zapier migrate (#1169)
core
  • ๐Ÿ› Allow null and undefined values for page_token in SearchResult (#1168)
  • ๐Ÿ› Allow undefined value for paging_token (#1166)
misc
  • ๐Ÿ“œ Direct developers to Platform News (#1174)

Looking for older news? 2026, 2025, and old changelogs prior to v17