Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: snyk/snyk-gradle-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.8.0
Choose a base ref
...
head repository: snyk/snyk-gradle-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.9.0
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Dec 3, 2024

  1. Configuration menu
    Copy the full SHA
    17eb0c2 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2024

  1. feat: record pkg id provenance (#297)

    * feat: record pkg id provenance
    
    Add pkgIdProvenance to the dep-graph nodes where the coordinate has
    been changed when using `--gradle-normalize-deps`.
    
    This allows users to see what the original coordinate was in dep-graph
    JSON output.
    
    Nodes will appear like so:
    
    ```json
    {
      "nodes": [
        {
          "nodeId": "org.apache.logging.log4j:log4j-core@2.24.2",
          "pkgId": "org.apache.logging.log4j:log4j-core@2.24.2",
          "info": {
            "pkgIdProvenance": "my.logging:log4j@2.24.2",
          }
        }
      ]
    }
    ```
    
    Where "my.logging:log4j" has been identified as
    "org.apache.logging.log4j:log4j-core".
    
    When co-ordinates have not been changed, there is no label.
    
    * test: ignore failing test
    
    Follow up in a later PR on why this test is failing since the latest
    release of guava. For some reason we're including the 'default'
    configuration when we shouldn't.
    gitphill authored Dec 19, 2024
    Configuration menu
    Copy the full SHA
    9589d18 View commit details
    Browse the repository at this point in the history
Loading