feat/client elastic load balancing v2 - #229
Merged
floydspace merged 8 commits intoAug 29, 2026
Merged
Conversation
Adds @effect-aws/client-elastic-load-balancing-v2. The AWS SDK exports `ElasticLoadBalancingV2*`, while the codegen derived `ElasticLoadBalancingv2*` from the `Elastic Load Balancing v2` sdkId, so the sdk name is now capitalized per word. Bumping @smithy/types to 4.17.2 keeps a single copy in the tree, which the new client's transitive deps require. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
🦋 Changeset detectedLatest commit: 382fddf The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
`pnpm docgen` failed on two counts, both predating this branch. Every generated `*Service$` interface lacked a `@since` tag, which docgen rejects, so all 62 client packages failed to parse. The tag is added to the codegen template and to the already-generated files; regenerating a client whose model still matches the pinned SDK reproduces the patched file exactly. The `streamFromHttpApi` example still used the Effect 3 API — `@effect/platform` is not a dependency of `packages/lambda`, and `HttpApiBuilder.api` / `HttpServer.layerContext` no longer exist. It now mirrors the `fromHttpApi` example above it. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Merged
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.
What
Adds
@effect-aws/client-elastic-load-balancing-v2, generated from the AWS Smithy manifest via the repo'scodegen-clientflow (51 operations, plus*Streamvariants for the paginated ones), with amajorchangeset so the release pipeline publishes it.Two changes beyond the usual codegen flow
scripts/generate-client.ts— capitalize the sdk name per word. The service'ssdkIdisElastic Load Balancing v2, and the old rule (strip spaces, thencapitalize) producedElasticLoadBalancingv2Client, which the SDK does not export — the real symbol isElasticLoadBalancingV2Client. Each space-separated word is now capitalized before joining. Every existing client's generated name already has uppercase-initial words (APIGateway,IoTDataPlane,SESv2, ...), so no existing output changes.@smithy/typesbumped to 4.17.2. Withresolution-mode=highest, the new client's lockfile entry pulled@smithy/types@4.17.2while its siblings stayed at 4.16.1. Two copies in the tree break theService.fromClientAndCommandscall with the familiarstep "serialize" is not assignable to "initialize"error.pnpm dedupedoes not collapse it;pnpm update -r "@smithy/types"does, which is where the lockfile churn and thecommons/http-handler^4.17.2bumps come from. No source changes were needed for it, and the AWS SDK itself stays at the repo-wide3.1090.0.Verification
pnpm compileclean across the monorepopnpm vitest run— 74 test files / 427 tests passing, including the 6 generated for this clientpnpm eslint --fixapplied