fix: bump @adobe/aio-lib-ims ^7->^8 to drop deprecated uuid@8 chain (APPBLD-4864) - #81
Merged
AnujVishwakarma-src merged 1 commit intoSep 9, 2026
Conversation
… (APPBLD-4864)
aio-lib-ims@7 pulls aio-lib-state@3 -> @azure/cosmos@3 -> uuid@8.3.2
(deprecated). aio-lib-ims@8 uses aio-lib-state@5, which dropped @azure/cosmos
entirely, removing that uuid@8 chain.
This clears the direct path to the old ims. Note: a second, transitive path
via @adobe/aio-lib-console-project-installation@3.1.1 (latest) still pins
aio-lib-ims@^7, so the uuid@8 warning is fully cleared only once that package
bumps to ims@8 and/or via an npm override at the @adobe/aio-cli root
(overrides are root-only).
Validation: unit tests 151/151 pass with 100% coverage; lint clean; the deep
import require("@adobe/aio-lib-ims/src/context") (CLI) still resolves on ims@8.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
aroragarvit666-hue
approved these changes
Sep 9, 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.
What
Bump
@adobe/aio-lib-ims^7 → ^8.Why
uuid@8.3.2is deprecated and is the only consumer-facing deprecation this package introduces (npm install --omit=dev). It is transitive:aio-lib-ims@8depends onaio-lib-state@5, which dropped@azure/cosmosentirely — removing thecosmos → uuid@8chain at the source. (@oclif/coreis already^4.9.0, so no oclif change is needed.)Scope note (honest disclosure)
This bump clears the direct path to the old ims. A second, transitive path still exists via
@adobe/aio-lib-console-project-installation@3.1.1(currently the latest), which pins@adobe/aio-lib-ims@^7. Until that package bumps to ims@8 — and/or anoverridesentry is added at the@adobe/aio-cliroot (npmoverridesare root-only) — theuuid@8warning is not fully eliminated from a full tree. This PR is the correct, forward-looking first step and is safe on its own.Validation
require('@adobe/aio-lib-ims/src/context')(used inBaseCommand.jsforCLI) still resolves under ims@8🤖 Generated with Claude Code