-
Notifications
You must be signed in to change notification settings - Fork 0
Replace prerelease version strings in package-lock.json with stable 0.1.14 * Update top-level "version" in package-lock.json from "0.1.14-dev.0" to "0.1.14" * Update packages[""].version entry in package-lock.json from "0.1.14-dev.0" to "0.1.14" *... #12
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
Conversation
…d align tests
- Update tests/github.test.ts to stop asserting run() receives { cwd: undefined } or { suppressErrorLogging: true }; expectations now only verify the git command strings
- Remove test cases that verified cwd passthrough for GitHub.getCurrentBranchName, GitHub.getRepoDetails, and findOpenPullRequestByHeadRef, reflecting that callers no longer supply cwd
- Adjust open-PR lookup test to no longer expect getRepoDetails to invoke run() with cwd/suppressErrorLogging options
- Add .kodrdriv-test-cache.json as an empty object to reset the local test cache state
- src/github.ts updated accordingly (file changed), consistent with tests no longer depending on option forwarding behaviour
* Update dependency entry in package.json: "@eldrforge/git-tools" from "^0.1.9" to "^0.1.10" * Raises the minimum resolved version to 0.1.10 while keeping the caret range (>=0.1.10 <0.2.0), so package managers will choose 0.1.x releases at or above 0.1.10 * Changes dependency resolution baseline only — follow-up install will update the lockfile / node_modules to reflect the new minimum * Change is confined to package.json and does not alter source code or runtime imports (only the declared dependency version)
* Delete the "version" property from package.json (removed both "0.1.13-dev.0" and "0.1.13" lines) — change is confined to package.json * Leaves package metadata keys (description, main, type) intact; only the version field was removed * Practical effect: package.json no longer declares a package version — tooling or scripts that read package.json.version (publish steps, semver checks, changelog generators) will need an alternative source (git tags/CI-provided version or restored field) or may fail until a version is supplied
* Delete root-level "version" entry in package-lock.json * Remove the "version" key under packages[""] (the root package metadata) in package-lock.json * Leave other lockfile metadata intact (name, lockfileVersion, requires, license, dependencies remain as shown) * Technical effect: package-lock.json no longer exposes the package version at either the lockfile root or the packages[""] metadata; any tooling that reads package-lock.json.version will no longer find a value and must rely on other sources (lockfileVersion/package entries or external versioning) * Change is local to package-lock.json and does not modify other fields or dependency entries shown in the diff
* Update package.json: change dependencies["@eldrforge/git-tools"] from "^0.1.10" to "^0.1.11" * The caret range remains in place; npm will resolve versions >=0.1.11 and <0.2.0 (patch-level bump within the 0.1.x channel) * No other source files changed; the @octokit/rest entry in dependencies is unchanged * Operational note: lockfile (package-lock.json / yarn.lock) should be refreshed in CI or before release so installs reproduce the new resolved dependency version
* Update package.json: change "version" value from "0.1.14-dev.0" to "0.1.14" * Removes the pre-release suffix, promoting the package metadata to a stable semver release identifier * Affects how consumers, registries and publish tooling read the package identity (npm/semver will treat this as the final 0.1.14 release instead of a dev prerelease) * Change is limited to package.json and updates only the package metadata used for publishing and version checks
….1.14 * Update top-level "version" in package-lock.json from "0.1.14-dev.0" to "0.1.14" * Update packages[""].version entry in package-lock.json from "0.1.14-dev.0" to "0.1.14" * lockfileVersion (3) and dependency entries are unchanged; only the recorded package version metadata was adjusted * Effect: the lockfile now records the package as a stable semver release (no prerelease suffix), which affects how package identity is read by npm tooling and reproducible installs/publish metadata
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
Automated release PR.