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)
Migration UI now supports individual and organization-level migrations
Released: 2025-10-02 Migration via the Platform UI- π Email-based migration now supports two scopes:
- Individual: Migrates only private Zaps under the userβs individual account (equivalent to the
--userflag of thezapier migrateCLI command) - Organization: Migrates all Zaps including shared resources across organization accounts (equivalent to the
--accountflag of thezapier migrateCLI command)
- Individual: Migrates only private Zaps under the userβs individual account (equivalent to the
Whatβs changed in v17.7.2
Released: 2025-09-17 cli- π Allows deleting old non-semver versions and blocks pushes to non-semver versions (#1160)
- π Integration check displays failure icon if errors are present (#1159)
- π Adds paging_token to bundle.meta types (#1157)
Whatβs changed in v17.7.1
Released: 2025-09-10 cli- π Fix
zapier scaffoldfailing when app object contains spread elements (#1115) - π Fix
zapier invoke authmay append to last line without a newline (#1138) - π Fix
zapier scaffoldto use.jsextension for TS imports (#1123) - π Fix
zapier scaffoldto handle shorthand property syntax (#1125) - π
zapier validatenow runs_zapier-buildbefore validation by default (#1130) - π
Add
devscript topackage.jsonof typescript templates generated byzapier init(#1128) - π
Improve
zapier initto list only templates that support selected module and language (#1146)
- π Censor sensitive info in
ResponseError(#1147)
- π Fix
InputFieldGroupsSchemato have its properties displayed (#1143) - π§ͺ Allow to skip cleaning arrays in
inputDataviaskipCleanArrayInputData(#1153) - π¨ Support version with label (ongoing work) (#1093)
No more manual handling of 4xx errors in refreshAccessToken
Effective: 2025-09-08 We made a change to how we handle error responses when refreshing OAuth2 access tokens. Old behavior When an app gives an error response (status code 4xx or 5xx) while refreshing the OAuth2 access token, Zapier keeps retrying the Zap step indefinitely or until it hits a certain limit, depending on the userβs settings. New behavior When an app encounter a 4xx error response (except for the ones listed below) while refreshing the access token, Zapier will mark the connect as stale, and send an email telling the user to reconnect. Exceptions: The following 4xx errors often indicate a temporary issue so they still have the same behavior as before:- 408 (Request Timeout)
- 409 (Conflict)
- 423 (Locked)
- 425 (Too Early)
- 429 (Too Many Requests)
- If the stale connection is used by a trigger step, the trigger polling system will skip polling when the scheduled time comes.
- If the stale connection is used by an action step, the Zap run will be put on hold until the user reconnects and replays the run.
refreshAccessToken anymore. For example, you might have been catching 4xx errors in refreshAccessToken by enabling skipThrowForStatus and throwing ExpiredAuthError:
Whatβs changed in v17.7.0
Released: 2025-08-22 cli- π Fix
zapier pullerror βlistFiles is not a functionβ (#1113) - π Fix
zapier invoke authwriting object values to.envas[object Object](#1107) - π
Add logic to
zapier buildto handle the case where the app directory has symlinks to files on a different drive (#1106) - π
zapier invokesupports testing Search Pagination with apaging_tokenflag (#1082)
- π Foundational support for Search Pagination (#1082)
- π Schema support for Search Pagination (#1082)
- π Enable Windows in Github Actions CI (#1106)
- π Add Claude, Copilot, and Cursor instructions/rules (#1107)
- π¨ Bump
tmpfrom 0.2.3 to 0.2.4 (#1100) - π¨ Bump
sha.jsfrom 2.4.11 to 2.4.12 (#1116)
Whatβs changed in v17.6.0
Released: 2025-08-11 cli- π Add user and account filters to canary (#1066)
- π
Export
consolefrom zapier-platform-core (#1077, #1102) - π Allow safe
authDatakeys to be logged uncensored (#1097)
Looking for older news? 2026, 2025, and old changelogs prior to v17