-
-
Notifications
You must be signed in to change notification settings - Fork 37
Comparing changes
Open a pull request
base repository: nix-community/vulnix
base: 1.10.1
head repository: nix-community/vulnix
compare: 1.10.2
- 19 commits
- 9 files changed
- 10 contributors
Commits on Sep 14, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6f1a3c0 - Browse repository at this point
Copy the full SHA 6f1a3c0View commit details
Commits on Sep 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 45bc916 - Browse repository at this point
Copy the full SHA 45bc916View commit details -
Configuration menu - View commit details
-
Copy full SHA for cef7eba - Browse repository at this point
Copy the full SHA cef7ebaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 07cd17c - Browse repository at this point
Copy the full SHA 07cd17cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 593d6d9 - Browse repository at this point
Copy the full SHA 593d6d9View commit details
Commits on Sep 21, 2021
-
fix failure to find deriver for derivation input sources
Derivation input sources have no deriver and can safely be skipped. Also fix comment that says the `deriver` field was added to `nix path-info` in Nix 2.4. That is incorrect, it is already present in stable Nix.
Configuration menu - View commit details
-
Copy full SHA for 5228f2b - Browse repository at this point
Copy the full SHA 5228f2bView commit details
Commits on Sep 23, 2021
-
Configuration menu - View commit details
-
Copy full SHA for cea4e89 - Browse repository at this point
Copy the full SHA cea4e89View commit details
Commits on Feb 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for b95c7df - Browse repository at this point
Copy the full SHA b95c7dfView commit details
Commits on Oct 13, 2022
-
README.rst: Add syntax highlighting to code blocks (#86)
Signed-off-by: David Houston <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f56f3ac - Browse repository at this point
Copy the full SHA f56f3acView commit details
Commits on Apr 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c0f8156 - Browse repository at this point
Copy the full SHA c0f8156View commit details
Commits on Jun 3, 2023
-
This is what most projects in the nix-community Github organization uses.
Configuration menu - View commit details
-
Copy full SHA for b1aba38 - Browse repository at this point
Copy the full SHA b1aba38View commit details -
Merge pull request #90 from nix-community/github-actions-ci
Use Github Actions for CI
Configuration menu - View commit details
-
Copy full SHA for 6bcc1bd - Browse repository at this point
Copy the full SHA 6bcc1bdView commit details
Commits on Apr 2, 2024
-
Merge pull request #80 from dermetfan/runtime-deps
Scan only runtime dependencies
Configuration menu - View commit details
-
Copy full SHA for ebd8ea8 - Browse repository at this point
Copy the full SHA ebd8ea8View commit details
Commits on Jul 3, 2024
-
When using flakes `vulnix -C ./result` errors and complains that `Nix feature 'flakes' is disabled`. Add flakes to extra-experimental-features to fix this. See: ``` error: experimental Nix feature 'flakes' is disabled; use '--extra-experimental-features flakes' to override Traceback (most recent call last): File "/nix/store/wlxjs6pxn9bw46kfxq5p8pxf6kv7rpiz-vulnix-1.10.1-unstable-2024-04-02/bin/.vulnix-wrapped", line 9, in <module> sys.exit(main()) ^^^^^^ File "/nix/store/x945cn634yr39bbjz5rv7my5yj0gx6ry-python3.11-click-8.1.7/lib/python3.11/site-packages/click/core.py", line 1157, in __call__ return self.main(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/x945cn634yr39bbjz5rv7my5yj0gx6ry-python3.11-click-8.1.7/lib/python3.11/site-packages/click/core.py", line 1078, in main rv = self.invoke(ctx) ^^^^^^^^^^^^^^^^ File "/nix/store/x945cn634yr39bbjz5rv7my5yj0gx6ry-python3.11-click-8.1.7/lib/python3.11/site-packages/click/core.py", line 1434, in invoke return ctx.invoke(self.callback, **ctx.params) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/x945cn634yr39bbjz5rv7my5yj0gx6ry-python3.11-click-8.1.7/lib/python3.11/site-packages/click/core.py", line 783, in invoke return __callback(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/wlxjs6pxn9bw46kfxq5p8pxf6kv7rpiz-vulnix-1.10.1-unstable-2024-04-02/lib/python3.11/site-packages/vulnix/main.py", line 157, in main populate_store(store, gc_roots, profile, paths) File "/nix/store/wlxjs6pxn9bw46kfxq5p8pxf6kv7rpiz-vulnix-1.10.1-unstable-2024-04-02/lib/python3.11/site-packages/vulnix/main.py", line 60, in populate_store store.add_path(path) File "/nix/store/wlxjs6pxn9bw46kfxq5p8pxf6kv7rpiz-vulnix-1.10.1-unstable-2024-04-02/lib/python3.11/site-packages/vulnix/nix.py", line 123, in add_path self._call_nix(['path-info', '-r', '--json', output]) File "/nix/store/wlxjs6pxn9bw46kfxq5p8pxf6kv7rpiz-vulnix-1.10.1-unstable-2024-04-02/lib/python3.11/site-packages/vulnix/nix.py", line 57, in _call_nix return call(['nix', ^^^^^^^^^^^^ File "/nix/store/wlxjs6pxn9bw46kfxq5p8pxf6kv7rpiz-vulnix-1.10.1-unstable-2024-04-02/lib/python3.11/site-packages/vulnix/utils.py", line 15, in call output = subprocess.check_output(cmd, stderr=capture) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/6b1fqdwb3g56j5pazv8zkx9qd0mv3wiz-python3-3.11.9/lib/python3.11/subprocess.py", line 466, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout, check=True, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/nix/store/6b1fqdwb3g56j5pazv8zkx9qd0mv3wiz-python3-3.11.9/lib/python3.11/subprocess.py", line 571, in run raise CalledProcessError(retcode, process.args, subprocess.CalledProcessError: Command '['nix', '--experimental-features', 'nix-command', 'path-info', '-r', '--json', 'result']' returned non-zero exit status 1. ``` Co-authored-by: Albin Vass <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for afd1a72 - Browse repository at this point
Copy the full SHA afd1a72View commit details
Commits on Nov 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 8464528 - Browse repository at this point
Copy the full SHA 8464528View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7789e8 - Browse repository at this point
Copy the full SHA e7789e8View commit details
Commits on Nov 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d520e37 - Browse repository at this point
Copy the full SHA d520e37View commit details
Commits on Nov 28, 2024
-
Remove new maintainer needed announcement
Signed-off-by: Henri Rosten <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b0e2b71 - Browse repository at this point
Copy the full SHA b0e2b71View commit details -
Merge pull request #104 from henrirosten/remove-new-maintainer-needed
Remove new maintainer needed announcement
Configuration menu - View commit details
-
Copy full SHA for 137e6a1 - Browse repository at this point
Copy the full SHA 137e6a1View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.10.1...1.10.2