v4.4.66 — package version bump, patch dependency updates, and npm publish workflow change
Summary
This release updates the package version to 4.4.66, applies several patch updates to internal @fjell/* dependencies, and removes the global npm upgrade step from the npm publish CI workflow. These changes are limited to package metadata and CI; no application-level behavior changes are described in the recorded commits.
Package version
- Bump package.json version to 4.4.66 (commit 7ada4a3).
- File changed: package.json
- Why it matters: marks this publication as v4.4.66 for consumers and package registries.
Dependency updates
- Patch updates to @fjell/* dependencies in package.json (commit 615e5c3):
- @fjell/http-api: ^4.4.60 → ^4.4.61
- @fjell/logging: ^4.4.60 → ^4.4.62
- @fjell/registry: ^4.4.77 → ^4.4.79
- File changed: package.json
- Why it matters: consumers installing this package will pull the bumped patch releases of these internal packages; patch bumps typically contain bug fixes or small improvements.
CI / Publish workflow
- Remove global npm upgrade step from npm publish workflow (commit 0473071).
- File changed: .github/workflows/npm-publish.yml
- What changed: the step that ran
npm install -g npm@latestwas deleted; the workflow now proceeds directly tonpm ciandnpm publish --access public. - Why it matters: the CI workflow will no longer force a global npm upgrade before installing dependencies and publishing. The runner's default Node/npm setup will be used (the workflow still sets node-version to 22). This reduces a global tool modification step in CI.
Files changed (high level)
- package.json — version and dependency patch bumps (commits 7ada4a3, 615e5c3)
- .github/workflows/npm-publish.yml — removed global npm upgrade step (commit 0473071)
Notes for maintainers and consumers
- After upgrading to this release, consumers will receive the updated patch versions of the listed @fjell/* dependencies when installing this package.
- CI maintainers: the publish workflow no longer forcibly upgrades npm globally. If a specific npm minor/patch is required for publishing, ensure the runner/node setup or workflow steps provide the required npm version.
Commit references
- Bump package version in package.json — 7ada4a3
- Bump @fjell/* dependency patch versions in package.json — 615e5c3
- Remove global npm upgrade from npm publish workflow — 0473071
If further detail is needed (e.g., changelogs for the bumped @fjell/* packages or the exact workflow diff), consult the referenced commits and files in the repository.