⚠️ API users — action recommended for GET /api/v2/assets/
If your account has assets shared with many users, you may have noticed slow responses on that endpoint. This release introduces a new query parameter to significantly reduce that overhead:
GET /api/v2/assets/?current_user_permissions_only=true`
When set, the permissions field in the response will only contain your own permission assignments instead of every user's. The web app now sends this flag automatically, but API consumers need to opt in manually.
Use this if: you're listing assets programmatically and don't need to inspect other users' permissions — which is the common case for integrations and data pipelines.
Default behavior is unchanged: omitting the parameter (or passing false) still returns the full permission set as before. No breaking change.
What's Changed
- refactor(hooks): remove verbose info logs from send method DEV-1762 by @noliveleger in #6754
- fix(organizations): add long-running migration to remove organizations owned by deleted users DEV-1256 by @rajpatel24 in #6751
- feat(db): enforce PostgreSQL timeout per environment and worker type DEV-1705 by @noliveleger in #6758
- fix(migration): prevent OOM crashes and race conditions in long running migrations DEV-1745 by @Guitlle in #6720
- fix(longRunningMigration): fix 0005 pagination timeout and improve duplicate cleanup DEV-1698 by @noliveleger in #6777
- fix(longRunningMigrations): restart failed long running migrations
0005,0011, and0013DEV-1798 by @rajpatel24 in #6781 - fix(reports): sanitize non-finite floats to prevent invalid JSON responses DEV-1797 by @noliveleger in #6779
- fix(celery): use correct
prod_celerysettings module name by @noliveleger in #6792 - fix(mfa): remove signal handler DEV-1821 by @rgraber in #6795
- feat(settings): remove per-user MFA conditions DEV-1820 by @Akuukis in #6794
- fix(migrations): fix materialized view migration conflict DEV-1822 by @rajpatel24 in #6796
- ci: reduce CI test suite runtime with parallel jobs DEV-1824 by @noliveleger in #6798
- perf(assets): reduce memory and query overhead in permission loading DEV-1803 by @noliveleger in #6790
Full Changelog: 2.026.03c...2.026.03e