-
Notifications
You must be signed in to change notification settings - Fork 4.4k
docs(PLEN-1078): add changelog for auth config PATCH semantics fix #2353
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
anshugarg15
wants to merge
14
commits into
next
Choose a base branch
from
docs/plen-1078-auth-config-patch-changelog
base: next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Documents the breaking change in PATCH /api/v3/auth_configs/{id} endpoint
where fields are now preserved when not explicitly provided (true PATCH
semantics) instead of being reset to defaults (PUT-like behavior).
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
- Add TypeScript and Python examples - Remove duplication and redundant sections - Follow repo changelog standards - Remove unnecessary Benefits section
Contributor
Contributor
Contributor
- Replace raw HTTP examples with TypeScript and Python SDK examples - Add CodeBlocks with tabs for both SDKs - Add 'Update Scopes for Default Auth Configs' example - Migration guide now uses SDK syntax - Tested on staging: all PATCH operations work correctly PLEN-1078
Contributor
- Fix TS SDK to make credentials optional for custom type updates - Add proxyConfig and sharedCredentials support to TS SDK update method - Fix changelog package name from composio-core to @composio/core - Simplify changelog examples TypeScript SDK changes: - authConfigs.types.ts: Make credentials optional, add proxyConfig and sharedCredentials - AuthConfigs.ts: Update method to handle new optional fields Tested on staging: - Python SDK: 12/12 tests passed - TypeScript SDK: 10/10 tests passed PLEN-1078
Contributor
|
The Please review and fix the vulnerabilities. You can try running: pnpm audit --fix --prodAudit output |
Contributor
Contributor
Contributor
Remove SDK-specific examples since current SDKs don't support all PATCH capabilities (proxy_config, shared_credentials, optional credentials). Added note about future SDK updates. Tested all examples on staging - 11/11 tests passed. PLEN-1078
Contributor
Contributor
- Python SDK examples as primary - TypeScript SDK examples with note about credentials requirement - Raw HTTP API examples moved to end - All examples tested and verified on staging PLEN-1078
Contributor
Contributor
Contributor
lingalarahul7
approved these changes
Jan 9, 2026
haxzie
requested changes
Jan 9, 2026
| await composio.authConfigs.update("ac_yourAuthConfigId", { | ||
| type: "custom", | ||
| credentials: { | ||
| // Include existing credentials when using TS SDK |
Collaborator
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this mean?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
https://github.com/ComposioHQ/hermes/pull/7598
Changes
Type of change
How Has This Been Tested?
Vitests for the changes in hermes + Tested the python code snippets from changelog
Screenshots (if applicable)
Checklist
e2e test report
E2E Test Report - Auth Config PATCH Semantics
Environment: Staging (
https://staging-backend.composio.dev)Test Date: 2026-01-08
Python SDK Tests ✅ 4/4
client_secret(credentials merged)tool_access_configWITHOUTcredentialstool_access_configwith[]TypeScript SDK Tests ✅ 4/4
toolAccessConfigRaw HTTP API Tests ✅ 11/11
client_secret(credentials merged)tool_access_configWITHOUTcredentialsproxy_configproxy_configwithnulltool_access_configwith[]scopesfor default typetool_access_config(scopes preserved)shared_credentialsChangelog Code Verification ✅ 5/5
Every curl command in the changelog was executed on staging and verified:
client_idpreservedtool_access_configwithout credentialsproxy_configwithnulltool_access_configwith[]Summary
✅ All 24 tests passed