Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
},
"dependencies": {
"@inrupt/solid-client-authn-browser": "^3.1.1",
"solid-namespace": "^0.5.4"
"solid-namespace": "0.5.4"
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

solid-namespace was changed from a caret range to an exact version. This is inconsistent with the rest of the dependencies and will prevent consumers from receiving compatible patch/minor updates automatically. If there isn’t a specific reason to pin, consider switching back to a semver range (e.g., caret) and rely on the lockfile for reproducibility; if pinning is required, document the rationale in release notes/changelog so downstream users understand the constraint.

Suggested change
"solid-namespace": "0.5.4"
"solid-namespace": "^0.5.4"

Copilot uses AI. Check for mistakes.
},
"peerDependencies": {
"rdflib": "^2.3.5"
"rdflib": "^2.3.6"
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bumping the rdflib peer dependency from ^2.3.5 to ^2.3.6 narrows the supported peer range by excluding 2.3.5. If the library remains compatible with 2.3.5, consider keeping the lower minimum (or using a range that still allows it) to avoid an unintended breaking change for consumers; otherwise, this should be called out explicitly as a peer requirement change in the release notes.

Suggested change
"rdflib": "^2.3.6"
"rdflib": ">=2.3.5 <3.0.0"

Copilot uses AI. Check for mistakes.
}
}
Loading