chore: add lockfiles for Maven, npm, and Ruby (Bundler)#1
Draft
vallieres wants to merge 2 commits into
Draft
Conversation
added 2 commits
May 20, 2026 12:00
- Remove package-lock.json from mockserver-examples/node_examples/.gitignore - Remove Gemfile.lock from jekyll-www.mock-server.com/.gitignore - Add package-lock.json for all 16 node_examples npm packages - Add Gemfile.lock for jekyll-www.mock-server.com (Bundler) - Add lockfile.json (maven-lockfile) for root and all 11 Maven modules: mockserver-testing, mockserver-core, mockserver-client-java, mockserver-integration-testing, mockserver-war, mockserver-proxy-war, mockserver-netty, mockserver-junit-rule, mockserver-junit-jupiter, mockserver-spring-test-listener, mockserver-examples
… Gemfile.lock platforms - Upgrade maven-lockfile plugin from 4.1.0 to 5.16.0 (fixes leading-zero stripping in SHA1 checksums, per chains-project/maven-lockfile v4.2.1 fix) - Switch checksumMode to 'local' so inter-module SNAPSHOT dependencies use checksums from the locally-built JARs (not empty-file stubs); regenerate all 12 Maven lockfiles — now uses SHA-256 with proper 64-char checksums; zero empty-file (da39a3ee...) entries remain - Add plugin configuration to root pom.xml (checksumMode=local, includeEnvironment=false for reproducible output) - Add aarch64-linux and arm64-darwin platforms to Gemfile.lock (previously x86_64-linux-gnu only)
Author
|
All four issues addressed in the latest commit (0d907b5): Blocking fixes:
Non-blocking improvements:
|
Author
|
APPROVED — all blocking issues resolved, ready to merge.
|
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.
Adds missing lockfiles across all package managers in use, and removes .gitignore entries that were suppressing them.
.gitignore fixes:
mockserver-examples/node_examples/.gitignore: removedpackage-lock.jsonexclusionjekyll-www.mock-server.com/.gitignore: removedGemfile.lockexclusionLockfiles added:
package-lock.jsonfor each directory undermockserver-examples/node_examples/Gemfile.lockforjekyll-www.mock-server.com/lockfile.json(via maven-lockfile v4.1.0) for root and all 11 submodulesNo source code was modified.