Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

is_manifest_current doesn't detect changes to deved packages #4103

Open
amilsted opened this issue Dec 2, 2024 · 0 comments
Open

is_manifest_current doesn't detect changes to deved packages #4103

amilsted opened this issue Dec 2, 2024 · 0 comments

Comments

@amilsted
Copy link

amilsted commented Dec 2, 2024

I am looking for a way to detect if the Manifest for a project containing deved packages is up to date.

In particular, if someone adds a dependency or compat contraint to a deved packages, I would like to detect this without using Pkg.resolve to update the Manifest.

is_manifest_current detects changes to the current project that might affect the Manifest, but does not detect changes to deved packages in the current project.

using Pkg
Pkg.activate("./my_project")

Pkg.generate("my_deved_dep")
Pkg.develop(path="./my_deved_dep")

Pkg.activate("./my_deved_dep")
Pkg.add("Cowsay")

Pkg.activate("./my_project")
Pkg.is_manifest_current()  # returns true, but the Manifest is now incorrect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant