fix: put Package.resolved into gitignore#57
Merged
abelonogov-ld merged 2 commits intomainfrom Oct 29, 2025
Merged
Conversation
| .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata | ||
| .netrc | ||
| **/Package.resolved No newline at end of file | ||
| Package.resolved No newline at end of file |
There was a problem hiding this comment.
Bug: Root Directory Matching Issue
The pattern Package.resolved will match at any directory level, not just the root. To match only at the root as intended ("we need only root"), the pattern should be /Package.resolved with a leading slash. Both **/Package.resolved and Package.resolved match recursively through subdirectories; only the leading slash restricts matching to the root directory.
Vadman97
approved these changes
Oct 29, 2025
Vadman97
pushed a commit
that referenced
this pull request
Oct 29, 2025
🤖 I have created a release *beep* *boop* --- ## [0.7.2](0.7.1...0.7.2) (2025-10-29) ### Bug Fixes * put Package.resolved into gitignore ([61b9d78](61b9d78)) * put Package.resolved into gitignore ([#57](#57)) ([61b9d78](61b9d78)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Bumps to 0.7.2 and updates changelog with a bug fix noting Package.resolved is added to .gitignore. > > - **Release** > - Bump version in `.release-please-manifest.json` to `0.7.2`. > - **Changelog** > - Add `0.7.2` section with bug fix: include `Package.resolved` in `.gitignore`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit b9f3c49. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
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.
fix: put Package.resolved into gitignore
Note
Updates .gitignore to ignore Package.resolved and deletes the tracked Package.resolved file.
.gitignoreto ignorePackage.resolved(root-level).Package.resolvedfrom the repository.Written by Cursor Bugbot for commit 48ad749. This will update automatically on new commits. Configure here.