chore: refresh dependencies#335
Merged
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR refreshes Go and Node.js dependencies across the waza CLI (Go module) and the accompanying web/ dashboard and site/ documentation app, aligning the repo with newer upstream SDK/library releases and updated lockfile pins.
Changes:
- Bumps root Go module dependencies (Azure SDK, azd, goldmark, golang.org/x/*, etc.) and updates
go.sumaccordingly. - Updates
web/dependencies (notablylucide-react) and refreshesweb/package-lock.jsontransitive pins. - Updates
site/dependencies (@astrojs/starlight,sharp) for the docs site.
Show a summary per file
| File | Description |
|---|---|
| web/package.json | Updates lucide-react to a newer major version. |
| web/package-lock.json | Refreshes resolved versions/integrity hashes for updated web dependencies and transitives. |
| site/package.json | Updates Starlight and Sharp versions for the docs site. |
| go.mod | Updates Go dependencies and adjusts the declared Go version. |
| go.sum | Updates module checksums for the refreshed Go dependency graph. |
Copilot's findings
Files not reviewed (1)
- web/package-lock.json: Generated file
- Files reviewed: 3/6 changed files
- Comments generated: 1
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Summary
github.com/github/copilot-sdk/gois already current atv1.0.2.webandsite, includinglucide-react,@astrojs/starlight,sharp, and lockfile-resolved transitive updates.Validation
make testcd web && npm ci && npm run buildcd site && npm ci && npm run buildgo run golang.org/x/vuln/cmd/govulncheck@latest -scan=modulecd .adc-sdk && go run golang.org/x/vuln/cmd/govulncheck@latest -scan=modulecd web && npm auditcd site && npm audit --audit-level=moderateNotes
sitestill reports a low-severity esbuild advisory through Astro when running fullnpm audit; npm’s available fix isnpm audit fix --force, which would installastro@5.17.2as a breaking downgrade, so I left that out of this dependency refresh.