What's Changed
New Contributors
- @prandogabriel made their first contribution in #329
[1.2.14] — 2026-04-15
Added
- Cognito federated SAML/OIDC auth flow —
GET /oauth2/authorize(redirects to external SAML/OIDC IdP),POST /saml2/idpresponse(parses SAML assertion, creates federated user, issues authorization code), andPOST /oauth2/tokennow supportsgrant_type=authorization_codefor full SSO flow. Also addsGetIdentityProviderByIdentifier. Contributed by @prandogabriel (#329) - EC2 AuthorizeSecurityGroup returns rules —
AuthorizeSecurityGroupIngressandAuthorizeSecurityGroupEgressnow returnSecurityGroupRulesin the response with rule IDs, group ownership, protocol, port range, and CIDR details. Required by Terraform AWS provider v6. Reported by @mspiller (#325)
Fixed
- Cognito token claims correctness —
origin_jtiandauth_timeclaims are now only included inIdTokenandAccessToken(notRefreshToken), matching real AWS Cognito behavior. Refresh tokens use minimal claims with onlyclient_id.