We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd562f3 commit eb1774eCopy full SHA for eb1774e
safety/models/published/safety_vulnerabilities.sql
@@ -5,7 +5,7 @@ WITH dated AS (
5
DATE(commit_timestamp) commit_date,
6
vulnerability.specs specs,
7
vulnerability.cve cve,
8
- {{ source('semver_udf', 'multi_spec_has_at_least_one_upper_bound') }}(vulnerability.specs) fix_was_available,
+ {{ source('published_us_semver_udf', 'multi_spec_has_at_least_one_upper_bound') }}(vulnerability.specs) fix_was_available,
9
ROW_NUMBER() OVER(PARTITION BY package, vulnerability.cve ORDER BY commit_timestamp) - 1 previous_commits
10
FROM {{ source('safety_db', 'safety_db_history') }}
11
CROSS JOIN UNNEST(vulnerabilities) vulnerability
0 commit comments