Release 4.1.0 - Forward secrets path fix + Address Document Verification endpoints + challenge indicator docs - #446
Merged
Merged
Conversation
🟢 Risk Classification: LOWApproval route: AI Auto-Approval Classification reasons
Operational gates
Files analysed: 2 wall-e 2026.06.19-02 · policy |
🔬 Debug — why this classification?Each reason code emitted by the classifier, its source clause in the AI in SDLC Control Framework, and what it means.
Kinds:
See issue #3 for the proposal to formalise this map as Appendix A of the standards doc. wall-e 2026.06.19-02 · debug |
|
armando-rodriguez-cko
approved these changes
Aug 6, 2026
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
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.



Release 4.1.0 bundles three changes: the Forward secrets path fix (#443, INT-1666), the new Address Document Verification endpoints (#444, INT-1665) and the challenge indicator documentation alignment (#445, INT-1667).
Forward secrets path fix (behaviour change)
Swagger 2026-07-20 completed the rename of the Forward secrets endpoints. Requests now go to the Forward host root, without the
/forwardprefix:/forward/secretsto/secrets.PATCH,DELETE) moved from/forward/secrets/{name}to/secrets/{name}.src/config.jskeeps a single Forward host root (FORWARD_SANDBOX_URL/FORWARD_LIVE_URL) with no trailing slash, andForwardClientappends theforwardandsecretspath segments explicitly, matching every other SDK. Forward request URLs themselves are unchanged.src/api/forward/forward.js,src/config.js,test/forward/forward-unit.js)Anyone calling the secrets methods will now hit the new paths, so this is worth calling out in the release notes.
Address Document Verification (Adv) endpoints
Implements the Adv family from swagger 2026-07-16:
POST/GET /address-document-verifications, anonymize, attempts (create, list, get) and pdf-report.src/api/identities/address-document-verifications.js, wired into the identities client. (src/api/identities/identities.js)types/dist/api/identities/address-document-verifications.d.ts,types/dist/api/identities/identities.d.ts)test/identities/address-document-verifications/.Challenge indicator documentation alignment
Clarifies the allowed values of
3ds.challenge_indicatorper endpoint. No runtime behaviour changes here, only JSDoc plus a new test.hosted-payments.js,payments-links.js,payment-sessions.jsandpayments.jsthat the field accepts only the four standard values (no_preference,no_challenge_requested,challenge_requested,challenge_requested_mandate), and that exemption values are not accepted on these endpoints.sessions.jsthatchallenge_indicatoruniquely accepts all nine values, including exemption requests, and explained the fallback behaviour when an exemption cannot be applied.test/sessions/challenge-indicator.jscovering the accepted value sets.