Remove package.json version fields, bump @fjell/logging, simplify npm publish workflow
Summary
This release makes three repository changes recorded in the commit log: it removes version entries from package.json, updates the @fjell/logging dependency, and removes the global npm update step from the CI publish workflow. See the grouped notes below for the exact changes and affected files.
Improvements
- Bump @fjell/logging dependency to ^4.4.62 in
package.json(see commit a28c236). Commit message: "Bump @fjell/logging dependency to ^4.4.62 in package.json".
Release / CI
- Remove the global npm update step from the publish workflow in
.github/workflows/npm-publish.yml(see commit bb88885). Commit message notes: "Remove global npm update step from publish workflow" and describes removing thenpm install -g npm@latestcommand. The commit message also states: "Workflow now runs npm ci and npm publish under Node 22 without upgrading npm globally."
Other changes
- Remove version entries from
package.json(see commit 4b354c2). The commit message states: "Remove version entries from package.json" and specifically: "Delete "version": "4.4.61-dev.0" from package.json" and "Delete "version": "4.4.61" from package.json".
Files changed (high level)
package.json— removedversionentries; updated@fjell/loggingdependency to^4.4.62(commits 4b354c2, a28c236)..github/workflows/npm-publish.yml— removed the globalnpmupdate step so the workflow relies on Node 22 and runsnpm ci/npm publishwithout globally upgrading npm (commit bb88885).