
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@code-pushup/portal-client
Advanced tools
API client with type definitions for Code PushUp Portal.
npm install @code-pushup/portal-client
import { uploadReportToPortal } from '@code-pushup/portal-client';
// ...
const report = await uploadReportToPortal({
server: '<GRAPHQL URL>',
apiKey: process.env.CODE_PUSHUP_API_KEY,
data: {
organization: '<ORGANIZATION SLUG>',
project: '<PROJECT SLUG>',
commit: '<COMMIT SHA>',
plugins: [
// ...
],
categories: [
// ...
],
// ...
},
});
import { getPortalComparisonLink } from '@code-pushup/portal-client';
// ...
const url = await getPortalComparisonLink({
server: '<GRAPHQL URL>',
apiKey: process.env.CODE_PUSHUP_API_KEY,
parameters: {
organization: '<ORGANIZATION SLUG>',
project: '<PROJECT SLUG>',
before: '<COMMIT SHA_1>',
after: '<COMMIT SHA_2>',
},
});
import { downloadReportFromPortal } from '@code-pushup/portal-client';
// ...
const report = await downloadReportFromPortal({
server: '<GRAPHQL URL>',
apiKey: process.env.CODE_PUSHUP_API_KEY,
parameters: {
organization: '<ORGANIZATION SLUG>',
project: '<PROJECT SLUG>',
/* OPTIONAL: if commit not provided, finds latest report in default branch */
// commit: '<COMMIT SHA>',
/* OPTIONAL: opt in to including audit details (issues, trees, etc.), omitted by default to minimize payload */
// withAuditDetails: true,
/* OPTIONAL: maximum number of recent commits to search for latest report (ignored if commit set) */
// maxCommits: 30,
},
});
import { downloadProjectsFromPortal } from '@code-pushup/portal-client';
// ...
const report = await downloadProjectsFromPortal({
server: '<GRAPHQL URL>',
apiKey: process.env.CODE_PUSHUP_API_KEY,
parameters: {
/* OPTIONAL: filter projects by organization */
// organization: '<ORGANIZATION SLUG>',
/* OPTIONAL: opt in to including each project's latest report */
// withLatestReport: true,
/* OPTIONAL: opt in to including audit details (ignored unless withLatestReport enabled) */
// withAuditDetails: true,
/* OPTIONAL: maximum number of recent commits to search for latest report (ignored unless withLatestReport enabled) */
// maxCommits: 30,
},
});
FAQs
API client with type definitions for Code PushUp Portal.
We found that @code-pushup/portal-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.