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)
- ๐ 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
buildcommand (#1254)
- ๐ Declare
zapier-platform-legacy-scripting-runneras an optional peer dep to fix pnpm strict module resolution (#1255)
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-runneris installed but fails to load, instead of silently returning null (#1247)
- ๐จ 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- Migrations are only allowed when the from and to versions share the same major number (e.g.
1.0.0โ1.0.1, or2.1.0โ2.2.0). - Cross-major moves (e.g.
1.5.0โ2.0.0) are blocked in both the Platform UI and viazapier-platform migrate. This aligns with long-standing guidance; major releases include breaking changes, so users should update Zaps manually or you should use deprecation instead of migration. - Details and workflow are in Migrate users to a new version.
Whatโs changed in v18.2.1
Released: 2026-02-23 Resolved a bug in the CLI that caused thebuild command to fail when using a symlink-based package manager (like pnpm).
cli
- ๐
zapier-platform buildno longer raisesEEXISTwhen using a symlink-based package manager (#1244)
Pushing unlabelled semantic versions must be sequential
Effective: 2026-02-23 What changed These rules apply to unlabelled semantic versions only (for example1.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 unlabelled1.2.2must already exist. - Minor bump (
1.3.0): at least one unlabelled1.2.xmust exist. - Major bump (
2.0.0when coming from1.x): at least one unlabelled1.x.xmust 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 unlabelled1.2.4or higher on the same1.2.*line already exists. Pushing1.3.0is still allowed when only1.3.xor2.x.xexistsโthose are not on the1.2.*patch line.1.3.0: blocked if any unlabelled1.4.xor higher on the same major (1.*) already exists.2.0.0is still allowed when only2.x.xexists.2.0.0: blocked if any unlabelled3.x.xor higher already exists.
- 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 theinvoke command, which will allow developers to test perform-based dynamic dropdowns.
cli
- ๐
zapier-platform invokenow supports function-based choices (#1237)
- ๐ 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)
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)
- ๐จ Bump lodash from 4.17.21 to 4.17.23 across the board (#1228, #1229, #1230, #1231, #1233, #1234, #1235)
Whatโs changed in v18.1.0
Released: 2026-01-19 Thezapier-platform invoke command now supports a remote mode. By adding a --remote (-r for short) flag to the invoke command, such as:
- 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
-rflag).
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
--remoteflag toinvokecommand (#1220) - ๐ Fix package manager detection in
buildandtestcommands to include parent directories (#1225)
- ๐ 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 allowsoutputFields to have a sample field. Lastly, weโve refactored the invoke command to make upcoming enhancements easier.
cli
- ๐จ Refactor
invokecommand (#1217)
- ๐ Allow a
samplefield to be provided for dynamicoutputFields(#1211)
Whatโs changed in v18.0.6
Released: 2025-12-24 Thezapier 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)
Whatโs changed in v18.0.5
Released: 2025-12-10Weโre releasing v18.0.5, skipping comprimised versions v18.0.2, v18.0.3, and v18.0.4, due to the prior security incident.
build command related to zip file decompression.
cli
- ๐ Remove problematic decompress-tar dependency (#1202)
- ๐จ 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)
- ๐ Fix children input types when line items are present (#1188)
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 TheskipCleanArrayInputData 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-platformand deprecatezapier(#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
- โ Add Node.js 22 support (#1078)
- ๐ Add
throwForThrottlingmiddleware with backward-compatible default behavior (#1151) - ๐ Add better error message for 413 responses (#1110)
- โ Replace
skipCleanArrayInputDatawithcleanInputData(#1183) - ๐จ Add global
cleanInputDataflag for consistent data cleaning behavior
- โ 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 thezapier 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)
- ๐จ 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-betacan be used for testing and avoiding version collisions during parallel development - More flexible โsnapshotโ versions like
0.0.0-my-featurecan be used to push integration updates without committing to a semantic version number
- Versions like
Whatโs changed in v17.9.0
Released: 2025-10-20 This release fixes an issue with validation for labeled versions, and improves failures onzapier env:set.
cli
- ๐ Validate snapshot labels for 12 chars instead of 18 (#1182)
- ๐ Display failure reasons for env:set (#1180)
Whatโs changed in v17.8.0
Released: 2025-10-07 Aside from some clean up work, this release adds support for natural snapshots tozapier push. This is currently only supported internally but look out for a public release soon!
cli
- ๐
zapier pushsupports natural snapshots (#1172) - ๐ Address
punycodedeprecation warning by removingnode-fetch(#1171) - ๐ Fix incorrect docs in
zapier migrate(#1169)
- ๐ Allow null and undefined values for
page_tokeninSearchResult(#1168) - ๐ Allow undefined value for
paging_token(#1166)
- ๐ Direct developers to Platform News (#1174)
Looking for older news? 2026, 2025, and old changelogs prior to v17