You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(experimentalIdentityAndAuth): enable identity and auth by default (#1352)
* feat(codegen): add `mutateClientPlugins()` integration hook
* feat(experimentalIdentityAndAuth): enable identity and auth by default
`experimentalIdentityAndAuth` behavior is now the default auth behavior.
The `experimentalIdentityAndAuth` flag is now oppositely replaced with
`useLegacyAuth`, which enables legacy auth behavior for backward
compatibility concerns.
* additional cleanup
* disable released version test
* feat(codegen): add PreCommandClassCodeSection
* wip: writerConsumers for plugins
* feat: enable writers for plugin parameters
* code style
* use templating, use instance name for plugin
---------
Co-authored-by: Steven Yuan <yuasteve@amazon.com>
Identity & Auth| `experimentalIdentityAndAuth` | Standardize identity and auth integrations to match the Smithy specification (see [Authentication Traits](https://smithy.io/2.0/spec/authentication-traits.html)). Newer capabilities include support for multiple auth schemes, `@optionalAuth`, and standardized identity interfaces for authentication schemes both in code generation and TypeScript packages. In `smithy-typescript`, `@httpApiKeyAuth` will be updated to use the new standardized interfaces. In `aws-sdk-js-v3` (`smithy-typescript`'s largest customer), this will affect `@aws.auth#sigv4` and `@httpBearerAuth` implementations, but is planned to be completely backwards-compatible.
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ By default, the Smithy TypeScript code generators provide the code generation fr
197
197
|`private`|No|Whether the package is `private` in `package.json`. The default value is `false`.|
198
198
|`requiredMemberMode`|No|**NOT RECOMMENDED DUE TO BACKWARD COMPATIBILITY CONCERNS.** Sets whether members marked with the `@required` trait are allowed to be `undefined`. See more details on the risks in `TypeScriptSettings.RequiredMemberMode`. The default value is `nullable`.|
199
199
|`createDefaultReadme`|No|Whether to generate a default `README.md` for the package. The default value is `false`.|
200
-
|`experimentalIdentityAndAuth`|No|Experimental feature that standardizes identity and auth integrations to match the Smithy specification (see [Authentication Traits](https://smithy.io/2.0/spec/authentication-traits.html)). See [the experimental features section for more details](CONTRIBUTING.md#experimental-features).|
200
+
|`useLegacyAuth`|No|**NOT RECOMMENDED, AVAILABLE ONLY FOR BACKWARD COMPATIBILITY CONCERNS.** Flag that enables using legacy auth. When in doubt, use the default identity and auth behavior (not configuring `useLegacyAuth`) as the golden path.|
0 commit comments