mirror of
https://github.com/github/codeql-action.git
synced 2025-12-16 04:19:38 +08:00
Compare commits
27 Commits
v3.28.21
...
codeql-bun
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc02a25f64 | ||
|
|
1a67b5df99 | ||
|
|
97fbf51190 | ||
|
|
eaed21baf2 | ||
|
|
655a969b7c | ||
|
|
3934d2b758 | ||
|
|
0abe43cb59 | ||
|
|
83a4df546f | ||
|
|
7b0fb5a4ac | ||
|
|
23262aef80 | ||
|
|
5239ab193d | ||
|
|
bcaa06bbb4 | ||
|
|
b63847bb99 | ||
|
|
54a7f3b869 | ||
|
|
ba7fabd835 | ||
|
|
cae4996048 | ||
|
|
566c8dfa81 | ||
|
|
396fd27c30 | ||
|
|
57eebf61a2 | ||
|
|
4428f8e35c | ||
|
|
655a335537 | ||
|
|
99ec5f3dd6 | ||
|
|
c07c4ee026 | ||
|
|
46fbf563e6 | ||
|
|
4a19b5125b | ||
|
|
c7c9a57be6 | ||
|
|
c29cab9aac |
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@@ -2,8 +2,6 @@ version: 2
|
||||
updates:
|
||||
- package-ecosystem: npm
|
||||
directory: "/"
|
||||
reviewers:
|
||||
- "github/codeql-production-shield"
|
||||
schedule:
|
||||
interval: weekly
|
||||
labels:
|
||||
@@ -26,8 +24,6 @@ updates:
|
||||
- "*"
|
||||
- package-ecosystem: github-actions
|
||||
directory: "/"
|
||||
reviewers:
|
||||
- "github/codeql-production-shield"
|
||||
schedule:
|
||||
interval: weekly
|
||||
groups:
|
||||
@@ -36,8 +32,6 @@ updates:
|
||||
- "*"
|
||||
- package-ecosystem: github-actions
|
||||
directory: "/.github/actions/setup-swift/" # All subdirectories outside of "/.github/workflows" must be explicitly included.
|
||||
reviewers:
|
||||
- "github/codeql-production-shield"
|
||||
schedule:
|
||||
interval: weekly
|
||||
groups:
|
||||
|
||||
2
.github/workflows/__rubocop-multi-language.yml
generated
vendored
2
.github/workflows/__rubocop-multi-language.yml
generated
vendored
@@ -46,7 +46,7 @@ jobs:
|
||||
use-all-platform-bundle: 'false'
|
||||
setup-kotlin: 'true'
|
||||
- name: Set up Ruby
|
||||
uses: ruby/setup-ruby@e5ac7b085f6e63d49c8973eb0c6e04d876b881f1 # v1.230.0
|
||||
uses: ruby/setup-ruby@13e7a03dc3ac6c3798f4570bfead2aed4d96abfb # v1.244.0
|
||||
with:
|
||||
ruby-version: 2.6
|
||||
- name: Install Code Scanning integration
|
||||
|
||||
@@ -2,6 +2,13 @@
|
||||
|
||||
See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
|
||||
|
||||
## [UNRELEASED]
|
||||
|
||||
- The CodeQL Action no longer includes its own copy of the extractor for the `actions` language, which is currently in public preview.
|
||||
The `actions` extractor has been included in the CodeQL CLI since v2.20.6. If your workflow has enabled the `actions` language _and_ you have pinned
|
||||
your `tools:` property to a specific version of the CodeQL CLI earlier than v2.20.6, you will need to update to at least CodeQL v2.20.6 or disable
|
||||
`actions` analysis.
|
||||
|
||||
## 3.28.18 - 16 May 2025
|
||||
|
||||
- Update default CodeQL bundle version to 2.21.3. [#2893](https://github.com/github/codeql-action/pull/2893)
|
||||
|
||||
@@ -1,44 +0,0 @@
|
||||
name: "actions"
|
||||
aliases: []
|
||||
display_name: "GitHub Actions"
|
||||
version: 0.0.1
|
||||
column_kind: "utf16"
|
||||
unicode_newlines: true
|
||||
build_modes:
|
||||
- none
|
||||
file_coverage_languages: []
|
||||
github_api_languages: []
|
||||
scc_languages: []
|
||||
file_types:
|
||||
- name: workflow
|
||||
display_name: GitHub Actions workflow files
|
||||
extensions:
|
||||
- .yml
|
||||
- .yaml
|
||||
forwarded_extractor_name: javascript
|
||||
options:
|
||||
trap:
|
||||
title: TRAP options
|
||||
description: Options about how the extractor handles TRAP files
|
||||
type: object
|
||||
visibility: 3
|
||||
properties:
|
||||
cache:
|
||||
title: TRAP cache options
|
||||
description: Options about how the extractor handles its TRAP cache
|
||||
type: object
|
||||
properties:
|
||||
dir:
|
||||
title: TRAP cache directory
|
||||
description: The directory of the TRAP cache to use
|
||||
type: string
|
||||
bound:
|
||||
title: TRAP cache bound
|
||||
description: A soft limit (in MB) on the size of the TRAP cache
|
||||
type: string
|
||||
pattern: "[0-9]+"
|
||||
write:
|
||||
title: TRAP cache writeable
|
||||
description: Whether to write to the TRAP cache as well as reading it
|
||||
type: string
|
||||
pattern: "(true|TRUE|false|FALSE)"
|
||||
@@ -1,40 +0,0 @@
|
||||
if (($null -ne $env:LGTM_INDEX_INCLUDE) -or ($null -ne $env:LGTM_INDEX_EXCLUDE) -or ($null -ne $env:LGTM_INDEX_FILTERS)) {
|
||||
Write-Output 'Path filters set. Passing them through to the JavaScript extractor.'
|
||||
} else {
|
||||
Write-Output 'No path filters set. Using the default filters.'
|
||||
$DefaultPathFilters = @(
|
||||
'exclude:**/*',
|
||||
'include:.github/workflows/**/*.yml',
|
||||
'include:.github/workflows/**/*.yaml',
|
||||
'include:**/action.yml',
|
||||
'include:**/action.yaml'
|
||||
)
|
||||
|
||||
$env:LGTM_INDEX_FILTERS = $DefaultPathFilters -join "`n"
|
||||
}
|
||||
|
||||
# Find the JavaScript extractor directory via `codeql resolve extractor`.
|
||||
$CodeQL = Join-Path $env:CODEQL_DIST 'codeql.exe'
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_ROOT = &$CodeQL resolve extractor --language javascript
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
throw 'Failed to resolve JavaScript extractor.'
|
||||
}
|
||||
|
||||
Write-Output "Found JavaScript extractor at '${env:CODEQL_EXTRACTOR_JAVASCRIPT_ROOT}'."
|
||||
|
||||
# Run the JavaScript autobuilder.
|
||||
$JavaScriptAutoBuild = Join-Path $env:CODEQL_EXTRACTOR_JAVASCRIPT_ROOT 'tools\autobuild.cmd'
|
||||
Write-Output "Running JavaScript autobuilder at '${JavaScriptAutoBuild}'."
|
||||
|
||||
# Copy the values of the Actions extractor environment variables to the JavaScript extractor environment variables.
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_DIAGNOSTIC_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_DIAGNOSTIC_DIR
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_LOG_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_LOG_DIR
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_SCRATCH_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_SCRATCH_DIR
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_SOURCE_ARCHIVE_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_SOURCE_ARCHIVE_DIR
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_TRAP_DIR = $env:CODEQL_EXTRACTOR_ACTIONS_TRAP_DIR
|
||||
$env:CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE = $env:CODEQL_EXTRACTOR_ACTIONS_WIP_DATABASE
|
||||
|
||||
&$JavaScriptAutoBuild
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
throw "JavaScript autobuilder failed."
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
@echo off
|
||||
rem All of the work is done in the PowerShell script
|
||||
powershell.exe %~dp0autobuild-impl.ps1
|
||||
@@ -1,39 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
DEFAULT_PATH_FILTERS=$(cat << END
|
||||
exclude:**/*
|
||||
include:.github/workflows/**/*.yml
|
||||
include:.github/workflows/**/*.yaml
|
||||
include:**/action.yml
|
||||
include:**/action.yaml
|
||||
END
|
||||
)
|
||||
|
||||
if [ -n "${LGTM_INDEX_INCLUDE:-}" ] || [ -n "${LGTM_INDEX_EXCLUDE:-}" ] || [ -n "${LGTM_INDEX_FILTERS:-}" ] ; then
|
||||
echo "Path filters set. Passing them through to the JavaScript extractor."
|
||||
else
|
||||
echo "No path filters set. Using the default filters."
|
||||
LGTM_INDEX_FILTERS="${DEFAULT_PATH_FILTERS}"
|
||||
export LGTM_INDEX_FILTERS
|
||||
fi
|
||||
|
||||
# Find the JavaScript extractor directory via `codeql resolve extractor`.
|
||||
CODEQL_EXTRACTOR_JAVASCRIPT_ROOT="$($CODEQL_DIST/codeql resolve extractor --language javascript)"
|
||||
export CODEQL_EXTRACTOR_JAVASCRIPT_ROOT
|
||||
|
||||
echo "Found JavaScript extractor at '${CODEQL_EXTRACTOR_JAVASCRIPT_ROOT}'."
|
||||
|
||||
# Run the JavaScript autobuilder
|
||||
JAVASCRIPT_AUTO_BUILD="${CODEQL_EXTRACTOR_JAVASCRIPT_ROOT}/tools/autobuild.sh"
|
||||
echo "Running JavaScript autobuilder at '${JAVASCRIPT_AUTO_BUILD}'."
|
||||
|
||||
# Copy the values of the Actions extractor environment variables to the JavaScript extractor environment variables.
|
||||
env CODEQL_EXTRACTOR_JAVASCRIPT_DIAGNOSTIC_DIR="${CODEQL_EXTRACTOR_ACTIONS_DIAGNOSTIC_DIR}" \
|
||||
CODEQL_EXTRACTOR_JAVASCRIPT_LOG_DIR="${CODEQL_EXTRACTOR_ACTIONS_LOG_DIR}" \
|
||||
CODEQL_EXTRACTOR_JAVASCRIPT_SCRATCH_DIR="${CODEQL_EXTRACTOR_ACTIONS_SCRATCH_DIR}" \
|
||||
CODEQL_EXTRACTOR_JAVASCRIPT_SOURCE_ARCHIVE_DIR="${CODEQL_EXTRACTOR_ACTIONS_SOURCE_ARCHIVE_DIR}" \
|
||||
CODEQL_EXTRACTOR_JAVASCRIPT_TRAP_DIR="${CODEQL_EXTRACTOR_ACTIONS_TRAP_DIR}" \
|
||||
CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE="${CODEQL_EXTRACTOR_ACTIONS_WIP_DATABASE}" \
|
||||
${JAVASCRIPT_AUTO_BUILD}
|
||||
14
lib/codeql.js
generated
14
lib/codeql.js
generated
@@ -54,7 +54,6 @@ const doc_url_1 = require("./doc-url");
|
||||
const environment_1 = require("./environment");
|
||||
const feature_flags_1 = require("./feature-flags");
|
||||
const git_utils_1 = require("./git-utils");
|
||||
const languages_1 = require("./languages");
|
||||
const overlay_database_utils_1 = require("./overlay-database-utils");
|
||||
const setupCodeql = __importStar(require("./setup-codeql"));
|
||||
const tools_features_1 = require("./tools-features");
|
||||
@@ -262,19 +261,6 @@ async function getCodeQLForCmd(cmd, checkVersion) {
|
||||
extraArgs.push(...(await getTrapCachingExtractorConfigArgs(config)));
|
||||
extraArgs.push(`--trace-process-name=${processName}`);
|
||||
}
|
||||
if (config.languages.indexOf(languages_1.Language.actions) >= 0) {
|
||||
// We originally added an embedded version of the Actions extractor to the CodeQL Action
|
||||
// itself in order to deploy the extractor between CodeQL releases. When we did add the
|
||||
// extractor to the CLI, though, its autobuild script was missing the execute bit.
|
||||
// 2.20.6 is the first CLI release with the fully-functional extractor in the CLI. For older
|
||||
// versions, we'll keep using the embedded extractor. We can remove the embedded extractor
|
||||
// once 2.20.6 is deployed in the runner images.
|
||||
if (!(await util.codeQlVersionAtLeast(codeql, "2.20.6"))) {
|
||||
extraArgs.push("--search-path");
|
||||
const extractorPath = path.resolve(__dirname, "../actions-extractor");
|
||||
extraArgs.push(extractorPath);
|
||||
}
|
||||
}
|
||||
const codeScanningConfigFile = await generateCodeScanningConfig(config, logger);
|
||||
const externalRepositoryToken = (0, actions_util_1.getOptionalInput)("external-repository-token");
|
||||
extraArgs.push(`--codescanning-config=${codeScanningConfigFile}`);
|
||||
|
||||
File diff suppressed because one or more lines are too long
492
node_modules/.package-lock.json
generated
vendored
492
node_modules/.package-lock.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "codeql",
|
||||
"version": "3.28.18",
|
||||
"version": "3.28.19",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
@@ -937,12 +937,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@eslint/js": {
|
||||
"version": "9.26.0",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.26.0.tgz",
|
||||
"integrity": "sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ==",
|
||||
"version": "9.27.0",
|
||||
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.27.0.tgz",
|
||||
"integrity": "sha512-G5JD9Tu5HJEu4z2Uo4aHY2sLV64B7CDMXxFzqzjl3NKd6RVzSXNoE80jk7Y0lJkTTkjiIhBAqmlYwjuBY3tvpA==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://eslint.org/donate"
|
||||
}
|
||||
},
|
||||
"node_modules/@fastify/busboy": {
|
||||
@@ -1148,165 +1151,165 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/app": {
|
||||
"version": "15.1.6",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/app/-/app-15.1.6.tgz",
|
||||
"integrity": "sha512-WELCamoCJo9SN0lf3SWZccf68CF0sBNPQuLYmZ/n87p5qvBJDe9aBtr5dHkh7T9nxWZ608pizwsUbypSzZAiUw==",
|
||||
"version": "16.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/app/-/app-16.0.1.tgz",
|
||||
"integrity": "sha512-kgTeTsWmpUX+s3Fs4EK4w1K+jWCDB6ClxLSWUWTyhlw7+L3jHtuXDR4QtABu2GsmCMdk67xRhruiXotS3ay3Yw==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-app": "^7.2.1",
|
||||
"@octokit/auth-unauthenticated": "^6.1.3",
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/oauth-app": "^7.1.6",
|
||||
"@octokit/plugin-paginate-rest": "^12.0.0",
|
||||
"@octokit/auth-app": "^8.0.1",
|
||||
"@octokit/auth-unauthenticated": "^7.0.1",
|
||||
"@octokit/core": "^7.0.2",
|
||||
"@octokit/oauth-app": "^8.0.1",
|
||||
"@octokit/plugin-paginate-rest": "^13.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"@octokit/webhooks": "^13.6.1"
|
||||
"@octokit/webhooks": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/app/node_modules/@octokit/auth-token": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz",
|
||||
"integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-6.0.0.tgz",
|
||||
"integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==",
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/app/node_modules/@octokit/core": {
|
||||
"version": "6.1.5",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz",
|
||||
"integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==",
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.2.tgz",
|
||||
"integrity": "sha512-ODsoD39Lq6vR6aBgvjTnA3nZGliknKboc9Gtxr7E4WDNqY24MxANKcuDQSF0jzapvGb3KWOEDrKfve4HoWGK+g==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-token": "^5.0.0",
|
||||
"@octokit/graphql": "^8.2.2",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/auth-token": "^6.0.0",
|
||||
"@octokit/graphql": "^9.0.1",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"before-after-hook": "^3.0.2",
|
||||
"before-after-hook": "^4.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/app/node_modules/@octokit/graphql": {
|
||||
"version": "8.2.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz",
|
||||
"integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==",
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.1.tgz",
|
||||
"integrity": "sha512-j1nQNU1ZxNFx2ZtKmL4sMrs4egy5h65OMDmSbVyuCzjOcwsHq6EaYjOTGXPQxgfiN8dJ4CriYHk6zF050WEULg==",
|
||||
"dependencies": {
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/app/node_modules/@octokit/plugin-paginate-rest": {
|
||||
"version": "12.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-12.0.0.tgz",
|
||||
"integrity": "sha512-MPd6WK1VtZ52lFrgZ0R2FlaoiWllzgqFHaSZxvp72NmoDeZ0m8GeJdg4oB6ctqMTYyrnDYp592Xma21mrgiyDA==",
|
||||
"version": "13.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-13.0.1.tgz",
|
||||
"integrity": "sha512-m1KvHlueScy4mQJWvFDCxFBTIdXS0K1SgFGLmqHyX90mZdCIv6gWBbKRhatxRjhGlONuTK/hztYdaqrTXcFZdQ==",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0"
|
||||
"@octokit/types": "^14.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/app/node_modules/before-after-hook": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz",
|
||||
"integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A=="
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-4.0.0.tgz",
|
||||
"integrity": "sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ=="
|
||||
},
|
||||
"node_modules/@octokit/app/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/auth-app": {
|
||||
"version": "7.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-app/-/auth-app-7.2.1.tgz",
|
||||
"integrity": "sha512-4jaopCVOtWN0V8qCx/1s2pkRqC6tcvIQM3kFB99eIpsP53GfsoIKO08D94b83n/V3iGihHmxWR2lXzE0NicUGg==",
|
||||
"version": "8.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-app/-/auth-app-8.0.1.tgz",
|
||||
"integrity": "sha512-P2J5pB3pjiGwtJX4WqJVYCtNkcZ+j5T2Wm14aJAEIC3WJOrv12jvBley3G1U/XI8q9o1A7QMG54LiFED2BiFlg==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-app": "^8.1.4",
|
||||
"@octokit/auth-oauth-user": "^5.1.4",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/auth-oauth-app": "^9.0.1",
|
||||
"@octokit/auth-oauth-user": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"toad-cache": "^3.7.0",
|
||||
"universal-github-app-jwt": "^2.2.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/auth-app/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/auth-oauth-app": {
|
||||
"version": "8.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-oauth-app/-/auth-oauth-app-8.1.4.tgz",
|
||||
"integrity": "sha512-71iBa5SflSXcclk/OL3lJzdt4iFs56OJdpBGEBl1wULp7C58uiswZLV6TdRaiAzHP1LT8ezpbHlKuxADb+4NkQ==",
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-oauth-app/-/auth-oauth-app-9.0.1.tgz",
|
||||
"integrity": "sha512-TthWzYxuHKLAbmxdFZwFlmwVyvynpyPmjwc+2/cI3cvbT7mHtsAW9b1LvQaNnAuWL+pFnqtxdmrU8QpF633i1g==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-device": "^7.1.5",
|
||||
"@octokit/auth-oauth-user": "^5.1.4",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/auth-oauth-device": "^8.0.1",
|
||||
"@octokit/auth-oauth-user": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/auth-oauth-device": {
|
||||
"version": "7.1.5",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-7.1.5.tgz",
|
||||
"integrity": "sha512-lR00+k7+N6xeECj0JuXeULQ2TSBB/zjTAmNF2+vyGPDEFx1dgk1hTDmL13MjbSmzusuAmuJD8Pu39rjp9jH6yw==",
|
||||
"version": "8.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-oauth-device/-/auth-oauth-device-8.0.1.tgz",
|
||||
"integrity": "sha512-TOqId/+am5yk9zor0RGibmlqn4V0h8vzjxlw/wYr3qzkQxl8aBPur384D1EyHtqvfz0syeXji4OUvKkHvxk/Gw==",
|
||||
"dependencies": {
|
||||
"@octokit/oauth-methods": "^5.1.5",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/oauth-methods": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/auth-oauth-user": {
|
||||
"version": "5.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-5.1.4.tgz",
|
||||
"integrity": "sha512-4tJRofMHm6ZCd3O2PVgboBbQ/lNtacREeaihet0+wCATZmvPK+jjg2K6NjBfY69An3yzQdmkcMeiaOOoxOPr7Q==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-oauth-user/-/auth-oauth-user-6.0.0.tgz",
|
||||
"integrity": "sha512-GV9IW134PHsLhtUad21WIeP9mlJ+QNpFd6V9vuPWmaiN25HEJeEQUcS4y5oRuqCm9iWDLtfIs+9K8uczBXKr6A==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-device": "^7.1.5",
|
||||
"@octokit/oauth-methods": "^5.1.5",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/auth-oauth-device": "^8.0.1",
|
||||
"@octokit/oauth-methods": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/auth-token": {
|
||||
"version": "4.0.0",
|
||||
@@ -1317,15 +1320,15 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/auth-unauthenticated": {
|
||||
"version": "6.1.3",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-unauthenticated/-/auth-unauthenticated-6.1.3.tgz",
|
||||
"integrity": "sha512-d5gWJla3WdSl1yjbfMpET+hUSFCE15qM0KVSB0H1shyuJihf/RL1KqWoZMIaonHvlNojkL9XtLFp8QeLe+1iwA==",
|
||||
"version": "7.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-unauthenticated/-/auth-unauthenticated-7.0.1.tgz",
|
||||
"integrity": "sha512-qVq1vdjLLZdE8kH2vDycNNjuJRCD1q2oet1nA/GXWaYlpDxlR7rdVhX/K/oszXslXiQIiqrQf+rdhDlA99JdTQ==",
|
||||
"dependencies": {
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/core": {
|
||||
@@ -1398,21 +1401,21 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/endpoint": {
|
||||
"version": "10.1.4",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.4.tgz",
|
||||
"integrity": "sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==",
|
||||
"version": "11.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-11.0.0.tgz",
|
||||
"integrity": "sha512-hoYicJZaqISMAI3JfaDr1qMNi48OctWuOih1m80bkYow/ayPw6Jj52tqWJ6GEoFTk1gBqfanSoI1iY99Z5+ekQ==",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/endpoint/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/graphql": {
|
||||
"version": "7.1.1",
|
||||
@@ -1480,102 +1483,102 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/oauth-app": {
|
||||
"version": "7.1.6",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/oauth-app/-/oauth-app-7.1.6.tgz",
|
||||
"integrity": "sha512-OMcMzY2WFARg80oJNFwWbY51TBUfLH4JGTy119cqiDawSFXSIBujxmpXiKbGWQlvfn0CxE6f7/+c6+Kr5hI2YA==",
|
||||
"version": "8.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/oauth-app/-/oauth-app-8.0.1.tgz",
|
||||
"integrity": "sha512-QnhMYEQpnYbEPn9cae+wXL2LuPMFglmfeuDJXXsyxIXdoORwkLK8y0cHhd/5du9MbO/zdG/BXixzB7EEwU63eQ==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-app": "^8.1.3",
|
||||
"@octokit/auth-oauth-user": "^5.1.3",
|
||||
"@octokit/auth-unauthenticated": "^6.1.2",
|
||||
"@octokit/core": "^6.1.4",
|
||||
"@octokit/oauth-authorization-url": "^7.1.1",
|
||||
"@octokit/oauth-methods": "^5.1.4",
|
||||
"@octokit/auth-oauth-app": "^9.0.1",
|
||||
"@octokit/auth-oauth-user": "^6.0.0",
|
||||
"@octokit/auth-unauthenticated": "^7.0.1",
|
||||
"@octokit/core": "^7.0.2",
|
||||
"@octokit/oauth-authorization-url": "^8.0.0",
|
||||
"@octokit/oauth-methods": "^6.0.0",
|
||||
"@types/aws-lambda": "^8.10.83",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/oauth-app/node_modules/@octokit/auth-token": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz",
|
||||
"integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-6.0.0.tgz",
|
||||
"integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==",
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/oauth-app/node_modules/@octokit/core": {
|
||||
"version": "6.1.5",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz",
|
||||
"integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==",
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.2.tgz",
|
||||
"integrity": "sha512-ODsoD39Lq6vR6aBgvjTnA3nZGliknKboc9Gtxr7E4WDNqY24MxANKcuDQSF0jzapvGb3KWOEDrKfve4HoWGK+g==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-token": "^5.0.0",
|
||||
"@octokit/graphql": "^8.2.2",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/auth-token": "^6.0.0",
|
||||
"@octokit/graphql": "^9.0.1",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"before-after-hook": "^3.0.2",
|
||||
"before-after-hook": "^4.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/oauth-app/node_modules/@octokit/graphql": {
|
||||
"version": "8.2.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz",
|
||||
"integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==",
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.1.tgz",
|
||||
"integrity": "sha512-j1nQNU1ZxNFx2ZtKmL4sMrs4egy5h65OMDmSbVyuCzjOcwsHq6EaYjOTGXPQxgfiN8dJ4CriYHk6zF050WEULg==",
|
||||
"dependencies": {
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/oauth-app/node_modules/before-after-hook": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz",
|
||||
"integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A=="
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-4.0.0.tgz",
|
||||
"integrity": "sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ=="
|
||||
},
|
||||
"node_modules/@octokit/oauth-app/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/oauth-authorization-url": {
|
||||
"version": "7.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-7.1.1.tgz",
|
||||
"integrity": "sha512-ooXV8GBSabSWyhLUowlMIVd9l1s2nsOGQdlP2SQ4LnkEsGXzeCvbSbCPdZThXhEFzleGPwbapT0Sb+YhXRyjCA==",
|
||||
"version": "8.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/oauth-authorization-url/-/oauth-authorization-url-8.0.0.tgz",
|
||||
"integrity": "sha512-7QoLPRh/ssEA/HuHBHdVdSgF8xNLz/Bc5m9fZkArJE5bb6NmVkDm3anKxXPmN1zh6b5WKZPRr3697xKT/yM3qQ==",
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/oauth-methods": {
|
||||
"version": "5.1.5",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-5.1.5.tgz",
|
||||
"integrity": "sha512-Ev7K8bkYrYLhoOSZGVAGsLEscZQyq7XQONCBBAl2JdMg7IT3PQn/y8P0KjloPoYpI5UylqYrLeUcScaYWXwDvw==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/oauth-methods/-/oauth-methods-6.0.0.tgz",
|
||||
"integrity": "sha512-Q8nFIagNLIZgM2odAraelMcDssapc+lF+y3OlcIPxyAU+knefO8KmozGqfnma1xegRDP4z5M73ABsamn72bOcA==",
|
||||
"dependencies": {
|
||||
"@octokit/oauth-authorization-url": "^7.0.0",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/oauth-authorization-url": "^8.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/openapi-types": {
|
||||
"version": "25.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.0.0.tgz",
|
||||
"integrity": "sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw=="
|
||||
"version": "25.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.1.0.tgz",
|
||||
"integrity": "sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA=="
|
||||
},
|
||||
"node_modules/@octokit/openapi-webhooks-types": {
|
||||
"version": "10.4.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-webhooks-types/-/openapi-webhooks-types-10.4.0.tgz",
|
||||
"integrity": "sha512-HMiF7FUiVBYfp8pPijMTkWuPELQB6XkPftrnSuK1C1YXaaq2+0ganiQkorEQfXTmhtwlgHJwXT6P8miVhIyjQA=="
|
||||
"version": "11.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-webhooks-types/-/openapi-webhooks-types-11.0.0.tgz",
|
||||
"integrity": "sha512-ZBzCFj98v3SuRM7oBas6BHZMJRadlnDoeFfvm1olVxZnYeU6Vh97FhPxyS5aLh5pN51GYv2I51l/hVUAVkGBlA=="
|
||||
},
|
||||
"node_modules/@octokit/plugin-paginate-rest": {
|
||||
"version": "2.21.3",
|
||||
@@ -1678,63 +1681,63 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/request": {
|
||||
"version": "9.2.3",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.3.tgz",
|
||||
"integrity": "sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==",
|
||||
"version": "10.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-10.0.2.tgz",
|
||||
"integrity": "sha512-iYj4SJG/2bbhh+iIpFmG5u49DtJ4lipQ+aPakjL9OKpsGY93wM8w06gvFbEQxcMsZcCvk5th5KkIm2m8o14aWA==",
|
||||
"dependencies": {
|
||||
"@octokit/endpoint": "^10.1.4",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/endpoint": "^11.0.0",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"fast-content-type-parse": "^2.0.0",
|
||||
"fast-content-type-parse": "^3.0.0",
|
||||
"universal-user-agent": "^7.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/request-error": {
|
||||
"version": "6.1.8",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.8.tgz",
|
||||
"integrity": "sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==",
|
||||
"version": "7.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-7.0.0.tgz",
|
||||
"integrity": "sha512-KRA7VTGdVyJlh0cP5Tf94hTiYVVqmt2f3I6mnimmaVz4UG3gQV/k4mDJlJv3X67iX6rmN7gSHCF8ssqeMnmhZg==",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/request/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/@octokit/types": {
|
||||
"version": "14.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz",
|
||||
"integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==",
|
||||
"version": "14.1.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.1.0.tgz",
|
||||
"integrity": "sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==",
|
||||
"dependencies": {
|
||||
"@octokit/openapi-types": "^25.0.0"
|
||||
"@octokit/openapi-types": "^25.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/webhooks": {
|
||||
"version": "13.8.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/webhooks/-/webhooks-13.8.0.tgz",
|
||||
"integrity": "sha512-3PCWyFBNbW2+Ox36VAkSqlPoIb96NZiPcICRYySHZrDTM2NuNxvrjPeaQDj2egqILs9EZFObRTHVMe4XxXJV7w==",
|
||||
"version": "14.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/webhooks/-/webhooks-14.0.0.tgz",
|
||||
"integrity": "sha512-IZV4vg/s1pqIpCs86a0tp5FQ/O94DUaqksMdNrXFSaE037TXsB+fIhr8OVig09oEx3WazVgE6B2U+u7/Fvdlsw==",
|
||||
"dependencies": {
|
||||
"@octokit/openapi-webhooks-types": "10.4.0",
|
||||
"@octokit/request-error": "^6.1.7",
|
||||
"@octokit/webhooks-methods": "^5.1.1"
|
||||
"@octokit/openapi-webhooks-types": "11.0.0",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/webhooks-methods": "^6.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@octokit/webhooks-methods": {
|
||||
"version": "5.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/webhooks-methods/-/webhooks-methods-5.1.1.tgz",
|
||||
"integrity": "sha512-NGlEHZDseJTCj8TMMFehzwa9g7On4KJMPVHDSrHxCQumL6uSQR8wIkP/qesv52fXqV1BPf4pTxwtS31ldAt9Xg==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/webhooks-methods/-/webhooks-methods-6.0.0.tgz",
|
||||
"integrity": "sha512-MFlzzoDJVw/GcbfzVC1RLR36QqkTLUf79vLVO3D+xn7r0QgxnFoLZgtrzxiQErAjFUOdH6fas2KeQJ1yr/qaXQ==",
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/@open-draft/deferred-promise": {
|
||||
@@ -4991,9 +4994,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/fast-content-type-parse": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-2.0.1.tgz",
|
||||
"integrity": "sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==",
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-3.0.0.tgz",
|
||||
"integrity": "sha512-ZvLdcY8P+N8mGQJahJV5G4U88CSvT1rP8ApL6uETe88MBXrBHAkZlSEySdUlyztF7ccb+Znos3TFqaepHxdhBg==",
|
||||
"funding": [
|
||||
{
|
||||
"type": "github",
|
||||
@@ -6750,143 +6753,143 @@
|
||||
}
|
||||
},
|
||||
"node_modules/octokit": {
|
||||
"version": "4.1.3",
|
||||
"resolved": "https://registry.npmjs.org/octokit/-/octokit-4.1.3.tgz",
|
||||
"integrity": "sha512-PP+EL8h4xPCE9NBo6jXq6I2/EiTXsn1cg9F0IZehHBv/qhuQpyGMFElEB17miWKciuT6vRHiFFiG9+FoXOmg6A==",
|
||||
"version": "5.0.2",
|
||||
"resolved": "https://registry.npmjs.org/octokit/-/octokit-5.0.2.tgz",
|
||||
"integrity": "sha512-WCO9Oip2F+qsrIcNMfLwm1+dL2g70oO++pkmiluisJDMXXwdO4susVaVg1iQZgZNiDtA1qcLXs5662Mdj/vqdw==",
|
||||
"dependencies": {
|
||||
"@octokit/app": "^15.1.6",
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/oauth-app": "^7.1.6",
|
||||
"@octokit/plugin-paginate-graphql": "^5.2.4",
|
||||
"@octokit/plugin-paginate-rest": "^12.0.0",
|
||||
"@octokit/plugin-rest-endpoint-methods": "^14.0.0",
|
||||
"@octokit/plugin-retry": "^7.2.1",
|
||||
"@octokit/plugin-throttling": "^10.0.0",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/types": "^14.0.0"
|
||||
"@octokit/app": "^16.0.1",
|
||||
"@octokit/core": "^7.0.2",
|
||||
"@octokit/oauth-app": "^8.0.1",
|
||||
"@octokit/plugin-paginate-graphql": "^6.0.0",
|
||||
"@octokit/plugin-paginate-rest": "^13.0.0",
|
||||
"@octokit/plugin-rest-endpoint-methods": "^15.0.0",
|
||||
"@octokit/plugin-retry": "^8.0.1",
|
||||
"@octokit/plugin-throttling": "^11.0.1",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"@octokit/webhooks": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/auth-token": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz",
|
||||
"integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-6.0.0.tgz",
|
||||
"integrity": "sha512-P4YJBPdPSpWTQ1NU4XYdvHvXJJDxM6YwpS0FZHRgP7YFkdVxsWcpWGy/NVqlAA7PcPCnMacXlRm1y2PFZRWL/w==",
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/core": {
|
||||
"version": "6.1.5",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz",
|
||||
"integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==",
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-7.0.2.tgz",
|
||||
"integrity": "sha512-ODsoD39Lq6vR6aBgvjTnA3nZGliknKboc9Gtxr7E4WDNqY24MxANKcuDQSF0jzapvGb3KWOEDrKfve4HoWGK+g==",
|
||||
"dependencies": {
|
||||
"@octokit/auth-token": "^5.0.0",
|
||||
"@octokit/graphql": "^8.2.2",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/auth-token": "^6.0.0",
|
||||
"@octokit/graphql": "^9.0.1",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"before-after-hook": "^3.0.2",
|
||||
"before-after-hook": "^4.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/graphql": {
|
||||
"version": "8.2.2",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz",
|
||||
"integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==",
|
||||
"version": "9.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-9.0.1.tgz",
|
||||
"integrity": "sha512-j1nQNU1ZxNFx2ZtKmL4sMrs4egy5h65OMDmSbVyuCzjOcwsHq6EaYjOTGXPQxgfiN8dJ4CriYHk6zF050WEULg==",
|
||||
"dependencies": {
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/plugin-paginate-graphql": {
|
||||
"version": "5.2.4",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-graphql/-/plugin-paginate-graphql-5.2.4.tgz",
|
||||
"integrity": "sha512-pLZES1jWaOynXKHOqdnwZ5ULeVR6tVVCMm+AUbp0htdcyXDU95WbkYdU4R2ej1wKj5Tu94Mee2Ne0PjPO9cCyA==",
|
||||
"license": "MIT",
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-graphql/-/plugin-paginate-graphql-6.0.0.tgz",
|
||||
"integrity": "sha512-crfpnIoFiBtRkvPqOyLOsw12XsveYuY2ieP6uYDosoUegBJpSVxGwut9sxUgFFcll3VTOTqpUf8yGd8x1OmAkQ==",
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/plugin-paginate-rest": {
|
||||
"version": "12.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-12.0.0.tgz",
|
||||
"integrity": "sha512-MPd6WK1VtZ52lFrgZ0R2FlaoiWllzgqFHaSZxvp72NmoDeZ0m8GeJdg4oB6ctqMTYyrnDYp592Xma21mrgiyDA==",
|
||||
"version": "13.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-13.0.1.tgz",
|
||||
"integrity": "sha512-m1KvHlueScy4mQJWvFDCxFBTIdXS0K1SgFGLmqHyX90mZdCIv6gWBbKRhatxRjhGlONuTK/hztYdaqrTXcFZdQ==",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0"
|
||||
"@octokit/types": "^14.1.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/plugin-rest-endpoint-methods": {
|
||||
"version": "14.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-14.0.0.tgz",
|
||||
"integrity": "sha512-iQt6ovem4b7zZYZQtdv+PwgbL5VPq37th1m2x2TdkgimIDJpsi2A6Q/OI/23i/hR6z5mL0EgisNR4dcbmckSZQ==",
|
||||
"version": "15.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-15.0.0.tgz",
|
||||
"integrity": "sha512-db6UdWvpX7O6tNsdkPk1BttVwTeVdA4n8RDFeXOyjBCPjE2YPufIAlzWh8CyeH8hl/3dSuQXDa+qLmsBlkTY+Q==",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": ">=6"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/plugin-retry": {
|
||||
"version": "7.2.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.2.1.tgz",
|
||||
"integrity": "sha512-wUc3gv0D6vNHpGxSaR3FlqJpTXGWgqmk607N9L3LvPL4QjaxDgX/1nY2mGpT37Khn+nlIXdljczkRnNdTTV3/A==",
|
||||
"version": "8.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-8.0.1.tgz",
|
||||
"integrity": "sha512-KUoYR77BjF5O3zcwDQHRRZsUvJwepobeqiSSdCJ8lWt27FZExzb0GgVxrhhfuyF6z2B2zpO0hN5pteni1sqWiw==",
|
||||
"dependencies": {
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"bottleneck": "^2.15.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": ">=6"
|
||||
"@octokit/core": ">=7"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/@octokit/plugin-throttling": {
|
||||
"version": "10.0.0",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-10.0.0.tgz",
|
||||
"integrity": "sha512-Kuq5/qs0DVYTHZuBAzCZStCzo2nKvVRo/TDNhCcpC2TKiOGz/DisXMCvjt3/b5kr6SCI1Y8eeeJTHBxxpFvZEg==",
|
||||
"version": "11.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-11.0.1.tgz",
|
||||
"integrity": "sha512-S+EVhy52D/272L7up58dr3FNSMXWuNZolkL4zMJBNIfIxyZuUcczsQAU4b5w6dewJXnKYVgSHSV5wxitMSW1kw==",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0",
|
||||
"bottleneck": "^2.15.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": "^6.1.3"
|
||||
"@octokit/core": "^7.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/octokit/node_modules/before-after-hook": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz",
|
||||
"integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A=="
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-4.0.0.tgz",
|
||||
"integrity": "sha512-q6tR3RPqIB1pMiTRMFcZwuG5T8vwp+vUvEG0vuI6B+Rikh5BfPp2fQ82c925FOs+b0lcFQ8CFrL+KbilfZFhOQ=="
|
||||
},
|
||||
"node_modules/octokit/node_modules/universal-user-agent": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz",
|
||||
"integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q=="
|
||||
"version": "7.0.3",
|
||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.3.tgz",
|
||||
"integrity": "sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A=="
|
||||
},
|
||||
"node_modules/once": {
|
||||
"version": "1.4.0",
|
||||
@@ -8500,10 +8503,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/undici": {
|
||||
"version": "5.28.5",
|
||||
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.5.tgz",
|
||||
"integrity": "sha512-zICwjrDrcrUE0pyyJc1I2QzBkLM8FINsgOrt6WjA+BgajVq9Nxu2PbFFXUrAggLfDXlZGZBVZYw7WNV5KiBiBA==",
|
||||
"license": "MIT",
|
||||
"version": "5.29.0",
|
||||
"resolved": "https://registry.npmjs.org/undici/-/undici-5.29.0.tgz",
|
||||
"integrity": "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==",
|
||||
"dependencies": {
|
||||
"@fastify/busboy": "^2.0.0"
|
||||
},
|
||||
|
||||
3
node_modules/@eslint/js/package.json
generated
vendored
3
node_modules/@eslint/js/package.json
generated
vendored
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"name": "@eslint/js",
|
||||
"version": "9.26.0",
|
||||
"version": "9.27.0",
|
||||
"description": "ESLint JavaScript language implementation",
|
||||
"funding": "https://eslint.org/donate",
|
||||
"main": "./src/index.js",
|
||||
"types": "./types/index.d.ts",
|
||||
"scripts": {
|
||||
|
||||
1
node_modules/@eslint/js/src/configs/eslint-all.js
generated
vendored
1
node_modules/@eslint/js/src/configs/eslint-all.js
generated
vendored
@@ -149,6 +149,7 @@ module.exports = Object.freeze({
|
||||
"no-ternary": "error",
|
||||
"no-this-before-super": "error",
|
||||
"no-throw-literal": "error",
|
||||
"no-unassigned-vars": "error",
|
||||
"no-undef": "error",
|
||||
"no-undef-init": "error",
|
||||
"no-undefined": "error",
|
||||
|
||||
2
node_modules/@octokit/app/dist-node/index.js
generated
vendored
2
node_modules/@octokit/app/dist-node/index.js
generated
vendored
@@ -4,7 +4,7 @@ import { createAppAuth as createAppAuth3 } from "@octokit/auth-app";
|
||||
import { OAuthApp } from "@octokit/oauth-app";
|
||||
|
||||
// pkg/dist-src/version.js
|
||||
var VERSION = "15.1.6";
|
||||
var VERSION = "16.0.1";
|
||||
|
||||
// pkg/dist-src/webhooks.js
|
||||
import { createAppAuth } from "@octokit/auth-app";
|
||||
|
||||
2
node_modules/@octokit/app/dist-node/index.js.map
generated
vendored
2
node_modules/@octokit/app/dist-node/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/@octokit/app/dist-src/version.js
generated
vendored
2
node_modules/@octokit/app/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "15.1.6";
|
||||
const VERSION = "16.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
34
node_modules/@octokit/app/dist-types/each-repository.d.ts
generated
vendored
34
node_modules/@octokit/app/dist-types/each-repository.d.ts
generated
vendored
@@ -11,14 +11,7 @@ export declare function eachRepositoryIterator(app: App, query?: EachRepositoryQ
|
||||
node_id: string;
|
||||
name: string;
|
||||
full_name: string;
|
||||
license: {
|
||||
key: string;
|
||||
name: string;
|
||||
url: string | null;
|
||||
spdx_id: string | null;
|
||||
node_id: string;
|
||||
html_url?: string;
|
||||
} | null;
|
||||
license: import("@octokit/openapi-types").components["schemas"]["nullable-license-simple"];
|
||||
forks: number;
|
||||
permissions?: {
|
||||
admin: boolean;
|
||||
@@ -27,30 +20,7 @@ export declare function eachRepositoryIterator(app: App, query?: EachRepositoryQ
|
||||
push: boolean;
|
||||
maintain?: boolean;
|
||||
};
|
||||
owner: {
|
||||
name?: string | null;
|
||||
email?: string | null;
|
||||
login: string;
|
||||
id: number;
|
||||
node_id: string;
|
||||
avatar_url: string;
|
||||
gravatar_id: string | null;
|
||||
url: string;
|
||||
html_url: string;
|
||||
followers_url: string;
|
||||
following_url: string;
|
||||
gists_url: string;
|
||||
starred_url: string;
|
||||
subscriptions_url: string;
|
||||
organizations_url: string;
|
||||
repos_url: string;
|
||||
events_url: string;
|
||||
received_events_url: string;
|
||||
type: string;
|
||||
site_admin: boolean;
|
||||
starred_at?: string;
|
||||
user_view_type?: string;
|
||||
};
|
||||
owner: import("@octokit/openapi-types").components["schemas"]["simple-user"];
|
||||
private: boolean;
|
||||
html_url: string;
|
||||
description: string | null;
|
||||
|
||||
2
node_modules/@octokit/app/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/app/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "15.1.6";
|
||||
export declare const VERSION = "16.0.1";
|
||||
|
||||
2
node_modules/@octokit/app/dist-web/index.js
generated
vendored
2
node_modules/@octokit/app/dist-web/index.js
generated
vendored
@@ -4,7 +4,7 @@ import { createAppAuth as createAppAuth3 } from "@octokit/auth-app";
|
||||
import { OAuthApp } from "@octokit/oauth-app";
|
||||
|
||||
// pkg/dist-src/version.js
|
||||
var VERSION = "15.1.6";
|
||||
var VERSION = "16.0.1";
|
||||
|
||||
// pkg/dist-src/webhooks.js
|
||||
import { createAppAuth } from "@octokit/auth-app";
|
||||
|
||||
2
node_modules/@octokit/app/dist-web/index.js.map
generated
vendored
2
node_modules/@octokit/app/dist-web/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
13
node_modules/@octokit/app/node_modules/@octokit/auth-token/package.json
generated
vendored
13
node_modules/@octokit/app/node_modules/@octokit/auth-token/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "5.1.2",
|
||||
"version": "6.0.0",
|
||||
"description": "GitHub API token authentication for browsers and Node.js",
|
||||
"repository": "github:octokit/auth-token.js",
|
||||
"keywords": [
|
||||
@@ -19,18 +19,17 @@
|
||||
"devDependencies": {
|
||||
"@octokit/request": "^9.0.0",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@octokit/types": "^13.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"esbuild": "^0.24.0",
|
||||
"fetch-mock": "^11.0.0",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^12.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.4.2",
|
||||
"semantic-release": "^24.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"typescript": "^5.3.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/app/node_modules/@octokit/core/dist-src/version.js
generated
vendored
2
node_modules/@octokit/app/node_modules/@octokit/core/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "6.1.5";
|
||||
const VERSION = "7.0.2";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
4
node_modules/@octokit/app/node_modules/@octokit/core/dist-types/index.d.ts
generated
vendored
4
node_modules/@octokit/app/node_modules/@octokit/core/dist-types/index.d.ts
generated
vendored
@@ -5,7 +5,7 @@ import type { Constructor, Hooks, OctokitOptions, OctokitPlugin, ReturnTypeOf, U
|
||||
export type { OctokitOptions } from "./types.js";
|
||||
export declare class Octokit {
|
||||
static VERSION: string;
|
||||
static defaults<S extends Constructor<any>>(this: S, defaults: OctokitOptions | Function): S;
|
||||
static defaults<S extends Constructor<any>>(this: S, defaults: OctokitOptions | Function): typeof this;
|
||||
static plugins: OctokitPlugin[];
|
||||
/**
|
||||
* Attach a plugin (or many) to your Octokit instance.
|
||||
@@ -15,7 +15,7 @@ export declare class Octokit {
|
||||
*/
|
||||
static plugin<S extends Constructor<any> & {
|
||||
plugins: any[];
|
||||
}, T extends OctokitPlugin[]>(this: S, ...newPlugins: T): S & Constructor<UnionToIntersection<ReturnTypeOf<T>>>;
|
||||
}, T extends OctokitPlugin[]>(this: S, ...newPlugins: T): typeof this & Constructor<UnionToIntersection<ReturnTypeOf<T>>>;
|
||||
constructor(options?: OctokitOptions);
|
||||
request: typeof request;
|
||||
graphql: typeof graphql;
|
||||
|
||||
2
node_modules/@octokit/app/node_modules/@octokit/core/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/app/node_modules/@octokit/core/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "6.1.5";
|
||||
export declare const VERSION = "7.0.2";
|
||||
|
||||
24
node_modules/@octokit/app/node_modules/@octokit/core/package.json
generated
vendored
24
node_modules/@octokit/app/node_modules/@octokit/core/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@octokit/core",
|
||||
"version": "6.1.5",
|
||||
"version": "7.0.2",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"provenance": true
|
||||
@@ -18,18 +18,18 @@
|
||||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/auth-token": "^5.0.0",
|
||||
"@octokit/graphql": "^8.2.2",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/auth-token": "^6.0.0",
|
||||
"@octokit/graphql": "^9.0.1",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"before-after-hook": "^3.0.2",
|
||||
"before-after-hook": "^4.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/auth-action": "^5.0.0",
|
||||
"@octokit/auth-app": "^7.0.0",
|
||||
"@octokit/auth-oauth-app": "^8.0.0",
|
||||
"@octokit/auth-action": "^6.0.1",
|
||||
"@octokit/auth-app": "^8.0.0",
|
||||
"@octokit/auth-oauth-app": "^9.0.0",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@sinonjs/fake-timers": "^14.0.0",
|
||||
"@types/lolex": "^5.1.0",
|
||||
@@ -38,17 +38,15 @@
|
||||
"@vitest/coverage-v8": "^3.0.5",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^12.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"proxy": "^2.0.0",
|
||||
"semantic-release": "^24.0.0",
|
||||
"semantic-release-plugin-update-version-in-files": "^2.0.0",
|
||||
"typescript": "^5.0.0",
|
||||
"undici": "^6.0.0",
|
||||
"undici": "^7.0.0",
|
||||
"vitest": "^3.0.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/app/node_modules/@octokit/graphql/dist-src/version.js
generated
vendored
2
node_modules/@octokit/app/node_modules/@octokit/graphql/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "8.2.2";
|
||||
const VERSION = "9.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/app/node_modules/@octokit/graphql/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/app/node_modules/@octokit/graphql/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "8.2.2";
|
||||
export declare const VERSION = "9.0.1";
|
||||
|
||||
6
node_modules/@octokit/app/node_modules/@octokit/graphql/package.json
generated
vendored
6
node_modules/@octokit/app/node_modules/@octokit/graphql/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@octokit/graphql",
|
||||
"version": "8.2.2",
|
||||
"version": "9.0.1",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"provenance": true
|
||||
@@ -17,7 +17,7 @@
|
||||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
@@ -34,7 +34,7 @@
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const VERSION = "12.0.0";
|
||||
const VERSION = "13.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
@@ -1 +1 @@
|
||||
export declare const VERSION = "12.0.0";
|
||||
export declare const VERSION = "13.0.1";
|
||||
|
||||
14
node_modules/@octokit/app/node_modules/@octokit/plugin-paginate-rest/package.json
generated
vendored
14
node_modules/@octokit/app/node_modules/@octokit/plugin-paginate-rest/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "12.0.0",
|
||||
"version": "13.0.1",
|
||||
"description": "Octokit plugin to paginate REST API endpoint responses",
|
||||
"repository": "github:octokit/plugin-paginate-rest.js",
|
||||
"keywords": [
|
||||
@@ -16,29 +16,29 @@
|
||||
],
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/types": "^14.0.0"
|
||||
"@octokit/types": "^14.1.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@octokit/core": ">=6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/plugin-rest-endpoint-methods": "^14.0.0",
|
||||
"@octokit/core": "^7.0.0",
|
||||
"@octokit/plugin-rest-endpoint-methods": "^16.0.0",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@types/node": "^22.0.0",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^12.0.0",
|
||||
"github-openapi-graphql-query": "^4.0.0",
|
||||
"github-openapi-graphql-query": "^5.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"npm-run-all2": "^7.0.0",
|
||||
"npm-run-all2": "^8.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"semantic-release-plugin-update-version-in-files": "^2.0.0",
|
||||
"typescript": "^5.0.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
15
node_modules/@octokit/app/node_modules/before-after-hook/package.json
generated
vendored
15
node_modules/@octokit/app/node_modules/before-after-hook/package.json
generated
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "before-after-hook",
|
||||
"type": "module",
|
||||
"version": "3.0.2",
|
||||
"version": "4.0.0",
|
||||
"description": "asynchronous before/error/after hooks for internal functionality",
|
||||
"exports": "./index.js",
|
||||
"types": "./index.d.ts",
|
||||
@@ -12,12 +12,12 @@
|
||||
],
|
||||
"scripts": {
|
||||
"test": "npm run test:code && npm run test:tsc && npm run test:tsd && npm run lint",
|
||||
"test:code": "c8 --100 ava test/*.test.js",
|
||||
"test:code": "c8 --100 --clean node --test",
|
||||
"test:deno": "deno test --no-check",
|
||||
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
|
||||
"test:tsd": "tsd",
|
||||
"lint": "prettier --check \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
|
||||
"lint:fix": "prettier --write \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
|
||||
"coverage": "c8 report --reporter html",
|
||||
"lint": "prettier --check \"*.{js,json,ts,md}\" \"test//*.{js,json,ts,md}\" \".github/**/*.yml\"",
|
||||
"lint:fix": "prettier --write \"*.{js,json,ts,md}\" \"test//*.{js,json,ts,md}\" \".github/**/*.yml\"",
|
||||
"postcoverage": "open-cli coverage/index.html"
|
||||
},
|
||||
"repository": "github:gr2m/before-after-hook",
|
||||
@@ -29,10 +29,9 @@
|
||||
"author": "Gregor Martynus",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"ava": "^4.3.3",
|
||||
"c8": "^7.12.0",
|
||||
"@types/node": "^22.15.17",
|
||||
"c8": "^10.1.3",
|
||||
"prettier": "^2.0.0",
|
||||
"sinon": "^14.0.1",
|
||||
"tsd": "^0.24.1",
|
||||
"typescript": "^4.8.4"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Release
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
@@ -8,6 +8,11 @@ name: Release
|
||||
- "*.x"
|
||||
jobs:
|
||||
release:
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
38
node_modules/@octokit/app/node_modules/universal-user-agent/.github/workflows/test.yml
generated
vendored
38
node_modules/@octokit/app/node_modules/universal-user-agent/.github/workflows/test.yml
generated
vendored
@@ -7,9 +7,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
test_matrix:
|
||||
test-deno:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x # Run with latest stable Deno.
|
||||
- run: deno install
|
||||
- run: deno test
|
||||
|
||||
test-bun:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
|
||||
test-node:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
@@ -17,20 +38,27 @@ jobs:
|
||||
- 12
|
||||
- 14
|
||||
- 16
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
- 24
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node_version }}
|
||||
uses: uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run test:code
|
||||
- run: npm run test:node
|
||||
|
||||
test:
|
||||
test-types:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test_matrix
|
||||
needs:
|
||||
- test-node
|
||||
- test-deno
|
||||
- test-bun
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm ci
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Update Prettier
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- renovate/prettier-*
|
||||
|
||||
5
node_modules/@octokit/app/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
5
node_modules/@octokit/app/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## Security contact information
|
||||
|
||||
To report a security vulnerability, please use the
|
||||
[Tidelift security contact](https://tidelift.com/security).
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
40
node_modules/@octokit/app/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
40
node_modules/@octokit/app/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
if (getUserAgent instanceof Function === false) {
|
||||
throw new Error("getUserAgent is not a function");
|
||||
}
|
||||
|
||||
if (typeof getUserAgent() !== "string") {
|
||||
throw new Error("getUserAgent does not return a string");
|
||||
}
|
||||
|
||||
if ("Deno" in globalThis) {
|
||||
if (/Deno\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Deno"
|
||||
);
|
||||
}
|
||||
} else if ("Bun" in globalThis) {
|
||||
if (/Bun\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Bun"
|
||||
);
|
||||
}
|
||||
} else {
|
||||
if (/Node\.js\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Node.js"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
delete globalThis.navigator;
|
||||
delete globalThis.process;
|
||||
|
||||
if (getUserAgent() !== "<environment undetectable>") {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for undetectable environment"
|
||||
);
|
||||
}
|
||||
|
||||
console.info("getUserAgent test passed");
|
||||
11
node_modules/@octokit/app/node_modules/universal-user-agent/package.json
generated
vendored
11
node_modules/@octokit/app/node_modules/universal-user-agent/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "universal-user-agent",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"type": "module",
|
||||
"description": "Get a user agent string across all JavaScript Runtime Environments",
|
||||
"exports": "./index.js",
|
||||
@@ -12,12 +12,17 @@
|
||||
"scripts": {
|
||||
"lint": "prettier --check '*.{js,json,md}'",
|
||||
"lint:fix": "prettier --write '*.{js,json,md}'",
|
||||
"test": "npm run test:code && npm run test:types",
|
||||
"test:code": "node test.js",
|
||||
"test": "npm run test:node && npm run test:types",
|
||||
"test:bun": "bun test",
|
||||
"test:node": "node index.test.js",
|
||||
"test:deno": "deno test",
|
||||
"test:types": "tsd"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.0.0",
|
||||
"tsd": "^0.17.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
|
||||
8
node_modules/@octokit/app/node_modules/universal-user-agent/test.js
generated
vendored
8
node_modules/@octokit/app/node_modules/universal-user-agent/test.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
import assert from "node:assert";
|
||||
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
assert(getUserAgent instanceof Function, "getUserAgent is a function");
|
||||
assert.equal(typeof getUserAgent(), "string", "getUserAgent returns a string");
|
||||
|
||||
console.log("ok");
|
||||
16
node_modules/@octokit/app/package.json
generated
vendored
16
node_modules/@octokit/app/package.json
generated
vendored
@@ -5,20 +5,20 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "15.1.6",
|
||||
"version": "16.0.1",
|
||||
"description": "GitHub Apps toolset for Node.js",
|
||||
"main": "./dist-node/index.js",
|
||||
"repository": "github:octokit/app.js",
|
||||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/auth-app": "^7.2.1",
|
||||
"@octokit/auth-unauthenticated": "^6.1.3",
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/oauth-app": "^7.1.6",
|
||||
"@octokit/plugin-paginate-rest": "^12.0.0",
|
||||
"@octokit/auth-app": "^8.0.1",
|
||||
"@octokit/auth-unauthenticated": "^7.0.1",
|
||||
"@octokit/core": "^7.0.2",
|
||||
"@octokit/oauth-app": "^8.0.1",
|
||||
"@octokit/plugin-paginate-rest": "^13.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"@octokit/webhooks": "^13.6.1"
|
||||
"@octokit/webhooks": "^14.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
@@ -35,7 +35,7 @@
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/auth-app/dist-node/index.js
generated
vendored
2
node_modules/@octokit/auth-app/dist-node/index.js
generated
vendored
@@ -421,7 +421,7 @@ async function sendRequestWithRetries(state, request, options, createdAt, retrie
|
||||
}
|
||||
|
||||
// pkg/dist-src/version.js
|
||||
var VERSION = "7.2.1";
|
||||
var VERSION = "8.0.1";
|
||||
|
||||
// pkg/dist-src/index.js
|
||||
import { createOAuthUserAuth } from "@octokit/auth-oauth-user";
|
||||
|
||||
2
node_modules/@octokit/auth-app/dist-node/index.js.map
generated
vendored
2
node_modules/@octokit/auth-app/dist-node/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/@octokit/auth-app/dist-src/version.js
generated
vendored
2
node_modules/@octokit/auth-app/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "7.2.1";
|
||||
const VERSION = "8.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/auth-app/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/auth-app/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "7.2.1";
|
||||
export declare const VERSION = "8.0.1";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Release
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
@@ -8,6 +8,11 @@ name: Release
|
||||
- "*.x"
|
||||
jobs:
|
||||
release:
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@@ -7,9 +7,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
test_matrix:
|
||||
test-deno:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x # Run with latest stable Deno.
|
||||
- run: deno install
|
||||
- run: deno test
|
||||
|
||||
test-bun:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
|
||||
test-node:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
@@ -17,20 +38,27 @@ jobs:
|
||||
- 12
|
||||
- 14
|
||||
- 16
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
- 24
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node_version }}
|
||||
uses: uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run test:code
|
||||
- run: npm run test:node
|
||||
|
||||
test:
|
||||
test-types:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test_matrix
|
||||
needs:
|
||||
- test-node
|
||||
- test-deno
|
||||
- test-bun
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm ci
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Update Prettier
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- renovate/prettier-*
|
||||
|
||||
5
node_modules/@octokit/auth-app/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
5
node_modules/@octokit/auth-app/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## Security contact information
|
||||
|
||||
To report a security vulnerability, please use the
|
||||
[Tidelift security contact](https://tidelift.com/security).
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
40
node_modules/@octokit/auth-app/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
40
node_modules/@octokit/auth-app/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
if (getUserAgent instanceof Function === false) {
|
||||
throw new Error("getUserAgent is not a function");
|
||||
}
|
||||
|
||||
if (typeof getUserAgent() !== "string") {
|
||||
throw new Error("getUserAgent does not return a string");
|
||||
}
|
||||
|
||||
if ("Deno" in globalThis) {
|
||||
if (/Deno\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Deno"
|
||||
);
|
||||
}
|
||||
} else if ("Bun" in globalThis) {
|
||||
if (/Bun\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Bun"
|
||||
);
|
||||
}
|
||||
} else {
|
||||
if (/Node\.js\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Node.js"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
delete globalThis.navigator;
|
||||
delete globalThis.process;
|
||||
|
||||
if (getUserAgent() !== "<environment undetectable>") {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for undetectable environment"
|
||||
);
|
||||
}
|
||||
|
||||
console.info("getUserAgent test passed");
|
||||
11
node_modules/@octokit/auth-app/node_modules/universal-user-agent/package.json
generated
vendored
11
node_modules/@octokit/auth-app/node_modules/universal-user-agent/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "universal-user-agent",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"type": "module",
|
||||
"description": "Get a user agent string across all JavaScript Runtime Environments",
|
||||
"exports": "./index.js",
|
||||
@@ -12,12 +12,17 @@
|
||||
"scripts": {
|
||||
"lint": "prettier --check '*.{js,json,md}'",
|
||||
"lint:fix": "prettier --write '*.{js,json,md}'",
|
||||
"test": "npm run test:code && npm run test:types",
|
||||
"test:code": "node test.js",
|
||||
"test": "npm run test:node && npm run test:types",
|
||||
"test:bun": "bun test",
|
||||
"test:node": "node index.test.js",
|
||||
"test:deno": "deno test",
|
||||
"test:types": "tsd"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.0.0",
|
||||
"tsd": "^0.17.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
|
||||
8
node_modules/@octokit/auth-app/node_modules/universal-user-agent/test.js
generated
vendored
8
node_modules/@octokit/auth-app/node_modules/universal-user-agent/test.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
import assert from "node:assert";
|
||||
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
assert(getUserAgent instanceof Function, "getUserAgent is a function");
|
||||
assert.equal(typeof getUserAgent(), "string", "getUserAgent returns a string");
|
||||
|
||||
console.log("ok");
|
||||
14
node_modules/@octokit/auth-app/package.json
generated
vendored
14
node_modules/@octokit/auth-app/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "7.2.1",
|
||||
"version": "8.0.1",
|
||||
"description": "GitHub App authentication for JavaScript",
|
||||
"repository": "github:octokit/auth-app.js",
|
||||
"keywords": [
|
||||
@@ -17,10 +17,10 @@
|
||||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-app": "^8.1.4",
|
||||
"@octokit/auth-oauth-user": "^5.1.4",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/auth-oauth-app": "^9.0.1",
|
||||
"@octokit/auth-oauth-user": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"toad-cache": "^3.7.0",
|
||||
"universal-github-app-jwt": "^2.2.0",
|
||||
@@ -33,14 +33,14 @@
|
||||
"@vitest/ui": "^3.0.0",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^11.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"semantic-release-plugin-update-version-in-files": "^2.0.0",
|
||||
"tinyglobby": "^0.2.13",
|
||||
"typescript": "^5.0.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/auth-oauth-app/dist-src/version.js
generated
vendored
2
node_modules/@octokit/auth-oauth-app/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "8.1.4";
|
||||
const VERSION = "9.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/auth-oauth-app/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/auth-oauth-app/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "8.1.4";
|
||||
export declare const VERSION = "9.0.1";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Release
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
@@ -8,6 +8,11 @@ name: Release
|
||||
- "*.x"
|
||||
jobs:
|
||||
release:
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@@ -7,9 +7,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
test_matrix:
|
||||
test-deno:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x # Run with latest stable Deno.
|
||||
- run: deno install
|
||||
- run: deno test
|
||||
|
||||
test-bun:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
|
||||
test-node:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
@@ -17,20 +38,27 @@ jobs:
|
||||
- 12
|
||||
- 14
|
||||
- 16
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
- 24
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node_version }}
|
||||
uses: uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run test:code
|
||||
- run: npm run test:node
|
||||
|
||||
test:
|
||||
test-types:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test_matrix
|
||||
needs:
|
||||
- test-node
|
||||
- test-deno
|
||||
- test-bun
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm ci
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Update Prettier
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- renovate/prettier-*
|
||||
|
||||
5
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
5
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## Security contact information
|
||||
|
||||
To report a security vulnerability, please use the
|
||||
[Tidelift security contact](https://tidelift.com/security).
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
40
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
40
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
if (getUserAgent instanceof Function === false) {
|
||||
throw new Error("getUserAgent is not a function");
|
||||
}
|
||||
|
||||
if (typeof getUserAgent() !== "string") {
|
||||
throw new Error("getUserAgent does not return a string");
|
||||
}
|
||||
|
||||
if ("Deno" in globalThis) {
|
||||
if (/Deno\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Deno"
|
||||
);
|
||||
}
|
||||
} else if ("Bun" in globalThis) {
|
||||
if (/Bun\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Bun"
|
||||
);
|
||||
}
|
||||
} else {
|
||||
if (/Node\.js\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Node.js"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
delete globalThis.navigator;
|
||||
delete globalThis.process;
|
||||
|
||||
if (getUserAgent() !== "<environment undetectable>") {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for undetectable environment"
|
||||
);
|
||||
}
|
||||
|
||||
console.info("getUserAgent test passed");
|
||||
11
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/package.json
generated
vendored
11
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "universal-user-agent",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"type": "module",
|
||||
"description": "Get a user agent string across all JavaScript Runtime Environments",
|
||||
"exports": "./index.js",
|
||||
@@ -12,12 +12,17 @@
|
||||
"scripts": {
|
||||
"lint": "prettier --check '*.{js,json,md}'",
|
||||
"lint:fix": "prettier --write '*.{js,json,md}'",
|
||||
"test": "npm run test:code && npm run test:types",
|
||||
"test:code": "node test.js",
|
||||
"test": "npm run test:node && npm run test:types",
|
||||
"test:bun": "bun test",
|
||||
"test:node": "node index.test.js",
|
||||
"test:deno": "deno test",
|
||||
"test:types": "tsd"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.0.0",
|
||||
"tsd": "^0.17.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
|
||||
8
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/test.js
generated
vendored
8
node_modules/@octokit/auth-oauth-app/node_modules/universal-user-agent/test.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
import assert from "node:assert";
|
||||
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
assert(getUserAgent instanceof Function, "getUserAgent is a function");
|
||||
assert.equal(typeof getUserAgent(), "string", "getUserAgent returns a string");
|
||||
|
||||
console.log("ok");
|
||||
14
node_modules/@octokit/auth-oauth-app/package.json
generated
vendored
14
node_modules/@octokit/auth-oauth-app/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "8.1.4",
|
||||
"version": "9.0.1",
|
||||
"description": "GitHub OAuth App authentication for JavaScript",
|
||||
"repository": "github:octokit/auth-oauth-app.js",
|
||||
"keywords": [
|
||||
@@ -18,27 +18,27 @@
|
||||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-device": "^7.1.5",
|
||||
"@octokit/auth-oauth-user": "^5.1.4",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/auth-oauth-device": "^8.0.1",
|
||||
"@octokit/auth-oauth-user": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/core": "^7.0.2",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"@vitest/coverage-v8": "^3.0.5",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^12.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"semantic-release-plugin-update-version-in-files": "^2.0.0",
|
||||
"tinyglobby": "^0.2.13",
|
||||
"typescript": "^5.3.0",
|
||||
"vitest": "^3.0.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/auth-oauth-device/dist-src/version.js
generated
vendored
2
node_modules/@octokit/auth-oauth-device/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "7.1.5";
|
||||
const VERSION = "8.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/auth-oauth-device/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/auth-oauth-device/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "7.1.5";
|
||||
export declare const VERSION = "8.0.1";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Release
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
@@ -8,6 +8,11 @@ name: Release
|
||||
- "*.x"
|
||||
jobs:
|
||||
release:
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@@ -7,9 +7,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
test_matrix:
|
||||
test-deno:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x # Run with latest stable Deno.
|
||||
- run: deno install
|
||||
- run: deno test
|
||||
|
||||
test-bun:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
|
||||
test-node:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
@@ -17,20 +38,27 @@ jobs:
|
||||
- 12
|
||||
- 14
|
||||
- 16
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
- 24
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node_version }}
|
||||
uses: uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run test:code
|
||||
- run: npm run test:node
|
||||
|
||||
test:
|
||||
test-types:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test_matrix
|
||||
needs:
|
||||
- test-node
|
||||
- test-deno
|
||||
- test-bun
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm ci
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Update Prettier
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- renovate/prettier-*
|
||||
|
||||
5
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
5
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## Security contact information
|
||||
|
||||
To report a security vulnerability, please use the
|
||||
[Tidelift security contact](https://tidelift.com/security).
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
40
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
40
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
if (getUserAgent instanceof Function === false) {
|
||||
throw new Error("getUserAgent is not a function");
|
||||
}
|
||||
|
||||
if (typeof getUserAgent() !== "string") {
|
||||
throw new Error("getUserAgent does not return a string");
|
||||
}
|
||||
|
||||
if ("Deno" in globalThis) {
|
||||
if (/Deno\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Deno"
|
||||
);
|
||||
}
|
||||
} else if ("Bun" in globalThis) {
|
||||
if (/Bun\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Bun"
|
||||
);
|
||||
}
|
||||
} else {
|
||||
if (/Node\.js\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Node.js"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
delete globalThis.navigator;
|
||||
delete globalThis.process;
|
||||
|
||||
if (getUserAgent() !== "<environment undetectable>") {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for undetectable environment"
|
||||
);
|
||||
}
|
||||
|
||||
console.info("getUserAgent test passed");
|
||||
11
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/package.json
generated
vendored
11
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "universal-user-agent",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"type": "module",
|
||||
"description": "Get a user agent string across all JavaScript Runtime Environments",
|
||||
"exports": "./index.js",
|
||||
@@ -12,12 +12,17 @@
|
||||
"scripts": {
|
||||
"lint": "prettier --check '*.{js,json,md}'",
|
||||
"lint:fix": "prettier --write '*.{js,json,md}'",
|
||||
"test": "npm run test:code && npm run test:types",
|
||||
"test:code": "node test.js",
|
||||
"test": "npm run test:node && npm run test:types",
|
||||
"test:bun": "bun test",
|
||||
"test:node": "node index.test.js",
|
||||
"test:deno": "deno test",
|
||||
"test:types": "tsd"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.0.0",
|
||||
"tsd": "^0.17.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
|
||||
8
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/test.js
generated
vendored
8
node_modules/@octokit/auth-oauth-device/node_modules/universal-user-agent/test.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
import assert from "node:assert";
|
||||
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
assert(getUserAgent instanceof Function, "getUserAgent is a function");
|
||||
assert.equal(typeof getUserAgent(), "string", "getUserAgent returns a string");
|
||||
|
||||
console.log("ok");
|
||||
8
node_modules/@octokit/auth-oauth-device/package.json
generated
vendored
8
node_modules/@octokit/auth-oauth-device/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@octokit/auth-oauth-device",
|
||||
"version": "7.1.5",
|
||||
"version": "8.0.1",
|
||||
"description": "GitHub OAuth Device authentication strategy for JavaScript",
|
||||
"type": "module",
|
||||
"repository": "github:octokit/auth-oauth-device.js",
|
||||
@@ -13,8 +13,8 @@
|
||||
"author": "Gregor Martynus (https://dev.to/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/oauth-methods": "^5.1.5",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/oauth-methods": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
@@ -35,7 +35,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/auth-oauth-user/dist-src/version.js
generated
vendored
2
node_modules/@octokit/auth-oauth-user/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "5.1.4";
|
||||
const VERSION = "6.0.0";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/auth-oauth-user/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/auth-oauth-user/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "5.1.4";
|
||||
export declare const VERSION = "6.0.0";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Release
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
@@ -8,6 +8,11 @@ name: Release
|
||||
- "*.x"
|
||||
jobs:
|
||||
release:
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@@ -7,9 +7,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
test_matrix:
|
||||
test-deno:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x # Run with latest stable Deno.
|
||||
- run: deno install
|
||||
- run: deno test
|
||||
|
||||
test-bun:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
|
||||
test-node:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
@@ -17,20 +38,27 @@ jobs:
|
||||
- 12
|
||||
- 14
|
||||
- 16
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
- 24
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node_version }}
|
||||
uses: uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run test:code
|
||||
- run: npm run test:node
|
||||
|
||||
test:
|
||||
test-types:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test_matrix
|
||||
needs:
|
||||
- test-node
|
||||
- test-deno
|
||||
- test-bun
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm ci
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Update Prettier
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- renovate/prettier-*
|
||||
|
||||
5
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
5
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## Security contact information
|
||||
|
||||
To report a security vulnerability, please use the
|
||||
[Tidelift security contact](https://tidelift.com/security).
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
40
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
40
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
if (getUserAgent instanceof Function === false) {
|
||||
throw new Error("getUserAgent is not a function");
|
||||
}
|
||||
|
||||
if (typeof getUserAgent() !== "string") {
|
||||
throw new Error("getUserAgent does not return a string");
|
||||
}
|
||||
|
||||
if ("Deno" in globalThis) {
|
||||
if (/Deno\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Deno"
|
||||
);
|
||||
}
|
||||
} else if ("Bun" in globalThis) {
|
||||
if (/Bun\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Bun"
|
||||
);
|
||||
}
|
||||
} else {
|
||||
if (/Node\.js\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Node.js"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
delete globalThis.navigator;
|
||||
delete globalThis.process;
|
||||
|
||||
if (getUserAgent() !== "<environment undetectable>") {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for undetectable environment"
|
||||
);
|
||||
}
|
||||
|
||||
console.info("getUserAgent test passed");
|
||||
11
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/package.json
generated
vendored
11
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "universal-user-agent",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"type": "module",
|
||||
"description": "Get a user agent string across all JavaScript Runtime Environments",
|
||||
"exports": "./index.js",
|
||||
@@ -12,12 +12,17 @@
|
||||
"scripts": {
|
||||
"lint": "prettier --check '*.{js,json,md}'",
|
||||
"lint:fix": "prettier --write '*.{js,json,md}'",
|
||||
"test": "npm run test:code && npm run test:types",
|
||||
"test:code": "node test.js",
|
||||
"test": "npm run test:node && npm run test:types",
|
||||
"test:bun": "bun test",
|
||||
"test:node": "node index.test.js",
|
||||
"test:deno": "deno test",
|
||||
"test:types": "tsd"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.0.0",
|
||||
"tsd": "^0.17.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
|
||||
8
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/test.js
generated
vendored
8
node_modules/@octokit/auth-oauth-user/node_modules/universal-user-agent/test.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
import assert from "node:assert";
|
||||
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
assert(getUserAgent instanceof Function, "getUserAgent is a function");
|
||||
assert.equal(typeof getUserAgent(), "string", "getUserAgent returns a string");
|
||||
|
||||
console.log("ok");
|
||||
14
node_modules/@octokit/auth-oauth-user/package.json
generated
vendored
14
node_modules/@octokit/auth-oauth-user/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "5.1.4",
|
||||
"version": "6.0.0",
|
||||
"description": "Octokit authentication strategy for OAuth clients",
|
||||
"repository": "https://github.com/octokit/auth-oauth-user.js",
|
||||
"keywords": [
|
||||
@@ -17,14 +17,14 @@
|
||||
"author": "Gregor Martynus (https://dev.to/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-device": "^7.1.5",
|
||||
"@octokit/oauth-methods": "^5.1.5",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/auth-oauth-device": "^8.0.1",
|
||||
"@octokit/oauth-methods": "^6.0.0",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"universal-user-agent": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/core": "^7.0.1",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@types/node": "^22.0.0",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
@@ -32,13 +32,13 @@
|
||||
"fetch-mock": "^11.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"mockdate": "^3.0.4",
|
||||
"prettier": "3.5.2",
|
||||
"prettier": "3.5.3",
|
||||
"semantic-release-plugin-update-version-in-files": "^2.0.0",
|
||||
"typescript": "^5.0.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
12
node_modules/@octokit/auth-unauthenticated/package.json
generated
vendored
12
node_modules/@octokit/auth-unauthenticated/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "6.1.3",
|
||||
"version": "7.0.1",
|
||||
"description": "GitHub API token authentication for browsers and Node.js",
|
||||
"repository": "github:octokit/auth-unauthenticated.js",
|
||||
"keywords": [
|
||||
@@ -17,24 +17,24 @@
|
||||
"author": "Gregor Martynus (https://github.com/gr2m)",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/request-error": "^6.1.8",
|
||||
"@octokit/request-error": "^7.0.0",
|
||||
"@octokit/types": "^14.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@octokit/core": "^6.1.5",
|
||||
"@octokit/request": "^9.2.3",
|
||||
"@octokit/core": "^7.0.2",
|
||||
"@octokit/request": "^10.0.2",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@types/node": "^22.13.1",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^12.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"tinyglobby": "^0.2.13",
|
||||
"typescript": "^5.0.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/endpoint/dist-src/version.js
generated
vendored
2
node_modules/@octokit/endpoint/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "10.1.4";
|
||||
const VERSION = "11.0.0";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/endpoint/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/endpoint/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "10.1.4";
|
||||
export declare const VERSION = "11.0.0";
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Release
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
@@ -8,6 +8,11 @@ name: Release
|
||||
- "*.x"
|
||||
jobs:
|
||||
release:
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
pull-requests: write # to be able to comment on released pull requests
|
||||
id-token: write # to enable use of OIDC for npm provenance
|
||||
name: release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
@@ -7,9 +7,30 @@ on:
|
||||
types:
|
||||
- opened
|
||||
- synchronize
|
||||
- reopened
|
||||
|
||||
jobs:
|
||||
test_matrix:
|
||||
test-deno:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: denoland/setup-deno@v2
|
||||
with:
|
||||
deno-version: v2.x # Run with latest stable Deno.
|
||||
- run: deno install
|
||||
- run: deno test
|
||||
|
||||
test-bun:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test-node
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- run: bun test
|
||||
|
||||
test-node:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
@@ -17,20 +38,27 @@ jobs:
|
||||
- 12
|
||||
- 14
|
||||
- 16
|
||||
- 18
|
||||
- 20
|
||||
- 22
|
||||
- 24
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node_version }}
|
||||
uses: uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node_version }}
|
||||
cache: npm
|
||||
- run: npm ci
|
||||
- run: npm run test:code
|
||||
- run: npm run test:node
|
||||
|
||||
test:
|
||||
test-types:
|
||||
runs-on: ubuntu-latest
|
||||
needs: test_matrix
|
||||
needs:
|
||||
- test-node
|
||||
- test-deno
|
||||
- test-bun
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: npm ci
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: Update Prettier
|
||||
"on":
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- renovate/prettier-*
|
||||
|
||||
5
node_modules/@octokit/endpoint/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
5
node_modules/@octokit/endpoint/node_modules/universal-user-agent/SECURITY.md
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
## Security contact information
|
||||
|
||||
To report a security vulnerability, please use the
|
||||
[Tidelift security contact](https://tidelift.com/security).
|
||||
Tidelift will coordinate the fix and disclosure.
|
||||
40
node_modules/@octokit/endpoint/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
40
node_modules/@octokit/endpoint/node_modules/universal-user-agent/index.test.js
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
if (getUserAgent instanceof Function === false) {
|
||||
throw new Error("getUserAgent is not a function");
|
||||
}
|
||||
|
||||
if (typeof getUserAgent() !== "string") {
|
||||
throw new Error("getUserAgent does not return a string");
|
||||
}
|
||||
|
||||
if ("Deno" in globalThis) {
|
||||
if (/Deno\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Deno"
|
||||
);
|
||||
}
|
||||
} else if ("Bun" in globalThis) {
|
||||
if (/Bun\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Bun"
|
||||
);
|
||||
}
|
||||
} else {
|
||||
if (/Node\.js\//.test(getUserAgent()) === false) {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for Node.js"
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
delete globalThis.navigator;
|
||||
delete globalThis.process;
|
||||
|
||||
if (getUserAgent() !== "<environment undetectable>") {
|
||||
throw new Error(
|
||||
"getUserAgent does not return the correct user agent for undetectable environment"
|
||||
);
|
||||
}
|
||||
|
||||
console.info("getUserAgent test passed");
|
||||
11
node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json
generated
vendored
11
node_modules/@octokit/endpoint/node_modules/universal-user-agent/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "universal-user-agent",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"type": "module",
|
||||
"description": "Get a user agent string across all JavaScript Runtime Environments",
|
||||
"exports": "./index.js",
|
||||
@@ -12,12 +12,17 @@
|
||||
"scripts": {
|
||||
"lint": "prettier --check '*.{js,json,md}'",
|
||||
"lint:fix": "prettier --write '*.{js,json,md}'",
|
||||
"test": "npm run test:code && npm run test:types",
|
||||
"test:code": "node test.js",
|
||||
"test": "npm run test:node && npm run test:types",
|
||||
"test:bun": "bun test",
|
||||
"test:node": "node index.test.js",
|
||||
"test:deno": "deno test",
|
||||
"test:types": "tsd"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "^2.0.0",
|
||||
"tsd": "^0.17.0"
|
||||
},
|
||||
"publishConfig": {
|
||||
"provenance": true
|
||||
}
|
||||
}
|
||||
|
||||
8
node_modules/@octokit/endpoint/node_modules/universal-user-agent/test.js
generated
vendored
8
node_modules/@octokit/endpoint/node_modules/universal-user-agent/test.js
generated
vendored
@@ -1,8 +0,0 @@
|
||||
import assert from "node:assert";
|
||||
|
||||
import { getUserAgent } from "./index.js";
|
||||
|
||||
assert(getUserAgent instanceof Function, "getUserAgent is a function");
|
||||
assert.equal(typeof getUserAgent(), "string", "getUserAgent returns a string");
|
||||
|
||||
console.log("ok");
|
||||
4
node_modules/@octokit/endpoint/package.json
generated
vendored
4
node_modules/@octokit/endpoint/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@octokit/endpoint",
|
||||
"version": "10.1.4",
|
||||
"version": "11.0.0",
|
||||
"type": "module",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
@@ -33,7 +33,7 @@
|
||||
"universal-user-agent": "^7.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/oauth-app/dist-node/index.js
generated
vendored
2
node_modules/@octokit/oauth-app/dist-node/index.js
generated
vendored
@@ -2,7 +2,7 @@
|
||||
import { createOAuthAppAuth } from "@octokit/auth-oauth-app";
|
||||
|
||||
// pkg/dist-src/version.js
|
||||
var VERSION = "7.1.6";
|
||||
var VERSION = "8.0.1";
|
||||
|
||||
// pkg/dist-src/add-event-handler.js
|
||||
function addEventHandler(state, eventName, eventHandler) {
|
||||
|
||||
2
node_modules/@octokit/oauth-app/dist-node/index.js.map
generated
vendored
2
node_modules/@octokit/oauth-app/dist-node/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
2
node_modules/@octokit/oauth-app/dist-src/version.js
generated
vendored
2
node_modules/@octokit/oauth-app/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "7.1.6";
|
||||
const VERSION = "8.0.1";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
2
node_modules/@octokit/oauth-app/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/oauth-app/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "7.1.6";
|
||||
export declare const VERSION = "8.0.1";
|
||||
|
||||
13
node_modules/@octokit/oauth-app/node_modules/@octokit/auth-token/package.json
generated
vendored
13
node_modules/@octokit/oauth-app/node_modules/@octokit/auth-token/package.json
generated
vendored
@@ -5,7 +5,7 @@
|
||||
"provenance": true
|
||||
},
|
||||
"type": "module",
|
||||
"version": "5.1.2",
|
||||
"version": "6.0.0",
|
||||
"description": "GitHub API token authentication for browsers and Node.js",
|
||||
"repository": "github:octokit/auth-token.js",
|
||||
"keywords": [
|
||||
@@ -19,18 +19,17 @@
|
||||
"devDependencies": {
|
||||
"@octokit/request": "^9.0.0",
|
||||
"@octokit/tsconfig": "^4.0.0",
|
||||
"@octokit/types": "^13.0.0",
|
||||
"@octokit/types": "^14.0.0",
|
||||
"@vitest/coverage-v8": "^3.0.0",
|
||||
"esbuild": "^0.24.0",
|
||||
"fetch-mock": "^11.0.0",
|
||||
"esbuild": "^0.25.0",
|
||||
"fetch-mock": "^12.0.0",
|
||||
"glob": "^11.0.0",
|
||||
"prettier": "3.4.2",
|
||||
"semantic-release": "^24.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"typescript": "^5.3.0",
|
||||
"vitest": "^3.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18"
|
||||
"node": ">= 20"
|
||||
},
|
||||
"files": [
|
||||
"dist-*/**",
|
||||
|
||||
2
node_modules/@octokit/oauth-app/node_modules/@octokit/core/dist-src/version.js
generated
vendored
2
node_modules/@octokit/oauth-app/node_modules/@octokit/core/dist-src/version.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
const VERSION = "6.1.5";
|
||||
const VERSION = "7.0.2";
|
||||
export {
|
||||
VERSION
|
||||
};
|
||||
|
||||
4
node_modules/@octokit/oauth-app/node_modules/@octokit/core/dist-types/index.d.ts
generated
vendored
4
node_modules/@octokit/oauth-app/node_modules/@octokit/core/dist-types/index.d.ts
generated
vendored
@@ -5,7 +5,7 @@ import type { Constructor, Hooks, OctokitOptions, OctokitPlugin, ReturnTypeOf, U
|
||||
export type { OctokitOptions } from "./types.js";
|
||||
export declare class Octokit {
|
||||
static VERSION: string;
|
||||
static defaults<S extends Constructor<any>>(this: S, defaults: OctokitOptions | Function): S;
|
||||
static defaults<S extends Constructor<any>>(this: S, defaults: OctokitOptions | Function): typeof this;
|
||||
static plugins: OctokitPlugin[];
|
||||
/**
|
||||
* Attach a plugin (or many) to your Octokit instance.
|
||||
@@ -15,7 +15,7 @@ export declare class Octokit {
|
||||
*/
|
||||
static plugin<S extends Constructor<any> & {
|
||||
plugins: any[];
|
||||
}, T extends OctokitPlugin[]>(this: S, ...newPlugins: T): S & Constructor<UnionToIntersection<ReturnTypeOf<T>>>;
|
||||
}, T extends OctokitPlugin[]>(this: S, ...newPlugins: T): typeof this & Constructor<UnionToIntersection<ReturnTypeOf<T>>>;
|
||||
constructor(options?: OctokitOptions);
|
||||
request: typeof request;
|
||||
graphql: typeof graphql;
|
||||
|
||||
2
node_modules/@octokit/oauth-app/node_modules/@octokit/core/dist-types/version.d.ts
generated
vendored
2
node_modules/@octokit/oauth-app/node_modules/@octokit/core/dist-types/version.d.ts
generated
vendored
@@ -1 +1 @@
|
||||
export declare const VERSION = "6.1.5";
|
||||
export declare const VERSION = "7.0.2";
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user