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 19, 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 compatible range (^0.5.4) to an exact pin (0.5.4). For a published library, exact pins prevent downstream consumers from receiving patch fixes without a new release, while ^0.5.4 already restricts updates to <0.6.0. Consider restoring a range (e.g., ^0.5.4) unless there is a known reason this dependency must be hard-pinned.

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 19, 2026

Choose a reason for hiding this comment

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

The peer dependency requirement for rdflib was tightened from ^2.3.5 to ^2.3.6. This raises the minimum supported version and will produce peer dependency warnings for consumers still on 2.3.5, even though this PR doesn’t include code changes that obviously require 2.3.6. If there’s no hard dependency on a 2.3.6 fix, consider keeping the broader range (e.g., ^2.3.5) to avoid unnecessarily narrowing compatibility.

Suggested change
"rdflib": "^2.3.6"
"rdflib": "^2.3.5"

Copilot uses AI. Check for mistakes.
}
}
Loading