-
-
Notifications
You must be signed in to change notification settings - Fork 382
build: update changesets tooling #2396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "webpack-dev-middleware": patch | ||
| --- | ||
|
|
||
| Update the changelog generator to the `@changesets/get-github-info` 1.0 API. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,7 +60,7 @@ | |
| "@babel/core": "^7.29.7", | ||
| "@babel/preset-env": "^7.29.7", | ||
| "@changesets/cli": "^3.0.1", | ||
| "@changesets/get-github-info": "^0.8.0", | ||
| "@changesets/get-github-info": "^1.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🩺 Stability & Availability | 🟠 Major | 🏗️ Heavy lift 🔎 Supported by static analysis🏁 Script executed: printf '%s\n' '--- package manifest ---'
sed -n '50,72p' package.json
printf '%s\n' '--- lockfile entries ---'
rg -n -A12 -B3 '"?`@changesets/get-github-info`|node_modules/@changesets/get-github-info|engines' package-lock.json yarn.lock pnpm-lock.yaml 2>/dev/null || true
printf '%s\n' '--- Node 20 baseline declarations ---'
rg -n -i 'node.?20|engines|setup-node|runtime' package.json .nvmrc .node-version .github 2>/dev/null | head -120Repository: webpack/webpack-dev-middleware Length of output: 50387 🏁 Script executed: python3 - <<'PY'
import json
from pathlib import Path
for name in ("package.json", "package-lock.json"):
p = Path(name)
if not p.exists():
continue
data = json.loads(p.read_text())
print(f"--- {name} ---")
if name == "package.json":
print("engines:", data.get("engines"))
print("dependency:", data.get("devDependencies", {}).get("`@changesets/get-github-info`"))
print("scripts:", {k:v for k,v in data.get("scripts", {}).items() if "release" in k or "change" in k})
else:
node = data.get("packages", {}).get("node_modules/@changesets/get-github-info")
root = data.get("packages", {}).get("", {})
print("root engines:", root.get("engines"))
print("root devDependency:", root.get("devDependencies", {}).get("`@changesets/get-github-info`"))
print("package entry:", node)
PY
printf '%s\n' '--- version-control and CI Node declarations ---'
for f in .nvmrc .node-version; do [ -f "$f" ] && { echo "[$f]"; cat "$f"; }; done
rg -n -i -g '!package-lock.json' -g '!node_modules' 'node-version|NODE_VERSION|node: *20|node 20|node\.js *20|engines' package.json .github README.md 2>/dev/null | head -160Repository: webpack/webpack-dev-middleware Length of output: 1870 🏁 Script executed: printf '%s\n' '--- release workflow and install policy ---'
sed -n '1,120p' .github/workflows/release.yml
printf '%s\n' '--- package manager and npm engine policy ---'
for f in .npmrc .yarnrc .yarnrc.yml pnpm-workspace.yaml; do [ -f "$f" ] && { echo "[$f]"; cat "$f"; }; done
rg -n -i 'npm (ci|install)|yarn install|pnpm install|engine-strict|changeset|release' .github package.json . 2>/dev/null | head -180
printf '%s\n' '--- direct package references ---'
rg -n -F '`@changesets/get-github-info`' --glob '!package-lock.json' --glob '!node_modules' .Repository: webpack/webpack-dev-middleware Length of output: 12943 🏁 Script executed: printf '%s\n' '--- changelog generator imports ---'
sed -n '1,100p' .changeset/changelog-generator.mjs
printf '%s\n' '--- package engine and Node 20 workflow context ---'
sed -n '96,114p' package.json
sed -n '55,88p' .github/workflows/nodejs.ymlRepository: webpack/webpack-dev-middleware Length of output: 4720 Keep The repository supports Node Source: MCP tools |
||
| "@fastify/express": "^4.0.7", | ||
| "@hapi/hapi": "^21.4.10", | ||
| "@hono/node-server": "^2.1.1", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.