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.

All other dependencies in this package.json use caret ranges, but solid-namespace is now pinned to an exact version. This will prevent consumers from receiving patch updates (including security fixes) automatically. If there's no specific reason to pin, switch back to a range (e.g., ^0.5.4); if pinning is intentional, consider documenting the rationale (or using an override/resolution if the goal is to constrain a transitive dependency).

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.

Bumping the minimum rdflib peer dependency from ^2.3.5 to ^2.3.6 is a compatibility contract change for downstream consumers who currently use 2.3.5. If 2.3.5 is still compatible, consider widening the range to include it; otherwise, ensure this peer requirement change is reflected in the release versioning/changelog as appropriate.

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

Copilot uses AI. Check for mistakes.
}
}
Loading