End-user info is no longer shared between connections
Currently, if multiple connections share the sameend_user_id
, they also share the same end-user object in Nango. After the change, each connection will always get its own independent copy of the end-user object, even if they use the same end_user_id
. We are changing the old behavior because it was confusing for some developers, and it was impossible to declare multiple organizations for a given user.ποΈ Timeline
- September 8, 2025: End user updates will stop being replicated across connections.
π§ Am I impacted?
- If your users can be tied to multiple organizations
- If you were relying on the end user auto-replication to maintain data freshness
π‘ What should I do?
End user fields are mostly for display and tagging purposes:- If you are not using them, you can safely ignore this update.
- If you are using them, and wish to keep them in sync (e.g: display name, across connections) you will need to patch each connection when your end user is updated on your side
Action payload output limit
Nango actions currently have a documented output limit of 10MB. We are further restricting that limit to 2MB. Instead of using an action for large payloads like this, we encourage usage of the Nango proxy.Additionally, we will also soon restrict action inputs so please take note of your inputs.ποΈ Timeline
- October 1, 2025: We will throw an error when an action output exceeds the stated limitation of 2MB.
π§ Am I impacted?
- If you use actions and have a heavy output from the action. Typically the actions that have a large output are
fetch-attachment
,fetch-call-transcripts
and in general any fetching any object from an external system. We have added dedicated proxy code for such operations to help with the migration:fetch-document
,fetch-spreadsheet
,fetch-file
,fetch-database
- If youβre using a now deprecated prebuilt template that fetches objects from an external system
π‘ What should I do?
- Check your action logs for a warning that youβve exceeded the action output limitation.
- Verify the actions youβre using and log the output size of the action
- Migrate the action to use the proxy instead

Deprecation of /connection
endpoints
In this release, weβve made some changes to the API that are breaking for some users.-
All endpoints under
/connection
are now deprecated. Use the new/connections
endpoint instead. They all, except one, take and return the same data. Only the base path has changed. -
The endpoint
POST /connections
(previouslyPOST /connection
) now takes a different body, but returns the same data as previously. This new body is more flexible and ensure stricter typings on your side and validation on our side. -
The endpoint
POST /connection/:connectionId/metadata
andPATCH /connection/:connectionId/metadata
who have been deprecated for a while will not be migrated to /connections and will be removed at the end of the grace period.
ποΈ Timeline
- January 20, 2026: All
/connection
endpoints will be removed.
π§ Am I impacted?
- If you manually use any endpoint under
/connection
- If you use the CLI
- If you use the official Nango SDKs
π‘ What should I do?
- If you use the CLI, you should upgrade to
>=0.67.0
- If you use the official Nango SDKs, you should upgrade to
>=0.67.0
- If you manually use any endpoint under
/connection
, you should migrate to/connections
- If you use the
POST /connection/:connectionId/metadata
orPATCH /connection/:connectionId/metadata
endpoints, you should migrate to/connections/metadata
- If you specifically use the
POST /connection
endpoint to import connections, check the migration section below.
Migrating to POST /connections
Only this endpoint requires a manual migration.
Previously, the credentials were all at the root of the body.credentials
key:Deprecation of nango.yaml
configuration file
The new script format is now officially released under >=0.64.0
.
If you are already using it or have tried before, the only big change between beta and now is that we now use zod v4.
By upgrading to >=0.64.0
and running nango compile
, the CLI will update the dependency automatically; otherwise, you need to install zod: 4.0.5
ποΈ Timeline
- December 1st, 2025:
nango.yaml
support will be removed.
π§ Am I impacted?
- If you use custom scripts
π‘ What should I do?
- Follow migration guide -> https://docs.nango.dev/guides/custom-integrations/migrate-to-zero-yaml