From 4abce2f5409fb3a8daa4d5c78fb6b17965c830bc Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:55:53 -0400 Subject: [PATCH 01/69] build: use ESM for scripts (#845) As done in other Octokit repos, use ESM for scripts to unblock dependency upgrades --- README.md | 2 +- ...-schemas.ts => diff-interface-schemas.mts} | 2 +- bin/docs/diff-interface-schemas.md | 10 +- bin/docs/extract-common-schema.md | 8 +- bin/docs/format-with-prettier.md | 6 +- bin/docs/octokit-schema.md | 4 +- bin/docs/octokit-types.md | 4 +- bin/docs/optimize-schemas.md | 4 +- bin/docs/ref-common-schemas.md | 6 +- bin/docs/validate-payload-examples.md | 6 +- ...on-schema.ts => extract-common-schema.mts} | 2 +- ...h-prettier.ts => format-with-prettier.mts} | 2 +- bin/{octokit-schema.ts => octokit-schema.mts} | 25 +- bin/{octokit-types.ts => octokit-types.mts} | 10 +- ...tokit-webhooks.ts => octokit-webhooks.mts} | 10 +- ...timize-schemas.ts => optimize-schemas.mts} | 2 +- ...mmon-schemas.ts => ref-common-schemas.mts} | 2 +- bin/utils/{argv.ts => argv.mts} | 2 +- ...forEachJsonFile.ts => forEachJsonFile.mts} | 0 ...chemaFromPath.ts => getSchemaFromPath.mts} | 2 +- bin/utils/index.mts | 9 + bin/utils/index.ts | 9 - ...adMapOfSchemas.ts => loadMapOfSchemas.mts} | 6 +- bin/utils/{misc.ts => misc.mts} | 2 +- ...normalizeSchema.ts => normalizeSchema.mts} | 2 +- ...mples.ts => validate-payload-examples.mts} | 15 +- ...validate-schema.ts => validate-schema.mts} | 9 +- lib/{cache.ts => cache.mts} | 2 + ...bhooks.ts => check-or-update-webhooks.mts} | 5 +- ...et-actions-and-examples-from-payloads.mts} | 9 +- lib/{get-html.ts => get-html.mts} | 2 +- lib/{get-sections.ts => get-sections.mts} | 2 +- lib/index.mts | 8 + lib/index.ts | 8 - ...n-to-webhook.ts => section-to-webhook.mts} | 2 +- lib/{workarounds.ts => workarounds.mts} | 2 +- package-lock.json | 282 ++++++------------ package.json | 24 +- payload-schemas/{index.ts => index.mts} | 11 +- test.ts => test.mts | 10 +- tsconfig.json | 7 +- 41 files changed, 239 insertions(+), 296 deletions(-) rename bin/{diff-interface-schemas.ts => diff-interface-schemas.mts} (97%) rename bin/{extract-common-schema.ts => extract-common-schema.mts} (99%) rename bin/{format-with-prettier.ts => format-with-prettier.mts} (97%) rename bin/{octokit-schema.ts => octokit-schema.mts} (83%) rename bin/{octokit-types.ts => octokit-types.mts} (93%) rename bin/{octokit-webhooks.ts => octokit-webhooks.mts} (82%) rename bin/{optimize-schemas.ts => optimize-schemas.mts} (99%) rename bin/{ref-common-schemas.ts => ref-common-schemas.mts} (98%) rename bin/utils/{argv.ts => argv.mts} (98%) rename bin/utils/{forEachJsonFile.ts => forEachJsonFile.mts} (100%) rename bin/utils/{getSchemaFromPath.ts => getSchemaFromPath.mts} (96%) create mode 100644 bin/utils/index.mts delete mode 100644 bin/utils/index.ts rename bin/utils/{loadMapOfSchemas.ts => loadMapOfSchemas.mts} (85%) rename bin/utils/{misc.ts => misc.mts} (90%) rename bin/utils/{normalizeSchema.ts => normalizeSchema.mts} (94%) rename bin/{validate-payload-examples.ts => validate-payload-examples.mts} (79%) rename bin/{validate-schema.ts => validate-schema.mts} (61%) rename lib/{cache.ts => cache.mts} (84%) rename lib/{check-or-update-webhooks.ts => check-or-update-webhooks.mts} (96%) rename lib/{get-actions-and-examples-from-payloads.ts => get-actions-and-examples-from-payloads.mts} (77%) rename lib/{get-html.ts => get-html.mts} (97%) rename lib/{get-sections.ts => get-sections.mts} (95%) create mode 100644 lib/index.mts delete mode 100644 lib/index.ts rename lib/{section-to-webhook.ts => section-to-webhook.mts} (98%) rename lib/{workarounds.ts => workarounds.mts} (93%) rename payload-schemas/{index.ts => index.mts} (77%) rename test.ts => test.mts (75%) diff --git a/README.md b/README.md index d0106f53d..784b9c3f8 100644 --- a/README.md +++ b/README.md @@ -307,7 +307,7 @@ const handleIssuesOpenedEvent = (event: IssuesOpenedEvent) => { This package updates itself using a daily cronjob running on GitHub Actions. The [`index.json`](index.json) file is generated by -[`bin/octokit-webhooks.ts`](bin/octokit-webhooks.ts). Run +[`bin/octokit-webhooks.mts`](bin/octokit-webhooks.mts). Run `npm run octokit-webhooks -- --usage` for instructions. After the update is complete, run `npm run build:webhooks` and `npm run build:schema` to update `index.json` and `schema.json` files. diff --git a/bin/diff-interface-schemas.ts b/bin/diff-interface-schemas.mts similarity index 97% rename from bin/diff-interface-schemas.ts rename to bin/diff-interface-schemas.mts index 7b5f84a90..b97ebac53 100755 --- a/bin/diff-interface-schemas.ts +++ b/bin/diff-interface-schemas.mts @@ -7,7 +7,7 @@ import { loadMapOfSchemas, normalizeSchema, parseArgv, -} from "./utils"; +} from "./utils/index.mjs"; const [ [interfacePropertyPath1, interfacePropertyPath2], diff --git a/bin/docs/diff-interface-schemas.md b/bin/docs/diff-interface-schemas.md index a1ec6861e..fa44bea18 100644 --- a/bin/docs/diff-interface-schemas.md +++ b/bin/docs/diff-interface-schemas.md @@ -1,4 +1,4 @@ -# bin/diff-interface-schemas.ts +# bin/diff-interface-schemas.mts Shows the difference between the json schemas for the given interface properties. @@ -13,8 +13,8 @@ You can see the full diff for two schemas by passing the `--full` flag. ## Usage - bin/diff-interface-schemas.ts [--full] - bin/diff-interface-schemas.ts PullRequestOpenEvent.pull_request PullRequestCloseEvent.pull_request + bin/diff-interface-schemas.mts [--full] + bin/diff-interface-schemas.mts PullRequestOpenEvent.pull_request PullRequestCloseEvent.pull_request ## Details @@ -49,7 +49,7 @@ interface PullRequestCloseEvent { You could compare the schemas of the "pull_request" property on each interface like so: - bin/diff-interface-schema.ts PullRequestOpenEvent.pull_request PullRequestCloseEvent.pull_request + bin/diff-interface-schema.mts PullRequestOpenEvent.pull_request PullRequestCloseEvent.pull_request Note that you can also provide just the name of an interface, i.e. @@ -72,4 +72,4 @@ interface PullRequestCloseEvent { } ``` - bin/diff-interface-schema.ts PullRequest PullRequestCloseEvent.pull_request + bin/diff-interface-schema.mts PullRequest PullRequestCloseEvent.pull_request diff --git a/bin/docs/extract-common-schema.md b/bin/docs/extract-common-schema.md index ae4b90c2f..80895ed20 100644 --- a/bin/docs/extract-common-schema.md +++ b/bin/docs/extract-common-schema.md @@ -1,4 +1,4 @@ -# bin/extract-common-schema.ts +# bin/extract-common-schema.mts Extracts a schema from within another into a new "common" schema which are placed in `schemas/common/`. @@ -8,8 +8,8 @@ generated name. You can pass the `--overwrite` flag to change this behaviour. ## Usage - bin/extract-common-schema.ts [--overwrite] - bin/extract-common-schema.ts PullRequestOpenEvent.pull_request PullRequest + bin/extract-common-schema.mts [--overwrite] + bin/extract-common-schema.mts PullRequestOpenEvent.pull_request PullRequest ## Details @@ -45,7 +45,7 @@ You could extract the schema for the type of `pull_request` property on one of the interfaces into its own common schema that would generate an interface named `PullRequest` with the following: - bin/extract-common-schema.ts PullRequestOpenEvent.pull_request PullRequest + bin/extract-common-schema.mts PullRequestOpenEvent.pull_request PullRequest This would create a new schema located at `payload-schemas/schemas/common/pull-request.schema.json` which would generate diff --git a/bin/docs/format-with-prettier.md b/bin/docs/format-with-prettier.md index a88908aea..92861dcab 100644 --- a/bin/docs/format-with-prettier.md +++ b/bin/docs/format-with-prettier.md @@ -1,4 +1,4 @@ -# bin/format-with-prettier.ts +# bin/format-with-prettier.mts Formats all the json payloads and schemas within this repo using `prettier` consistently by stripping them of all whitespace and newlines first. @@ -11,5 +11,5 @@ without writing the formatted contents back to disk. ## Usage - bin/format-with-prettier.ts [--check] - bin/format-with-prettier.ts + bin/format-with-prettier.mts [--check] + bin/format-with-prettier.mts diff --git a/bin/docs/octokit-schema.md b/bin/docs/octokit-schema.md index fc7fae1a5..23c9a7b0e 100644 --- a/bin/docs/octokit-schema.md +++ b/bin/docs/octokit-schema.md @@ -1,4 +1,4 @@ -# bin/octokit-schema.ts +# bin/octokit-schema.mts Generates the singular `schema.json` made up of all the schemas found within `payload-schemas/schemas`, and which is included in the [@octokit/webhooks-schemas package](https://www.npmjs.com/package/@octokit/webhooks-schemas) published from @@ -6,4 +6,4 @@ this repo. ## Usage - bin/octokit-schema.ts + bin/octokit-schema.mts diff --git a/bin/docs/octokit-types.md b/bin/docs/octokit-types.md index c321f872b..23eceec1b 100644 --- a/bin/docs/octokit-types.md +++ b/bin/docs/octokit-types.md @@ -1,4 +1,4 @@ -# bin/octokit-types.ts +# bin/octokit-types.mts Generates the singular `schema.d.ts` that provide strict typings for TypeScript users, based off the `schema.json` generated by `bin/octokit-schema `, and which @@ -10,4 +10,4 @@ before running this script for changes to show up. ## Usage - bin/octokit-types.ts + bin/octokit-types.mts diff --git a/bin/docs/optimize-schemas.md b/bin/docs/optimize-schemas.md index 17ae0726c..881764f52 100644 --- a/bin/docs/optimize-schemas.md +++ b/bin/docs/optimize-schemas.md @@ -1,4 +1,4 @@ -# bin/optimize-schemas.ts +# bin/optimize-schemas.mts Applies a handful of "optimizations" to all the schemas in `payload-schemas/schemas`. @@ -18,4 +18,4 @@ These optimizations include: ## Usage - bin/optimize-schemas.ts + bin/optimize-schemas.mts diff --git a/bin/docs/ref-common-schemas.md b/bin/docs/ref-common-schemas.md index 8feea0a31..c3ac94bfa 100644 --- a/bin/docs/ref-common-schemas.md +++ b/bin/docs/ref-common-schemas.md @@ -1,4 +1,4 @@ -# bin/ref-common-schemas.ts +# bin/ref-common-schemas.mts Compares the contents of every schema within `payload-schemas/schemas` _except the common schemas_ against the common schemas, replacing any matches with a @@ -13,5 +13,5 @@ how much difference there is between two schemas at time of validation. ## Usage - bin/ref-common-schemas.ts [--full] - bin/ref-common-schemas.ts PullRequestOpenEvent.pull_request PullRequestCloseEvent.pull_request + bin/ref-common-schemas.mts [--full] + bin/ref-common-schemas.mts PullRequestOpenEvent.pull_request PullRequestCloseEvent.pull_request diff --git a/bin/docs/validate-payload-examples.md b/bin/docs/validate-payload-examples.md index 3603bc040..ae5c77d98 100644 --- a/bin/docs/validate-payload-examples.md +++ b/bin/docs/validate-payload-examples.md @@ -1,4 +1,4 @@ -# bin/validate-payload-examples.ts +# bin/validate-payload-examples.mts Validates all the payload examples in `payload-examples` against the appropriate schemas in `payload-schemas`. @@ -9,5 +9,5 @@ validation will stop. You can change this behaviour by passing the ## Usage - bin/validate-payload-examples.ts [--continue-on-error] - bin/validate-payload-examples.ts + bin/validate-payload-examples.mts [--continue-on-error] + bin/validate-payload-examples.mts diff --git a/bin/extract-common-schema.ts b/bin/extract-common-schema.mts similarity index 99% rename from bin/extract-common-schema.ts rename to bin/extract-common-schema.mts index 079d1105c..1ab14829e 100755 --- a/bin/extract-common-schema.ts +++ b/bin/extract-common-schema.mts @@ -9,7 +9,7 @@ import { loadMapOfSchemas, parseArgv, pathToSchemas, -} from "./utils"; +} from "./utils/index.mjs"; const [ [interfacePropertyPath, interfaceName], diff --git a/bin/format-with-prettier.ts b/bin/format-with-prettier.mts similarity index 97% rename from bin/format-with-prettier.ts rename to bin/format-with-prettier.mts index fb78107c9..9e80bef94 100755 --- a/bin/format-with-prettier.ts +++ b/bin/format-with-prettier.mts @@ -8,7 +8,7 @@ import { parseArgv, pathToPayloads, pathToSchemas, -} from "./utils"; +} from "./utils/index.mjs"; const [, { check: checkOnly }] = parseArgv(__filename, [], ["check"]); diff --git a/bin/octokit-schema.ts b/bin/octokit-schema.mts similarity index 83% rename from bin/octokit-schema.ts rename to bin/octokit-schema.mts index 46c98a1b1..5d738f7f1 100755 --- a/bin/octokit-schema.ts +++ b/bin/octokit-schema.mts @@ -1,12 +1,15 @@ #!/usr/bin/env ts-node-transpile-only import { strict as assert } from "assert"; -import fs from "fs"; +import fs, { readFileSync } from "fs"; import { JSONSchema7 } from "json-schema"; import path from "path"; import { format } from "prettier"; -import { parseArgv, pathToSchemas } from "./utils"; +import { parseArgv, pathToSchemas } from "./utils/index.mjs"; +import { fileURLToPath } from "url"; +const parentDirURL = new URL("..", import.meta.url); +const __filename = fileURLToPath(import.meta.url); parseArgv(__filename, []); const removeExtension = (fileName: string, ext: string): string => { @@ -20,8 +23,10 @@ const buildCommonSchemasDefinitionSchema = (): Record => { const definitions: Record = {}; commonSchemas.forEach((schema) => { - definitions[removeExtension(schema, ".schema.json")] = require( - `../${pathToSchemas}/common/${schema}`, + definitions[removeExtension(schema, ".schema.json")] = JSON.parse( + readFileSync( + new URL(`${pathToSchemas}/common/${schema}`, parentDirURL), + ).toString(), ); }); @@ -56,8 +61,10 @@ const combineEventSchemas = () => { if (schemas.length === 1 && schemas[0] === "event.schema.json") { // schemas without any actions are just called "event" - const schema = require( - `../${pathToSchemas}/${event}/event.schema.json`, + const schema = JSON.parse( + readFileSync( + new URL(`${pathToSchemas}/${event}/event.schema.json`, parentDirURL), + ).toString(), ) as JSONSchema7; const eventName = schema.$id; @@ -77,8 +84,10 @@ const combineEventSchemas = () => { } const eventActions = schemas.map((schemaName) => { - const schema = require( - `../${pathToSchemas}/${event}/${schemaName}`, + const schema = JSON.parse( + readFileSync( + new URL(`${pathToSchemas}/${event}/${schemaName}`, parentDirURL), + ).toString(), ) as JSONSchema7; const actionEventName = schema.$id; diff --git a/bin/octokit-types.ts b/bin/octokit-types.mts similarity index 93% rename from bin/octokit-types.ts rename to bin/octokit-types.mts index bb4880f95..596ecef29 100644 --- a/bin/octokit-types.ts +++ b/bin/octokit-types.mts @@ -5,8 +5,14 @@ import { promises as fs } from "fs"; import { JSONSchema4, JSONSchema7 } from "json-schema"; import { compile } from "json-schema-to-typescript"; import { format } from "prettier"; -import { guessAtInterfaceName, isJsonSchemaObject, parseArgv } from "./utils"; - +import { + guessAtInterfaceName, + isJsonSchemaObject, + parseArgv, +} from "./utils/index.mjs"; +import { fileURLToPath } from "url"; + +const __filename = fileURLToPath(import.meta.url); parseArgv(__filename, []); const getEventName = (ref: string): string => { diff --git a/bin/octokit-webhooks.ts b/bin/octokit-webhooks.mts similarity index 82% rename from bin/octokit-webhooks.ts rename to bin/octokit-webhooks.mts index ac5cb6633..d7034c8b1 100755 --- a/bin/octokit-webhooks.ts +++ b/bin/octokit-webhooks.mts @@ -1,7 +1,9 @@ #!/usr/bin/env ts-node-transpile-only import yargs from "yargs"; -import { checkOrUpdateWebhooks } from "../lib"; +import type { Options as yargsOptions, Arguments } from "yargs"; +import { hideBin } from "yargs/helpers"; +import { checkOrUpdateWebhooks } from "../lib/index.mjs"; interface Options { cached: boolean; @@ -10,7 +12,7 @@ interface Options { updateAll?: boolean; } -const options: Record = { +const options: Record = { cached: { describe: "Load HTML from local cache", type: "boolean", @@ -40,7 +42,7 @@ const { githubAE, updateAll, _: [command], -} = yargs +} = yargs(hideBin(process.argv)) .command("update", "Update webhooks", (yargs) => { yargs.options(options).example("$0 update --cached", ""); }) @@ -51,7 +53,7 @@ const { .alias("h", ["help", "usage"]) .demandCommand(1, "") .scriptName("bin/octokit-webhooks") - .usage("$0 [--cached]").argv as yargs.Arguments; + .usage("$0 [--cached]").argv as Arguments; if (!["update", "check"].includes(command.toString())) { console.log(`"${command}" must be one of: update, check`); diff --git a/bin/optimize-schemas.ts b/bin/optimize-schemas.mts similarity index 99% rename from bin/optimize-schemas.ts rename to bin/optimize-schemas.mts index d6ce6957f..45a516c16 100755 --- a/bin/optimize-schemas.ts +++ b/bin/optimize-schemas.mts @@ -14,7 +14,7 @@ import { isJsonSchemaObject, forEachJsonFile, parseArgv, -} from "./utils"; +} from "./utils/index.mjs"; parseArgv(__filename, []); diff --git a/bin/ref-common-schemas.ts b/bin/ref-common-schemas.mts similarity index 98% rename from bin/ref-common-schemas.ts rename to bin/ref-common-schemas.mts index d00a1391f..e07f6a491 100755 --- a/bin/ref-common-schemas.ts +++ b/bin/ref-common-schemas.mts @@ -10,7 +10,7 @@ import { normalizeSchema, parseArgv, pathToSchemas, -} from "./utils"; +} from "./utils/index.mjs"; parseArgv(__filename, []); diff --git a/bin/utils/argv.ts b/bin/utils/argv.mts similarity index 98% rename from bin/utils/argv.ts rename to bin/utils/argv.mts index ff9a692e8..b5c9e86ec 100644 --- a/bin/utils/argv.ts +++ b/bin/utils/argv.mts @@ -1,7 +1,7 @@ import { strict as assert } from "assert"; import fs from "fs"; import path from "path"; -import { capitalize } from "."; +import { capitalize } from "./index.mjs"; type Join = T extends [] ? "" diff --git a/bin/utils/forEachJsonFile.ts b/bin/utils/forEachJsonFile.mts similarity index 100% rename from bin/utils/forEachJsonFile.ts rename to bin/utils/forEachJsonFile.mts diff --git a/bin/utils/getSchemaFromPath.ts b/bin/utils/getSchemaFromPath.mts similarity index 96% rename from bin/utils/getSchemaFromPath.ts rename to bin/utils/getSchemaFromPath.mts index 350d2619a..3e733c0e9 100644 --- a/bin/utils/getSchemaFromPath.ts +++ b/bin/utils/getSchemaFromPath.mts @@ -1,6 +1,6 @@ import { strict as assert } from "assert"; import { JSONSchema7 } from "json-schema"; -import { ensureArray } from "."; +import { ensureArray } from "./index.mjs"; const extractFromSchema = (schema: JSONSchema7, name: string): JSONSchema7 => { if (ensureArray(schema.type).includes("object")) { diff --git a/bin/utils/index.mts b/bin/utils/index.mts new file mode 100644 index 000000000..d2f72e28f --- /dev/null +++ b/bin/utils/index.mts @@ -0,0 +1,9 @@ +export * from "./getSchemaFromPath.mjs"; +export * from "./forEachJsonFile.mjs"; +export * from "./loadMapOfSchemas.mjs"; +export * from "./normalizeSchema.mjs"; +export * from "./misc.mjs"; +export * from "./argv.mjs"; + +export const pathToPayloads = "payload-examples/api.github.com"; +export const pathToSchemas = "payload-schemas/api.github.com"; diff --git a/bin/utils/index.ts b/bin/utils/index.ts deleted file mode 100644 index c3eeb802d..000000000 --- a/bin/utils/index.ts +++ /dev/null @@ -1,9 +0,0 @@ -export * from "./getSchemaFromPath"; -export * from "./forEachJsonFile"; -export * from "./loadMapOfSchemas"; -export * from "./normalizeSchema"; -export * from "./misc"; -export * from "./argv"; - -export const pathToPayloads = "payload-examples/api.github.com"; -export const pathToSchemas = "payload-schemas/api.github.com"; diff --git a/bin/utils/loadMapOfSchemas.ts b/bin/utils/loadMapOfSchemas.mts similarity index 85% rename from bin/utils/loadMapOfSchemas.ts rename to bin/utils/loadMapOfSchemas.mts index ce4a7a6a8..b84573883 100644 --- a/bin/utils/loadMapOfSchemas.ts +++ b/bin/utils/loadMapOfSchemas.mts @@ -1,6 +1,10 @@ import fs from "fs"; import { JSONSchema7 } from "json-schema"; -import { forEachJsonFile, guessAtInterfaceName, pathToSchemas } from "."; +import { + forEachJsonFile, + guessAtInterfaceName, + pathToSchemas, +} from "./index.mjs"; type InterfaceNameAndSchema = [interfaceName: string, schema: JSONSchema7]; diff --git a/bin/utils/misc.ts b/bin/utils/misc.mts similarity index 90% rename from bin/utils/misc.ts rename to bin/utils/misc.mts index aaba5e857..e261e36b1 100644 --- a/bin/utils/misc.ts +++ b/bin/utils/misc.mts @@ -15,7 +15,7 @@ export const guessAtInterfaceName = (schema: JSONSchema7): string => { .join(""); }; -export const ensureArray = (arr: T | T[]): T[] => +export const ensureArray = (arr: T | T[]): T[] => Array.isArray(arr) ? arr : [arr]; export const isJsonSchemaObject = (object: unknown): object is JSONSchema7 => diff --git a/bin/utils/normalizeSchema.ts b/bin/utils/normalizeSchema.mts similarity index 94% rename from bin/utils/normalizeSchema.ts rename to bin/utils/normalizeSchema.mts index 19746ed99..d57cd0d9e 100644 --- a/bin/utils/normalizeSchema.ts +++ b/bin/utils/normalizeSchema.mts @@ -1,5 +1,5 @@ import { JSONSchema7 } from "json-schema"; -import { ensureArray, isJsonSchemaObject } from "."; +import { ensureArray, isJsonSchemaObject } from "./index.mjs"; const metaProperties = [ "$schema", // diff --git a/bin/validate-payload-examples.ts b/bin/validate-payload-examples.mts similarity index 79% rename from bin/validate-payload-examples.ts rename to bin/validate-payload-examples.mts index d5163f01a..57f918c78 100755 --- a/bin/validate-payload-examples.ts +++ b/bin/validate-payload-examples.mts @@ -1,11 +1,14 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import { DefinedError, ErrorObject } from "ajv"; import path from "path"; import { inspect } from "util"; -import { ajv, validate } from "../payload-schemas/index"; -import { forEachJsonFile, parseArgv, pathToPayloads } from "./utils"; +import { ajv, validate } from "../payload-schemas/index.mjs"; +import { forEachJsonFile, parseArgv, pathToPayloads } from "./utils/index.mjs"; +import { fileURLToPath } from "url"; +import { readFileSync } from "fs"; +const __filename = fileURLToPath(import.meta.url); const [, { continueOnError = false }] = parseArgv( __filename, [], @@ -35,7 +38,11 @@ const printAjvErrors = () => { forEachJsonFile(pathToPayloads, (filePath) => { if (filePath.includes("/index.json")) return; - const file = require(`../${filePath}`) as unknown; + const file = JSON.parse( + readFileSync( + path.join(fileURLToPath(import.meta.url), "..", "..", filePath), + ).toString(), + ) as unknown; const { dir: event, base: filename } = path.parse( path.relative(pathToPayloads, filePath), ); diff --git a/bin/validate-schema.ts b/bin/validate-schema.mts similarity index 61% rename from bin/validate-schema.ts rename to bin/validate-schema.mts index d4d70c5bf..92ee2e249 100644 --- a/bin/validate-schema.ts +++ b/bin/validate-schema.mts @@ -4,15 +4,18 @@ import Ajv from "ajv"; import addFormats from "ajv-formats"; import { readFileSync } from "fs"; import { resolve } from "path"; -import { parseArgv } from "./utils"; +import { fileURLToPath } from "url"; +import { parseArgv } from "./utils/index.mjs"; +const __filename = fileURLToPath(import.meta.url); const [, {}] = parseArgv(__filename, [], []); -const ajv = new Ajv({ strict: true }); +const ajv = new Ajv.default({ strict: true }); -addFormats(ajv); +addFormats.default(ajv); ajv.addKeyword("tsAdditionalProperties"); +const __dirname = fileURLToPath(new URL(".", import.meta.url)); const schema = JSON.parse( readFileSync(resolve(__dirname, "../payload-schemas/schema.json"), "utf-8"), ); diff --git a/lib/cache.ts b/lib/cache.mts similarity index 84% rename from lib/cache.ts rename to lib/cache.mts index e49b4ef89..fb3d761b7 100644 --- a/lib/cache.ts +++ b/lib/cache.mts @@ -1,6 +1,8 @@ import { promises as fs } from "fs"; import { dirname, resolve as resolvePath } from "path"; +import { fileURLToPath } from "url"; +const __dirname = fileURLToPath(new URL(".", import.meta.url)); const CACHE_DIR = resolvePath(__dirname, "..", "cache"); const toCachePath = (path: string) => resolvePath(CACHE_DIR, `./${path}`); diff --git a/lib/check-or-update-webhooks.ts b/lib/check-or-update-webhooks.mts similarity index 96% rename from lib/check-or-update-webhooks.ts rename to lib/check-or-update-webhooks.mts index a107fc97b..4adf62676 100644 --- a/lib/check-or-update-webhooks.ts +++ b/lib/check-or-update-webhooks.mts @@ -9,9 +9,10 @@ import { getHtml, getSections, toWebhook, -} from "."; +} from "./index.mjs"; -const isNotNull = (value: T | null): value is T => value !== null; +const isNotNull = (value: T | null): value is T => + value !== null; export const checkOrUpdateWebhooks = async ({ cached, diff --git a/lib/get-actions-and-examples-from-payloads.ts b/lib/get-actions-and-examples-from-payloads.mts similarity index 77% rename from lib/get-actions-and-examples-from-payloads.ts rename to lib/get-actions-and-examples-from-payloads.mts index ee44f33c4..bc6a7649e 100644 --- a/lib/get-actions-and-examples-from-payloads.ts +++ b/lib/get-actions-and-examples-from-payloads.mts @@ -1,10 +1,11 @@ -import { readdirSync } from "fs"; +import { readFileSync, readdirSync } from "fs"; interface ActionsAndExamples { actions: string[]; examples: object[]; } +const parentDirURL = new URL("..", import.meta.url); export const getActionsAndExamplesFromPayloads = ( folderName: string, ): Record => { @@ -18,7 +19,11 @@ export const getActionsAndExamplesFromPayloads = ( readdirSync(`${pathToPayloads}/${event}`) .filter((path) => path.endsWith(".json")) .forEach((path) => { - const payload = require(`../${pathToPayloads}/${event}/${path}`) as { + const payload = JSON.parse( + readFileSync( + new URL(`${pathToPayloads}/${event}/${path}`, parentDirURL), + ).toString(), + ) as { action?: string; }; diff --git a/lib/get-html.ts b/lib/get-html.mts similarity index 97% rename from lib/get-html.ts rename to lib/get-html.mts index 388530a06..005855532 100644 --- a/lib/get-html.ts +++ b/lib/get-html.mts @@ -1,7 +1,7 @@ import got from "got"; import cheerio from "cheerio"; import * as prettier from "prettier"; -import { State, cache } from "."; +import { State, cache } from "./index.mjs"; export const getHtml = async ( state: State & { baseUrl: string; folderName: string }, diff --git a/lib/get-sections.ts b/lib/get-sections.mts similarity index 95% rename from lib/get-sections.ts rename to lib/get-sections.mts index b408ea7d1..ff76db415 100644 --- a/lib/get-sections.ts +++ b/lib/get-sections.mts @@ -1,6 +1,6 @@ import { strict as assert } from "assert"; import cheerio from "cheerio"; -import { Section } from "."; +import { Section } from "./index.mjs"; export const getSections = (html: string): Section[] => { const $ = cheerio.load(html); diff --git a/lib/index.mts b/lib/index.mts new file mode 100644 index 000000000..3e642e65a --- /dev/null +++ b/lib/index.mts @@ -0,0 +1,8 @@ +export * from "./get-actions-and-examples-from-payloads.mjs"; +export * from "./check-or-update-webhooks.mjs"; +export * from "./section-to-webhook.mjs"; +export * from "./workarounds.mjs"; +export * from "./get-html.mjs"; +export * from "./get-sections.mjs"; +export * from "./cache.mjs"; +export type * from "./types.js"; diff --git a/lib/index.ts b/lib/index.ts deleted file mode 100644 index 7016687d1..000000000 --- a/lib/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -export * from "./get-actions-and-examples-from-payloads"; -export * from "./check-or-update-webhooks"; -export * from "./section-to-webhook"; -export * from "./workarounds"; -export * from "./get-html"; -export * from "./get-sections"; -export * from "./cache"; -export * from "./types"; diff --git a/lib/section-to-webhook.ts b/lib/section-to-webhook.mts similarity index 98% rename from lib/section-to-webhook.ts rename to lib/section-to-webhook.mts index 8f93c9a1b..5b773b1e0 100644 --- a/lib/section-to-webhook.ts +++ b/lib/section-to-webhook.mts @@ -2,7 +2,7 @@ import { strict as assert } from "assert"; import cheerio from "cheerio"; import { JSONSchema7TypeName } from "json-schema"; import TurndownService from "turndown"; -import { Section, Webhook } from "."; +import { Section, Webhook } from "./index.mjs"; const turndownService = new TurndownService({ codeBlockStyle: "fenced", diff --git a/lib/workarounds.ts b/lib/workarounds.mts similarity index 93% rename from lib/workarounds.ts rename to lib/workarounds.mts index 8d7716901..db4ee73f7 100644 --- a/lib/workarounds.ts +++ b/lib/workarounds.mts @@ -1,4 +1,4 @@ -import { Webhook } from "."; +import { Webhook } from "./index.mjs"; export type WorkableWebhook = | ({ name: "repository_dispatch" } & Webhook<{ client_payload: object }>) diff --git a/package-lock.json b/package-lock.json index ac8c76c83..a16874633 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "ajv-formats": "^2.1.1", "cheerio": "^1.0.0-rc.10", "fast-deep-equal": "^3.1.3", - "got": "^11.8.5", + "got": "^13.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", "prettier": "3.0.3", @@ -653,18 +653,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@semantic-release/npm/node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@semantic-release/release-notes-generator": { "version": "12.0.0-beta.2", "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.0.0-beta.2.tgz", @@ -702,27 +690,27 @@ } }, "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", "dev": true, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sindresorhus/is?sponsor=1" } }, "node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "dev": true, "dependencies": { - "defer-to-connect": "^2.0.0" + "defer-to-connect": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=14.16" } }, "node_modules/@tsconfig/node10": { @@ -749,18 +737,6 @@ "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true }, - "node_modules/@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "dev": true, - "dependencies": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, "node_modules/@types/cheerio": { "version": "0.22.32", "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.32.tgz", @@ -781,9 +757,9 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.2.tgz", + "integrity": "sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==", "dev": true }, "node_modules/@types/json-diff": { @@ -798,15 +774,6 @@ "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", "dev": true }, - "node_modules/@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/lodash": { "version": "4.14.198", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.198.tgz", @@ -837,15 +804,6 @@ "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", "dev": true }, - "node_modules/@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/turndown": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.1.tgz", @@ -1107,30 +1065,30 @@ } }, "node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", "dev": true, "engines": { - "node": ">=10.6.0" + "node": ">=14.16" } }, "node_modules/cacheable-request": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz", - "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==", + "version": "10.2.13", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.13.tgz", + "integrity": "sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==", "dev": true, "dependencies": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" + "@types/http-cache-semantics": "^4.0.1", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.16" } }, "node_modules/call-me-maybe": { @@ -1271,18 +1229,6 @@ "node": ">=12" } }, - "node_modules/clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "dev": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", @@ -1622,18 +1568,6 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/default-browser/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/default-browser/node_modules/human-signals": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", @@ -1818,15 +1752,6 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -1875,18 +1800,6 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/env-ci/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/env-ci/node_modules/human-signals": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", @@ -2143,6 +2056,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "dev": true, + "engines": { + "node": ">= 14.17" + } + }, "node_modules/from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", @@ -2201,15 +2123,12 @@ } }, "node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, - "dependencies": { - "pump": "^3.0.0" - }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -2318,25 +2237,25 @@ } }, "node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", + "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", "dev": true, "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": ">=10.19.0" + "node": ">=16" }, "funding": { "url": "https://github.com/sindresorhus/got?sponsor=1" @@ -2459,13 +2378,13 @@ } }, "node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", + "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", "dev": true, "dependencies": { "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" + "resolve-alpn": "^1.2.0" }, "engines": { "node": ">=10.19.0" @@ -3049,12 +2968,15 @@ "dev": true }, "node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", "dev": true, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lru-cache": { @@ -3194,12 +3116,15 @@ } }, "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", "dev": true, "engines": { - "node": ">=4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/minimatch": { @@ -3280,12 +3205,12 @@ } }, "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", + "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", "dev": true, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -6705,12 +6630,12 @@ } }, "node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12.20" } }, "node_modules/p-each-series": { @@ -7049,16 +6974,6 @@ "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", "dev": true }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, "node_modules/punycode": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", @@ -7308,12 +7223,15 @@ } }, "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", + "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", "dev": true, "dependencies": { - "lowercase-keys": "^2.0.0" + "lowercase-keys": "^3.0.0" + }, + "engines": { + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -7367,18 +7285,6 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/run-applescript/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/run-applescript/node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -7563,18 +7469,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/semantic-release/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", diff --git a/package.json b/package.json index 4e71de5d7..a09eb2fef 100644 --- a/package.json +++ b/package.json @@ -10,21 +10,21 @@ "main": "index.json", "files": [], "scripts": { - "build": "ts-node -T bin/octokit-webhooks.ts check --cached", + "build": "ts-node --esm -T bin/octokit-webhooks.mts check --cached", "build:all": "npm run -s build:webhooks && npm run -s build:schema && npm run -s build:types", - "build:schema": "ts-node -T bin/octokit-schema.ts", - "build:types": "ts-node -T bin/octokit-types.ts", - "build:webhooks": "ts-node -T bin/octokit-webhooks.ts update", - "lint": "prettier --check '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{ts,md,json,d.ts}'", - "lint:fix": "prettier --write '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{ts,md,json,d.ts}'", - "octokit-schema": "ts-node -T bin/octokit-schema.ts", - "octokit-webhooks": "ts-node -T bin/octokit-webhooks.ts", + "build:schema": "ts-node --esm -T bin/octokit-schema.mts", + "build:types": "ts-node --esm -T bin/octokit-types.mts", + "build:webhooks": "ts-node --esm -T bin/octokit-webhooks.mts update", + "lint": "prettier --check '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{mts,md,json,d.ts}' 'test.mts'", + "lint:fix": "prettier --write '{bin,lib}/**/*.{ts,mts}' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{mts,md,json,d.ts}' 'test.mts'", + "octokit-schema": "ts-node -T bin/octokit-schema.mts", + "octokit-webhooks": "ts-node -T bin/octokit-webhooks.mts", "pretest": "npm run -s lint", - "test": "npm run build && npm run build:schema && npm run validate -- --continue-on-error && ts-node -T test.ts", + "test": "npm run build && npm run build:schema && npm run validate -- --continue-on-error && ts-node --esm -T test.mts", "typecheck": "tsc -p . --noEmit", "validate": "npm run -s validate:payloads && npm run -s validate:schema", - "validate:payloads": "ts-node -T bin/validate-payload-examples.ts", - "validate:schema": "ts-node -T bin/validate-schema.ts" + "validate:payloads": "ts-node --esm -T bin/validate-payload-examples.mts", + "validate:schema": "ts-node --esm -T bin/validate-schema.mts" }, "prettier": {}, "release": { @@ -79,7 +79,7 @@ "ajv-formats": "^2.1.1", "cheerio": "^1.0.0-rc.10", "fast-deep-equal": "^3.1.3", - "got": "^11.8.5", + "got": "^13.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", "prettier": "3.0.3", diff --git a/payload-schemas/index.ts b/payload-schemas/index.mts similarity index 77% rename from payload-schemas/index.ts rename to payload-schemas/index.mts index 08f10dcaa..3a97682a5 100644 --- a/payload-schemas/index.ts +++ b/payload-schemas/index.mts @@ -1,16 +1,18 @@ import Ajv from "ajv"; import addFormats from "ajv-formats"; -import { readdirSync } from "fs"; +import { readFileSync, readdirSync } from "fs"; import { resolve } from "path"; +import { fileURLToPath } from "url"; -export const ajv = new Ajv({ +export const ajv = new Ajv.default({ strict: true, strictTypes: true, strictTuples: true, }); -addFormats(ajv); +addFormats.default(ajv); +const __dirname = fileURLToPath(new URL(".", import.meta.url)); const schemaDir = resolve(__dirname, "api.github.com"); const requireSchema = ( @@ -20,7 +22,8 @@ const requireSchema = ( ) => { const schemaPath = `${schemaDir}/${event}/${filename}`; - ajv.addSchema(require(schemaPath), keyName); + const schema = JSON.parse(readFileSync(schemaPath, "utf-8").toString()); + ajv.addSchema(schema, keyName); return keyName; }; diff --git a/test.ts b/test.mts similarity index 75% rename from test.ts rename to test.mts index 22fcb1262..4658a99d8 100644 --- a/test.ts +++ b/test.mts @@ -1,7 +1,13 @@ import Ajv, { ErrorObject } from "ajv"; +import { readFileSync } from "fs"; import { JSONSchema7 } from "json-schema"; -import webhooks from "./payload-examples/api.github.com/index.json"; -const ajv = new Ajv(); + +const webhooks = JSON.parse( + readFileSync( + new URL("./payload-examples/api.github.com/index.json", import.meta.url), + ).toString(), +) as import("./payload-examples/index.d.ts").WebhookDefinition[]; +const ajv = new Ajv.default(); const schema: JSONSchema7 = { type: "object", diff --git a/tsconfig.json b/tsconfig.json index b53567450..00a2feced 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,15 @@ { "compilerOptions": { "target": "es2019", - "module": "commonjs", - "moduleResolution": "node", + "module": "Node16", + "moduleResolution": "node16", "lib": ["es2020"], "rootDir": "./", "allowJs": true, "checkJs": true, "noEmit": true, "strict": true, + "skipLibCheck": true, "resolveJsonModule": true, "useDefineForClassFields": true, "forceConsistentCasingInFileNames": true, @@ -19,5 +20,5 @@ "esModuleInterop": true }, "exclude": ["cache", "coverage", "node_modules"], - "include": ["**/*.js", "**/*.ts"] + "include": ["**/*.js", "**/*.ts", "**/*.mts"] } From 6e5d1a31375c138851ab7ece2b9546d27c4a4522 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:31:42 -0400 Subject: [PATCH 02/69] build(deps): lock file maintenance (#846) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 253 +++++++++++++---------------- payload-examples/package-lock.json | 6 +- 2 files changed, 114 insertions(+), 145 deletions(-) diff --git a/package-lock.json b/package-lock.json index a16874633..bf2296ae7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -118,21 +118,21 @@ } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz", - "integrity": "sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.13.tgz", - "integrity": "sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, @@ -536,9 +536,9 @@ } }, "node_modules/@semantic-release/commit-analyzer": { - "version": "11.0.0-beta.3", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.0.0-beta.3.tgz", - "integrity": "sha512-Qxwi5CpAtTBfGspH68HBSA/sqRl+JUNV+WF0QAjGG5E9v0BBNxCkzY7J+qSFVQNt40wFOxXF4VTKagA2rdB81A==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.0.0.tgz", + "integrity": "sha512-uEXyf4Z0AWJuxI9TbSQP5kkIYqus1/E1NcmE7pIv6d6/m/5EJcNWAGR4FOo34vrV26FhEaRVkxFfYzp/M7BKIg==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", @@ -550,7 +550,7 @@ "micromatch": "^4.0.2" }, "engines": { - "node": ">=18" + "node": "^18.17 || >=20.6.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" @@ -566,9 +566,9 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.0.5.tgz", - "integrity": "sha512-d1ZZjMvXpSa4E1L3XjdNOqgUy00o9QZX55L75pMsb/w+1NV6CCfDYOvH8qwKygHS/rKzI3FkBTcR40ahOodsgg==", + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.0.6.tgz", + "integrity": "sha512-GBGt9c3c2UdSvso4jcyQQSUpZA9hbfHqGQerZKN9WvVzCIkaBy8xkhOyiFVX08LjRHHT/H221SJNBLtuihX5iw==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", @@ -576,7 +576,7 @@ "@octokit/plugin-retry": "^6.0.0", "@octokit/plugin-throttling": "^7.0.0", "@semantic-release/error": "^4.0.0", - "aggregate-error": "^4.0.1", + "aggregate-error": "^5.0.0", "debug": "^4.3.4", "dir-glob": "^3.0.1", "globby": "^13.1.4", @@ -622,41 +622,10 @@ "semantic-release": ">=20.1.0" } }, - "node_modules/@semantic-release/npm/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@semantic-release/release-notes-generator": { - "version": "12.0.0-beta.2", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.0.0-beta.2.tgz", - "integrity": "sha512-r0C5swcrl2JLCA/zFj2+pGnHxjD3FI/lC4bvqJkVJA0CN6BExrOQ1XP9fOJVt9147GoE4wKpEA9SBNgxrC3Xug==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.0.0.tgz", + "integrity": "sha512-m7Ds8ComP1KJgA2Lke2xMwE1TOOU40U7AzP4lT8hJ2tUAeicziPz/1GeDFmRkTOkMFlfHvE6kuvMkvU+mIzIDQ==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", @@ -671,7 +640,7 @@ "read-pkg-up": "^10.0.0" }, "engines": { - "node": ">=18" + "node": "^18.17 || >=20.6.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" @@ -769,9 +738,9 @@ "dev": true }, "node_modules/@types/json-schema": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz", - "integrity": "sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==", + "version": "7.0.13", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.13.tgz", + "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", "dev": true }, "node_modules/@types/lodash": { @@ -787,9 +756,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.17.15", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.15.tgz", - "integrity": "sha512-2yrWpBk32tvV/JAd3HNHWuZn/VDN1P+72hWirHnvsvTGSqbANi+kSeuQR9yAHnbvaBvHDsoTdXV0Fe+iRtHLKA==", + "version": "18.17.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.17.tgz", + "integrity": "sha512-cOxcXsQ2sxiwkykdJqvyFS+MLQPLvIdwh5l6gNg8qF6s+C7XSkEWOZjK+XhUZd+mYvHV/180g2cnCcIl4l06Pw==", "dev": true }, "node_modules/@types/normalize-package-data": { @@ -805,9 +774,9 @@ "dev": true }, "node_modules/@types/turndown": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.1.tgz", - "integrity": "sha512-N8Ad4e3oJxh9n9BiZx9cbe/0M3kqDpOTm2wzj13wdDUxDPjfjloWIJaquZzWE1cYTAHpjOH3rcTnXQdpEfS/SQ==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.2.tgz", + "integrity": "sha512-ghbjIyvMSQn/UGEuQJD6C4DfbokyYqGRhNAetWH02qnuRfvRZz9qTOG9e0RPkVqGsjv+YsjF3gRp7yFKvc/1PA==", "dev": true }, "node_modules/@types/yargs": { @@ -859,16 +828,16 @@ } }, "node_modules/aggregate-error": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", - "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, "dependencies": { - "clean-stack": "^4.0.0", + "clean-stack": "^5.2.0", "indent-string": "^5.0.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1170,15 +1139,15 @@ } }, "node_modules/clean-stack": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", - "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, "dependencies": { "escape-string-regexp": "5.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1348,9 +1317,9 @@ "dev": true }, "node_modules/cosmiconfig": { - "version": "8.3.5", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.5.tgz", - "integrity": "sha512-A5Xry3xfS96wy2qbiLkQLAg4JUrR2wvfybxj6yqLmrUfMAvhS3MZxIP2oQn0grgYIvJqzpeTEWu4vK0t+12NNw==", + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, "dependencies": { "import-fresh": "^3.3.0", @@ -2328,9 +2297,9 @@ } }, "node_modules/hosted-git-info": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.0.tgz", - "integrity": "sha512-ICclEpTLhHj+zCuSb2/usoNXSVkxUSIopre+b1w8NDY9Dntp9LO4vLdHYI336TH8sAqwrRgnSfdkBG2/YpisHA==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", "dev": true, "dependencies": { "lru-cache": "^10.0.1" @@ -2607,6 +2576,18 @@ "node": ">=8" } }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-plain-object": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", @@ -3204,6 +3185,21 @@ "lodash": "^4.17.21" } }, + "node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "dev": true, + "dependencies": { + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, "node_modules/normalize-url": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", @@ -6719,6 +6715,37 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/p-map/node_modules/aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "dev": true, + "dependencies": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map/node_modules/clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/p-reduce": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", @@ -6731,6 +6758,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", @@ -6911,15 +6947,6 @@ "node": ">=4" } }, - "node_modules/pkg-conf/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/pkg-conf/node_modules/path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", @@ -7095,21 +7122,6 @@ "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", - "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", - "dev": true, - "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, "node_modules/read-pkg/node_modules/parse-json": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.0.tgz", @@ -7438,37 +7450,6 @@ "glob": "^7.1.3" } }, - "node_modules/semantic-release/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -7701,18 +7682,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/sort-package-json/node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -8283,7 +8252,7 @@ "node": ">=12" } }, - "node_modules/yargs/node_modules/yargs-parser": { + "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", diff --git a/payload-examples/package-lock.json b/payload-examples/package-lock.json index 8814ac67f..d89f6b76b 100644 --- a/payload-examples/package-lock.json +++ b/payload-examples/package-lock.json @@ -14,9 +14,9 @@ "devDependencies": {} }, "node_modules/@octokit/webhooks-types": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.2.0.tgz", - "integrity": "sha512-TX6347q0TJbKZD5M1wiMFUrq8T/GP6PkcnssLfw/fZ+//jkW8uRvOl63bNlhPGt82sml9Dy5nSPP0GIHW9XBTQ==" + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.3.1.tgz", + "integrity": "sha512-u6355ZsZnHwmxen30SrqnYb1pXieBFkYgkNzt+Ed4Ao5tupN1OErHfzwiV6hq6duGkDAYASbq7/uVJQ69PjLEg==" } } } From d4e18f759b16da0fcbea68f45c09558f8009a850 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Tue, 19 Sep 2023 18:53:00 -0400 Subject: [PATCH 03/69] build: fix scripts that were broken due to transition to ESM (#847) --- .github/workflows/prettier.yml | 2 +- bin/diff-interface-schemas.mts | 2 +- bin/extract-common-schema.mts | 4 +++- bin/format-with-prettier.mts | 4 +++- bin/octokit-schema.mts | 2 +- bin/octokit-types.mts | 2 +- bin/octokit-webhooks.mts | 2 +- bin/optimize-schemas.mts | 4 +++- bin/ref-common-schemas.mts | 4 +++- bin/validate-schema.mts | 2 +- package.json | 1 + 11 files changed, 19 insertions(+), 10 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 2611ccb81..78a1b0591 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -16,7 +16,7 @@ jobs: cache: npm - run: npm ci - run: echo "./node_modules/.bin" >> $GITHUB_PATH - - run: ./bin/format-with-prettier.ts + - run: ./bin/format-with-prettier.mts - run: git diff-index --quiet HEAD - if: failure() run: | diff --git a/bin/diff-interface-schemas.mts b/bin/diff-interface-schemas.mts index b97ebac53..fd67b3692 100755 --- a/bin/diff-interface-schemas.mts +++ b/bin/diff-interface-schemas.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import { diffString } from "json-diff"; import { JSONSchema7 } from "json-schema"; diff --git a/bin/extract-common-schema.mts b/bin/extract-common-schema.mts index 1ab14829e..d75254704 100755 --- a/bin/extract-common-schema.mts +++ b/bin/extract-common-schema.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esms import { strict as assert } from "assert"; import fs from "fs"; @@ -10,7 +10,9 @@ import { parseArgv, pathToSchemas, } from "./utils/index.mjs"; +import { fileURLToPath } from "url"; +const __filename = fileURLToPath(import.meta.url); const [ [interfacePropertyPath, interfaceName], { overwrite: overwriteIfExists }, diff --git a/bin/format-with-prettier.mts b/bin/format-with-prettier.mts index 9e80bef94..7d15931c9 100755 --- a/bin/format-with-prettier.mts +++ b/bin/format-with-prettier.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import fs from "fs"; import { JSONSchema7 } from "json-schema"; @@ -9,7 +9,9 @@ import { pathToPayloads, pathToSchemas, } from "./utils/index.mjs"; +import { fileURLToPath } from "url"; +const __filename = fileURLToPath(import.meta.url); const [, { check: checkOnly }] = parseArgv(__filename, [], ["check"]); const formatJsonInDirectory = (pathToJsons: string) => { diff --git a/bin/octokit-schema.mts b/bin/octokit-schema.mts index 5d738f7f1..c9ee9d191 100755 --- a/bin/octokit-schema.mts +++ b/bin/octokit-schema.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import { strict as assert } from "assert"; import fs, { readFileSync } from "fs"; diff --git a/bin/octokit-types.mts b/bin/octokit-types.mts index 596ecef29..0a3165c0f 100644 --- a/bin/octokit-types.mts +++ b/bin/octokit-types.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import { strict as assert } from "assert"; import { promises as fs } from "fs"; diff --git a/bin/octokit-webhooks.mts b/bin/octokit-webhooks.mts index d7034c8b1..366aa661a 100755 --- a/bin/octokit-webhooks.mts +++ b/bin/octokit-webhooks.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import yargs from "yargs"; import type { Options as yargsOptions, Arguments } from "yargs"; diff --git a/bin/optimize-schemas.mts b/bin/optimize-schemas.mts index 45a516c16..524fe4fdf 100755 --- a/bin/optimize-schemas.mts +++ b/bin/optimize-schemas.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import { strict as assert } from "assert"; import fs from "fs"; @@ -15,7 +15,9 @@ import { forEachJsonFile, parseArgv, } from "./utils/index.mjs"; +import { fileURLToPath } from "url"; +const __filename = fileURLToPath(import.meta.url); parseArgv(__filename, []); const JSONSchema7TypeNameOrder = [ diff --git a/bin/ref-common-schemas.mts b/bin/ref-common-schemas.mts index e07f6a491..f40ec77b5 100755 --- a/bin/ref-common-schemas.mts +++ b/bin/ref-common-schemas.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import deepEqual from "fast-deep-equal"; import fs from "fs"; @@ -11,7 +11,9 @@ import { parseArgv, pathToSchemas, } from "./utils/index.mjs"; +import { fileURLToPath } from "url"; +const __filename = fileURLToPath(import.meta.url); parseArgv(__filename, []); const commonSchemas = fs diff --git a/bin/validate-schema.mts b/bin/validate-schema.mts index 92ee2e249..0b8c70fb4 100644 --- a/bin/validate-schema.mts +++ b/bin/validate-schema.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env ts-node-transpile-only +#!/usr/bin/env -S ts-node-transpile-only --esm import Ajv from "ajv"; import addFormats from "ajv-formats"; diff --git a/package.json b/package.json index a09eb2fef..a796df092 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "@octokit/webhooks-definitions", "version": "0.0.0-development", "private": "true", + "type": "module", "description": "machine-readable, always up-to-date GitHub Webhooks specifications", "keywords": [], "repository": "github:octokit/webhooks", From 8e998583e6bf0eec299cc0d1e772635f41155bc9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 20 Sep 2023 21:16:49 -0700 Subject: [PATCH 04/69] ci(action): update peter-evans/create-or-update-comment digest to 46da6c0 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/immediate-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index 468943814..77ea5d228 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -19,7 +19,7 @@ jobs: run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" - name: Respond to issue or PR - uses: peter-evans/create-or-update-comment@1f6c51492b7d8e91122ece56e2eb7ed38df14079 + uses: peter-evans/create-or-update-comment@46da6c0d98504aed6fc429519a258b951f23f474 with: issue-number: ${{ steps.extract.outputs.NUMBER }} body: > From 95e803b71fb2750de6967d4e146f68760c452f77 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 13:38:55 -0500 Subject: [PATCH 05/69] ci(action): update actions/checkout digest to 8ade135 (#849) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/prettier.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 8 ++++---- .github/workflows/update-prettier.yml | 2 +- .github/workflows/update.yml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 67154edce..c9c791cc2 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 78a1b0591..5727f9168 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -7,7 +7,7 @@ jobs: lint_repo: runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 with: token: ${{ secrets.OCTOKITBOT_PAT }} - uses: actions/setup-node@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d15109ee..b5ec1d830 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: lts/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e7ddeb997..885ef6008 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: name: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -24,7 +24,7 @@ jobs: name: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -36,7 +36,7 @@ jobs: name: Do types need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -52,7 +52,7 @@ jobs: name: Do examples need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/update-prettier.yml b/.github/workflows/update-prettier.yml index ad8a6a954..3363499eb 100644 --- a/.github/workflows/update-prettier.yml +++ b/.github/workflows/update-prettier.yml @@ -7,7 +7,7 @@ jobs: update_prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 0d1ad66ba..353034bf9 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -9,7 +9,7 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: actions/setup-node@v3 with: node-version: 18 From e0367a8765c1005d036b9dcd7e7e8336a743cf5f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 09:11:48 -0500 Subject: [PATCH 06/69] build(deps): lock file maintenance (#850) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 271 ++++++++++++++++++++++++---------------------- 1 file changed, 142 insertions(+), 129 deletions(-) diff --git a/package-lock.json b/package-lock.json index bf2296ae7..ce14a18ce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -336,16 +336,16 @@ } }, "node_modules/@octokit/core": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.0.tgz", - "integrity": "sha512-YbAtMWIrbZ9FCXbLwT9wWB8TyLjq9mxpKdgB3dUNxQcIVTf9hJ70gRPwAcqGZdY6WdJPZ0I7jLaaNDCiloGN2A==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.1.tgz", + "integrity": "sha512-lyeeeZyESFo+ffI801SaBKmCfsvarO+dgV8/0gD8u1d87clbEdWsP5yC+dSj3zLhb2eIf5SJrn6vDz9AheETHw==", "dev": true, "dependencies": { "@octokit/auth-token": "^4.0.0", "@octokit/graphql": "^7.0.0", "@octokit/request": "^8.0.2", "@octokit/request-error": "^5.0.0", - "@octokit/types": "^11.0.0", + "@octokit/types": "^12.0.0", "before-after-hook": "^2.2.0", "universal-user-agent": "^6.0.0" }, @@ -354,12 +354,12 @@ } }, "node_modules/@octokit/endpoint": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.0.tgz", - "integrity": "sha512-szrQhiqJ88gghWY2Htt8MqUDO6++E/EIXqJ2ZEp5ma3uGS46o7LZAzSLt49myB7rT+Hfw5Y6gO3LmOxGzHijAQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.1.tgz", + "integrity": "sha512-hRlOKAovtINHQPYHZlfyFwaM8OyetxeoC81lAkBy34uLb8exrZB50SQdeW3EROqiY9G9yxQTpp5OHTV54QD+vA==", "dev": true, "dependencies": { - "@octokit/types": "^11.0.0", + "@octokit/types": "^12.0.0", "is-plain-object": "^5.0.0", "universal-user-agent": "^6.0.0" }, @@ -368,13 +368,13 @@ } }, "node_modules/@octokit/graphql": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.1.tgz", - "integrity": "sha512-T5S3oZ1JOE58gom6MIcrgwZXzTaxRnxBso58xhozxHpOqSTgDS6YNeEUvZ/kRvXgPrRz/KHnZhtb7jUMRi9E6w==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", + "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", "dev": true, "dependencies": { "@octokit/request": "^8.0.1", - "@octokit/types": "^11.0.0", + "@octokit/types": "^12.0.0", "universal-user-agent": "^6.0.0" }, "engines": { @@ -382,18 +382,18 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.0.0.tgz", - "integrity": "sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==", + "version": "19.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.0.0.tgz", + "integrity": "sha512-PclQ6JGMTE9iUStpzMkwLCISFn/wDeRjkZFIKALpvJQNBGwDoYYi2fFvuHwssoQ1rXI5mfh6jgTgWuddeUzfWw==", "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-8.0.0.tgz", - "integrity": "sha512-2xZ+baZWUg+qudVXnnvXz7qfrTmDeYPCzangBVq/1gXxii/OiS//4shJp9dnCCvj1x+JAm9ji1Egwm1BA47lPQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.0.0.tgz", + "integrity": "sha512-oIJzCpttmBTlEhBmRvb+b9rlnGpmFgDtZ0bB6nq39qIod6A5DP+7RkVLMOixIgRCYSHDTeayWqmiJ2SZ6xgfdw==", "dev": true, "dependencies": { - "@octokit/types": "^11.0.0" + "@octokit/types": "^12.0.0" }, "engines": { "node": ">= 18" @@ -403,13 +403,13 @@ } }, "node_modules/@octokit/plugin-retry": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.0.tgz", - "integrity": "sha512-a1/A4A+PB1QoAHQfLJxGHhLfSAT03bR1jJz3GgQJZvty2ozawFWs93MiBQXO7SL2YbO7CIq0Goj4qLOBj8JeMQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", + "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", "dev": true, "dependencies": { "@octokit/request-error": "^5.0.0", - "@octokit/types": "^11.0.0", + "@octokit/types": "^12.0.0", "bottleneck": "^2.15.3" }, "engines": { @@ -420,12 +420,12 @@ } }, "node_modules/@octokit/plugin-throttling": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-7.0.0.tgz", - "integrity": "sha512-KL2k/d0uANc8XqP5S64YcNFCudR3F5AaKO39XWdUtlJIjT9Ni79ekWJ6Kj5xvAw87udkOMEPcVf9xEge2+ahew==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.0.0.tgz", + "integrity": "sha512-OkMbHYUidj81q92YRkPzWmwXkEtsI3KOcSkNm763aqUOh9IEplyX05XjKAdZFANAvaYH0Q4JBZwu4h2VnPVXZA==", "dev": true, "dependencies": { - "@octokit/types": "^11.0.0", + "@octokit/types": "^12.0.0", "bottleneck": "^2.15.3" }, "engines": { @@ -436,14 +436,14 @@ } }, "node_modules/@octokit/request": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.1.tgz", - "integrity": "sha512-8N+tdUz4aCqQmXl8FpHYfKG9GelDFd7XGVzyN8rc6WxVlYcfpHECnuRkgquzz+WzvHTK62co5di8gSXnzASZPQ==", + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.2.tgz", + "integrity": "sha512-A0RJJfzjlZQwb+39eDm5UM23dkxbp28WEG4p2ueH+Q2yY4p349aRK/vcUlEuIB//ggcrHJceoYYkBP/LYCoXEg==", "dev": true, "dependencies": { "@octokit/endpoint": "^9.0.0", "@octokit/request-error": "^5.0.0", - "@octokit/types": "^11.1.0", + "@octokit/types": "^12.0.0", "is-plain-object": "^5.0.0", "universal-user-agent": "^6.0.0" }, @@ -452,12 +452,12 @@ } }, "node_modules/@octokit/request-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.0.tgz", - "integrity": "sha512-1ue0DH0Lif5iEqT52+Rf/hf0RmGO9NWFjrzmrkArpG9trFfDM/efx00BJHdLGuro4BR/gECxCU2Twf5OKrRFsQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", + "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", "dev": true, "dependencies": { - "@octokit/types": "^11.0.0", + "@octokit/types": "^12.0.0", "deprecation": "^2.0.0", "once": "^1.4.0" }, @@ -466,12 +466,12 @@ } }, "node_modules/@octokit/types": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-11.1.0.tgz", - "integrity": "sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.0.0.tgz", + "integrity": "sha512-EzD434aHTFifGudYAygnFlS1Tl6KhbTynEWELQXIbTY8Msvb5nEqTZIm7sbPEt4mQYLZwu3zPKVdeIrw0g7ovg==", "dev": true, "dependencies": { - "@octokit/openapi-types": "^18.0.0" + "@octokit/openapi-types": "^19.0.0" } }, "node_modules/@pkgr/utils": { @@ -566,15 +566,15 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.0.6.tgz", - "integrity": "sha512-GBGt9c3c2UdSvso4jcyQQSUpZA9hbfHqGQerZKN9WvVzCIkaBy8xkhOyiFVX08LjRHHT/H221SJNBLtuihX5iw==", + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.0.7.tgz", + "integrity": "sha512-SU3ayJ4/0TeIVyfCMLmuKoa4KvLclarPCmwY/zippm7sK95SwgWoFd8aFfAJIPGCRYnP3rfHRdYzphsrrNI3Cg==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", - "@octokit/plugin-paginate-rest": "^8.0.0", + "@octokit/plugin-paginate-rest": "^9.0.0", "@octokit/plugin-retry": "^6.0.0", - "@octokit/plugin-throttling": "^7.0.0", + "@octokit/plugin-throttling": "^8.0.0", "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "debug": "^4.3.4", @@ -744,9 +744,9 @@ "dev": true }, "node_modules/@types/lodash": { - "version": "4.14.198", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.198.tgz", - "integrity": "sha512-trNJ/vtMZYMLhfN45uLq4ShQSw0/S7xCTLLVM+WM1rmFpba/VS42jVUgaO3w/NOLiWR/09lnYk0yMaA/atdIsg==", + "version": "4.14.199", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.199.tgz", + "integrity": "sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==", "dev": true }, "node_modules/@types/minimatch": { @@ -756,15 +756,15 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.17.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.17.tgz", - "integrity": "sha512-cOxcXsQ2sxiwkykdJqvyFS+MLQPLvIdwh5l6gNg8qF6s+C7XSkEWOZjK+XhUZd+mYvHV/180g2cnCcIl4l06Pw==", + "version": "18.17.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.19.tgz", + "integrity": "sha512-+pMhShR3Or5GR0/sp4Da7FnhVmTalWm81M6MkEldbwjETSaPalw138Z4KdpQaistvqQxLB7Cy4xwYdxpbSOs9Q==", "dev": true }, "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", + "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", "dev": true }, "node_modules/@types/prettier": { @@ -1100,6 +1100,15 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/cheerio": { "version": "1.0.0-rc.12", "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", @@ -1589,9 +1598,9 @@ } }, "node_modules/detect-newline": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.0.tgz", - "integrity": "sha512-1aXUEPdfGdzVPFpzGJJNgq9o81bGg1s09uxTWsqBlo9PI332uyJRQq13+LK/UN4JfxJbFdCXonUFQ9R/p7yCtw==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-4.0.1.tgz", + "integrity": "sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==", "dev": true, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" @@ -1721,6 +1730,12 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", + "dev": true + }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -1734,56 +1749,18 @@ } }, "node_modules/env-ci": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-9.1.1.tgz", - "integrity": "sha512-Im2yEWeF4b2RAMAaWvGioXk6m0UNaIjD8hj28j2ij5ldnIFrDQT0+pzDvpbRkcjurhXhf/AsBKv8P2rtmGi9Aw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", + "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", "dev": true, "dependencies": { - "execa": "^7.0.0", + "execa": "^8.0.0", "java-properties": "^1.0.2" }, "engines": { - "node": "^16.14 || >=18" - } - }, - "node_modules/env-ci/node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/env-ci/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" + "node": "^18.17 || >=20.6.1" } }, - "node_modules/env-ci/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -2985,9 +2962,9 @@ "dev": true }, "node_modules/marked": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-5.1.2.tgz", - "integrity": "sha512-ahRPGXJpjMjwSOlBoTMZAK7ATXkli5qCPxZ21TG44rx1KEo44bii4ekgTDQPNRQ4Kh7JMb9Ub1PVk1NxRSsorg==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.0.3.tgz", + "integrity": "sha512-pI/k4nzBG1PEq1J3XFEHxVvjicfjl8rgaMaqclouGSMPhk7Q3Ejb2ZRxx/ZQOcQ1909HzVoWCFYq6oLgtL4BpQ==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -2997,23 +2974,23 @@ } }, "node_modules/marked-terminal": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-5.2.0.tgz", - "integrity": "sha512-Piv6yNwAQXGFjZSaiNljyNFw7jKDdGrw70FSbtxEyldLsyeuV5ZHm/1wW++kWbrOF1VPnUgYOhB2oLL0ZpnekA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.0.0.tgz", + "integrity": "sha512-6rruICvqRfA4N+Mvdc0UyDbLA0A0nI5omtARIlin3P2F+aNc3EbW91Rd9HTuD0v9qWyHmNIu8Bt40gAnPfldsg==", "dev": true, "dependencies": { "ansi-escapes": "^6.2.0", "cardinal": "^2.1.1", - "chalk": "^5.2.0", + "chalk": "^5.3.0", "cli-table3": "^0.6.3", - "node-emoji": "^1.11.0", - "supports-hyperlinks": "^2.3.0" + "node-emoji": "^2.1.0", + "supports-hyperlinks": "^3.0.0" }, "engines": { - "node": ">=14.13.1 || >=16.0.0" + "node": ">=16.0.0" }, "peerDependencies": { - "marked": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" + "marked": ">=1 <10" } }, "node_modules/memoizee": { @@ -3177,12 +3154,27 @@ "dev": true }, "node_modules/node-emoji": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz", - "integrity": "sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.0.tgz", + "integrity": "sha512-tcsBm9C6FmPN5Wo7OjFi9lgMyJjvkAeirmjR/ax8Ttfqy4N8PoFic26uqFTIgayHPNI5FH4ltUvfh9kHzwcK9A==", "dev": true, "dependencies": { - "lodash": "^4.17.21" + "@sindresorhus/is": "^3.1.2", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" + } + }, + "node_modules/node-emoji/node_modules/@sindresorhus/is": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.2.tgz", + "integrity": "sha512-JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, "node_modules/normalize-package-data": { @@ -7399,20 +7391,20 @@ "dev": true }, "node_modules/semantic-release": { - "version": "22.0.0", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.0.tgz", - "integrity": "sha512-WTD8zPxh+pyc/DrTALRHJ47p1XbKqi2AJljn5WkXgLFFIMSax4uu15u4ZEZaa7ftBo8cSajh16VeafgUu9DX8g==", + "version": "22.0.5", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.5.tgz", + "integrity": "sha512-ESCEQsZlBj1DWMA84RthaJzQHHnihoGk49s9nUxHfRNUNZelLE9JZrE94bHO2Y00EWb7iwrzr1OYhv5QNVmf8A==", "dev": true, "dependencies": { - "@semantic-release/commit-analyzer": "^11.0.0-beta.3", + "@semantic-release/commit-analyzer": "^11.0.0", "@semantic-release/error": "^4.0.0", "@semantic-release/github": "^9.0.0", "@semantic-release/npm": "^11.0.0", - "@semantic-release/release-notes-generator": "^12.0.0-beta.2", + "@semantic-release/release-notes-generator": "^12.0.0", "aggregate-error": "^5.0.0", "cosmiconfig": "^8.0.0", "debug": "^4.0.0", - "env-ci": "^9.0.0", + "env-ci": "^10.0.0", "execa": "^8.0.0", "figures": "^5.0.0", "find-versions": "^5.1.0", @@ -7421,8 +7413,8 @@ "hook-std": "^3.0.0", "hosted-git-info": "^7.0.0", "lodash-es": "^4.17.21", - "marked": "^5.0.0", - "marked-terminal": "^5.1.1", + "marked": "^9.0.0", + "marked-terminal": "^6.0.0", "micromatch": "^4.0.2", "p-each-series": "^3.0.0", "p-reduce": "^3.0.0", @@ -7634,6 +7626,18 @@ "node": ">=4" } }, + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "dev": true, + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", @@ -7724,9 +7728,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.13", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz", - "integrity": "sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==", + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", + "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", "dev": true }, "node_modules/split2": { @@ -7826,16 +7830,16 @@ } }, "node_modules/supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.0.0.tgz", + "integrity": "sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==", "dev": true, "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.18" } }, "node_modules/synckit": { @@ -8087,6 +8091,15 @@ "node": ">=0.8.0" } }, + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/unique-string": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", From 5abb0ce7ebb9312336d53681b9945112543b8cdb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 13:32:35 -0500 Subject: [PATCH 07/69] ci(action): update peter-evans/create-or-update-comment digest to ddff993 (#851) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/immediate-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index 77ea5d228..09e666d68 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -19,7 +19,7 @@ jobs: run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" - name: Respond to issue or PR - uses: peter-evans/create-or-update-comment@46da6c0d98504aed6fc429519a258b951f23f474 + uses: peter-evans/create-or-update-comment@ddff993e3c91296d410ace8836568b0e4aeada34 with: issue-number: ${{ steps.extract.outputs.NUMBER }} body: > From 5355239ddd393664969cda81c574c535cfa40360 Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Tue, 3 Oct 2023 09:16:16 -0500 Subject: [PATCH 08/69] ci(action): Workflows have changed (#852) Updates for workflows --- .github/workflows/add_to_octokit_project.yml | 2 +- .github/workflows/immediate-response.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml index 60b2818b6..6381aa5b8 100644 --- a/.github/workflows/add_to_octokit_project.yml +++ b/.github/workflows/add_to_octokit_project.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/add-to-project@v0.5.0 + - uses: actions/add-to-project@v0.4.0 with: project-url: https://github.com/orgs/octokit/projects/10 github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index 09e666d68..1a21a731e 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -19,7 +19,7 @@ jobs: run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" - name: Respond to issue or PR - uses: peter-evans/create-or-update-comment@ddff993e3c91296d410ace8836568b0e4aeada34 + uses: peter-evans/create-or-update-comment@v3 with: issue-number: ${{ steps.extract.outputs.NUMBER }} body: > From 726a0b4eb90fbca121491c16a9a2ea0982757e2e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 10:24:37 -0400 Subject: [PATCH 09/69] ci(action): update actions/add-to-project action to v0.5.0 (#853) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/add_to_octokit_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml index 6381aa5b8..60b2818b6 100644 --- a/.github/workflows/add_to_octokit_project.yml +++ b/.github/workflows/add_to_octokit_project.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/add-to-project@v0.4.0 + - uses: actions/add-to-project@v0.5.0 with: project-url: https://github.com/orgs/octokit/projects/10 github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} From 8b29aa468dbc4c0eaec0e128f4c62afcfa0325ab Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 20:57:45 -0700 Subject: [PATCH 10/69] build(deps): lock file maintenance (#854) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 206 +++++++++++++++++++++++----------------------- 1 file changed, 102 insertions(+), 104 deletions(-) diff --git a/package-lock.json b/package-lock.json index ce14a18ce..d944bb8e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -436,9 +436,9 @@ } }, "node_modules/@octokit/request": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.2.tgz", - "integrity": "sha512-A0RJJfzjlZQwb+39eDm5UM23dkxbp28WEG4p2ueH+Q2yY4p349aRK/vcUlEuIB//ggcrHJceoYYkBP/LYCoXEg==", + "version": "8.1.4", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.4.tgz", + "integrity": "sha512-M0aaFfpGPEKrg7XoA/gwgRvc9MSXHRO2Ioki1qrPDbl1e9YhjIwVoHE7HIKmv/m3idzldj//xBujcFNqGX6ENA==", "dev": true, "dependencies": { "@octokit/endpoint": "^9.0.0", @@ -566,9 +566,9 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.0.7", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.0.7.tgz", - "integrity": "sha512-SU3ayJ4/0TeIVyfCMLmuKoa4KvLclarPCmwY/zippm7sK95SwgWoFd8aFfAJIPGCRYnP3rfHRdYzphsrrNI3Cg==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.1.tgz", + "integrity": "sha512-fEn9uOe6jwWR6ro2Wh6YNBCBuZ5lRi8Myz+1j3KDTSt8OuUGlpVM4lFac/0bDrql2NOKrIEAMGCfWb9WMIdzIg==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", @@ -756,9 +756,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.17.19", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.19.tgz", - "integrity": "sha512-+pMhShR3Or5GR0/sp4Da7FnhVmTalWm81M6MkEldbwjETSaPalw138Z4KdpQaistvqQxLB7Cy4xwYdxpbSOs9Q==", + "version": "18.18.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.5.tgz", + "integrity": "sha512-4slmbtwV59ZxitY4ixUZdy1uRLf9eSIvBWPQxNjhHYWEtn0FryfKpyS2cvADYXTayWdKEIsJengncrVvkI4I6A==", "dev": true }, "node_modules/@types/normalize-package-data": { @@ -780,18 +780,18 @@ "dev": true }, "node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", + "version": "17.0.28", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.28.tgz", + "integrity": "sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==", "dev": true }, "node_modules/acorn": { @@ -1043,12 +1043,12 @@ } }, "node_modules/cacheable-request": { - "version": "10.2.13", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.13.tgz", - "integrity": "sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==", + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "dev": true, "dependencies": { - "@types/http-cache-semantics": "^4.0.1", + "@types/http-cache-semantics": "^4.0.2", "get-stream": "^6.0.1", "http-cache-semantics": "^4.1.1", "keyv": "^4.5.3", @@ -2041,12 +2041,6 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -2235,13 +2229,10 @@ } }, "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, "engines": { "node": ">= 0.4.0" } @@ -2826,9 +2817,9 @@ } }, "node_modules/keyv": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", - "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { "json-buffer": "3.0.1" @@ -2962,9 +2953,9 @@ "dev": true }, "node_modules/marked": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.0.3.tgz", - "integrity": "sha512-pI/k4nzBG1PEq1J3XFEHxVvjicfjl8rgaMaqclouGSMPhk7Q3Ejb2ZRxx/ZQOcQ1909HzVoWCFYq6oLgtL4BpQ==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.2.tgz", + "integrity": "sha512-qoKMJqK0w6vkLk8+KnKZAH6neUZSNaQqVZ/h2yZ9S7CbLuFHyS2viB0jnqcWF9UKjwsAbMrQtnQhdmdvOVOw9w==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -3205,9 +3196,9 @@ } }, "node_modules/npm": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.1.0.tgz", - "integrity": "sha512-pZ2xybXzNGbJFZEKNbPoEXsE38Xou9VTnxxBk+B3pz0ndsGCs7iWHoUCPSsISU2hjmkWfDkJo3bYKE8RDOg4eg==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.0.tgz", + "integrity": "sha512-Auyq6d4cfg/SY4URjZE2aePLOPzK4lUD+qyMxY/7HbxAvCnOCKtMlyLPcbLSOq9lhEGBZN800S1o+UmfjA5dTg==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3253,6 +3244,7 @@ "ms", "node-gyp", "nopt", + "normalize-package-data", "npm-audit-report", "npm-install-checks", "npm-package-arg", @@ -3268,7 +3260,9 @@ "qrcode-terminal", "read", "semver", + "spdx-expression-parse", "ssri", + "strip-ansi", "supports-color", "tar", "text-table", @@ -3281,8 +3275,8 @@ "dev": true, "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^7.1.0", - "@npmcli/config": "^7.2.0", + "@npmcli/arborist": "^7.2.0", + "@npmcli/config": "^8.0.0", "@npmcli/fs": "^3.1.0", "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", @@ -3299,34 +3293,35 @@ "columnify": "^1.6.0", "fastest-levenshtein": "^1.0.16", "fs-minipass": "^3.0.3", - "glob": "^10.3.3", + "glob": "^10.3.10", "graceful-fs": "^4.2.11", - "hosted-git-info": "^7.0.0", + "hosted-git-info": "^7.0.1", "ini": "^4.1.1", "init-package-json": "^6.0.0", "is-cidr": "^4.0.2", "json-parse-even-better-errors": "^3.0.0", - "libnpmaccess": "^8.0.0", - "libnpmdiff": "^6.0.1", - "libnpmexec": "^7.0.1", - "libnpmfund": "^4.1.1", + "libnpmaccess": "^8.0.1", + "libnpmdiff": "^6.0.2", + "libnpmexec": "^7.0.2", + "libnpmfund": "^5.0.0", "libnpmhook": "^10.0.0", - "libnpmorg": "^6.0.0", - "libnpmpack": "^6.0.1", - "libnpmpublish": "^9.0.0", + "libnpmorg": "^6.0.1", + "libnpmpack": "^6.0.2", + "libnpmpublish": "^9.0.1", "libnpmsearch": "^7.0.0", "libnpmteam": "^6.0.0", "libnpmversion": "^5.0.0", "make-fetch-happen": "^13.0.0", "minimatch": "^9.0.3", - "minipass": "^7.0.3", + "minipass": "^7.0.4", "minipass-pipeline": "^1.2.4", "ms": "^2.1.2", "node-gyp": "^9.4.0", "nopt": "^7.2.0", + "normalize-package-data": "^6.0.0", "npm-audit-report": "^5.0.0", "npm-install-checks": "^6.2.0", - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", "npm-profile": "^9.0.0", "npm-registry-fetch": "^16.0.0", @@ -3339,9 +3334,11 @@ "qrcode-terminal": "^0.12.0", "read": "^2.1.0", "semver": "^7.5.4", + "spdx-expression-parse": "^3.0.1", "ssri": "^10.0.5", + "strip-ansi": "^6.0.1", "supports-color": "^9.4.0", - "tar": "^6.1.15", + "tar": "^6.2.0", "text-table": "~0.2.0", "tiny-relative-date": "^1.3.0", "treeverse": "^3.0.0", @@ -3468,11 +3465,12 @@ "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/agent": { - "version": "2.1.1", + "version": "2.2.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { + "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "lru-cache": "^10.0.1", @@ -3535,7 +3533,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.1.0", + "version": "7.2.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3548,18 +3546,18 @@ "@npmcli/name-from-folder": "^2.0.0", "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", - "@npmcli/query": "^3.0.0", + "@npmcli/query": "^3.0.1", "@npmcli/run-script": "^7.0.1", "bin-links": "^4.0.1", "cacache": "^18.0.0", "common-ancestor-path": "^1.0.1", - "hosted-git-info": "^7.0.0", + "hosted-git-info": "^7.0.1", "json-parse-even-better-errors": "^3.0.0", "json-stringify-nice": "^1.1.4", "minimatch": "^9.0.0", "nopt": "^7.0.0", "npm-install-checks": "^6.2.0", - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", "npm-registry-fetch": "^16.0.0", "npmlog": "^7.0.1", @@ -3582,7 +3580,7 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "7.2.0", + "version": "8.0.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3597,7 +3595,7 @@ "walk-up-path": "^3.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/@npmcli/disparity-colors": { @@ -3738,7 +3736,7 @@ } }, "node_modules/npm/node_modules/@npmcli/query": { - "version": "3.0.0", + "version": "3.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4458,19 +4456,19 @@ } }, "node_modules/npm/node_modules/glob": { - "version": "10.3.3", + "version": "10.3.10", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", + "jackspeak": "^2.3.5", "minimatch": "^9.0.1", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", "path-scurry": "^1.10.1" }, "bin": { - "glob": "dist/cjs/src/bin.js" + "glob": "dist/esm/bin.mjs" }, "engines": { "node": ">=16 || 14 >=14.17" @@ -4504,7 +4502,7 @@ "license": "ISC" }, "node_modules/npm/node_modules/hosted-git-info": { - "version": "7.0.0", + "version": "7.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4724,7 +4722,7 @@ "license": "ISC" }, "node_modules/npm/node_modules/jackspeak": { - "version": "2.2.1", + "version": "2.3.6", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", @@ -4781,12 +4779,12 @@ "license": "MIT" }, "node_modules/npm/node_modules/libnpmaccess": { - "version": "8.0.0", + "version": "8.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "npm-registry-fetch": "^16.0.0" }, "engines": { @@ -4794,35 +4792,35 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.1", + "version": "6.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.1.0", + "@npmcli/arborist": "^7.2.0", "@npmcli/disparity-colors": "^3.0.0", "@npmcli/installed-package-contents": "^2.0.2", "binary-extensions": "^2.2.0", "diff": "^5.1.0", "minimatch": "^9.0.0", - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "pacote": "^17.0.4", - "tar": "^6.1.13" + "tar": "^6.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.1", + "version": "7.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.1.0", + "@npmcli/arborist": "^7.2.0", "@npmcli/run-script": "^7.0.1", "ci-info": "^3.7.1", - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "npmlog": "^7.0.1", "pacote": "^17.0.4", "proc-log": "^3.0.0", @@ -4836,15 +4834,15 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "4.1.1", + "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.1.0" + "@npmcli/arborist": "^7.2.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmhook": { @@ -4861,7 +4859,7 @@ } }, "node_modules/npm/node_modules/libnpmorg": { - "version": "6.0.0", + "version": "6.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4874,14 +4872,14 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.1", + "version": "6.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.1.0", + "@npmcli/arborist": "^7.2.0", "@npmcli/run-script": "^7.0.1", - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "pacote": "^17.0.4" }, "engines": { @@ -4889,14 +4887,14 @@ } }, "node_modules/npm/node_modules/libnpmpublish": { - "version": "9.0.0", + "version": "9.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "ci-info": "^3.6.1", "normalize-package-data": "^6.0.0", - "npm-package-arg": "^11.0.0", + "npm-package-arg": "^11.0.1", "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0", "semver": "^7.3.7", @@ -4995,7 +4993,7 @@ } }, "node_modules/npm/node_modules/minipass": { - "version": "7.0.3", + "version": "7.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -5564,7 +5562,7 @@ } }, "node_modules/npm/node_modules/npm-package-arg": { - "version": "11.0.0", + "version": "11.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -6248,7 +6246,7 @@ } }, "node_modules/npm/node_modules/tar": { - "version": "6.1.15", + "version": "6.2.0", "dev": true, "inBundle": true, "license": "ISC", @@ -6964,12 +6962,12 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.5.tgz", - "integrity": "sha512-glG71jE1gO3y5+JNAhC8X+4yrlN28rub6Aj461SKbaPie9RgMiHKcInH2Moi2VGOfkTXaEHBhg4uVMBqa+kBUA==", + "version": "2.4.6", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.6.tgz", + "integrity": "sha512-5JGfzkJRL0DLNyhwmiAV9mV0hZLHDwddFCs2lc9CNxOChpoWUQVe8K4qTMktmevmDlMpok2uT10nvHUyU59sNw==", "dev": true, "dependencies": { - "sort-package-json": "2.5.1", + "sort-package-json": "2.6.0", "synckit": "0.8.5" }, "peerDependencies": { @@ -7085,9 +7083,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.3.1.tgz", - "integrity": "sha512-pphNW/msgOUSkJbH58x8sqpq8uQj6b0ZKGxEsLKMUnGorRcDjrUaLS+39+/ub41JNTwrrMyJcUB8+YZs3mbwqw==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.4.0.tgz", + "integrity": "sha512-HT3RRs7sTfY22KuPQJkD/XjbTbxgP2Je5HPt6H6JEGvcjHd5Lqru75EbrP3tb4FYjNJ+DjLp+MNQTFQU0mhXNw==", "dev": true, "engines": { "node": ">=16" @@ -7146,9 +7144,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.3.1.tgz", - "integrity": "sha512-pphNW/msgOUSkJbH58x8sqpq8uQj6b0ZKGxEsLKMUnGorRcDjrUaLS+39+/ub41JNTwrrMyJcUB8+YZs3mbwqw==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.4.0.tgz", + "integrity": "sha512-HT3RRs7sTfY22KuPQJkD/XjbTbxgP2Je5HPt6H6JEGvcjHd5Lqru75EbrP3tb4FYjNJ+DjLp+MNQTFQU0mhXNw==", "dev": true, "engines": { "node": ">=16" @@ -7657,9 +7655,9 @@ "dev": true }, "node_modules/sort-package-json": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.5.1.tgz", - "integrity": "sha512-vx/KoZxm8YNMUqdlw7SGTfqR5pqZ/sUfgOuRtDILiOy/3AvzhAibyUe2cY3OpLs3oRSow9up4yLVtQaM24rbDQ==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.6.0.tgz", + "integrity": "sha512-XSQ+lY9bAYA8ZsoChcEoPlgcSMaheziEp1beox1JVxy1SV4F2jSq9+h2rJ+3mC/Dhu9Ius1DLnInD5AWcsDXZw==", "dev": true, "dependencies": { "detect-indent": "^7.0.1", @@ -7728,9 +7726,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.15", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", - "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", "dev": true }, "node_modules/split2": { From 5ebf7646cd822503342c0ebc056c30e4d6b4da6d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 09:35:40 -0500 Subject: [PATCH 11/69] ci(action): update actions/checkout digest to b4ffde6 (#855) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/prettier.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 8 ++++---- .github/workflows/update-prettier.yml | 2 +- .github/workflows/update.yml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index c9c791cc2..d86c431ec 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 5727f9168..282e62a79 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -7,7 +7,7 @@ jobs: lint_repo: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: token: ${{ secrets.OCTOKITBOT_PAT }} - uses: actions/setup-node@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5ec1d830..53c676f0f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: lts/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 885ef6008..dc9b649c2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: name: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -24,7 +24,7 @@ jobs: name: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -36,7 +36,7 @@ jobs: name: Do types need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: 18 @@ -52,7 +52,7 @@ jobs: name: Do examples need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/update-prettier.yml b/.github/workflows/update-prettier.yml index 3363499eb..68a78ae7b 100644 --- a/.github/workflows/update-prettier.yml +++ b/.github/workflows/update-prettier.yml @@ -7,7 +7,7 @@ jobs: update_prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: 18 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 353034bf9..f33b719f4 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -9,7 +9,7 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v3 with: node-version: 18 From 8081fb428171a2e562c2f9f1ff3121d18024e6f8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 12:17:59 -0700 Subject: [PATCH 12/69] ci(action): update actions/setup-node action to v4 (#856) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/prettier.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 8 ++++---- .github/workflows/update-prettier.yml | 2 +- .github/workflows/update.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 282e62a79..1e9e398f3 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: token: ${{ secrets.OCTOKITBOT_PAT }} - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 53c676f0f..58cf39842 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: lts/* cache: npm diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc9b649c2..7bfa7d92d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm diff --git a/.github/workflows/update-prettier.yml b/.github/workflows/update-prettier.yml index 68a78ae7b..f94288aff 100644 --- a/.github/workflows/update-prettier.yml +++ b/.github/workflows/update-prettier.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index f33b719f4..6d60ce2f5 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: 18 cache: npm From 5f720e0999e362c8956b67ca844e58857e927fb1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 20:34:51 -0700 Subject: [PATCH 13/69] chore(deps): update dependency @types/node to v20 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 19 ++++++++++++++----- package.json | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index d944bb8e7..dd32295b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@types/json-diff": "^1.0.0", "@types/json-schema": "^7.0.9", "@types/lodash": "^4.14.178", - "@types/node": "^18.0.0", + "@types/node": "^20.0.0", "@types/turndown": "^5.0.1", "@types/yargs": "^17.0.8", "ajv": "^8.9.0", @@ -756,10 +756,13 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.18.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.5.tgz", - "integrity": "sha512-4slmbtwV59ZxitY4ixUZdy1uRLf9eSIvBWPQxNjhHYWEtn0FryfKpyS2cvADYXTayWdKEIsJengncrVvkI4I6A==", - "dev": true + "version": "20.8.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", + "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", + "dev": true, + "dependencies": { + "undici-types": "~5.25.1" + } }, "node_modules/@types/normalize-package-data": { "version": "2.4.2", @@ -8089,6 +8092,12 @@ "node": ">=0.8.0" } }, + "node_modules/undici-types": { + "version": "5.25.3", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", + "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==", + "dev": true + }, "node_modules/unicode-emoji-modifier-base": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", diff --git a/package.json b/package.json index a796df092..fe68ae416 100644 --- a/package.json +++ b/package.json @@ -73,7 +73,7 @@ "@types/json-diff": "^1.0.0", "@types/json-schema": "^7.0.9", "@types/lodash": "^4.14.178", - "@types/node": "^18.0.0", + "@types/node": "^20.0.0", "@types/turndown": "^5.0.1", "@types/yargs": "^17.0.8", "ajv": "^8.9.0", From f4921abcf9a405487bcae9821745f7f9dbfc58ca Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:03:18 -0700 Subject: [PATCH 14/69] build(deps): lock file maintenance (#858) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 155 +++++++++++++++++++++++++--------------------- 1 file changed, 84 insertions(+), 71 deletions(-) diff --git a/package-lock.json b/package-lock.json index dd32295b8..1dbb6843a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -420,9 +420,9 @@ } }, "node_modules/@octokit/plugin-throttling": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.0.0.tgz", - "integrity": "sha512-OkMbHYUidj81q92YRkPzWmwXkEtsI3KOcSkNm763aqUOh9IEplyX05XjKAdZFANAvaYH0Q4JBZwu4h2VnPVXZA==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.0.1.tgz", + "integrity": "sha512-i373s7TgaoAOlzOepjUTvyMXqjBu9b26SvLyLD5onBdgexIOeu43yOH1e3z3VPAzbEyRfKDHcqfAsOyKl7Jtxg==", "dev": true, "dependencies": { "@octokit/types": "^12.0.0", @@ -707,9 +707,9 @@ "dev": true }, "node_modules/@types/cheerio": { - "version": "0.22.32", - "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.32.tgz", - "integrity": "sha512-4RrpCp5ufWTLb6/1RCOjazRhUM6DTD79l763det29n8kLmPB7XeN46cxlUf2GsSF+0g6CbWT5nYl8C/Gs15bdg==", + "version": "0.22.33", + "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.33.tgz", + "integrity": "sha512-XUlu2BK4q3xJsccRLK69m/cABZd7m60o+cDEPUTG6jTpuG2vqN35UioeF99MQ/HoSOEPq0Bgil8g3jtzE0oH9A==", "dev": true, "dependencies": { "@types/node": "*" @@ -726,27 +726,27 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.2.tgz", - "integrity": "sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz", + "integrity": "sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA==", "dev": true }, "node_modules/@types/json-diff": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.0.tgz", - "integrity": "sha512-dCXC1F73Sqriz2d8Wt/sP/DztE+rlfIRPxW9WSYheHp/l3gvkeSvM6l4vhm7t4Dgn8AJAxNKajx/eobbPdP6Wg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.1.tgz", + "integrity": "sha512-ikZFvf8Daw68CV6Ggawl0uz3UvisGrr4BNXhgLG25jLesuSUQVS2j7MYuZQfN5TLiBID+zAoyDsdwqmdgnr5Ow==", "dev": true }, "node_modules/@types/json-schema": { - "version": "7.0.13", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.13.tgz", - "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", + "version": "7.0.14", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.14.tgz", + "integrity": "sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==", "dev": true }, "node_modules/@types/lodash": { - "version": "4.14.199", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.199.tgz", - "integrity": "sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==", + "version": "4.14.200", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.200.tgz", + "integrity": "sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==", "dev": true }, "node_modules/@types/minimatch": { @@ -765,9 +765,9 @@ } }, "node_modules/@types/normalize-package-data": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", - "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz", + "integrity": "sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==", "dev": true }, "node_modules/@types/prettier": { @@ -777,24 +777,24 @@ "dev": true }, "node_modules/@types/turndown": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.2.tgz", - "integrity": "sha512-ghbjIyvMSQn/UGEuQJD6C4DfbokyYqGRhNAetWH02qnuRfvRZz9qTOG9e0RPkVqGsjv+YsjF3gRp7yFKvc/1PA==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.3.tgz", + "integrity": "sha512-2PCZA9g/dkeHIGTf6ESMOD3Gz5RMpDzODtvlBbkLAdtKa/yTQDAFudDEVolHjaBUnu8ugd8BeTCWk4x0STnqkA==", "dev": true }, "node_modules/@types/yargs": { - "version": "17.0.28", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.28.tgz", - "integrity": "sha512-N3e3fkS86hNhtk6BEnc0rj3zcehaxx8QWhCROJkqpl5Zaoi7nAic3jH8q94jVD3zu5LGk+PUB6KAiDmimYOEQw==", + "version": "17.0.29", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.29.tgz", + "integrity": "sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.1", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz", - "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==", + "version": "21.0.2", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.2.tgz", + "integrity": "sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==", "dev": true }, "node_modules/acorn": { @@ -2044,6 +2044,15 @@ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -2231,15 +2240,6 @@ "uglify-js": "^3.1.4" } }, - "node_modules/has": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", - "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2249,6 +2249,18 @@ "node": ">=8" } }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/heap": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/heap/-/heap-0.2.7.tgz", @@ -2455,12 +2467,12 @@ "dev": true }, "node_modules/is-core-module": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", - "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -3199,9 +3211,9 @@ } }, "node_modules/npm": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.0.tgz", - "integrity": "sha512-Auyq6d4cfg/SY4URjZE2aePLOPzK4lUD+qyMxY/7HbxAvCnOCKtMlyLPcbLSOq9lhEGBZN800S1o+UmfjA5dTg==", + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.1.tgz", + "integrity": "sha512-YVh8UDw5lR2bPS6rrS0aPG9ZXKDWeaeO/zMoZMp7g3Thrho9cqEnSrcvg4Pic2QhDAQptAynx5KgrPgCSRscqg==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3279,7 +3291,7 @@ "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^7.2.0", - "@npmcli/config": "^8.0.0", + "@npmcli/config": "^8.0.1", "@npmcli/fs": "^3.1.0", "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", @@ -3290,7 +3302,7 @@ "archy": "~1.0.0", "cacache": "^18.0.0", "chalk": "^5.3.0", - "ci-info": "^3.8.0", + "ci-info": "^3.9.0", "cli-columns": "^4.0.0", "cli-table3": "^0.6.3", "columnify": "^1.6.0", @@ -3323,11 +3335,11 @@ "nopt": "^7.2.0", "normalize-package-data": "^6.0.0", "npm-audit-report": "^5.0.0", - "npm-install-checks": "^6.2.0", + "npm-install-checks": "^6.3.0", "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", "npm-profile": "^9.0.0", - "npm-registry-fetch": "^16.0.0", + "npm-registry-fetch": "^16.1.0", "npm-user-validate": "^2.0.0", "npmlog": "^7.0.1", "p-map": "^4.0.0", @@ -3509,7 +3521,7 @@ } }, "node_modules/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent": { - "version": "7.0.1", + "version": "7.0.2", "dev": true, "inBundle": true, "license": "MIT", @@ -3522,12 +3534,12 @@ } }, "node_modules/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent": { - "version": "8.0.1", + "version": "8.0.2", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { - "agent-base": "^7.0.1", + "agent-base": "^7.0.2", "debug": "^4.3.4", "socks": "^2.7.1" }, @@ -3583,7 +3595,7 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.0.0", + "version": "8.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3950,7 +3962,7 @@ "license": "MIT" }, "node_modules/npm/node_modules/are-we-there-yet": { - "version": "4.0.0", + "version": "4.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3989,7 +4001,7 @@ "license": "MIT" }, "node_modules/npm/node_modules/bin-links": { - "version": "4.0.2", + "version": "4.0.3", "dev": true, "inBundle": true, "license": "ISC", @@ -4099,7 +4111,7 @@ } }, "node_modules/npm/node_modules/ci-info": { - "version": "3.8.0", + "version": "3.9.0", "dev": true, "funding": [ { @@ -4172,7 +4184,7 @@ } }, "node_modules/npm/node_modules/cmd-shim": { - "version": "6.0.1", + "version": "6.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4692,7 +4704,7 @@ } }, "node_modules/npm/node_modules/is-core-module": { - "version": "2.12.1", + "version": "2.13.0", "dev": true, "inBundle": true, "license": "MIT", @@ -5324,7 +5336,7 @@ } }, "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass": { - "version": "7.0.3", + "version": "7.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -5544,7 +5556,7 @@ } }, "node_modules/npm/node_modules/npm-install-checks": { - "version": "6.2.0", + "version": "6.3.0", "dev": true, "inBundle": true, "license": "BSD-2-Clause", @@ -5620,7 +5632,7 @@ } }, "node_modules/npm/node_modules/npm-registry-fetch": { - "version": "16.0.0", + "version": "16.1.0", "dev": true, "inBundle": true, "license": "ISC", @@ -5903,7 +5915,7 @@ } }, "node_modules/npm/node_modules/readable-stream": { - "version": "4.4.0", + "version": "4.4.2", "dev": true, "inBundle": true, "license": "MIT", @@ -5911,7 +5923,8 @@ "abort-controller": "^3.0.0", "buffer": "^6.0.3", "events": "^3.3.0", - "process": "^0.11.10" + "process": "^0.11.10", + "string_decoder": "^1.3.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -6156,7 +6169,7 @@ } }, "node_modules/npm/node_modules/spdx-license-ids": { - "version": "3.0.13", + "version": "3.0.16", "dev": true, "inBundle": true, "license": "CC0-1.0" @@ -7086,9 +7099,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.4.0.tgz", - "integrity": "sha512-HT3RRs7sTfY22KuPQJkD/XjbTbxgP2Je5HPt6H6JEGvcjHd5Lqru75EbrP3tb4FYjNJ+DjLp+MNQTFQU0mhXNw==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.5.0.tgz", + "integrity": "sha512-diLQivFzddJl4ylL3jxSkEc39Tpw7o1QeEHIPxVwryDK2lpB7Nqhzhuo6v5/Ls08Z0yPSAhsyAWlv1/H0ciNmw==", "dev": true, "engines": { "node": ">=16" @@ -7147,9 +7160,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.4.0.tgz", - "integrity": "sha512-HT3RRs7sTfY22KuPQJkD/XjbTbxgP2Je5HPt6H6JEGvcjHd5Lqru75EbrP3tb4FYjNJ+DjLp+MNQTFQU0mhXNw==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.5.0.tgz", + "integrity": "sha512-diLQivFzddJl4ylL3jxSkEc39Tpw7o1QeEHIPxVwryDK2lpB7Nqhzhuo6v5/Ls08Z0yPSAhsyAWlv1/H0ciNmw==", "dev": true, "engines": { "node": ">=16" From 2d680dc8856d670482f4a9acbe75dac0b0935719 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 09:34:27 -0700 Subject: [PATCH 15/69] build(deps): lock file maintenance (#859) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 84 +++++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1dbb6843a..9394e2d13 100644 --- a/package-lock.json +++ b/package-lock.json @@ -354,9 +354,9 @@ } }, "node_modules/@octokit/endpoint": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.1.tgz", - "integrity": "sha512-hRlOKAovtINHQPYHZlfyFwaM8OyetxeoC81lAkBy34uLb8exrZB50SQdeW3EROqiY9G9yxQTpp5OHTV54QD+vA==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.2.tgz", + "integrity": "sha512-qhKW8YLIi+Kmc92FQUFGr++DYtkx/1fBv+Thua6baqnjnOsgBYJDCvWZR1YcINuHGOEQt416WOfE+A/oG60NBQ==", "dev": true, "dependencies": { "@octokit/types": "^12.0.0", @@ -382,18 +382,18 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.0.0.tgz", - "integrity": "sha512-PclQ6JGMTE9iUStpzMkwLCISFn/wDeRjkZFIKALpvJQNBGwDoYYi2fFvuHwssoQ1rXI5mfh6jgTgWuddeUzfWw==", + "version": "19.0.2", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.0.2.tgz", + "integrity": "sha512-8li32fUDUeml/ACRp/njCWTsk5t17cfTM1jp9n08pBrqs5cDFJubtjsSnuz56r5Tad6jdEPJld7LxNp9dNcyjQ==", "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.0.0.tgz", - "integrity": "sha512-oIJzCpttmBTlEhBmRvb+b9rlnGpmFgDtZ0bB6nq39qIod6A5DP+7RkVLMOixIgRCYSHDTeayWqmiJ2SZ6xgfdw==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.2.tgz", + "integrity": "sha512-euDbNV6fxX6btsCDnZoZM4vw3zO1nj1Z7TskHAulO6mZ9lHoFTpwll6farf+wh31mlBabgU81bBYdflp0GLVAQ==", "dev": true, "dependencies": { - "@octokit/types": "^12.0.0" + "@octokit/types": "^12.1.1" }, "engines": { "node": ">= 18" @@ -420,9 +420,9 @@ } }, "node_modules/@octokit/plugin-throttling": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.0.1.tgz", - "integrity": "sha512-i373s7TgaoAOlzOepjUTvyMXqjBu9b26SvLyLD5onBdgexIOeu43yOH1e3z3VPAzbEyRfKDHcqfAsOyKl7Jtxg==", + "version": "8.1.2", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.2.tgz", + "integrity": "sha512-oFba+ioR6HGb0fgqxMta7Kpk/MdffUTuUxNY856l1nXPvh7Qggp8w4AksRx1SDA8SGd+4cbrpkY4k1J/Xz8nZQ==", "dev": true, "dependencies": { "@octokit/types": "^12.0.0", @@ -466,12 +466,12 @@ } }, "node_modules/@octokit/types": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.0.0.tgz", - "integrity": "sha512-EzD434aHTFifGudYAygnFlS1Tl6KhbTynEWELQXIbTY8Msvb5nEqTZIm7sbPEt4mQYLZwu3zPKVdeIrw0g7ovg==", + "version": "12.1.1", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.1.1.tgz", + "integrity": "sha512-qnJTldJ1NyGT5MTsCg/Zi+y2IFHZ1Jo5+njNCjJ9FcainV7LjuHgmB697kA0g4MjZeDAJsM3B45iqCVsCLVFZg==", "dev": true, "dependencies": { - "@octokit/openapi-types": "^19.0.0" + "@octokit/openapi-types": "^19.0.2" } }, "node_modules/@pkgr/utils": { @@ -756,12 +756,12 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.8.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.8.tgz", - "integrity": "sha512-YRsdVxq6OaLfmR9Hy816IMp33xOBjfyOgUd77ehqg96CFywxAPbDbXvAsuN2KVg2HOT8Eh6uAfU+l4WffwPVrQ==", + "version": "20.8.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.9.tgz", + "integrity": "sha512-UzykFsT3FhHb1h7yD4CA4YhBHq545JC0YnEz41xkipN88eKQtL6rSgocL5tbAP6Ola9Izm/Aw4Ora8He4x0BHg==", "dev": true, "dependencies": { - "undici-types": "~5.25.1" + "undici-types": "~5.26.4" } }, "node_modules/@types/normalize-package-data": { @@ -798,9 +798,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", - "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -810,9 +810,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", + "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", "dev": true, "engines": { "node": ">=0.4.0" @@ -2968,9 +2968,9 @@ "dev": true }, "node_modules/marked": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.2.tgz", - "integrity": "sha512-qoKMJqK0w6vkLk8+KnKZAH6neUZSNaQqVZ/h2yZ9S7CbLuFHyS2viB0jnqcWF9UKjwsAbMrQtnQhdmdvOVOw9w==", + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.3.tgz", + "integrity": "sha512-XPU/J7GzU/n4voCSw1VYggtr3W5C2OeGkwEbe5PIQdA8thaie2Qw+fig6iNidKNDokTNcyR4OE9fMK14P6rqPg==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -7099,9 +7099,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.5.0.tgz", - "integrity": "sha512-diLQivFzddJl4ylL3jxSkEc39Tpw7o1QeEHIPxVwryDK2lpB7Nqhzhuo6v5/Ls08Z0yPSAhsyAWlv1/H0ciNmw==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.6.0.tgz", + "integrity": "sha512-rLjWJzQFOq4xw7MgJrCZ6T1jIOvvYElXT12r+y0CC6u67hegDHaxcPqb2fZHOGlqxugGQPNB1EnTezjBetkwkw==", "dev": true, "engines": { "node": ">=16" @@ -7129,9 +7129,9 @@ } }, "node_modules/read-pkg/node_modules/parse-json": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.0.tgz", - "integrity": "sha512-ihtdrgbqdONYD156Ap6qTcaGcGdkdAxodO1wLqQ/j7HP1u2sFYppINiq4jyC8F+Nm+4fVufylCV00QmkTHkSUg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.1.tgz", + "integrity": "sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==", "dev": true, "dependencies": { "@babel/code-frame": "^7.21.4", @@ -7160,9 +7160,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.5.0.tgz", - "integrity": "sha512-diLQivFzddJl4ylL3jxSkEc39Tpw7o1QeEHIPxVwryDK2lpB7Nqhzhuo6v5/Ls08Z0yPSAhsyAWlv1/H0ciNmw==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.6.0.tgz", + "integrity": "sha512-rLjWJzQFOq4xw7MgJrCZ6T1jIOvvYElXT12r+y0CC6u67hegDHaxcPqb2fZHOGlqxugGQPNB1EnTezjBetkwkw==", "dev": true, "engines": { "node": ">=16" @@ -8106,9 +8106,9 @@ } }, "node_modules/undici-types": { - "version": "5.25.3", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", - "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==", + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", "dev": true }, "node_modules/unicode-emoji-modifier-base": { From 4f143d384f10254273d196e3cf3979d3ae45a80b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 08:45:07 -0800 Subject: [PATCH 16/69] build(deps): lock file maintenance (#860) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 902 ++++++++++------------------------------------ 1 file changed, 181 insertions(+), 721 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9394e2d13..1194de710 100644 --- a/package-lock.json +++ b/package-lock.json @@ -596,9 +596,9 @@ } }, "node_modules/@semantic-release/npm": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.0.tgz", - "integrity": "sha512-ozNCiPUp14Xp2rgeY7j96yFTEhDncLSWOJr0IAUr888+ax6fH5xgYkNVv08vpkV8C5GIXBgnGd9coRiOCD6oqQ==", + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.1.tgz", + "integrity": "sha512-nFcT0pgVwpXsPkzjqP3ObH+pILeN1AbYscCDuYwgZEPZukL+RsGhrtdT4HA1Gjb/y1bVbE90JNtMIcgRi5z/Fg==", "dev": true, "dependencies": { "@semantic-release/error": "^4.0.0", @@ -610,7 +610,7 @@ "normalize-url": "^8.0.0", "npm": "^10.0.0", "rc": "^1.2.8", - "read-pkg": "^8.0.0", + "read-pkg": "^9.0.0", "registry-auth-token": "^5.0.0", "semver": "^7.1.2", "tempy": "^3.0.0" @@ -623,9 +623,9 @@ } }, "node_modules/@semantic-release/release-notes-generator": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.0.0.tgz", - "integrity": "sha512-m7Ds8ComP1KJgA2Lke2xMwE1TOOU40U7AzP4lT8hJ2tUAeicziPz/1GeDFmRkTOkMFlfHvE6kuvMkvU+mIzIDQ==", + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.0.1.tgz", + "integrity": "sha512-/xsl+XXMsDJCQt7Jvvtx/saHDrgWAgqtB3Vjjt8pOqaMcjDLdbdeN6K+rV7hTnQYhnvbnL9FkloVsplyRqYGtA==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", @@ -637,7 +637,7 @@ "import-from": "^4.0.0", "into-stream": "^7.0.0", "lodash-es": "^4.17.21", - "read-pkg-up": "^10.0.0" + "read-pkg-up": "^11.0.0" }, "engines": { "node": "^18.17 || >=20.6.1" @@ -756,9 +756,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.8.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.9.tgz", - "integrity": "sha512-UzykFsT3FhHb1h7yD4CA4YhBHq545JC0YnEz41xkipN88eKQtL6rSgocL5tbAP6Ola9Izm/Aw4Ora8He4x0BHg==", + "version": "20.8.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.10.tgz", + "integrity": "sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1947,16 +1947,15 @@ } }, "node_modules/figures": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", - "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", + "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", "dev": true, "dependencies": { - "escape-string-regexp": "^5.0.0", - "is-unicode-supported": "^1.2.0" + "is-unicode-supported": "^2.0.0" }, "engines": { - "node": ">=14" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1975,16 +1974,24 @@ } }, "node_modules/find-up": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" + "locate-path": "^2.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=4" + } + }, + "node_modules/find-up-simple": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", + "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", + "dev": true, + "engines": { + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -2422,6 +2429,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/index-to-position": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.0.tgz", + "integrity": "sha512-I6PLk0E6Jk8t/W212xp9euPed30tIN9mYdslb0Vkd03hG9sd0pByboBdtIRL+Y/103JLp1alP3OuMgxfbIQyFw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", @@ -2611,12 +2630,12 @@ } }, "node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", + "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", "dev": true, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -2875,18 +2894,16 @@ } }, "node_modules/locate-path": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", - "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, "dependencies": { - "p-locate": "^6.0.0" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, "node_modules/lodash": { @@ -2968,9 +2985,9 @@ "dev": true }, "node_modules/marked": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.3.tgz", - "integrity": "sha512-XPU/J7GzU/n4voCSw1VYggtr3W5C2OeGkwEbe5PIQdA8thaie2Qw+fig6iNidKNDokTNcyR4OE9fMK14P6rqPg==", + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.5.tgz", + "integrity": "sha512-14QG3shv8Kg/xc0Yh6TNkMj90wXH9mmldi5941I2OevfJ/FQAFLEwtwU2/FfgSAOMlWHrEukWSGQf8MiVYNG2A==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -3211,9 +3228,9 @@ } }, "node_modules/npm": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.1.tgz", - "integrity": "sha512-YVh8UDw5lR2bPS6rrS0aPG9ZXKDWeaeO/zMoZMp7g3Thrho9cqEnSrcvg4Pic2QhDAQptAynx5KgrPgCSRscqg==", + "version": "10.2.3", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.3.tgz", + "integrity": "sha512-GbUui/rHTl0mW8HhJSn4A0Xg89yCR3I9otgJT1i0z1QBPOVlgbh6rlcUTpHT8Gut9O1SJjWRUU0nEcAymhG2tQ==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3290,13 +3307,13 @@ "dev": true, "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^7.2.0", + "@npmcli/arborist": "^7.2.1", "@npmcli/config": "^8.0.1", "@npmcli/fs": "^3.1.0", "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.1", + "@npmcli/run-script": "^7.0.2", "@sigstore/tuf": "^2.1.0", "abbrev": "^2.0.0", "archy": "~1.0.0", @@ -3316,22 +3333,22 @@ "is-cidr": "^4.0.2", "json-parse-even-better-errors": "^3.0.0", "libnpmaccess": "^8.0.1", - "libnpmdiff": "^6.0.2", - "libnpmexec": "^7.0.2", - "libnpmfund": "^5.0.0", + "libnpmdiff": "^6.0.3", + "libnpmexec": "^7.0.3", + "libnpmfund": "^5.0.1", "libnpmhook": "^10.0.0", "libnpmorg": "^6.0.1", - "libnpmpack": "^6.0.2", + "libnpmpack": "^6.0.3", "libnpmpublish": "^9.0.1", "libnpmsearch": "^7.0.0", "libnpmteam": "^6.0.0", - "libnpmversion": "^5.0.0", + "libnpmversion": "^5.0.1", "make-fetch-happen": "^13.0.0", "minimatch": "^9.0.3", "minipass": "^7.0.4", "minipass-pipeline": "^1.2.4", "ms": "^2.1.2", - "node-gyp": "^9.4.0", + "node-gyp": "^10.0.1", "nopt": "^7.2.0", "normalize-package-data": "^6.0.0", "npm-audit-report": "^5.0.0", @@ -3548,7 +3565,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.2.0", + "version": "7.2.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3562,7 +3579,7 @@ "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", "@npmcli/query": "^3.0.1", - "@npmcli/run-script": "^7.0.1", + "@npmcli/run-script": "^7.0.2", "bin-links": "^4.0.1", "cacache": "^18.0.0", "common-ancestor-path": "^1.0.1", @@ -3763,14 +3780,14 @@ } }, "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "7.0.1", + "version": "7.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/node-gyp": "^3.0.0", "@npmcli/promise-spawn": "^7.0.0", - "node-gyp": "^9.0.0", + "node-gyp": "^10.0.0", "read-package-json-fast": "^3.0.0", "which": "^4.0.0" }, @@ -3836,15 +3853,6 @@ "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@tootallnate/once": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, "node_modules/npm/node_modules/@tufjs/canonical-json": { "version": "2.0.0", "dev": true, @@ -3888,30 +3896,6 @@ "node": ">=6.5" } }, - "node_modules/npm/node_modules/agent-base": { - "version": "6.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/npm/node_modules/agentkeepalive": { - "version": "4.5.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "humanize-ms": "^1.2.1" - }, - "engines": { - "node": ">= 8.0.0" - } - }, "node_modules/npm/node_modules/aggregate-error": { "version": "3.1.0", "dev": true, @@ -4238,12 +4222,6 @@ "inBundle": true, "license": "ISC" }, - "node_modules/npm/node_modules/concat-map": { - "version": "0.0.1", - "dev": true, - "inBundle": true, - "license": "MIT" - }, "node_modules/npm/node_modules/console-control-strings": { "version": "1.1.0", "dev": true, @@ -4439,12 +4417,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/fs.realpath": { - "version": "1.0.0", - "dev": true, - "inBundle": true, - "license": "ISC" - }, "node_modules/npm/node_modules/function-bind": { "version": "1.1.1", "dev": true, @@ -4534,42 +4506,6 @@ "inBundle": true, "license": "BSD-2-Clause" }, - "node_modules/npm/node_modules/http-proxy-agent": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/npm/node_modules/https-proxy-agent": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/npm/node_modules/humanize-ms": { - "version": "1.2.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - } - }, "node_modules/npm/node_modules/iconv-lite": { "version": "0.6.3", "dev": true, @@ -4633,22 +4569,6 @@ "node": ">=8" } }, - "node_modules/npm/node_modules/inflight": { - "version": "1.0.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/npm/node_modules/inherits": { - "version": "2.0.4", - "dev": true, - "inBundle": true, - "license": "ISC" - }, "node_modules/npm/node_modules/ini": { "version": "4.1.1", "dev": true, @@ -4807,12 +4727,12 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.2", + "version": "6.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.2.0", + "@npmcli/arborist": "^7.2.1", "@npmcli/disparity-colors": "^3.0.0", "@npmcli/installed-package-contents": "^2.0.2", "binary-extensions": "^2.2.0", @@ -4827,13 +4747,13 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.2", + "version": "7.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.2.0", - "@npmcli/run-script": "^7.0.1", + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", "ci-info": "^3.7.1", "npm-package-arg": "^11.0.1", "npmlog": "^7.0.1", @@ -4849,12 +4769,12 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.0", + "version": "5.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.2.0" + "@npmcli/arborist": "^7.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -4887,13 +4807,13 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.2", + "version": "6.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^7.2.0", - "@npmcli/run-script": "^7.0.1", + "@npmcli/arborist": "^7.2.1", + "@npmcli/run-script": "^7.0.2", "npm-package-arg": "^11.0.1", "pacote": "^17.0.4" }, @@ -4946,13 +4866,13 @@ } }, "node_modules/npm/node_modules/libnpmversion": { - "version": "5.0.0", + "version": "5.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/git": "^5.0.3", - "@npmcli/run-script": "^7.0.1", + "@npmcli/run-script": "^7.0.2", "json-parse-even-better-errors": "^3.0.0", "proc-log": "^3.0.0", "semver": "^7.3.7" @@ -5213,394 +5133,126 @@ } }, "node_modules/npm/node_modules/node-gyp": { - "version": "9.4.0", + "version": "10.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", - "glob": "^7.1.4", + "glob": "^10.3.10", "graceful-fs": "^4.2.6", - "make-fetch-happen": "^11.0.3", - "nopt": "^6.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", "semver": "^7.3.5", "tar": "^6.1.2", - "which": "^2.0.2" + "which": "^4.0.0" }, "bin": { "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": "^12.13 || ^14.13 || >=16" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/abbrev": { - "version": "1.1.1", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/node-gyp/node_modules/are-we-there-yet": { - "version": "3.0.1", + "node_modules/npm/node_modules/nopt": { + "version": "7.2.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/brace-expansion": { - "version": "1.1.11", + "node_modules/npm/node_modules/normalize-package-data": { + "version": "6.0.0", "dev": true, "inBundle": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/cacache": { - "version": "17.1.4", + "node_modules/npm/node_modules/npm-audit-report": { + "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", - "dependencies": { - "@npmcli/fs": "^3.1.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^7.7.1", - "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/glob": { - "version": "10.3.3", + "node_modules/npm/node_modules/npm-bundled": { + "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.0.3", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/cjs/src/bin.js" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minimatch": { - "version": "9.0.3", + "node_modules/npm/node_modules/npm-install-checks": { + "version": "6.3.0", "dev": true, "inBundle": true, - "license": "ISC", + "license": "BSD-2-Clause", "dependencies": { - "brace-expansion": "^2.0.1" + "semver": "^7.1.1" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/cacache/node_modules/minipass": { - "version": "7.0.4", + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "3.0.1", "dev": true, "inBundle": true, "license": "ISC", "engines": { - "node": ">=16 || 14 >=14.17" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/gauge": { - "version": "4.0.4", + "node_modules/npm/node_modules/npm-package-arg": { + "version": "11.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", + "node_modules/npm/node_modules/npm-packlist": { + "version": "8.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "ignore-walk": "^6.0.0" }, "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/lru-cache": { - "version": "7.18.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/make-fetch-happen": { - "version": "11.1.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^17.0.0", - "http-cache-semantics": "^4.1.1", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^5.0.0", - "minipass-fetch": "^3.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^7.0.0", - "ssri": "^10.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/minipass": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/nopt": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "abbrev": "^1.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/npmlog": { - "version": "6.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/readable-stream": { - "version": "3.6.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/signal-exit": { - "version": "3.0.7", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/node-gyp/node_modules/which": { - "version": "2.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/nopt": { - "version": "7.2.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "abbrev": "^2.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/normalize-package-data": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/npm-audit-report": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/npm-bundled": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-normalize-package-bin": "^3.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/npm-install-checks": { - "version": "6.3.0", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "semver": "^7.1.1" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/npm-normalize-package-bin": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/npm-package-arg": { - "version": "11.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "hosted-git-info": "^7.0.0", - "proc-log": "^3.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/npm-packlist": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "ignore-walk": "^6.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/npm/node_modules/npm-pick-manifest": { @@ -5673,15 +5325,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/once": { - "version": "1.4.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, "node_modules/npm/node_modules/p-map": { "version": "4.0.0", "dev": true, @@ -5743,15 +5386,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/path-is-absolute": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/npm/node_modules/path-key": { "version": "3.1.1", "dev": true, @@ -5939,63 +5573,6 @@ "node": ">= 4" } }, - "node_modules/npm/node_modules/rimraf": { - "version": "3.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/brace-expansion": { - "version": "1.1.11", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/npm/node_modules/safe-buffer": { "version": "5.2.1", "dev": true, @@ -6128,20 +5705,6 @@ "npm": ">= 3.0.0" } }, - "node_modules/npm/node_modules/socks-proxy-agent": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - }, - "engines": { - "node": ">= 10" - } - }, "node_modules/npm/node_modules/spdx-correct": { "version": "3.2.0", "dev": true, @@ -6543,12 +6106,6 @@ "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/npm/node_modules/wrappy": { - "version": "1.0.2", - "dev": true, - "inBundle": true, - "license": "ISC" - }, "node_modules/npm/node_modules/write-file-atomic": { "version": "5.0.1", "dev": true, @@ -6677,33 +6234,27 @@ } }, "node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, "dependencies": { - "yocto-queue": "^1.0.0" + "p-try": "^1.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, "node_modules/p-locate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", - "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, "dependencies": { - "p-limit": "^4.0.0" + "p-limit": "^1.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, "node_modules/p-map": { @@ -6829,12 +6380,12 @@ } }, "node_modules/path-exists": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", - "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=4" } }, "node_modules/path-is-absolute": { @@ -6904,64 +6455,6 @@ "node": ">=4" } }, - "node_modules/pkg-conf/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dev": true, - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "dev": true, - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dev": true, - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/prettier": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", @@ -7008,9 +6501,9 @@ "dev": true }, "node_modules/punycode": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", - "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "engines": { "node": ">=6" @@ -7064,35 +6557,36 @@ } }, "node_modules/read-pkg": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-8.1.0.tgz", - "integrity": "sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.0.tgz", + "integrity": "sha512-SBoBio4xhJmlF4xs9IBliWZGSbDAnrOfQkLGL7xB+RYEUZNAN2LlNkzO45B7gc7c2dLMX987bhHAaJ/LG3efeQ==", "dev": true, "dependencies": { - "@types/normalize-package-data": "^2.4.1", + "@types/normalize-package-data": "^2.4.3", "normalize-package-data": "^6.0.0", - "parse-json": "^7.0.0", - "type-fest": "^4.2.0" + "parse-json": "^8.0.0", + "type-fest": "^4.6.0" }, "engines": { - "node": ">=16" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-pkg-up": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-10.1.0.tgz", - "integrity": "sha512-aNtBq4jR8NawpKJQldrQcSW9y/d+KWH4v24HWkHljOZ7H0av+YTGANBzRh9A5pw7v/bLVsLVPpOhJ7gHNVy8lA==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-11.0.0.tgz", + "integrity": "sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==", + "deprecated": "Renamed to read-package-up", "dev": true, "dependencies": { - "find-up": "^6.3.0", - "read-pkg": "^8.1.0", - "type-fest": "^4.2.0" + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" }, "engines": { - "node": ">=16" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -7119,41 +6613,19 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/read-pkg/node_modules/lines-and-columns": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.3.tgz", - "integrity": "sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, "node_modules/read-pkg/node_modules/parse-json": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-7.1.1.tgz", - "integrity": "sha512-SgOTCX/EZXtZxBE5eJ97P4yGM5n37BwRU+YMsH4vNzFqJV/oWFXXCmwFlgWUM4PrakybVOueJJ6pwHqSVhTFDw==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.0.0.tgz", + "integrity": "sha512-QtWnjHuun44MCLbq9f2rlcX9Bp9FSsPgQS9nuGcIm3J557b3/CvmYUhwChgJJDlMpuNN0sFRAogzQ8xMitD1oQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.21.4", - "error-ex": "^1.3.2", + "@babel/code-frame": "^7.22.13", + "index-to-position": "^0.1.0", "json-parse-even-better-errors": "^3.0.0", - "lines-and-columns": "^2.0.3", - "type-fest": "^3.8.0" + "type-fest": "^4.6.0" }, "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg/node_modules/parse-json/node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", - "dev": true, - "engines": { - "node": ">=14.16" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -7405,9 +6877,9 @@ "dev": true }, "node_modules/semantic-release": { - "version": "22.0.5", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.5.tgz", - "integrity": "sha512-ESCEQsZlBj1DWMA84RthaJzQHHnihoGk49s9nUxHfRNUNZelLE9JZrE94bHO2Y00EWb7iwrzr1OYhv5QNVmf8A==", + "version": "22.0.7", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.7.tgz", + "integrity": "sha512-Stx23Hjn7iU8GOAlhG3pHlR7AoNEahj9q7lKBP0rdK2BasGtJ4AWYh3zm1u3SCMuFiA8y4CE/Gu4RGKau1WiaQ==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", @@ -7420,7 +6892,7 @@ "debug": "^4.0.0", "env-ci": "^10.0.0", "execa": "^8.0.0", - "figures": "^5.0.0", + "figures": "^6.0.0", "find-versions": "^5.1.0", "get-stream": "^6.0.0", "git-log-parser": "^1.2.0", @@ -7432,7 +6904,7 @@ "micromatch": "^4.0.2", "p-each-series": "^3.0.0", "p-reduce": "^3.0.0", - "read-pkg-up": "^10.0.0", + "read-pkg-up": "^11.0.0", "resolve-from": "^5.0.0", "semver": "^7.3.2", "semver-diff": "^4.0.0", @@ -8136,15 +7608,15 @@ } }, "node_modules/universal-user-agent": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz", - "integrity": "sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", "dev": true }, "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "engines": { "node": ">= 10.0.0" @@ -8302,18 +7774,6 @@ "engines": { "node": ">=6" } - }, - "node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } } } } From f0bdffb15e47053e60bed58666810dfc73498642 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 12 Nov 2023 19:26:58 -0800 Subject: [PATCH 17/69] chore(deps): update dependency prettier to v3.1.0 * chore(deps): update dependency prettier to v3.1.0 * style: prettier --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Create or Update Pull Request Action --- bin/utils/argv.mts | 16 ++++++++-------- lib/check-or-update-webhooks.mts | 16 ++++++++-------- package-lock.json | 8 ++++---- package.json | 2 +- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/bin/utils/argv.mts b/bin/utils/argv.mts index b5c9e86ec..fd11f57d8 100644 --- a/bin/utils/argv.mts +++ b/bin/utils/argv.mts @@ -6,10 +6,10 @@ import { capitalize } from "./index.mjs"; type Join = T extends [] ? "" : T extends [string] - ? `${T[0]}` - : T extends [string, ...infer U] - ? `${T[0]}${D}${Join}` - : string; + ? `${T[0]}` + : T extends [string, ...infer U] + ? `${T[0]}${D}${Join}` + : string; type CapitalizeIf< Condition extends boolean, @@ -23,10 +23,10 @@ type SplitCamel< > = string extends S ? string[] : S extends "" - ? [] - : S extends `${infer T}${D}${infer U}` - ? [CapitalizeIf, ...SplitCamel] - : [CapitalizeIf]; + ? [] + : S extends `${infer T}${D}${infer U}` + ? [CapitalizeIf, ...SplitCamel] + : [CapitalizeIf]; type Camelize = S extends string ? Join, ""> : S; diff --git a/lib/check-or-update-webhooks.mts b/lib/check-or-update-webhooks.mts index 4adf62676..7e3987da4 100644 --- a/lib/check-or-update-webhooks.mts +++ b/lib/check-or-update-webhooks.mts @@ -54,14 +54,14 @@ export const checkOrUpdateWebhooks = async ({ `ghes-${ghe.replace(".", "")}`, ] : githubAE - ? [ - "https://docs.github.com/en/github-ae@latest/developers/webhooks-and-events/webhooks/webhook-events-and-payloads", - "github.ae", - ] - : [ - "https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/webhooks/webhook-events-and-payloads", - "api.github.com", - ]; + ? [ + "https://docs.github.com/en/github-ae@latest/developers/webhooks-and-events/webhooks/webhook-events-and-payloads", + "github.ae", + ] + : [ + "https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/webhooks/webhook-events-and-payloads", + "api.github.com", + ]; const currentWebhooks = JSON.parse( readFileSync(`./payload-examples/${folderName}/index.json`).toString(), diff --git a/package-lock.json b/package-lock.json index 1194de710..51c2bf92b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^13.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.0.3", + "prettier": "3.1.0", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^22.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6456,9 +6456,9 @@ } }, "node_modules/prettier": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", - "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", + "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index fe68ae416..a8eb7337b 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^13.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.0.3", + "prettier": "3.1.0", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^22.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", From f9902470fc8b2187a57515cb083009de9bc685ea Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Mon, 13 Nov 2023 17:40:17 -0500 Subject: [PATCH 18/69] build: fix scripts Node 20 compat (#863) This is an issue with how ts-node hooks into the import process due to a breaking change made in NodeJS 20 See https://github.com/TypeStrong/ts-node/issues/1997 for more details Fixes #862 --- bin/extract-common-schema.mts | 2 +- package.json | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bin/extract-common-schema.mts b/bin/extract-common-schema.mts index d75254704..e43d3cf3c 100755 --- a/bin/extract-common-schema.mts +++ b/bin/extract-common-schema.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S ts-node-transpile-only --esms +#!/usr/bin/env -S ts-node-transpile-only --esm import { strict as assert } from "assert"; import fs from "fs"; diff --git a/package.json b/package.json index a8eb7337b..c5504961d 100644 --- a/package.json +++ b/package.json @@ -11,21 +11,21 @@ "main": "index.json", "files": [], "scripts": { - "build": "ts-node --esm -T bin/octokit-webhooks.mts check --cached", + "build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-webhooks.mts check --cached", "build:all": "npm run -s build:webhooks && npm run -s build:schema && npm run -s build:types", - "build:schema": "ts-node --esm -T bin/octokit-schema.mts", - "build:types": "ts-node --esm -T bin/octokit-types.mts", - "build:webhooks": "ts-node --esm -T bin/octokit-webhooks.mts update", + "build:schema": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-schema.mts", + "build:types": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-types.mts", + "build:webhooks": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-webhooks.mts update", "lint": "prettier --check '{bin,lib}/**/*.ts' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{mts,md,json,d.ts}' 'test.mts'", "lint:fix": "prettier --write '{bin,lib}/**/*.{ts,mts}' '*.{md,json}' 'bin/docs/*.md' '{payload-examples,payload-schemas,payload-types}/**/*.{mts,md,json,d.ts}' 'test.mts'", - "octokit-schema": "ts-node -T bin/octokit-schema.mts", - "octokit-webhooks": "ts-node -T bin/octokit-webhooks.mts", + "octokit-schema": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-schema.mts", + "octokit-webhooks": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/octokit-webhooks.mts", "pretest": "npm run -s lint", - "test": "npm run build && npm run build:schema && npm run validate -- --continue-on-error && ts-node --esm -T test.mts", + "test": "npm run build && npm run build:schema && npm run validate -- --continue-on-error && node --no-warnings=ExperimentalWarning --loader ts-node/esm test.mts", "typecheck": "tsc -p . --noEmit", "validate": "npm run -s validate:payloads && npm run -s validate:schema", - "validate:payloads": "ts-node --esm -T bin/validate-payload-examples.mts", - "validate:schema": "ts-node --esm -T bin/validate-schema.mts" + "validate:payloads": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/validate-payload-examples.mts", + "validate:schema": "node --no-warnings=ExperimentalWarning --loader ts-node/esm bin/validate-schema.mts" }, "prettier": {}, "release": { From e215d2bccb37b86184d76ec15e22f5f6a97ce715 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 19:29:38 -0800 Subject: [PATCH 19/69] build(deps): lock file maintenance (#864) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 283 +++++++++++++++++++++++++++++----------------- 1 file changed, 182 insertions(+), 101 deletions(-) diff --git a/package-lock.json b/package-lock.json index 51c2bf92b..2d6f7a273 100644 --- a/package-lock.json +++ b/package-lock.json @@ -388,12 +388,12 @@ "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.2.tgz", - "integrity": "sha512-euDbNV6fxX6btsCDnZoZM4vw3zO1nj1Z7TskHAulO6mZ9lHoFTpwll6farf+wh31mlBabgU81bBYdflp0GLVAQ==", + "version": "9.1.4", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.4.tgz", + "integrity": "sha512-MvZx4WvfhBnt7PtH5XE7HORsO7bBk4er1FgRIUr1qJ89NR2I6bWjGyKsxk8z42FPQ34hFQm0Baanh4gzdZR4gQ==", "dev": true, "dependencies": { - "@octokit/types": "^12.1.1" + "@octokit/types": "^12.3.0" }, "engines": { "node": ">= 18" @@ -436,9 +436,9 @@ } }, "node_modules/@octokit/request": { - "version": "8.1.4", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.4.tgz", - "integrity": "sha512-M0aaFfpGPEKrg7XoA/gwgRvc9MSXHRO2Ioki1qrPDbl1e9YhjIwVoHE7HIKmv/m3idzldj//xBujcFNqGX6ENA==", + "version": "8.1.5", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.5.tgz", + "integrity": "sha512-zVKbNbX1xUluD9ZR4/tPs1yuYrK9xeh5fGZUXA6u04XGsTvomg0YO8/ZUC0FqAd49hAOEMFPAVUTh+2lBhOhLA==", "dev": true, "dependencies": { "@octokit/endpoint": "^9.0.0", @@ -466,9 +466,9 @@ } }, "node_modules/@octokit/types": { - "version": "12.1.1", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.1.1.tgz", - "integrity": "sha512-qnJTldJ1NyGT5MTsCg/Zi+y2IFHZ1Jo5+njNCjJ9FcainV7LjuHgmB697kA0g4MjZeDAJsM3B45iqCVsCLVFZg==", + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.3.0.tgz", + "integrity": "sha512-nJ8X2HRr234q3w/FcovDlA+ttUU4m1eJAourvfUUtwAWeqL8AsyRqfnLvVnYn3NFbUnsmzQCzLNdFerPwdmcDQ==", "dev": true, "dependencies": { "@octokit/openapi-types": "^19.0.2" @@ -536,16 +536,16 @@ } }, "node_modules/@semantic-release/commit-analyzer": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.0.0.tgz", - "integrity": "sha512-uEXyf4Z0AWJuxI9TbSQP5kkIYqus1/E1NcmE7pIv6d6/m/5EJcNWAGR4FOo34vrV26FhEaRVkxFfYzp/M7BKIg==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", + "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", "conventional-commits-filter": "^4.0.0", "conventional-commits-parser": "^5.0.0", "debug": "^4.0.0", - "import-from": "^4.0.0", + "import-from-esm": "^1.0.3", "lodash-es": "^4.17.21", "micromatch": "^4.0.2" }, @@ -566,9 +566,9 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.1.tgz", - "integrity": "sha512-fEn9uOe6jwWR6ro2Wh6YNBCBuZ5lRi8Myz+1j3KDTSt8OuUGlpVM4lFac/0bDrql2NOKrIEAMGCfWb9WMIdzIg==", + "version": "9.2.3", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.3.tgz", + "integrity": "sha512-FAjXb1F84CVI6IG8fWi+XS9ErYD+s3MHkP03zBa3+GyUrV4kqwYu/WPppIciHxujGFR51SAWPkOY5rnH6ZlrxA==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", @@ -579,7 +579,7 @@ "aggregate-error": "^5.0.0", "debug": "^4.3.4", "dir-glob": "^3.0.1", - "globby": "^13.1.4", + "globby": "^14.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "issue-parser": "^6.0.0", @@ -623,9 +623,9 @@ } }, "node_modules/@semantic-release/release-notes-generator": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.0.1.tgz", - "integrity": "sha512-/xsl+XXMsDJCQt7Jvvtx/saHDrgWAgqtB3Vjjt8pOqaMcjDLdbdeN6K+rV7hTnQYhnvbnL9FkloVsplyRqYGtA==", + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", + "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", @@ -634,7 +634,7 @@ "conventional-commits-parser": "^5.0.0", "debug": "^4.0.0", "get-stream": "^7.0.0", - "import-from": "^4.0.0", + "import-from-esm": "^1.0.3", "into-stream": "^7.0.0", "lodash-es": "^4.17.21", "read-pkg-up": "^11.0.0" @@ -670,6 +670,18 @@ "url": "https://github.com/sindresorhus/is?sponsor=1" } }, + "node_modules/@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@szmarczak/http-timer": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", @@ -707,9 +719,9 @@ "dev": true }, "node_modules/@types/cheerio": { - "version": "0.22.33", - "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.33.tgz", - "integrity": "sha512-XUlu2BK4q3xJsccRLK69m/cABZd7m60o+cDEPUTG6jTpuG2vqN35UioeF99MQ/HoSOEPq0Bgil8g3jtzE0oH9A==", + "version": "0.22.34", + "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.34.tgz", + "integrity": "sha512-uoi5gQGpH5vdNrGOexnNm+19YZLdIRMF/IW8V6w1kIeoXaO1m2mVUMV4dl76tvRRKoIp9d/Z97ZYeIE4lacEsA==", "dev": true, "dependencies": { "@types/node": "*" @@ -726,27 +738,27 @@ } }, "node_modules/@types/http-cache-semantics": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz", - "integrity": "sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", "dev": true }, "node_modules/@types/json-diff": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.1.tgz", - "integrity": "sha512-ikZFvf8Daw68CV6Ggawl0uz3UvisGrr4BNXhgLG25jLesuSUQVS2j7MYuZQfN5TLiBID+zAoyDsdwqmdgnr5Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.2.tgz", + "integrity": "sha512-XsYtsD5ih3imV3W+e2/ick1rMqs1ERG2uW3EJPPgF6PndPmf+sci2PtR3wOd7u4Di2wn3gU/EPql/2AYdKqqDw==", "dev": true }, "node_modules/@types/json-schema": { - "version": "7.0.14", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.14.tgz", - "integrity": "sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==", + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true }, "node_modules/@types/lodash": { - "version": "4.14.200", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.200.tgz", - "integrity": "sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==", + "version": "4.14.201", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.201.tgz", + "integrity": "sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==", "dev": true }, "node_modules/@types/minimatch": { @@ -756,18 +768,18 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.8.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.10.tgz", - "integrity": "sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==", + "version": "20.9.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", + "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" } }, "node_modules/@types/normalize-package-data": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.3.tgz", - "integrity": "sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, "node_modules/@types/prettier": { @@ -777,24 +789,24 @@ "dev": true }, "node_modules/@types/turndown": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.3.tgz", - "integrity": "sha512-2PCZA9g/dkeHIGTf6ESMOD3Gz5RMpDzODtvlBbkLAdtKa/yTQDAFudDEVolHjaBUnu8ugd8BeTCWk4x0STnqkA==", + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/turndown/-/turndown-5.0.4.tgz", + "integrity": "sha512-28GI33lCCkU4SGH1GvjDhFgOVr+Tym4PXGBIU1buJUa6xQolniPArtUT+kv42RR2N9MsMLInkr904Aq+ESHBJg==", "dev": true }, "node_modules/@types/yargs": { - "version": "17.0.29", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.29.tgz", - "integrity": "sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==", + "version": "17.0.31", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.31.tgz", + "integrity": "sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==", "dev": true, "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { - "version": "21.0.2", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.2.tgz", - "integrity": "sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==", + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true }, "node_modules/acorn": { @@ -1922,9 +1934,9 @@ "dev": true }, "node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -2177,19 +2189,32 @@ } }, "node_modules/globby": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", - "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", "dev": true, "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, + "engines": { + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -2337,9 +2362,9 @@ } }, "node_modules/http2-wrapper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "dev": true, "dependencies": { "quick-lru": "^5.1.1", @@ -2405,16 +2430,26 @@ "node": ">=4" } }, - "node_modules/import-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-4.0.0.tgz", - "integrity": "sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==", + "node_modules/import-from-esm": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.2.1.tgz", + "integrity": "sha512-Nly5Ab75rWZmOwtMa0B0NQNnHGcHOQ2zkU/bVENwK2lbPq+kamPDqNKNJ0hF7w7lR/ETD5nGgJq0XbofsZpYCA==", "dev": true, - "engines": { - "node": ">=12.2" + "dependencies": { + "import-meta-resolve": "^4.0.0" }, + "engines": { + "node": ">=16.20" + } + }, + "node_modules/import-meta-resolve": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.0.0.tgz", + "integrity": "sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==", + "dev": true, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, "node_modules/indent-string": { @@ -2430,9 +2465,9 @@ } }, "node_modules/index-to-position": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.0.tgz", - "integrity": "sha512-I6PLk0E6Jk8t/W212xp9euPed30tIN9mYdslb0Vkd03hG9sd0pByboBdtIRL+Y/103JLp1alP3OuMgxfbIQyFw==", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", + "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", "dev": true, "engines": { "node": ">=18" @@ -2961,10 +2996,13 @@ } }, "node_modules/lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz", + "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==", "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, "engines": { "node": "14 || >=16.14" } @@ -2985,9 +3023,9 @@ "dev": true }, "node_modules/marked": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.5.tgz", - "integrity": "sha512-14QG3shv8Kg/xc0Yh6TNkMj90wXH9mmldi5941I2OevfJ/FQAFLEwtwU2/FfgSAOMlWHrEukWSGQf8MiVYNG2A==", + "version": "9.1.6", + "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", + "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -2997,9 +3035,9 @@ } }, "node_modules/marked-terminal": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.0.0.tgz", - "integrity": "sha512-6rruICvqRfA4N+Mvdc0UyDbLA0A0nI5omtARIlin3P2F+aNc3EbW91Rd9HTuD0v9qWyHmNIu8Bt40gAnPfldsg==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.1.0.tgz", + "integrity": "sha512-QaCSF6NV82oo6K0szEnmc65ooDeW0T/Adcyf0fcW+Hto2GT1VADFg8dn1zaeHqzj65fqDH1hMNChGNRaC/lbkA==", "dev": true, "dependencies": { "ansi-escapes": "^6.2.0", @@ -3013,7 +3051,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "marked": ">=1 <10" + "marked": ">=1 <11" } }, "node_modules/memoizee": { @@ -6593,9 +6631,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.6.0.tgz", - "integrity": "sha512-rLjWJzQFOq4xw7MgJrCZ6T1jIOvvYElXT12r+y0CC6u67hegDHaxcPqb2fZHOGlqxugGQPNB1EnTezjBetkwkw==", + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.7.1.tgz", + "integrity": "sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==", "dev": true, "engines": { "node": ">=16" @@ -6614,15 +6652,15 @@ } }, "node_modules/read-pkg/node_modules/parse-json": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.0.0.tgz", - "integrity": "sha512-QtWnjHuun44MCLbq9f2rlcX9Bp9FSsPgQS9nuGcIm3J557b3/CvmYUhwChgJJDlMpuNN0sFRAogzQ8xMitD1oQ==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.0.1.tgz", + "integrity": "sha512-soKUg/q/8bcfuF3+plsbYldE74cVEVEPSC1BUPIGTaX1byXdz6Fo+CVYBdH0jj/5xWsFrNRksl11QkBgHqPQeQ==", "dev": true, "dependencies": { "@babel/code-frame": "^7.22.13", - "index-to-position": "^0.1.0", + "index-to-position": "^0.1.1", "json-parse-even-better-errors": "^3.0.0", - "type-fest": "^4.6.0" + "type-fest": "^4.7.1" }, "engines": { "node": ">=18" @@ -6632,9 +6670,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.6.0.tgz", - "integrity": "sha512-rLjWJzQFOq4xw7MgJrCZ6T1jIOvvYElXT12r+y0CC6u67hegDHaxcPqb2fZHOGlqxugGQPNB1EnTezjBetkwkw==", + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.7.1.tgz", + "integrity": "sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==", "dev": true, "engines": { "node": ">=16" @@ -7125,12 +7163,12 @@ } }, "node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -7172,6 +7210,37 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/sort-package-json/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sort-package-json/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -7592,6 +7661,18 @@ "node": ">=4" } }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/unique-string": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", From c193468f2ebc747c87a074d2e424badb7546ce8b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:13:37 +0100 Subject: [PATCH 20/69] build(deps): lock file maintenance (#865) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 502 ++++++++++++++++++++++++++++------------------ 1 file changed, 308 insertions(+), 194 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2d6f7a273..3b33f7faa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -420,12 +420,12 @@ } }, "node_modules/@octokit/plugin-throttling": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.2.tgz", - "integrity": "sha512-oFba+ioR6HGb0fgqxMta7Kpk/MdffUTuUxNY856l1nXPvh7Qggp8w4AksRx1SDA8SGd+4cbrpkY4k1J/Xz8nZQ==", + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", + "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", "dev": true, "dependencies": { - "@octokit/types": "^12.0.0", + "@octokit/types": "^12.2.0", "bottleneck": "^2.15.3" }, "engines": { @@ -768,9 +768,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", - "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", + "version": "20.9.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.2.tgz", + "integrity": "sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -2397,9 +2397,9 @@ } }, "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", "dev": true, "engines": { "node": ">= 4" @@ -2431,11 +2431,12 @@ } }, "node_modules/import-from-esm": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.2.1.tgz", - "integrity": "sha512-Nly5Ab75rWZmOwtMa0B0NQNnHGcHOQ2zkU/bVENwK2lbPq+kamPDqNKNJ0hF7w7lR/ETD5nGgJq0XbofsZpYCA==", + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-1.3.3.tgz", + "integrity": "sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==", "dev": true, "dependencies": { + "debug": "^4.3.4", "import-meta-resolve": "^4.0.0" }, "engines": { @@ -2996,13 +2997,10 @@ } }, "node_modules/lru-cache": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz", - "integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==", + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.3.tgz", + "integrity": "sha512-B7gr+F6MkqB3uzINHXNctGieGsRTMwIBgxkp0yq/5BwcuDzD4A8wQpHQW6vDAm1uKSLQghmRdD9sKqf2vJ1cEg==", "dev": true, - "dependencies": { - "semver": "^7.3.5" - }, "engines": { "node": "14 || >=16.14" } @@ -3215,24 +3213,27 @@ "dev": true }, "node_modules/node-emoji": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.0.tgz", - "integrity": "sha512-tcsBm9C6FmPN5Wo7OjFi9lgMyJjvkAeirmjR/ax8Ttfqy4N8PoFic26uqFTIgayHPNI5FH4ltUvfh9kHzwcK9A==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.1.tgz", + "integrity": "sha512-+fyi06+Z9LARCwnTmUF1sRPVQFhGlIpuye3zwlzMN8bIKou6l7k1rGV8WVOEu9EQnRLfoVOYj/p107u0CoQoKA==", "dev": true, "dependencies": { - "@sindresorhus/is": "^3.1.2", + "@sindresorhus/is": "^6.0.0", "char-regex": "^1.0.2", "emojilib": "^2.4.0", "skin-tone": "^2.0.0" + }, + "engines": { + "node": ">=18" } }, "node_modules/node-emoji/node_modules/@sindresorhus/is": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-3.1.2.tgz", - "integrity": "sha512-JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-6.1.0.tgz", + "integrity": "sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==", "dev": true, "engines": { - "node": ">=10" + "node": ">=16" }, "funding": { "url": "https://github.com/sindresorhus/is?sponsor=1" @@ -3266,9 +3267,9 @@ } }, "node_modules/npm": { - "version": "10.2.3", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.3.tgz", - "integrity": "sha512-GbUui/rHTl0mW8HhJSn4A0Xg89yCR3I9otgJT1i0z1QBPOVlgbh6rlcUTpHT8Gut9O1SJjWRUU0nEcAymhG2tQ==", + "version": "10.2.4", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.4.tgz", + "integrity": "sha512-umEuYneVEYO9KoEEI8n2sSGmNQeqco/3BSeacRlqIkCzw4E7XGtYSWMeJobxzr6hZ2n9cM+u5TsMTcC5bAgoWA==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3346,18 +3347,18 @@ "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^7.2.1", - "@npmcli/config": "^8.0.1", + "@npmcli/config": "^8.0.2", "@npmcli/fs": "^3.1.0", "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.0", "@npmcli/run-script": "^7.0.2", - "@sigstore/tuf": "^2.1.0", + "@sigstore/tuf": "^2.2.0", "abbrev": "^2.0.0", "archy": "~1.0.0", "cacache": "^18.0.0", "chalk": "^5.3.0", - "ci-info": "^3.9.0", + "ci-info": "^4.0.0", "cli-columns": "^4.0.0", "cli-table3": "^0.6.3", "columnify": "^1.6.0", @@ -3368,16 +3369,16 @@ "hosted-git-info": "^7.0.1", "ini": "^4.1.1", "init-package-json": "^6.0.0", - "is-cidr": "^4.0.2", + "is-cidr": "^5.0.3", "json-parse-even-better-errors": "^3.0.0", "libnpmaccess": "^8.0.1", "libnpmdiff": "^6.0.3", - "libnpmexec": "^7.0.3", + "libnpmexec": "^7.0.4", "libnpmfund": "^5.0.1", "libnpmhook": "^10.0.0", "libnpmorg": "^6.0.1", "libnpmpack": "^6.0.3", - "libnpmpublish": "^9.0.1", + "libnpmpublish": "^9.0.2", "libnpmsearch": "^7.0.0", "libnpmteam": "^6.0.0", "libnpmversion": "^5.0.1", @@ -3406,7 +3407,7 @@ "semver": "^7.5.4", "spdx-expression-parse": "^3.0.1", "ssri": "^10.0.5", - "strip-ansi": "^6.0.1", + "strip-ansi": "^7.1.0", "supports-color": "^9.4.0", "tar": "^6.2.0", "text-table": "~0.2.0", @@ -3478,18 +3479,6 @@ "node": ">=12" } }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", "dev": true, @@ -3513,21 +3502,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/npm/node_modules/@isaacs/string-locale-compare": { "version": "1.1.0", "dev": true, @@ -3550,58 +3524,6 @@ "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/@npmcli/agent/node_modules/agent-base": { - "version": "7.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/@npmcli/agent/node_modules/http-proxy-agent": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/@npmcli/agent/node_modules/https-proxy-agent": { - "version": "7.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/@npmcli/agent/node_modules/socks-proxy-agent": { - "version": "8.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - }, - "engines": { - "node": ">= 14" - } - }, "node_modules/npm/node_modules/@npmcli/arborist": { "version": "7.2.1", "dev": true, @@ -3650,13 +3572,13 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.0.1", + "version": "8.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/map-workspaces": "^3.0.2", - "ci-info": "^3.8.0", + "ci-info": "^4.0.0", "ini": "^4.1.0", "nopt": "^7.0.0", "proc-log": "^3.0.0", @@ -3680,6 +3602,21 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/npm/node_modules/@npmcli/fs": { "version": "3.1.0", "dev": true, @@ -3865,7 +3802,7 @@ } }, "node_modules/npm/node_modules/@sigstore/sign": { - "version": "2.1.0", + "version": "2.2.0", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3879,7 +3816,7 @@ } }, "node_modules/npm/node_modules/@sigstore/tuf": { - "version": "2.1.0", + "version": "2.2.0", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3934,6 +3871,18 @@ "node": ">=6.5" } }, + "node_modules/npm/node_modules/agent-base": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/npm/node_modules/aggregate-error": { "version": "3.1.0", "dev": true, @@ -3948,24 +3897,24 @@ } }, "node_modules/npm/node_modules/ansi-regex": { - "version": "5.0.1", + "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/npm/node_modules/ansi-styles": { - "version": "4.3.0", + "version": "6.2.1", "dev": true, "inBundle": true, "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" @@ -4133,7 +4082,7 @@ } }, "node_modules/npm/node_modules/ci-info": { - "version": "3.9.0", + "version": "4.0.0", "dev": true, "funding": [ { @@ -4148,15 +4097,15 @@ } }, "node_modules/npm/node_modules/cidr-regex": { - "version": "3.1.1", + "version": "4.0.3", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { - "ip-regex": "^4.1.0" + "ip-regex": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=14" } }, "node_modules/npm/node_modules/clean-stack": { @@ -4181,6 +4130,27 @@ "node": ">= 10" } }, + "node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/npm/node_modules/cli-table3": { "version": "0.6.3", "dev": true, @@ -4254,6 +4224,27 @@ "node": ">=8.0.0" } }, + "node_modules/npm/node_modules/columnify/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/columnify/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/npm/node_modules/common-ancestor-path": { "version": "1.0.1", "dev": true, @@ -4456,10 +4447,13 @@ } }, "node_modules/npm/node_modules/function-bind": { - "version": "1.1.1", + "version": "1.1.2", "dev": true, "inBundle": true, - "license": "MIT" + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/npm/node_modules/gauge": { "version": "5.0.1", @@ -4480,6 +4474,27 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/npm/node_modules/gauge/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/gauge/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/npm/node_modules/glob": { "version": "10.3.10", "dev": true, @@ -4508,24 +4523,24 @@ "inBundle": true, "license": "ISC" }, - "node_modules/npm/node_modules/has": { - "version": "1.0.3", + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hasown": { + "version": "2.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { - "function-bind": "^1.1.1" + "function-bind": "^1.1.2" }, "engines": { - "node": ">= 0.4.0" + "node": ">= 0.4" } }, - "node_modules/npm/node_modules/has-unicode": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "ISC" - }, "node_modules/npm/node_modules/hosted-git-info": { "version": "7.0.1", "dev": true, @@ -4544,6 +4559,32 @@ "inBundle": true, "license": "BSD-2-Clause" }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "7.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/npm/node_modules/iconv-lite": { "version": "0.6.3", "dev": true, @@ -4641,33 +4682,36 @@ "license": "MIT" }, "node_modules/npm/node_modules/ip-regex": { - "version": "4.3.0", + "version": "5.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/is-cidr": { - "version": "4.0.2", + "version": "5.0.3", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { - "cidr-regex": "^3.1.1" + "cidr-regex": "4.0.3" }, "engines": { - "node": ">=10" + "node": ">=14" } }, "node_modules/npm/node_modules/is-core-module": { - "version": "2.13.0", + "version": "2.13.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { - "has": "^1.0.3" + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4785,14 +4829,14 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.3", + "version": "7.0.4", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/arborist": "^7.2.1", "@npmcli/run-script": "^7.0.2", - "ci-info": "^3.7.1", + "ci-info": "^4.0.0", "npm-package-arg": "^11.0.1", "npmlog": "^7.0.1", "pacote": "^17.0.4", @@ -4860,12 +4904,12 @@ } }, "node_modules/npm/node_modules/libnpmpublish": { - "version": "9.0.1", + "version": "9.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "ci-info": "^3.6.1", + "ci-info": "^4.0.0", "normalize-package-data": "^6.0.0", "npm-package-arg": "^11.0.1", "npm-registry-fetch": "^16.0.0", @@ -4920,10 +4964,13 @@ } }, "node_modules/npm/node_modules/lru-cache": { - "version": "10.0.1", + "version": "10.0.2", "dev": true, "inBundle": true, "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, "engines": { "node": "14 || >=16.14" } @@ -5693,7 +5740,7 @@ } }, "node_modules/npm/node_modules/signal-exit": { - "version": "4.0.2", + "version": "4.1.0", "dev": true, "inBundle": true, "license": "ISC", @@ -5743,6 +5790,20 @@ "npm": ">= 3.0.0" } }, + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/npm/node_modules/spdx-correct": { "version": "3.2.0", "dev": true, @@ -5825,7 +5886,16 @@ "node": ">=8" } }, - "node_modules/npm/node_modules/strip-ansi": { + "node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi": { "version": "6.0.1", "dev": true, "inBundle": true, @@ -5837,6 +5907,42 @@ "node": ">=8" } }, + "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/npm/node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", @@ -5850,6 +5956,15 @@ "node": ">=8" } }, + "node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/npm/node_modules/supports-color": { "version": "9.4.0", "dev": true, @@ -6082,30 +6197,42 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": ">=8" } }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", "dev": true, "inBundle": true, "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { "version": "9.2.2", "dev": true, @@ -6129,21 +6256,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/npm/node_modules/write-file-atomic": { "version": "5.0.1", "dev": true, @@ -6595,15 +6707,16 @@ } }, "node_modules/read-pkg": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.0.tgz", - "integrity": "sha512-SBoBio4xhJmlF4xs9IBliWZGSbDAnrOfQkLGL7xB+RYEUZNAN2LlNkzO45B7gc7c2dLMX987bhHAaJ/LG3efeQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, "dependencies": { "@types/normalize-package-data": "^2.4.3", "normalize-package-data": "^6.0.0", "parse-json": "^8.0.0", - "type-fest": "^4.6.0" + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" }, "engines": { "node": ">=18" @@ -6631,9 +6744,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.7.1.tgz", - "integrity": "sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.1.tgz", + "integrity": "sha512-ShaaYnjf+0etG8W/FumARKMjjIToy/haCaTjN2dvcewOSoNqCQzdgG7m2JVOlM5qndGTHjkvsrWZs+k/2Z7E0Q==", "dev": true, "engines": { "node": ">=16" @@ -6670,9 +6783,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.7.1.tgz", - "integrity": "sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==", + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.1.tgz", + "integrity": "sha512-ShaaYnjf+0etG8W/FumARKMjjIToy/haCaTjN2dvcewOSoNqCQzdgG7m2JVOlM5qndGTHjkvsrWZs+k/2Z7E0Q==", "dev": true, "engines": { "node": ">=16" @@ -6915,9 +7028,9 @@ "dev": true }, "node_modules/semantic-release": { - "version": "22.0.7", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.7.tgz", - "integrity": "sha512-Stx23Hjn7iU8GOAlhG3pHlR7AoNEahj9q7lKBP0rdK2BasGtJ4AWYh3zm1u3SCMuFiA8y4CE/Gu4RGKau1WiaQ==", + "version": "22.0.8", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.8.tgz", + "integrity": "sha512-55rb31jygqIYsGU/rY+gXXm2fnxBIWo9azOjxbqKsPnq7p70zwZ5v+xnD7TxJC+zvS3sy1eHLGXYWCaX3WI76A==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", @@ -6936,6 +7049,7 @@ "git-log-parser": "^1.2.0", "hook-std": "^3.0.0", "hosted-git-info": "^7.0.0", + "import-from-esm": "^1.3.1", "lodash-es": "^4.17.21", "marked": "^9.0.0", "marked-terminal": "^6.0.0", From 069751617a9b4476ef1b6b73bd28c4d48cc0b102 Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Wed, 22 Nov 2023 14:36:47 -0600 Subject: [PATCH 21/69] don't run immediate response on Actions- or octokitbot-driven changes (#866) Updates for workflows --- .github/workflows/immediate-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index 1a21a731e..d3a3cda45 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -11,7 +11,7 @@ on: - opened jobs: respond-to-issue: - if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }} + if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' && github.actor != 'githubactions[bot]' && github.actor != 'octokitbot' }} runs-on: ubuntu-latest steps: - name: Determine issue or PR number From 734ff42d1982629b6261a7e4ed8f141924b1ed9f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 09:13:36 -0600 Subject: [PATCH 22/69] build(deps): lock file maintenance (#867) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 131 +++++++++++++++++++--------------------------- 1 file changed, 55 insertions(+), 76 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3b33f7faa..92938d417 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,12 +34,12 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", + "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", "dev": true, "dependencies": { - "@babel/highlight": "^7.22.13", + "@babel/highlight": "^7.23.4", "chalk": "^2.4.2" }, "engines": { @@ -127,9 +127,9 @@ } }, "node_modules/@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", @@ -336,9 +336,9 @@ } }, "node_modules/@octokit/core": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.1.tgz", - "integrity": "sha512-lyeeeZyESFo+ffI801SaBKmCfsvarO+dgV8/0gD8u1d87clbEdWsP5yC+dSj3zLhb2eIf5SJrn6vDz9AheETHw==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", + "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", "dev": true, "dependencies": { "@octokit/auth-token": "^4.0.0", @@ -354,13 +354,12 @@ } }, "node_modules/@octokit/endpoint": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.2.tgz", - "integrity": "sha512-qhKW8YLIi+Kmc92FQUFGr++DYtkx/1fBv+Thua6baqnjnOsgBYJDCvWZR1YcINuHGOEQt416WOfE+A/oG60NBQ==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.3.tgz", + "integrity": "sha512-TXVX57fJV7SA6LvRkeXPIOBr8AKvKDlhwNVBP/26O9DjIFi+CkYZGFLP9WtPdVOicRIhqGHxBCC6Fdj5AWWGgQ==", "dev": true, "dependencies": { "@octokit/types": "^12.0.0", - "is-plain-object": "^5.0.0", "universal-user-agent": "^6.0.0" }, "engines": { @@ -436,15 +435,14 @@ } }, "node_modules/@octokit/request": { - "version": "8.1.5", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.5.tgz", - "integrity": "sha512-zVKbNbX1xUluD9ZR4/tPs1yuYrK9xeh5fGZUXA6u04XGsTvomg0YO8/ZUC0FqAd49hAOEMFPAVUTh+2lBhOhLA==", + "version": "8.1.6", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", + "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", "dev": true, "dependencies": { "@octokit/endpoint": "^9.0.0", "@octokit/request-error": "^5.0.0", "@octokit/types": "^12.0.0", - "is-plain-object": "^5.0.0", "universal-user-agent": "^6.0.0" }, "engines": { @@ -719,9 +717,9 @@ "dev": true }, "node_modules/@types/cheerio": { - "version": "0.22.34", - "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.34.tgz", - "integrity": "sha512-uoi5gQGpH5vdNrGOexnNm+19YZLdIRMF/IW8V6w1kIeoXaO1m2mVUMV4dl76tvRRKoIp9d/Z97ZYeIE4lacEsA==", + "version": "0.22.35", + "resolved": "https://registry.npmjs.org/@types/cheerio/-/cheerio-0.22.35.tgz", + "integrity": "sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==", "dev": true, "dependencies": { "@types/node": "*" @@ -756,9 +754,9 @@ "dev": true }, "node_modules/@types/lodash": { - "version": "4.14.201", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.201.tgz", - "integrity": "sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==", + "version": "4.14.202", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", + "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==", "dev": true }, "node_modules/@types/minimatch": { @@ -768,9 +766,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.9.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.2.tgz", - "integrity": "sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==", + "version": "20.10.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.0.tgz", + "integrity": "sha512-D0WfRmU9TQ8I9PFx9Yc+EBHw+vSpIub4IDvQivcp26PtPrdMGAq5SDcpXEo/epqa/DXotVpekHiLNTg3iaKXBQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -795,9 +793,9 @@ "dev": true }, "node_modules/@types/yargs": { - "version": "17.0.31", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.31.tgz", - "integrity": "sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==", + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", "dev": true, "dependencies": { "@types/yargs-parser": "*" @@ -979,9 +977,9 @@ "dev": true }, "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "dev": true, "engines": { "node": ">=0.6" @@ -2626,15 +2624,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-promise": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", @@ -2997,9 +2986,9 @@ } }, "node_modules/lru-cache": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.3.tgz", - "integrity": "sha512-B7gr+F6MkqB3uzINHXNctGieGsRTMwIBgxkp0yq/5BwcuDzD4A8wQpHQW6vDAm1uKSLQghmRdD9sKqf2vJ1cEg==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -3213,12 +3202,12 @@ "dev": true }, "node_modules/node-emoji": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.1.tgz", - "integrity": "sha512-+fyi06+Z9LARCwnTmUF1sRPVQFhGlIpuye3zwlzMN8bIKou6l7k1rGV8WVOEu9EQnRLfoVOYj/p107u0CoQoKA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", + "integrity": "sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==", "dev": true, "dependencies": { - "@sindresorhus/is": "^6.0.0", + "@sindresorhus/is": "^4.6.0", "char-regex": "^1.0.2", "emojilib": "^2.4.0", "skin-tone": "^2.0.0" @@ -3228,12 +3217,12 @@ } }, "node_modules/node-emoji/node_modules/@sindresorhus/is": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-6.1.0.tgz", - "integrity": "sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==", + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", "dev": true, "engines": { - "node": ">=16" + "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/is?sponsor=1" @@ -6744,9 +6733,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.1.tgz", - "integrity": "sha512-ShaaYnjf+0etG8W/FumARKMjjIToy/haCaTjN2dvcewOSoNqCQzdgG7m2JVOlM5qndGTHjkvsrWZs+k/2Z7E0Q==", + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.2.tgz", + "integrity": "sha512-mcvrCjixA5166hSrUoJgGb9gBQN4loMYyj9zxuMs/66ibHNEFd5JXMw37YVDx58L4/QID9jIzdTBB4mDwDJ6KQ==", "dev": true, "engines": { "node": ">=16" @@ -6755,24 +6744,14 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.0.tgz", - "integrity": "sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, "node_modules/read-pkg/node_modules/parse-json": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.0.1.tgz", - "integrity": "sha512-soKUg/q/8bcfuF3+plsbYldE74cVEVEPSC1BUPIGTaX1byXdz6Fo+CVYBdH0jj/5xWsFrNRksl11QkBgHqPQeQ==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", + "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, "dependencies": { "@babel/code-frame": "^7.22.13", - "index-to-position": "^0.1.1", - "json-parse-even-better-errors": "^3.0.0", + "index-to-position": "^0.1.2", "type-fest": "^4.7.1" }, "engines": { @@ -6783,9 +6762,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.1.tgz", - "integrity": "sha512-ShaaYnjf+0etG8W/FumARKMjjIToy/haCaTjN2dvcewOSoNqCQzdgG7m2JVOlM5qndGTHjkvsrWZs+k/2Z7E0Q==", + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.2.tgz", + "integrity": "sha512-mcvrCjixA5166hSrUoJgGb9gBQN4loMYyj9zxuMs/66ibHNEFd5JXMw37YVDx58L4/QID9jIzdTBB4mDwDJ6KQ==", "dev": true, "engines": { "node": ">=16" @@ -7735,9 +7714,9 @@ } }, "node_modules/typescript": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", - "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", "dev": true, "bin": { "tsc": "bin/tsc", From 5ff33760b06c0d3c7ff974c1d6165221d8be02f0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 30 Nov 2023 10:15:33 -0500 Subject: [PATCH 23/69] chore(deps): update dependency got to v14 (#868) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 58 ++++++++++++++++++++++++++++------------------- package.json | 2 +- 2 files changed, 36 insertions(+), 24 deletions(-) diff --git a/package-lock.json b/package-lock.json index 92938d417..1a19a047d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,7 +20,7 @@ "ajv-formats": "^2.1.1", "cheerio": "^1.0.0-rc.10", "fast-deep-equal": "^3.1.3", - "got": "^13.0.0", + "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", "prettier": "3.1.0", @@ -657,12 +657,12 @@ } }, "node_modules/@sindresorhus/is": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", - "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-6.1.0.tgz", + "integrity": "sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==", "dev": true, "engines": { - "node": ">=14.16" + "node": ">=16" }, "funding": { "url": "https://github.com/sindresorhus/is?sponsor=1" @@ -2023,12 +2023,12 @@ } }, "node_modules/form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.0.2.tgz", + "integrity": "sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==", "dev": true, "engines": { - "node": ">= 14.17" + "node": ">= 18" } }, "node_modules/from2": { @@ -2219,30 +2219,42 @@ } }, "node_modules/got": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", - "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-14.0.0.tgz", + "integrity": "sha512-X01vTgaX9SwaMq5DfImvS+3GMQFFs5HtrrlS9CuzUSzkxAf/tWGEyynuI+Qy7BjciMczZGjyVSmawYbP4eYhYA==", "dev": true, "dependencies": { - "@sindresorhus/is": "^5.2.0", + "@sindresorhus/is": "^6.1.0", "@szmarczak/http-timer": "^5.0.1", "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", + "cacheable-request": "^10.2.14", "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", + "form-data-encoder": "^4.0.2", + "get-stream": "^8.0.1", + "http2-wrapper": "^2.2.1", "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", + "p-cancelable": "^4.0.1", "responselike": "^3.0.0" }, "engines": { - "node": ">=16" + "node": ">=20" }, "funding": { "url": "https://github.com/sindresorhus/got?sponsor=1" } }, + "node_modules/got/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -6328,12 +6340,12 @@ } }, "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-4.0.1.tgz", + "integrity": "sha512-wBowNApzd45EIKdO1LaU+LrMBwAcjfPaYtVzV3lmfM3gf8Z4CHZsiIqlM8TZZ8okYvh5A1cP6gTfCRQtwUpaUg==", "dev": true, "engines": { - "node": ">=12.20" + "node": ">=14.16" } }, "node_modules/p-each-series": { diff --git a/package.json b/package.json index c5504961d..2add0cb8c 100644 --- a/package.json +++ b/package.json @@ -80,7 +80,7 @@ "ajv-formats": "^2.1.1", "cheerio": "^1.0.0-rc.10", "fast-deep-equal": "^3.1.3", - "got": "^13.0.0", + "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", "prettier": "3.1.0", From 9d6495d5b93cd9ed4d4b8c6f2cc5f5fb3b2a14ef Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Dec 2023 09:33:05 -0800 Subject: [PATCH 24/69] build(deps): lock file maintenance (#869) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 161 +++++++++++++++++++++++++++------------------- 1 file changed, 94 insertions(+), 67 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1a19a047d..8477d797f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,9 +34,9 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.4.tgz", - "integrity": "sha512-r1IONyb6Ia+jYR2vvIDhdWdlTGhqbBoFqLTQidzZ4kepUFH15ejXvFHxCVbtl7BOXIudsIubf4E81xeA3h3IXA==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dev": true, "dependencies": { "@babel/highlight": "^7.23.4", @@ -354,9 +354,9 @@ } }, "node_modules/@octokit/endpoint": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.3.tgz", - "integrity": "sha512-TXVX57fJV7SA6LvRkeXPIOBr8AKvKDlhwNVBP/26O9DjIFi+CkYZGFLP9WtPdVOicRIhqGHxBCC6Fdj5AWWGgQ==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", + "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", "dev": true, "dependencies": { "@octokit/types": "^12.0.0", @@ -381,9 +381,9 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "19.0.2", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.0.2.tgz", - "integrity": "sha512-8li32fUDUeml/ACRp/njCWTsk5t17cfTM1jp9n08pBrqs5cDFJubtjsSnuz56r5Tad6jdEPJld7LxNp9dNcyjQ==", + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", + "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { @@ -564,9 +564,9 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.2.3", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.3.tgz", - "integrity": "sha512-FAjXb1F84CVI6IG8fWi+XS9ErYD+s3MHkP03zBa3+GyUrV4kqwYu/WPppIciHxujGFR51SAWPkOY5rnH6ZlrxA==", + "version": "9.2.4", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.4.tgz", + "integrity": "sha512-VMzqiuSLhHc0/1Q8M/FmWnOaclh5aXL2pQWceldWBYSWLNzQu8GOR4bkGl57ciUtvm+MCMi4FaStZxSDJGEfUg==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", @@ -582,7 +582,7 @@ "https-proxy-agent": "^7.0.0", "issue-parser": "^6.0.0", "lodash-es": "^4.17.21", - "mime": "^3.0.0", + "mime": "^4.0.0", "p-filter": "^3.0.0", "url-join": "^5.0.0" }, @@ -766,9 +766,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.10.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.0.tgz", - "integrity": "sha512-D0WfRmU9TQ8I9PFx9Yc+EBHw+vSpIub4IDvQivcp26PtPrdMGAq5SDcpXEo/epqa/DXotVpekHiLNTg3iaKXBQ==", + "version": "20.10.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.3.tgz", + "integrity": "sha512-XJavIpZqiXID5Yxnxv3RUDKTN5b81ddNC3ecsA0SoFXz/QU8OGBwZGMomiq0zw+uuqbL/krztv/DINAQ/EV4gg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1073,6 +1073,18 @@ "node": ">=14.16" } }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/call-me-maybe": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", @@ -1559,6 +1571,18 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/default-browser/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/default-browser/node_modules/human-signals": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", @@ -1898,18 +1922,6 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/execa/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/ext": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", @@ -2042,9 +2054,9 @@ } }, "node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -2092,12 +2104,12 @@ } }, "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -2243,18 +2255,6 @@ "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/got/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -3110,15 +3110,18 @@ } }, "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.0.tgz", + "integrity": "sha512-pzhgdeqU5pJ9t5WK9m4RT4GgGWqYJylxUf62Yb9datXRwdcw5MjiD1BYI5evF8AgTXN9gtKX3CFLvCUL5fAhEA==", "dev": true, + "funding": [ + "https://github.com/sponsors/broofa" + ], "bin": { - "mime": "cli.js" + "mime": "bin/cli.js" }, "engines": { - "node": ">=10.0.0" + "node": ">=16" } }, "node_modules/mimic-fn": { @@ -6622,13 +6625,13 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.6.tgz", - "integrity": "sha512-5JGfzkJRL0DLNyhwmiAV9mV0hZLHDwddFCs2lc9CNxOChpoWUQVe8K4qTMktmevmDlMpok2uT10nvHUyU59sNw==", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.7.tgz", + "integrity": "sha512-/n1HGcBbuJyTlD3tb2/tW1mT5WIR6FCo+bAijHF6pNoSBf8YoxoskawjSY2ku9/8d6mdzci7oMchziI7CYEWYg==", "dev": true, "dependencies": { "sort-package-json": "2.6.0", - "synckit": "0.8.5" + "synckit": "0.8.6" }, "peerDependencies": { "prettier": ">= 1.16.0" @@ -6745,9 +6748,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.2.tgz", - "integrity": "sha512-mcvrCjixA5166hSrUoJgGb9gBQN4loMYyj9zxuMs/66ibHNEFd5JXMw37YVDx58L4/QID9jIzdTBB4mDwDJ6KQ==", + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", "dev": true, "engines": { "node": ">=16" @@ -6774,9 +6777,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.2.tgz", - "integrity": "sha512-mcvrCjixA5166hSrUoJgGb9gBQN4loMYyj9zxuMs/66ibHNEFd5JXMw37YVDx58L4/QID9jIzdTBB4mDwDJ6KQ==", + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", + "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", "dev": true, "engines": { "node": ">=16" @@ -6917,6 +6920,18 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/run-applescript/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-applescript/node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -7071,6 +7086,18 @@ "glob": "^7.1.3" } }, + "node_modules/semantic-release/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", @@ -7503,13 +7530,13 @@ } }, "node_modules/synckit": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", - "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.6.tgz", + "integrity": "sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==", "dev": true, "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.5.0" + "@pkgr/utils": "^2.4.2", + "tslib": "^2.6.2" }, "engines": { "node": "^14.18.0 || >=16.0.0" From f959206a3cc5c404df3dbf903e557dbd221247a7 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Sat, 9 Dec 2023 19:18:31 -0500 Subject: [PATCH 25/69] workflow(update): reduce execution time to once per 12 hours (#870) --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 6d60ce2f5..29abae307 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -1,6 +1,6 @@ "on": schedule: - - cron: 0 * * * * + - cron: 0 */12 * * * repository_dispatch: types: - github-webhooks-update From d654c7d8c6bcf0d0ca5be083c6615ec040931997 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 10:30:27 -0800 Subject: [PATCH 26/69] chore(deps): update dependency prettier to v3.1.1 (#871) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8477d797f..7792f29f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.1.0", + "prettier": "3.1.1", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^22.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6610,9 +6610,9 @@ } }, "node_modules/prettier": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.0.tgz", - "integrity": "sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index 2add0cb8c..3db806d36 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.1.0", + "prettier": "3.1.1", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^22.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", From d7e422196e326841ad7c542b32b1ad556048f618 Mon Sep 17 00:00:00 2001 From: Octokit Bot Date: Mon, 11 Dec 2023 16:20:55 -0600 Subject: [PATCH 27/69] Workflows have changed (#872) Updates for workflows --- .github/workflows/immediate-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index d3a3cda45..4bb10f5ef 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -6,7 +6,7 @@ on: issues: types: - opened - pull_request: + pull_request_target: types: - opened jobs: From c1177226fbcbc53a4855ebe2c55e9d06a84dbce3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 10:40:25 -0800 Subject: [PATCH 28/69] ci(action): update github/codeql-action action to v3 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d86c431ec..57b91b16f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v2 # tag=v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -56,7 +56,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v2 # tag=v2 + uses: github/codeql-action/autobuild@v3 # ℹ️ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -69,4 +69,4 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 # tag=v2 \ No newline at end of file + uses: github/codeql-action/analyze@v3 \ No newline at end of file From 206307ae8fc579c76d3258501a0f55a15a4439c3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 10:45:02 -0800 Subject: [PATCH 29/69] build(deps): lock file maintenance (#873) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 143 +++++++++++++++++++++------------------------- 1 file changed, 64 insertions(+), 79 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7792f29f7..9f54f4f7b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -387,12 +387,12 @@ "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.1.4", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.4.tgz", - "integrity": "sha512-MvZx4WvfhBnt7PtH5XE7HORsO7bBk4er1FgRIUr1qJ89NR2I6bWjGyKsxk8z42FPQ34hFQm0Baanh4gzdZR4gQ==", + "version": "9.1.5", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", + "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", "dev": true, "dependencies": { - "@octokit/types": "^12.3.0" + "@octokit/types": "^12.4.0" }, "engines": { "node": ">= 18" @@ -464,12 +464,12 @@ } }, "node_modules/@octokit/types": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.3.0.tgz", - "integrity": "sha512-nJ8X2HRr234q3w/FcovDlA+ttUU4m1eJAourvfUUtwAWeqL8AsyRqfnLvVnYn3NFbUnsmzQCzLNdFerPwdmcDQ==", + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", + "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", "dev": true, "dependencies": { - "@octokit/openapi-types": "^19.0.2" + "@octokit/openapi-types": "^19.1.0" } }, "node_modules/@pkgr/utils": { @@ -564,9 +564,9 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.2.4", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.4.tgz", - "integrity": "sha512-VMzqiuSLhHc0/1Q8M/FmWnOaclh5aXL2pQWceldWBYSWLNzQu8GOR4bkGl57ciUtvm+MCMi4FaStZxSDJGEfUg==", + "version": "9.2.5", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", + "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", @@ -594,9 +594,9 @@ } }, "node_modules/@semantic-release/npm": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.1.tgz", - "integrity": "sha512-nFcT0pgVwpXsPkzjqP3ObH+pILeN1AbYscCDuYwgZEPZukL+RsGhrtdT4HA1Gjb/y1bVbE90JNtMIcgRi5z/Fg==", + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", + "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", "dev": true, "dependencies": { "@semantic-release/error": "^4.0.0", @@ -766,9 +766,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.10.3", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.3.tgz", - "integrity": "sha512-XJavIpZqiXID5Yxnxv3RUDKTN5b81ddNC3ecsA0SoFXz/QU8OGBwZGMomiq0zw+uuqbL/krztv/DINAQ/EV4gg==", + "version": "20.10.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.4.tgz", + "integrity": "sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -820,9 +820,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", - "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", + "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", "dev": true, "engines": { "node": ">=0.4.0" @@ -3034,23 +3034,23 @@ } }, "node_modules/marked-terminal": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.1.0.tgz", - "integrity": "sha512-QaCSF6NV82oo6K0szEnmc65ooDeW0T/Adcyf0fcW+Hto2GT1VADFg8dn1zaeHqzj65fqDH1hMNChGNRaC/lbkA==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", + "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", "dev": true, "dependencies": { "ansi-escapes": "^6.2.0", "cardinal": "^2.1.1", "chalk": "^5.3.0", "cli-table3": "^0.6.3", - "node-emoji": "^2.1.0", + "node-emoji": "^2.1.3", "supports-hyperlinks": "^3.0.0" }, "engines": { "node": ">=16.0.0" }, "peerDependencies": { - "marked": ">=1 <11" + "marked": ">=1 <12" } }, "node_modules/memoizee": { @@ -3271,9 +3271,9 @@ } }, "node_modules/npm": { - "version": "10.2.4", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.4.tgz", - "integrity": "sha512-umEuYneVEYO9KoEEI8n2sSGmNQeqco/3BSeacRlqIkCzw4E7XGtYSWMeJobxzr6hZ2n9cM+u5TsMTcC5bAgoWA==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", + "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3360,7 +3360,7 @@ "@sigstore/tuf": "^2.2.0", "abbrev": "^2.0.0", "archy": "~1.0.0", - "cacache": "^18.0.0", + "cacache": "^18.0.1", "chalk": "^5.3.0", "ci-info": "^4.0.0", "cli-columns": "^4.0.0", @@ -3374,7 +3374,7 @@ "ini": "^4.1.1", "init-package-json": "^6.0.0", "is-cidr": "^5.0.3", - "json-parse-even-better-errors": "^3.0.0", + "json-parse-even-better-errors": "^3.0.1", "libnpmaccess": "^8.0.1", "libnpmdiff": "^6.0.3", "libnpmexec": "^7.0.4", @@ -3403,7 +3403,7 @@ "npm-user-validate": "^2.0.0", "npmlog": "^7.0.1", "p-map": "^4.0.0", - "pacote": "^17.0.4", + "pacote": "^17.0.5", "parse-conflict-json": "^3.0.1", "proc-log": "^3.0.0", "qrcode-terminal": "^0.12.0", @@ -3529,7 +3529,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.2.1", + "version": "7.2.2", "dev": true, "inBundle": true, "license": "ISC", @@ -3576,7 +3576,7 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.0.2", + "version": "8.0.3", "dev": true, "inBundle": true, "license": "ISC", @@ -4042,7 +4042,7 @@ } }, "node_modules/npm/node_modules/cacache": { - "version": "18.0.0", + "version": "18.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4052,7 +4052,7 @@ "glob": "^10.2.2", "lru-cache": "^10.0.1", "minipass": "^7.0.3", - "minipass-collect": "^1.0.2", + "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "p-map": "^4.0.0", @@ -4623,7 +4623,7 @@ "license": "BSD-3-Clause" }, "node_modules/npm/node_modules/ignore-walk": { - "version": "6.0.3", + "version": "6.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -4761,7 +4761,7 @@ } }, "node_modules/npm/node_modules/json-parse-even-better-errors": { - "version": "3.0.0", + "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", @@ -4800,7 +4800,7 @@ "license": "MIT" }, "node_modules/npm/node_modules/libnpmaccess": { - "version": "8.0.1", + "version": "8.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4813,7 +4813,7 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.3", + "version": "6.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -4833,7 +4833,7 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.4", + "version": "7.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -4855,7 +4855,7 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.1", + "version": "5.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4867,7 +4867,7 @@ } }, "node_modules/npm/node_modules/libnpmhook": { - "version": "10.0.0", + "version": "10.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4880,7 +4880,7 @@ } }, "node_modules/npm/node_modules/libnpmorg": { - "version": "6.0.1", + "version": "6.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4893,7 +4893,7 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.3", + "version": "6.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -4908,7 +4908,7 @@ } }, "node_modules/npm/node_modules/libnpmpublish": { - "version": "9.0.2", + "version": "9.0.3", "dev": true, "inBundle": true, "license": "ISC", @@ -4927,7 +4927,7 @@ } }, "node_modules/npm/node_modules/libnpmsearch": { - "version": "7.0.0", + "version": "7.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4939,7 +4939,7 @@ } }, "node_modules/npm/node_modules/libnpmteam": { - "version": "6.0.0", + "version": "6.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -4952,7 +4952,7 @@ } }, "node_modules/npm/node_modules/libnpmversion": { - "version": "5.0.1", + "version": "5.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4968,13 +4968,10 @@ } }, "node_modules/npm/node_modules/lru-cache": { - "version": "10.0.2", + "version": "10.1.0", "dev": true, "inBundle": true, "license": "ISC", - "dependencies": { - "semver": "^7.3.5" - }, "engines": { "node": "14 || >=16.14" } @@ -5026,27 +5023,15 @@ } }, "node_modules/npm/node_modules/minipass-collect": { - "version": "1.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/minipass-collect/node_modules/minipass": { - "version": "3.3.6", + "version": "2.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "yallist": "^4.0.0" + "minipass": "^7.0.3" }, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, "node_modules/npm/node_modules/minipass-fetch": { @@ -5333,12 +5318,12 @@ } }, "node_modules/npm/node_modules/npm-packlist": { - "version": "8.0.0", + "version": "8.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "ignore-walk": "^6.0.0" + "ignore-walk": "^6.0.4" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -5430,7 +5415,7 @@ } }, "node_modules/npm/node_modules/pacote": { - "version": "17.0.4", + "version": "17.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -7034,9 +7019,9 @@ "dev": true }, "node_modules/semantic-release": { - "version": "22.0.8", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.8.tgz", - "integrity": "sha512-55rb31jygqIYsGU/rY+gXXm2fnxBIWo9azOjxbqKsPnq7p70zwZ5v+xnD7TxJC+zvS3sy1eHLGXYWCaX3WI76A==", + "version": "22.0.12", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", + "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", @@ -7677,9 +7662,9 @@ } }, "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "dependencies": { "@cspotcode/source-map-support": "^0.8.0", @@ -7753,9 +7738,9 @@ } }, "node_modules/typescript": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", - "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", "dev": true, "bin": { "tsc": "bin/tsc", From f256fc5ba4b1a10fb380987b457a7599a93e9da1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 10:59:11 -0800 Subject: [PATCH 30/69] build(deps): lock file maintenance (#875) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9f54f4f7b..579aaf670 100644 --- a/package-lock.json +++ b/package-lock.json @@ -766,9 +766,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.10.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.4.tgz", - "integrity": "sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==", + "version": "20.10.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", + "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -3110,9 +3110,9 @@ } }, "node_modules/mime": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.0.tgz", - "integrity": "sha512-pzhgdeqU5pJ9t5WK9m4RT4GgGWqYJylxUf62Yb9datXRwdcw5MjiD1BYI5evF8AgTXN9gtKX3CFLvCUL5fAhEA==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.1.tgz", + "integrity": "sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==", "dev": true, "funding": [ "https://github.com/sponsors/broofa" From 753d6682af567ac3a970b67e373a943a4cde4dd2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 Dec 2023 14:41:01 -0800 Subject: [PATCH 31/69] build(deps): lock file maintenance (#876) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 81 +++++++++++++++-------------------------------- 1 file changed, 25 insertions(+), 56 deletions(-) diff --git a/package-lock.json b/package-lock.json index 579aaf670..3a6104167 100644 --- a/package-lock.json +++ b/package-lock.json @@ -564,9 +564,9 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.2.5", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.5.tgz", - "integrity": "sha512-XWumFEOHiWllekymZjeVgkQCJ4YnD8020ZspAHYIIBNX8O4d/1ldeU5iNXu6NGkKlOCokyXh13KwVP0UEMm5kw==", + "version": "9.2.6", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.6.tgz", + "integrity": "sha512-shi+Lrf6exeNZF+sBhK+P011LSbhmIAoUEgEY6SsxF8irJ+J2stwI5jkyDQ+4gzYyDImzV6LCKdYB9FXnQRWKA==", "dev": true, "dependencies": { "@octokit/core": "^5.0.0", @@ -583,7 +583,7 @@ "issue-parser": "^6.0.0", "lodash-es": "^4.17.21", "mime": "^4.0.0", - "p-filter": "^3.0.0", + "p-filter": "^4.0.0", "url-join": "^5.0.0" }, "engines": { @@ -1960,9 +1960,9 @@ } }, "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -3430,9 +3430,9 @@ } }, "node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.2.0.tgz", + "integrity": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==", "dev": true, "dependencies": { "path-key": "^4.0.0" @@ -6349,15 +6349,15 @@ } }, "node_modules/p-filter": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-3.0.0.tgz", - "integrity": "sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.0.0.tgz", + "integrity": "sha512-3gxOrNadcyxj+YKFyRmRIEuCMGayNNJoXL7Zf1dqfdfoDsVB190bHfFfhqfcNEDFLfQP1q2uir2cBgIqnIT+cQ==", "dev": true, "dependencies": { - "p-map": "^5.1.0" + "p-map": "^7.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -6397,46 +6397,12 @@ } }, "node_modules/p-map": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", - "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", - "dev": true, - "dependencies": { - "aggregate-error": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map/node_modules/aggregate-error": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", - "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", - "dev": true, - "dependencies": { - "clean-stack": "^4.0.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map/node_modules/clean-stack": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", - "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.0.tgz", + "integrity": "sha512-EZl03dLKv3RypkrjlevZoNwQMSy4bAblWcR18zhonktnN4fUs3asFQKSe0awn982omGxamvbejqQKQYDJYHCEg==", "dev": true, - "dependencies": { - "escape-string-regexp": "5.0.0" - }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -7653,10 +7619,13 @@ } }, "node_modules/traverse": { - "version": "0.6.7", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", - "integrity": "sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==", + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.8.tgz", + "integrity": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } From 0de434b36dac0550806f5a2a532b782ef696e8b1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 12:24:02 -0600 Subject: [PATCH 32/69] build(deps): lock file maintenance (#877) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 429 ++++------------------------------------------ 1 file changed, 31 insertions(+), 398 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3a6104167..d30bf5c83 100644 --- a/package-lock.json +++ b/package-lock.json @@ -472,19 +472,11 @@ "@octokit/openapi-types": "^19.1.0" } }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", + "node_modules/@pkgr/core": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.0.tgz", + "integrity": "sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==", "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, @@ -766,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.10.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", - "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", + "version": "20.10.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.6.tgz", + "integrity": "sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -808,9 +800,9 @@ "dev": true }, "node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -976,15 +968,6 @@ "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true }, - "node_modules/big-integer": { - "version": "1.6.52", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", - "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", @@ -997,18 +980,6 @@ "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", "dev": true }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -1031,21 +1002,6 @@ "node": ">=8" } }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/cacheable-lookup": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", @@ -1514,90 +1470,6 @@ "node": ">=4.0.0" } }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/default-browser/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/default-browser/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, "node_modules/defer-to-connect": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", @@ -1607,18 +1479,6 @@ "node": ">=10" } }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/deprecation": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", @@ -2543,21 +2403,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -2588,24 +2433,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -2678,33 +2505,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "dependencies": { - "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -6309,24 +6109,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/p-cancelable": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-4.0.1.tgz", @@ -6349,12 +6131,12 @@ } }, "node_modules/p-filter": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.0.0.tgz", - "integrity": "sha512-3gxOrNadcyxj+YKFyRmRIEuCMGayNNJoXL7Zf1dqfdfoDsVB190bHfFfhqfcNEDFLfQP1q2uir2cBgIqnIT+cQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.1.0.tgz", + "integrity": "sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==", "dev": true, "dependencies": { - "p-map": "^7.0.0" + "p-map": "^7.0.1" }, "engines": { "node": ">=18" @@ -6397,9 +6179,9 @@ } }, "node_modules/p-map": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.0.tgz", - "integrity": "sha512-EZl03dLKv3RypkrjlevZoNwQMSy4bAblWcR18zhonktnN4fUs3asFQKSe0awn982omGxamvbejqQKQYDJYHCEg==", + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.1.tgz", + "integrity": "sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==", "dev": true, "engines": { "node": ">=18" @@ -6520,12 +6302,6 @@ "node": ">=8" } }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true - }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -6576,13 +6352,13 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.7", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.7.tgz", - "integrity": "sha512-/n1HGcBbuJyTlD3tb2/tW1mT5WIR6FCo+bAijHF6pNoSBf8YoxoskawjSY2ku9/8d6mdzci7oMchziI7CYEWYg==", + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.8.tgz", + "integrity": "sha512-ZK37c6pRUKeUIpQWNEdMgNUiGSG5BTfeeAIA01mRjVGTfWxxVzM55Cs+LaHyweFJbEgkgCNsqMA3LGEAjfOPtA==", "dev": true, "dependencies": { "sort-package-json": "2.6.0", - "synckit": "0.8.6" + "synckit": "0.8.8" }, "peerDependencies": { "prettier": ">= 1.16.0" @@ -6699,9 +6475,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.9.0.tgz", + "integrity": "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==", "dev": true, "engines": { "node": ">=16" @@ -6728,9 +6504,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.8.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.8.3.tgz", - "integrity": "sha512-//BaTm14Q/gHBn09xlnKNqfI8t6bmdzx2DXYfPBNofN0WUybCEUDcbCWcTa0oF09lzLjZgPphXAsvRiMK0V6Bw==", + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.9.0.tgz", + "integrity": "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==", "dev": true, "engines": { "node": ">=16" @@ -6833,128 +6609,6 @@ "node": ">=0.10.0" } }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/run-applescript/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/run-applescript/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/run-applescript/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-applescript/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/run-applescript/node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -7481,12 +7135,12 @@ } }, "node_modules/synckit": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.6.tgz", - "integrity": "sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==", + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", "dev": true, "dependencies": { - "@pkgr/utils": "^2.4.2", + "@pkgr/core": "^0.1.0", "tslib": "^2.6.2" }, "engines": { @@ -7594,18 +7248,6 @@ "next-tick": "1" } }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -7789,15 +7431,6 @@ "node": ">= 10.0.0" } }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", From 7e61eaa06955106f224b90a5eccbd1f9ecf9c721 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 10:57:08 -0800 Subject: [PATCH 33/69] build(deps): lock file maintenance (#878) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package-lock.json b/package-lock.json index d30bf5c83..b20e79b74 100644 --- a/package-lock.json +++ b/package-lock.json @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.10.6", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.6.tgz", - "integrity": "sha512-Vac8H+NlRNNlAmDfGUP7b5h/KA+AtWIzuXy0E6OyP8f1tCLYAtPvKRRDJjAPqhpCb0t6U2j7/xqAuLEebW2kiw==", + "version": "20.10.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.7.tgz", + "integrity": "sha512-fRbIKb8C/Y2lXxB5eVMj4IU7xpdox0Lh8bUPEdtLysaylsml1hOOx1+STloRs/B9nf7C6kPRmmg/V7aQW7usNg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -6352,13 +6352,13 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.8", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.8.tgz", - "integrity": "sha512-ZK37c6pRUKeUIpQWNEdMgNUiGSG5BTfeeAIA01mRjVGTfWxxVzM55Cs+LaHyweFJbEgkgCNsqMA3LGEAjfOPtA==", + "version": "2.4.9", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.9.tgz", + "integrity": "sha512-b3Q7agXVqxK3UpYEJr0xLD51SxriYXESWUCjmxOBUGqnPFZOg9jZGZ+Ptzq252I6OqzXN2rj1tJIFq6KOGLLJw==", "dev": true, "dependencies": { "sort-package-json": "2.6.0", - "synckit": "0.8.8" + "synckit": "0.9.0" }, "peerDependencies": { "prettier": ">= 1.16.0" @@ -7135,9 +7135,9 @@ } }, "node_modules/synckit": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", - "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.0.tgz", + "integrity": "sha512-7RnqIMq572L8PeEzKeBINYEJDDxpcH8JEgLwUqBd3TkofhFRbkq4QLR0u+36avGAhCRbk2nnmjcW9SE531hPDg==", "dev": true, "dependencies": { "@pkgr/core": "^0.1.0", From 9201d585cb936cff5573c4065d77b53cff060ef6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 13:04:01 -0800 Subject: [PATCH 34/69] chore(deps): update dependency semantic-release to v23 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 49 ++++++++++++++++++++++++++++------------------- package.json | 2 +- 2 files changed, 30 insertions(+), 21 deletions(-) diff --git a/package-lock.json b/package-lock.json index b20e79b74..cbc5ef9d4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,7 +25,7 @@ "json-schema-to-typescript": "^13.0.0", "prettier": "3.1.1", "prettier-plugin-packagejson": "^2.2.15", - "semantic-release": "^22.0.0", + "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", "ts-node": "^10.4.0", "turndown": "^7.1.1", @@ -1307,15 +1307,15 @@ "dev": true }, "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "dependencies": { + "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "parse-json": "^5.2.0" }, "engines": { "node": ">=14" @@ -1646,9 +1646,9 @@ } }, "node_modules/env-ci": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-10.0.0.tgz", - "integrity": "sha512-U4xcd/utDYFgMh0yWj07R1H6L5fwhVbmxBCpnL0DbVSDZVnsC82HONw0wxtxNkIAcua3KtbomQvIk5xFZGAQJw==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-11.0.0.tgz", + "integrity": "sha512-apikxMgkipkgTvMdRT9MNqWx5VLOci79F4VBd7Op/7OPjjoanjdAvn6fglMCCEf/1bAh8eOiuEVCUs4V3qP3nQ==", "dev": true, "dependencies": { "execa": "^8.0.0", @@ -1658,6 +1658,15 @@ "node": "^18.17 || >=20.6.1" } }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -2822,15 +2831,15 @@ "dev": true }, "node_modules/marked": { - "version": "9.1.6", - "resolved": "https://registry.npmjs.org/marked/-/marked-9.1.6.tgz", - "integrity": "sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q==", + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/marked/-/marked-11.1.1.tgz", + "integrity": "sha512-EgxRjgK9axsQuUa/oKMx5DEY8oXpKJfk61rT5iY3aRlgU6QJtUcxU5OAymdhCvWvhYcd9FKmO5eQoX8m9VGJXg==", "dev": true, "bin": { "marked": "bin/marked.js" }, "engines": { - "node": ">= 16" + "node": ">= 18" } }, "node_modules/marked-terminal": { @@ -6639,9 +6648,9 @@ "dev": true }, "node_modules/semantic-release": { - "version": "22.0.12", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-22.0.12.tgz", - "integrity": "sha512-0mhiCR/4sZb00RVFJIUlMuiBkW3NMpVIW2Gse7noqEMoFGkvfPPAImEQbkBV8xga4KOPP4FdTRYuLLy32R1fPw==", + "version": "23.0.0", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.0.tgz", + "integrity": "sha512-Jz7jEWO2igTtske112gC4PPE2whCMVrsgxUPG3/SZI7VE357suIUZFlJd1Yu0g2I6RPc2HxNEfUg7KhmDTjwqg==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", @@ -6650,9 +6659,9 @@ "@semantic-release/npm": "^11.0.0", "@semantic-release/release-notes-generator": "^12.0.0", "aggregate-error": "^5.0.0", - "cosmiconfig": "^8.0.0", + "cosmiconfig": "^9.0.0", "debug": "^4.0.0", - "env-ci": "^10.0.0", + "env-ci": "^11.0.0", "execa": "^8.0.0", "figures": "^6.0.0", "find-versions": "^5.1.0", @@ -6662,7 +6671,7 @@ "hosted-git-info": "^7.0.0", "import-from-esm": "^1.3.1", "lodash-es": "^4.17.21", - "marked": "^9.0.0", + "marked": "^11.0.0", "marked-terminal": "^6.0.0", "micromatch": "^4.0.2", "p-each-series": "^3.0.0", @@ -6678,7 +6687,7 @@ "semantic-release": "bin/semantic-release.js" }, "engines": { - "node": "^18.17 || >=20.6.1" + "node": ">=20.8.1" } }, "node_modules/semantic-release-plugin-update-version-in-files": { diff --git a/package.json b/package.json index 3db806d36..c60ccac3b 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "json-schema-to-typescript": "^13.0.0", "prettier": "3.1.1", "prettier-plugin-packagejson": "^2.2.15", - "semantic-release": "^22.0.0", + "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", "ts-node": "^10.4.0", "turndown": "^7.1.1", From 01fe455194eaf9f1ee7725eddda1ed810b0c2f22 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 13:04:08 -0800 Subject: [PATCH 35/69] chore(deps): update dependency prettier to v3.2.0 * chore(deps): update dependency prettier to v3.2.0 * style: prettier --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Create or Update Pull Request Action --- bin/ref-common-schemas.mts | 9 +++------ package-lock.json | 8 ++++---- package.json | 2 +- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/bin/ref-common-schemas.mts b/bin/ref-common-schemas.mts index f40ec77b5..9a005d736 100755 --- a/bin/ref-common-schemas.mts +++ b/bin/ref-common-schemas.mts @@ -18,12 +18,9 @@ parseArgv(__filename, []); const commonSchemas = fs .readdirSync(`${pathToSchemas}/common`) - .map<[name: string, schema: JSONSchema7]>((commonSchema) => [ - commonSchema, - normalizeSchema( - require(`../${pathToSchemas}/common/${commonSchema}`) as JSONSchema7, - ), - ]); + .map< + [name: string, schema: JSONSchema7] + >((commonSchema) => [commonSchema, normalizeSchema(require(`../${pathToSchemas}/common/${commonSchema}`) as JSONSchema7)]); const findCommonSchema = (object: JSONSchema7) => { const normalisedSchema = normalizeSchema(object); diff --git a/package-lock.json b/package-lock.json index cbc5ef9d4..b6e992352 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.1.1", + "prettier": "3.2.0", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6346,9 +6346,9 @@ } }, "node_modules/prettier": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", - "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.0.tgz", + "integrity": "sha512-/vBUecTGaPlRVwyZVROVC58bYIScqaoEJzZmzQXXrZOzqn0TwWz0EnOozOlFO/YAImRnb7XsKpTCd3m1SjS2Ww==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index c60ccac3b..c827116cb 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.1.1", + "prettier": "3.2.0", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", From 47214a27671cc876f1f093c71a8c5ab4f2d20092 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Jan 2024 13:10:39 -0800 Subject: [PATCH 36/69] chore(deps): update dependency prettier to v3.2.1 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index b6e992352..4cddb130c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.0", + "prettier": "3.2.1", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6346,9 +6346,9 @@ } }, "node_modules/prettier": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.0.tgz", - "integrity": "sha512-/vBUecTGaPlRVwyZVROVC58bYIScqaoEJzZmzQXXrZOzqn0TwWz0EnOozOlFO/YAImRnb7XsKpTCd3m1SjS2Ww==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.1.tgz", + "integrity": "sha512-qSUWshj1IobVbKc226Gw2pync27t0Kf0EdufZa9j7uBSJay1CC+B3K5lAAZoqgX3ASiKuWsk6OmzKRetXNObWg==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index c827116cb..03fcdc7cf 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.0", + "prettier": "3.2.1", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", From 3892cce0edecf4cada636e14cb39d7ce2aac4099 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 09:44:32 -0800 Subject: [PATCH 37/69] chore(deps): update dependency prettier to v3.2.2 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 4cddb130c..2c0f3cd32 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.1", + "prettier": "3.2.2", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6346,9 +6346,9 @@ } }, "node_modules/prettier": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.1.tgz", - "integrity": "sha512-qSUWshj1IobVbKc226Gw2pync27t0Kf0EdufZa9j7uBSJay1CC+B3K5lAAZoqgX3ASiKuWsk6OmzKRetXNObWg==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.2.tgz", + "integrity": "sha512-HTByuKZzw7utPiDO523Tt2pLtEyK7OibUD9suEJQrPUCYQqrHr74GGX6VidMrovbf/I50mPqr8j/II6oBAuc5A==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index 03fcdc7cf..295f2ba36 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.1", + "prettier": "3.2.2", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", From c80e7024ca93064585ebb9313855eae1eab69154 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 21:37:07 -0800 Subject: [PATCH 38/69] build(deps): lock file maintenance (#885) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 220 +++++++--------------------------------------- 1 file changed, 31 insertions(+), 189 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2c0f3cd32..a0879c24e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -734,9 +734,9 @@ "dev": true }, "node_modules/@types/json-diff": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.2.tgz", - "integrity": "sha512-XsYtsD5ih3imV3W+e2/ick1rMqs1ERG2uW3EJPPgF6PndPmf+sci2PtR3wOd7u4Di2wn3gU/EPql/2AYdKqqDw==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/json-diff/-/json-diff-1.0.3.tgz", + "integrity": "sha512-Qvxm8fpRMv/1zZR3sQWImeRK2mBYJji20xF51Fq9Gt//Ed18u0x6/FNLogLS1xhfUWTEmDyqveJqn95ltB6Kvw==", "dev": true }, "node_modules/@types/json-schema": { @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.10.7", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.7.tgz", - "integrity": "sha512-fRbIKb8C/Y2lXxB5eVMj4IU7xpdox0Lh8bUPEdtLysaylsml1hOOx1+STloRs/B9nf7C6kPRmmg/V7aQW7usNg==", + "version": "20.11.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.0.tgz", + "integrity": "sha512-o9bjXmDNcF7GbM4CNQpmi+TutCgap/K3w1JyKgxAjqx41zp9qlIAVFi0IhCNsJcXolEqLWhbFbEeL0PvYm4pcQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -812,9 +812,9 @@ } }, "node_modules/acorn-walk": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", - "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", "dev": true, "engines": { "node": ">=0.4.0" @@ -2605,9 +2605,9 @@ "dev": true }, "node_modules/json-schema-to-typescript": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-13.1.1.tgz", - "integrity": "sha512-F3CYhtA7F3yPbb8vF7sFchk/2dnr1/yTKf8RcvoNpjnh67ZS/ZMH1ElLt5KHAtf2/bymiejLQQszszPWEeTdSw==", + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-13.1.2.tgz", + "integrity": "sha512-17G+mjx4nunvOpkPvcz7fdwUwYCEwyH8vR3Ym3rFiQ8uzAL3go+c1306Kk7iGRk8HuXBXqy+JJJmpYl0cvOllw==", "dev": true, "dependencies": { "@bcherny/json-schema-ref-parser": "10.0.5-fork", @@ -3080,9 +3080,9 @@ } }, "node_modules/npm": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.2.5.tgz", - "integrity": "sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==", + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.3.0.tgz", + "integrity": "sha512-9u5GFc1UqI2DLlGI7QdjkpIaBs3UhTtY8KoCqYJK24gV/j/tByaI4BA4R7RkOc+ASqZMzFPKt4Pj2Z8JcGo//A==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3164,12 +3164,12 @@ "@npmcli/fs": "^3.1.0", "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", - "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^7.0.2", + "@npmcli/promise-spawn": "^7.0.1", + "@npmcli/run-script": "^7.0.3", "@sigstore/tuf": "^2.2.0", "abbrev": "^2.0.0", "archy": "~1.0.0", - "cacache": "^18.0.1", + "cacache": "^18.0.2", "chalk": "^5.3.0", "ci-info": "^4.0.0", "cli-columns": "^4.0.0", @@ -3338,7 +3338,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.2.2", + "version": "7.3.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3385,7 +3385,7 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.0.3", + "version": "8.1.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3443,7 +3443,7 @@ } }, "node_modules/npm/node_modules/@npmcli/git": { - "version": "5.0.3", + "version": "5.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -3544,7 +3544,7 @@ } }, "node_modules/npm/node_modules/@npmcli/promise-spawn": { - "version": "7.0.0", + "version": "7.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3568,7 +3568,7 @@ } }, "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "7.0.2", + "version": "7.0.3", "dev": true, "inBundle": true, "license": "ISC", @@ -3672,18 +3672,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/abort-controller": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } - }, "node_modules/npm/node_modules/agent-base": { "version": "7.1.0", "dev": true, @@ -3746,14 +3734,10 @@ "license": "MIT" }, "node_modules/npm/node_modules/are-we-there-yet": { - "version": "4.0.1", + "version": "4.0.2", "dev": true, "inBundle": true, "license": "ISC", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^4.1.0" - }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } @@ -3764,26 +3748,6 @@ "inBundle": true, "license": "MIT" }, - "node_modules/npm/node_modules/base64-js": { - "version": "1.5.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT" - }, "node_modules/npm/node_modules/bin-links": { "version": "4.0.3", "dev": true, @@ -3817,30 +3781,6 @@ "balanced-match": "^1.0.0" } }, - "node_modules/npm/node_modules/buffer": { - "version": "6.0.3", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, "node_modules/npm/node_modules/builtins": { "version": "5.0.1", "dev": true, @@ -3851,7 +3791,7 @@ } }, "node_modules/npm/node_modules/cacache": { - "version": "18.0.1", + "version": "18.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4146,12 +4086,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/delegates": { - "version": "1.0.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, "node_modules/npm/node_modules/diff": { "version": "5.1.0", "dev": true, @@ -4198,24 +4132,6 @@ "inBundle": true, "license": "MIT" }, - "node_modules/npm/node_modules/event-target-shim": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/npm/node_modules/events": { - "version": "3.3.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.8.x" - } - }, "node_modules/npm/node_modules/exponential-backoff": { "version": "3.1.1", "dev": true, @@ -4411,26 +4327,6 @@ "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/ieee754": { - "version": "1.2.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "BSD-3-Clause" - }, "node_modules/npm/node_modules/ignore-walk": { "version": "6.0.4", "dev": true, @@ -4622,7 +4518,7 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.4", + "version": "6.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -4642,7 +4538,7 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.5", + "version": "7.0.6", "dev": true, "inBundle": true, "license": "ISC", @@ -4664,7 +4560,7 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.2", + "version": "5.0.3", "dev": true, "inBundle": true, "license": "ISC", @@ -4702,7 +4598,7 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.4", + "version": "6.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -5127,7 +5023,7 @@ } }, "node_modules/npm/node_modules/npm-packlist": { - "version": "8.0.1", + "version": "8.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -5295,7 +5191,7 @@ } }, "node_modules/npm/node_modules/postcss-selector-parser": { - "version": "6.0.13", + "version": "6.0.15", "dev": true, "inBundle": true, "license": "MIT", @@ -5316,15 +5212,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/process": { - "version": "0.11.10", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, "node_modules/npm/node_modules/promise-all-reject-late": { "version": "1.0.1", "dev": true, @@ -5431,22 +5318,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/readable-stream": { - "version": "4.4.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/npm/node_modules/retry": { "version": "0.12.0", "dev": true, @@ -5456,26 +5327,6 @@ "node": ">= 4" } }, - "node_modules/npm/node_modules/safe-buffer": { - "version": "5.2.1", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT" - }, "node_modules/npm/node_modules/safer-buffer": { "version": "2.1.2", "dev": true, @@ -5646,15 +5497,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/string_decoder": { - "version": "1.3.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/npm/node_modules/string-width": { "version": "4.2.3", "dev": true, From 197e991589a48289ca040fabdf1180d506a12677 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:00:52 -0600 Subject: [PATCH 39/69] chore(deps): update dependency prettier to v3.2.3 (#886) * chore(deps): update dependency prettier to v3.2.3 * style: prettier --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Create or Update Pull Request Action --- package-lock.json | 8 ++++---- package.json | 2 +- tsconfig.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index a0879c24e..c01f705b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.2", + "prettier": "3.2.3", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6188,9 +6188,9 @@ } }, "node_modules/prettier": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.2.tgz", - "integrity": "sha512-HTByuKZzw7utPiDO523Tt2pLtEyK7OibUD9suEJQrPUCYQqrHr74GGX6VidMrovbf/I50mPqr8j/II6oBAuc5A==", + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.3.tgz", + "integrity": "sha512-QNhUTBq+mqt1oH1dTfY3phOKNhcDdJkfttHI6u0kj7M2+c+7fmNKlgh2GhnHiqMcbxJ+a0j2igz/2jfl9QKLuw==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index 295f2ba36..6a73ba507 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.2", + "prettier": "3.2.3", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", diff --git a/tsconfig.json b/tsconfig.json index 00a2feced..ec1c2ad9a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,8 +17,8 @@ "noFallthroughCasesInSwitch": true, "noEmitOnError": true, "removeComments": false, - "esModuleInterop": true + "esModuleInterop": true, }, "exclude": ["cache", "coverage", "node_modules"], - "include": ["**/*.js", "**/*.ts", "**/*.mts"] + "include": ["**/*.js", "**/*.ts", "**/*.mts"], } From 478765861c82e0585a4f8f0233c7c354f503299d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:15:39 -0800 Subject: [PATCH 40/69] chore(deps): update dependency prettier to v3.2.4 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c01f705b7..3e86764b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.3", + "prettier": "3.2.4", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6188,9 +6188,9 @@ } }, "node_modules/prettier": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.3.tgz", - "integrity": "sha512-QNhUTBq+mqt1oH1dTfY3phOKNhcDdJkfttHI6u0kj7M2+c+7fmNKlgh2GhnHiqMcbxJ+a0j2igz/2jfl9QKLuw==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", + "integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index 6a73ba507..8164d2f54 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.3", + "prettier": "3.2.4", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", From 1cd0c96c8428fc1cf16b79a6add795252c6b12b4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jan 2024 22:39:38 +0100 Subject: [PATCH 41/69] build(deps): lock file maintenance (#888) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3e86764b8..8f6b0d140 100644 --- a/package-lock.json +++ b/package-lock.json @@ -336,9 +336,9 @@ } }, "node_modules/@octokit/core": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz", - "integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.1.0.tgz", + "integrity": "sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==", "dev": true, "dependencies": { "@octokit/auth-token": "^4.0.0", @@ -473,9 +473,9 @@ } }, "node_modules/@pkgr/core": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.0.tgz", - "integrity": "sha512-Zwq5OCzuwJC2jwqmpEQt7Ds1DTi6BWSwoGkbb1n9pO3hzb35BoJELx7c0T23iDkBGkh2e7tvOtjF3tr3OaQHDQ==", + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true, "engines": { "node": "^12.20.0 || ^14.18.0 || >=16.0.0" @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.0.tgz", - "integrity": "sha512-o9bjXmDNcF7GbM4CNQpmi+TutCgap/K3w1JyKgxAjqx41zp9qlIAVFi0IhCNsJcXolEqLWhbFbEeL0PvYm4pcQ==", + "version": "20.11.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.5.tgz", + "integrity": "sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==", "dev": true, "dependencies": { "undici-types": "~5.26.4" From a55dfc3bce13893b9871904d564ba4163a377a0e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 10:36:47 -0800 Subject: [PATCH 42/69] ci(action): update peter-evans/create-or-update-comment action to v4 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/immediate-response.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/immediate-response.yml b/.github/workflows/immediate-response.yml index 4bb10f5ef..e8bb8ee5b 100644 --- a/.github/workflows/immediate-response.yml +++ b/.github/workflows/immediate-response.yml @@ -19,7 +19,7 @@ jobs: run: echo "NUMBER=${{ github.event.issue.number || github.event.pull_request.number }}" >> "$GITHUB_OUTPUT" - name: Respond to issue or PR - uses: peter-evans/create-or-update-comment@v3 + uses: peter-evans/create-or-update-comment@v4 with: issue-number: ${{ steps.extract.outputs.NUMBER }} body: > From 285da1120b012b6e6c457b2543e552d162810bec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 11:22:23 -0800 Subject: [PATCH 43/69] build(deps): lock file maintenance (#890) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 322 +++++++++++++++++++--------------------------- 1 file changed, 133 insertions(+), 189 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8f6b0d140..64c4ed17a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.5.tgz", - "integrity": "sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==", + "version": "20.11.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.10.tgz", + "integrity": "sha512-rZEfe/hJSGYmdfX9tvcPMYeYPW2sNl50nsw4jZmRcaG0HIAb0WYEpsB05GOb53vjqpyE9GUhlDQ4jLSoB5q9kg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1829,9 +1829,9 @@ } }, "node_modules/fastq": { - "version": "1.16.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", - "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.0.tgz", + "integrity": "sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -2807,9 +2807,9 @@ } }, "node_modules/lru-cache": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", - "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", "dev": true, "engines": { "node": "14 || >=16.14" @@ -2831,9 +2831,9 @@ "dev": true }, "node_modules/marked": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/marked/-/marked-11.1.1.tgz", - "integrity": "sha512-EgxRjgK9axsQuUa/oKMx5DEY8oXpKJfk61rT5iY3aRlgU6QJtUcxU5OAymdhCvWvhYcd9FKmO5eQoX8m9VGJXg==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-11.2.0.tgz", + "integrity": "sha512-HR0m3bvu0jAPYiIvLUUQtdg1g6D247//lvcekpHO1WMvbwDlwSkZAX9Lw4F4YHE1T0HaaNve0tuAWuV1UJ6vtw==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -3080,9 +3080,9 @@ } }, "node_modules/npm": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.3.0.tgz", - "integrity": "sha512-9u5GFc1UqI2DLlGI7QdjkpIaBs3UhTtY8KoCqYJK24gV/j/tByaI4BA4R7RkOc+ASqZMzFPKt4Pj2Z8JcGo//A==", + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.4.0.tgz", + "integrity": "sha512-RS7Mx0OVfXlOcQLRePuDIYdFCVBPCNapWHplDK+mh7GDdP/Tvor4ocuybRRPSvfcRb2vjRJt1fHCqw3cr8qACQ==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3146,7 +3146,6 @@ "semver", "spdx-expression-parse", "ssri", - "strip-ansi", "supports-color", "tar", "text-table", @@ -3157,6 +3156,13 @@ "write-file-atomic" ], "dev": true, + "workspaces": [ + "docs", + "smoke-tests", + "mock-globals", + "mock-registry", + "workspaces/*" + ], "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^7.2.1", @@ -3165,8 +3171,8 @@ "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.1", - "@npmcli/run-script": "^7.0.3", - "@sigstore/tuf": "^2.2.0", + "@npmcli/run-script": "^7.0.4", + "@sigstore/tuf": "^2.3.0", "abbrev": "^2.0.0", "archy": "~1.0.0", "cacache": "^18.0.2", @@ -3212,7 +3218,7 @@ "npm-user-validate": "^2.0.0", "npmlog": "^7.0.1", "p-map": "^4.0.0", - "pacote": "^17.0.5", + "pacote": "^17.0.6", "parse-conflict-json": "^3.0.1", "proc-log": "^3.0.0", "qrcode-terminal": "^0.12.0", @@ -3220,7 +3226,6 @@ "semver": "^7.5.4", "spdx-expression-parse": "^3.0.1", "ssri": "^10.0.5", - "strip-ansi": "^7.1.0", "supports-color": "^9.4.0", "tar": "^6.2.0", "text-table": "~0.2.0", @@ -3292,6 +3297,18 @@ "node": ">=12" } }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", "dev": true, @@ -3315,6 +3332,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/npm/node_modules/@isaacs/string-locale-compare": { "version": "1.1.0", "dev": true, @@ -3338,7 +3370,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.3.0", + "version": "7.3.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3370,7 +3402,7 @@ "parse-conflict-json": "^3.0.0", "proc-log": "^3.0.0", "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^1.0.2", + "promise-call-limit": "^3.0.1", "read-package-json-fast": "^3.0.2", "semver": "^7.3.7", "ssri": "^10.0.5", @@ -3568,15 +3600,15 @@ } }, "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "7.0.3", + "version": "7.0.4", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/node-gyp": "^3.0.0", + "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.0", "node-gyp": "^10.0.0", - "read-package-json-fast": "^3.0.0", "which": "^4.0.0" }, "engines": { @@ -3594,7 +3626,7 @@ } }, "node_modules/npm/node_modules/@sigstore/bundle": { - "version": "2.1.0", + "version": "2.1.1", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3605,6 +3637,15 @@ "node": "^16.14.0 || >=18.0.0" } }, + "node_modules/npm/node_modules/@sigstore/core": { + "version": "0.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, "node_modules/npm/node_modules/@sigstore/protobuf-specs": { "version": "0.2.1", "dev": true, @@ -3615,12 +3656,13 @@ } }, "node_modules/npm/node_modules/@sigstore/sign": { - "version": "2.2.0", + "version": "2.2.1", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.1.0", + "@sigstore/bundle": "^2.1.1", + "@sigstore/core": "^0.2.0", "@sigstore/protobuf-specs": "^0.2.1", "make-fetch-happen": "^13.0.0" }, @@ -3629,13 +3671,27 @@ } }, "node_modules/npm/node_modules/@sigstore/tuf": { - "version": "2.2.0", + "version": "2.3.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "@sigstore/protobuf-specs": "^0.2.1", - "tuf-js": "^2.1.0" + "tuf-js": "^2.2.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@sigstore/verify": { + "version": "0.1.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^2.1.1", + "@sigstore/core": "^0.2.0", + "@sigstore/protobuf-specs": "^0.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -3698,15 +3754,12 @@ } }, "node_modules/npm/node_modules/ansi-regex": { - "version": "6.0.1", + "version": "5.0.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": ">=8" } }, "node_modules/npm/node_modules/ansi-styles": { @@ -3883,27 +3936,6 @@ "node": ">= 10" } }, - "node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/npm/node_modules/cli-table3": { "version": "0.6.3", "dev": true, @@ -3977,27 +4009,6 @@ "node": ">=8.0.0" } }, - "node_modules/npm/node_modules/columnify/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/columnify/node_modules/strip-ansi": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/npm/node_modules/common-ancestor-path": { "version": "1.0.1", "dev": true, @@ -4203,27 +4214,6 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/gauge/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/gauge/node_modules/strip-ansi": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/npm/node_modules/glob": { "version": "10.3.10", "dev": true, @@ -4518,7 +4508,7 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.5", + "version": "6.0.6", "dev": true, "inBundle": true, "license": "ISC", @@ -4538,7 +4528,7 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.6", + "version": "7.0.7", "dev": true, "inBundle": true, "license": "ISC", @@ -4560,7 +4550,7 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.3", + "version": "5.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -4598,7 +4588,7 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.5", + "version": "6.0.6", "dev": true, "inBundle": true, "license": "ISC", @@ -4613,7 +4603,7 @@ } }, "node_modules/npm/node_modules/libnpmpublish": { - "version": "9.0.3", + "version": "9.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -4624,7 +4614,7 @@ "npm-registry-fetch": "^16.0.0", "proc-log": "^3.0.0", "semver": "^7.3.7", - "sigstore": "^2.1.0", + "sigstore": "^2.2.0", "ssri": "^10.0.5" }, "engines": { @@ -5120,7 +5110,7 @@ } }, "node_modules/npm/node_modules/pacote": { - "version": "17.0.5", + "version": "17.0.6", "dev": true, "inBundle": true, "license": "ISC", @@ -5140,7 +5130,7 @@ "promise-retry": "^2.0.1", "read-package-json": "^7.0.0", "read-package-json-fast": "^3.0.0", - "sigstore": "^2.0.0", + "sigstore": "^2.2.0", "ssri": "^10.0.0", "tar": "^6.1.11" }, @@ -5222,7 +5212,7 @@ } }, "node_modules/npm/node_modules/promise-call-limit": { - "version": "1.0.2", + "version": "3.0.1", "dev": true, "inBundle": true, "license": "ISC", @@ -5401,15 +5391,17 @@ } }, "node_modules/npm/node_modules/sigstore": { - "version": "2.1.0", + "version": "2.2.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.1.0", + "@sigstore/bundle": "^2.1.1", + "@sigstore/core": "^0.2.0", "@sigstore/protobuf-specs": "^0.2.1", - "@sigstore/sign": "^2.1.0", - "@sigstore/tuf": "^2.1.0" + "@sigstore/sign": "^2.2.1", + "@sigstore/tuf": "^2.3.0", + "@sigstore/verify": "^0.1.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -5526,37 +5518,7 @@ "node": ">=8" } }, - "node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/string-width/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/string-width/node_modules/strip-ansi": { + "node_modules/npm/node_modules/strip-ansi": { "version": "6.0.1", "dev": true, "inBundle": true, @@ -5568,21 +5530,6 @@ "node": ">=8" } }, - "node_modules/npm/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/npm/node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", @@ -5596,15 +5543,6 @@ "node": ">=8" } }, - "node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/npm/node_modules/supports-color": { "version": "9.4.0", "dev": true, @@ -5689,7 +5627,7 @@ } }, "node_modules/npm/node_modules/tuf-js": { - "version": "2.1.0", + "version": "2.2.0", "dev": true, "inBundle": true, "license": "MIT", @@ -5837,15 +5775,6 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { "version": "4.3.0", "dev": true, @@ -5861,16 +5790,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": { "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { @@ -5896,6 +5825,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, "node_modules/npm/node_modules/write-file-atomic": { "version": "5.0.1", "dev": true, @@ -6326,9 +6270,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.9.0.tgz", - "integrity": "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.1.tgz", + "integrity": "sha512-7ZnJYTp6uc04uYRISWtiX3DSKB/fxNQT0B5o1OUeCqiQiwF+JC9+rJiZIDrPrNCLLuTqyQmh4VdQqh/ZOkv9MQ==", "dev": true, "engines": { "node": ">=16" @@ -6355,9 +6299,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.9.0.tgz", - "integrity": "sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==", + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.1.tgz", + "integrity": "sha512-7ZnJYTp6uc04uYRISWtiX3DSKB/fxNQT0B5o1OUeCqiQiwF+JC9+rJiZIDrPrNCLLuTqyQmh4VdQqh/ZOkv9MQ==", "dev": true, "engines": { "node": ">=16" @@ -6855,9 +6799,9 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", "dev": true }, "node_modules/spdx-expression-parse": { From 6df0bc4cf83a86f170369263dfa1f2e104b93ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Ram=C3=ADrez?= Date: Sat, 3 Feb 2024 11:04:29 +0100 Subject: [PATCH 44/69] fix: add "cancelled" as possible conclusion of a completed workflow step (#892) --- .../api.github.com/common/workflow-step-completed.schema.json | 2 +- payload-types/schema.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/payload-schemas/api.github.com/common/workflow-step-completed.schema.json b/payload-schemas/api.github.com/common/workflow-step-completed.schema.json index f14b6d77c..5424416ed 100644 --- a/payload-schemas/api.github.com/common/workflow-step-completed.schema.json +++ b/payload-schemas/api.github.com/common/workflow-step-completed.schema.json @@ -15,7 +15,7 @@ "status": { "type": "string", "enum": ["completed"] }, "conclusion": { "type": "string", - "enum": ["failure", "skipped", "success"] + "enum": ["failure", "skipped", "success", "cancelled"] }, "number": { "type": "integer" }, "started_at": { "type": "string", "format": "date-time" }, diff --git a/payload-types/schema.d.ts b/payload-types/schema.d.ts index aba245f48..ec585698a 100644 --- a/payload-types/schema.d.ts +++ b/payload-types/schema.d.ts @@ -8324,7 +8324,7 @@ export interface WorkflowStepQueued { export interface WorkflowStepCompleted { name: string; status: "completed"; - conclusion: "failure" | "skipped" | "success"; + conclusion: "failure" | "skipped" | "success" | "cancelled"; number: number; started_at: string; completed_at: string; From e5f347725a04024287f37eb1b8d105b198b8ac27 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 4 Feb 2024 13:52:26 -0800 Subject: [PATCH 45/69] chore(deps): update dependency prettier to v3.2.5 * chore(deps): update dependency prettier to v3.2.5 * style: prettier --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Create or Update Pull Request Action --- package-lock.json | 8 ++++---- package.json | 2 +- tsconfig.json | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index 64c4ed17a..2fa4f0c9f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.4", + "prettier": "3.2.5", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", @@ -6132,9 +6132,9 @@ } }, "node_modules/prettier": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.4.tgz", - "integrity": "sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ==", + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", "dev": true, "bin": { "prettier": "bin/prettier.cjs" diff --git a/package.json b/package.json index 8164d2f54..908b0c2ce 100644 --- a/package.json +++ b/package.json @@ -83,7 +83,7 @@ "got": "^14.0.0", "json-diff": "^1.0.0", "json-schema-to-typescript": "^13.0.0", - "prettier": "3.2.4", + "prettier": "3.2.5", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", diff --git a/tsconfig.json b/tsconfig.json index ec1c2ad9a..00a2feced 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,8 +17,8 @@ "noFallthroughCasesInSwitch": true, "noEmitOnError": true, "removeComments": false, - "esModuleInterop": true, + "esModuleInterop": true }, "exclude": ["cache", "coverage", "node_modules"], - "include": ["**/*.js", "**/*.ts", "**/*.mts"], + "include": ["**/*.js", "**/*.ts", "**/*.mts"] } From dd0f3c20ae198bfdc16686c97119e2d15b2b084d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 09:37:17 -0800 Subject: [PATCH 46/69] build(deps): lock file maintenance (#894) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 44 +++++++++++++++--------------- payload-examples/package-lock.json | 6 ++-- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2fa4f0c9f..5f173cbc4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.10", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.10.tgz", - "integrity": "sha512-rZEfe/hJSGYmdfX9tvcPMYeYPW2sNl50nsw4jZmRcaG0HIAb0WYEpsB05GOb53vjqpyE9GUhlDQ4jLSoB5q9kg==", + "version": "20.11.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.16.tgz", + "integrity": "sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -2100,9 +2100,9 @@ } }, "node_modules/got": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/got/-/got-14.0.0.tgz", - "integrity": "sha512-X01vTgaX9SwaMq5DfImvS+3GMQFFs5HtrrlS9CuzUSzkxAf/tWGEyynuI+Qy7BjciMczZGjyVSmawYbP4eYhYA==", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/got/-/got-14.2.0.tgz", + "integrity": "sha512-dBq2KkHcQl3AwPoIWsLsQScCPpUgRulz1qZVthjPYKYOPmYfBnekR3vxecjZbm91Vc3JUGnV9mqFX7B+Fe2quw==", "dev": true, "dependencies": { "@sindresorhus/is": "^6.1.0", @@ -2276,9 +2276,9 @@ } }, "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", "dev": true, "engines": { "node": ">= 4" @@ -6147,12 +6147,12 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.9", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.9.tgz", - "integrity": "sha512-b3Q7agXVqxK3UpYEJr0xLD51SxriYXESWUCjmxOBUGqnPFZOg9jZGZ+Ptzq252I6OqzXN2rj1tJIFq6KOGLLJw==", + "version": "2.4.10", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.10.tgz", + "integrity": "sha512-qFzOfQDHi1tzvVJRuZ2jh1j6IFV5MURh5m5WDt+qfEMOf4SSL5RpwSysiX8u0W1PJYsM0vKJGNULt43wwteKiQ==", "dev": true, "dependencies": { - "sort-package-json": "2.6.0", + "sort-package-json": "2.7.0", "synckit": "0.9.0" }, "peerDependencies": { @@ -6270,9 +6270,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.1.tgz", - "integrity": "sha512-7ZnJYTp6uc04uYRISWtiX3DSKB/fxNQT0B5o1OUeCqiQiwF+JC9+rJiZIDrPrNCLLuTqyQmh4VdQqh/ZOkv9MQ==", + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.2.tgz", + "integrity": "sha512-anpAG63wSpdEbLwOqH8L84urkL6PiVIov3EMmgIhhThevh9aiMQov+6Btx0wldNcvm4wV+e2/Rt1QdDwKHFbHw==", "dev": true, "engines": { "node": ">=16" @@ -6299,9 +6299,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.1.tgz", - "integrity": "sha512-7ZnJYTp6uc04uYRISWtiX3DSKB/fxNQT0B5o1OUeCqiQiwF+JC9+rJiZIDrPrNCLLuTqyQmh4VdQqh/ZOkv9MQ==", + "version": "4.10.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.2.tgz", + "integrity": "sha512-anpAG63wSpdEbLwOqH8L84urkL6PiVIov3EMmgIhhThevh9aiMQov+6Btx0wldNcvm4wV+e2/Rt1QdDwKHFbHw==", "dev": true, "engines": { "node": ">=16" @@ -6713,9 +6713,9 @@ "dev": true }, "node_modules/sort-package-json": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.6.0.tgz", - "integrity": "sha512-XSQ+lY9bAYA8ZsoChcEoPlgcSMaheziEp1beox1JVxy1SV4F2jSq9+h2rJ+3mC/Dhu9Ius1DLnInD5AWcsDXZw==", + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.7.0.tgz", + "integrity": "sha512-6AayF8bp6L+WROgpbhTMUtB9JSFmpGHjmW7DyaNPS1HwlTw2oSVlUUtlkHSEZmg5o89F3zvLBZNvMeZ1T4fjQg==", "dev": true, "dependencies": { "detect-indent": "^7.0.1", diff --git a/payload-examples/package-lock.json b/payload-examples/package-lock.json index d89f6b76b..474e87393 100644 --- a/payload-examples/package-lock.json +++ b/payload-examples/package-lock.json @@ -14,9 +14,9 @@ "devDependencies": {} }, "node_modules/@octokit/webhooks-types": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.3.1.tgz", - "integrity": "sha512-u6355ZsZnHwmxen30SrqnYb1pXieBFkYgkNzt+Ed4Ao5tupN1OErHfzwiV6hq6duGkDAYASbq7/uVJQ69PjLEg==" + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.3.2.tgz", + "integrity": "sha512-JWOoOgtWTFnTSAamPXXyjTY5/apttvNxF+vPBnwdSu5cj5snrd7FO0fyw4+wTXy8fHduq626JjhO+TwCyyA6vA==" } } } From 18b883b6597c076c66d267d9bdd39c7338a20813 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 21:07:02 -0800 Subject: [PATCH 47/69] build(deps): lock file maintenance Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 228 +++++++++++++++++++++++++++++----------------- 1 file changed, 146 insertions(+), 82 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5f173cbc4..37c5a21fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -435,9 +435,9 @@ } }, "node_modules/@octokit/request": { - "version": "8.1.6", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz", - "integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.2.0.tgz", + "integrity": "sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==", "dev": true, "dependencies": { "@octokit/endpoint": "^9.0.0", @@ -661,9 +661,9 @@ } }, "node_modules/@sindresorhus/merge-streams": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", - "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.1.0.tgz", + "integrity": "sha512-g3/sYJWXTAf3Ce861z4/mW9jDxN7hoNHZMEyhd3Zh7GKQPiovWNttzhRW2BeGPwPxPpLDKumL6Sg056VAMjdkg==", "dev": true, "engines": { "node": ">=18" @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.16", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.16.tgz", - "integrity": "sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==", + "version": "20.11.17", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.17.tgz", + "integrity": "sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -920,12 +920,6 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==", - "dev": true - }, "node_modules/any-promise": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", @@ -1056,19 +1050,6 @@ "node": ">=6" } }, - "node_modules/cardinal": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", - "integrity": "sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==", - "dev": true, - "dependencies": { - "ansicolors": "~0.3.2", - "redeyed": "~2.1.0" - }, - "bin": { - "cdl": "bin/cdl.js" - } - }, "node_modules/chalk": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", @@ -1159,6 +1140,102 @@ "node": ">=0.10" } }, + "node_modules/cli-highlight": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", + "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "bin": { + "highlight": "bin/highlight" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" + } + }, + "node_modules/cli-highlight/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/cli-highlight/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/cli-highlight/node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true + }, + "node_modules/cli-highlight/node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/cli-highlight/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "node_modules/cli-highlight/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cli-highlight/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/cli-table3": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", @@ -1725,9 +1802,9 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "dev": true, "engines": { "node": ">=6" @@ -1745,19 +1822,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/event-emitter": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", @@ -1829,9 +1893,9 @@ } }, "node_modules/fastq": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.0.tgz", - "integrity": "sha512-zGygtijUMT7jnk3h26kUms3BkSDp4IfIKjmnqI2tvx6nuBfiF1UqOxbnLfzdv+apBy+53oaImsKtMw/xYbW+1w==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -2068,12 +2132,12 @@ } }, "node_modules/globby": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", - "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", "dev": true, "dependencies": { - "@sindresorhus/merge-streams": "^1.0.0", + "@sindresorhus/merge-streams": "^2.1.0", "fast-glob": "^3.3.2", "ignore": "^5.2.4", "path-type": "^5.0.0", @@ -2161,9 +2225,9 @@ } }, "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", + "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", "dev": true, "dependencies": { "function-bind": "^1.1.2" @@ -2178,6 +2242,15 @@ "integrity": "sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==", "dev": true }, + "node_modules/highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", + "dev": true, + "engines": { + "node": "*" + } + }, "node_modules/hook-std": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", @@ -2831,9 +2904,9 @@ "dev": true }, "node_modules/marked": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-11.2.0.tgz", - "integrity": "sha512-HR0m3bvu0jAPYiIvLUUQtdg1g6D247//lvcekpHO1WMvbwDlwSkZAX9Lw4F4YHE1T0HaaNve0tuAWuV1UJ6vtw==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.0.tgz", + "integrity": "sha512-Vkwtq9rLqXryZnWaQc86+FHLC6tr/fycMfYAhiOIXkrNmeGAyhSxjqu0Rs1i0bBqw5u0S7+lV9fdH2ZSVaoa0w==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -2843,14 +2916,14 @@ } }, "node_modules/marked-terminal": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-6.2.0.tgz", - "integrity": "sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-7.0.0.tgz", + "integrity": "sha512-sNEx8nn9Ktcm6pL0TnRz8tnXq/mSS0Q1FRSwJOAqw4lAB4l49UeDf85Gm1n9RPFm5qurCPjwi1StAQT2XExhZw==", "dev": true, "dependencies": { "ansi-escapes": "^6.2.0", - "cardinal": "^2.1.1", "chalk": "^5.3.0", + "cli-highlight": "^2.1.11", "cli-table3": "^0.6.3", "node-emoji": "^2.1.3", "supports-hyperlinks": "^3.0.0" @@ -2859,7 +2932,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "marked": ">=1 <12" + "marked": ">=1 <13" } }, "node_modules/memoizee": { @@ -6325,15 +6398,6 @@ "util-deprecate": "~1.0.1" } }, - "node_modules/redeyed": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz", - "integrity": "sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==", - "dev": true, - "dependencies": { - "esprima": "~4.0.0" - } - }, "node_modules/registry-auth-token": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", @@ -6434,9 +6498,9 @@ "dev": true }, "node_modules/semantic-release": { - "version": "23.0.0", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.0.tgz", - "integrity": "sha512-Jz7jEWO2igTtske112gC4PPE2whCMVrsgxUPG3/SZI7VE357suIUZFlJd1Yu0g2I6RPc2HxNEfUg7KhmDTjwqg==", + "version": "23.0.2", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.2.tgz", + "integrity": "sha512-OnVYJ6Xgzwe1x8MKswba7RU9+5djS1MWRTrTn5qsq3xZYpslroZkV9Pt0dA2YcIuieeuSZWJhn+yUWoBUHO5Fw==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", @@ -6457,8 +6521,8 @@ "hosted-git-info": "^7.0.0", "import-from-esm": "^1.3.1", "lodash-es": "^4.17.21", - "marked": "^11.0.0", - "marked-terminal": "^6.0.0", + "marked": "^12.0.0", + "marked-terminal": "^7.0.0", "micromatch": "^4.0.2", "p-each-series": "^3.0.0", "p-reduce": "^3.0.0", @@ -6499,9 +6563,9 @@ } }, "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, "dependencies": { "lru-cache": "^6.0.0" @@ -6815,9 +6879,9 @@ } }, "node_modules/spdx-license-ids": { - "version": "3.0.16", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", - "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.17.tgz", + "integrity": "sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==", "dev": true }, "node_modules/split2": { From 95500635ffc23bf00d1e5445596af0ebc89eaaf4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 23:05:12 -0800 Subject: [PATCH 48/69] build(deps): lock file maintenance (#899) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 48 +++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/package-lock.json b/package-lock.json index 37c5a21fd..52a482d99 100644 --- a/package-lock.json +++ b/package-lock.json @@ -261,9 +261,9 @@ } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, "engines": { "node": ">=6.0.0" @@ -464,9 +464,9 @@ } }, "node_modules/@octokit/types": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz", - "integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==", + "version": "12.5.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.5.0.tgz", + "integrity": "sha512-YJEKcb0KkJlIUNU/zjnZwHEP8AoVh/OoIcP/1IyR4UHxExz7fzpe/a8IG4wBtQi7QDEqiomVLX88S6FpxxAJtg==", "dev": true, "dependencies": { "@octokit/openapi-types": "^19.1.0" @@ -661,9 +661,9 @@ } }, "node_modules/@sindresorhus/merge-streams": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.1.0.tgz", - "integrity": "sha512-g3/sYJWXTAf3Ce861z4/mW9jDxN7hoNHZMEyhd3Zh7GKQPiovWNttzhRW2BeGPwPxPpLDKumL6Sg056VAMjdkg==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.2.1.tgz", + "integrity": "sha512-255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw==", "dev": true, "engines": { "node": ">=18" @@ -758,9 +758,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.17", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.17.tgz", - "integrity": "sha512-QmgQZGWu1Yw9TDyAP9ZzpFJKynYNeOvwMJmaxABfieQoVoiVOS6MN1WSpqpRcbeA5+RW82kraAVxCCJg+780Qw==", + "version": "20.11.19", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", + "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -2301,9 +2301,9 @@ "dev": true }, "node_modules/http-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", - "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "dependencies": { "agent-base": "^7.1.0", @@ -2327,9 +2327,9 @@ } }, "node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", "dev": true, "dependencies": { "agent-base": "^7.0.2", @@ -6220,9 +6220,9 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.10", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.10.tgz", - "integrity": "sha512-qFzOfQDHi1tzvVJRuZ2jh1j6IFV5MURh5m5WDt+qfEMOf4SSL5RpwSysiX8u0W1PJYsM0vKJGNULt43wwteKiQ==", + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.11.tgz", + "integrity": "sha512-zmOmM96GkAjT2zUdHSQJnpyVpbisBkewDluo2NLHjI/JN7uOCZlEzWVaMhdqyZ8LVdQDfzamvbvSw4swd3Az1A==", "dev": true, "dependencies": { "sort-package-json": "2.7.0", @@ -6863,9 +6863,9 @@ } }, "node_modules/spdx-exceptions": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", - "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true }, "node_modules/spdx-expression-parse": { From 9220feed0c94293cb90bd273646ab6bb24684290 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 20 Feb 2024 12:58:05 -0500 Subject: [PATCH 49/69] maint: Disambiguate test jobs (#896) --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7bfa7d92d..e473af337 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ name: Test - synchronize jobs: npmCi: - name: test + name: CI Checks runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 @@ -21,7 +21,7 @@ jobs: - run: npm ci - run: npm test typecheck: - name: test + name: Type Check runs-on: ubuntu-latest steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 From 33b46f55189160285e288db01c2cb2dae24a9962 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Tue, 20 Feb 2024 19:12:32 -0500 Subject: [PATCH 50/69] build: fix prettier script (#898) --- bin/format-with-prettier.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/format-with-prettier.mts b/bin/format-with-prettier.mts index 7d15931c9..039bb46eb 100755 --- a/bin/format-with-prettier.mts +++ b/bin/format-with-prettier.mts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S ts-node-transpile-only --esm +#!/usr/bin/env -S node --no-warnings=ExperimentalWarning --loader ts-node/esm import fs from "fs"; import { JSONSchema7 } from "json-schema"; From 32119c743f3ac460b6e3a4e23071f91490904dbe Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:20:59 -0800 Subject: [PATCH 51/69] build(deps): lock file maintenance (#903) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 112 ++++++++++++++++++++++++++-------------------- 1 file changed, 64 insertions(+), 48 deletions(-) diff --git a/package-lock.json b/package-lock.json index 52a482d99..8e235768d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -381,18 +381,18 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", - "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==", + "version": "20.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", + "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", - "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.0.tgz", + "integrity": "sha512-NKi0bJEZqOSbBLMv9kdAcuocpe05Q2xAXNLTGi0HN2GSMFJHNZuSoPNa0tcQFTOFCKe+ZaYBZ3lpXh1yxgUDCA==", "dev": true, "dependencies": { - "@octokit/types": "^12.4.0" + "@octokit/types": "^12.6.0" }, "engines": { "node": ">= 18" @@ -419,9 +419,9 @@ } }, "node_modules/@octokit/plugin-throttling": { - "version": "8.1.3", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.1.3.tgz", - "integrity": "sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.2.0.tgz", + "integrity": "sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==", "dev": true, "dependencies": { "@octokit/types": "^12.2.0", @@ -464,12 +464,12 @@ } }, "node_modules/@octokit/types": { - "version": "12.5.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.5.0.tgz", - "integrity": "sha512-YJEKcb0KkJlIUNU/zjnZwHEP8AoVh/OoIcP/1IyR4UHxExz7fzpe/a8IG4wBtQi7QDEqiomVLX88S6FpxxAJtg==", + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", + "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", "dev": true, "dependencies": { - "@octokit/openapi-types": "^19.1.0" + "@octokit/openapi-types": "^20.0.0" } }, "node_modules/@pkgr/core": { @@ -505,12 +505,6 @@ "node": ">=12.22.0" } }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true - }, "node_modules/@pnpm/npm-conf": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.2.2.tgz", @@ -661,9 +655,9 @@ } }, "node_modules/@sindresorhus/merge-streams": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.2.1.tgz", - "integrity": "sha512-255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", "dev": true, "engines": { "node": ">=18" @@ -758,9 +752,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.19", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", - "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==", + "version": "20.11.20", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", + "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1754,14 +1748,15 @@ } }, "node_modules/es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "version": "0.10.63", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.63.tgz", + "integrity": "sha512-hUCZd2Byj/mNKjfP9jXrdVZ62B8KuA/VoK7X8nUh5qT+AxDmcbvZz041oDVZdbIN1qW6XY9VDNwzkvKnZvK2TQ==", "dev": true, "hasInstallScript": true, "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", + "esniff": "^2.0.1", "next-tick": "^1.1.0" }, "engines": { @@ -1822,6 +1817,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/esniff": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/esniff/-/esniff-2.0.1.tgz", + "integrity": "sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "es5-ext": "^0.10.62", + "event-emitter": "^0.3.5", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esniff/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, "node_modules/event-emitter": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", @@ -2189,9 +2205,9 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, "node_modules/handlebars": { @@ -3317,9 +3333,9 @@ } }, "node_modules/npm-run-path": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.2.0.tgz", - "integrity": "sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==", + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, "dependencies": { "path-key": "^4.0.0" @@ -6220,12 +6236,12 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.11.tgz", - "integrity": "sha512-zmOmM96GkAjT2zUdHSQJnpyVpbisBkewDluo2NLHjI/JN7uOCZlEzWVaMhdqyZ8LVdQDfzamvbvSw4swd3Az1A==", + "version": "2.4.12", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.12.tgz", + "integrity": "sha512-hifuuOgw5rHHTdouw9VrhT8+Nd7UwxtL1qco8dUfd4XUFQL6ia3xyjSxhPQTsGnSYFraTWy5Omb+MZm/OWDTpQ==", "dev": true, "dependencies": { - "sort-package-json": "2.7.0", + "sort-package-json": "2.8.0", "synckit": "0.9.0" }, "peerDependencies": { @@ -6343,9 +6359,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.10.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.2.tgz", - "integrity": "sha512-anpAG63wSpdEbLwOqH8L84urkL6PiVIov3EMmgIhhThevh9aiMQov+6Btx0wldNcvm4wV+e2/Rt1QdDwKHFbHw==", + "version": "4.10.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.3.tgz", + "integrity": "sha512-JLXyjizi072smKGGcZiAJDCNweT8J+AuRxmPZ1aG7TERg4ijx9REl8CNhbr36RV4qXqL1gO1FF9HL8OkVmmrsA==", "dev": true, "engines": { "node": ">=16" @@ -6372,9 +6388,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.10.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.2.tgz", - "integrity": "sha512-anpAG63wSpdEbLwOqH8L84urkL6PiVIov3EMmgIhhThevh9aiMQov+6Btx0wldNcvm4wV+e2/Rt1QdDwKHFbHw==", + "version": "4.10.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.3.tgz", + "integrity": "sha512-JLXyjizi072smKGGcZiAJDCNweT8J+AuRxmPZ1aG7TERg4ijx9REl8CNhbr36RV4qXqL1gO1FF9HL8OkVmmrsA==", "dev": true, "engines": { "node": ">=16" @@ -6777,9 +6793,9 @@ "dev": true }, "node_modules/sort-package-json": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.7.0.tgz", - "integrity": "sha512-6AayF8bp6L+WROgpbhTMUtB9JSFmpGHjmW7DyaNPS1HwlTw2oSVlUUtlkHSEZmg5o89F3zvLBZNvMeZ1T4fjQg==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.8.0.tgz", + "integrity": "sha512-PxeNg93bTJWmDGnu0HADDucoxfFiKkIr73Kv85EBThlI1YQPdc0XovBgg2llD0iABZbu2SlKo8ntGmOP9wOj/g==", "dev": true, "dependencies": { "detect-indent": "^7.0.1", From 1a8dcd7704f143b45994aacead9711fbd1a6f92d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 12:39:51 -0600 Subject: [PATCH 52/69] ci(action): update actions/add-to-project action to v0.6.0 (#902) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/add_to_octokit_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml index 60b2818b6..e1c533150 100644 --- a/.github/workflows/add_to_octokit_project.yml +++ b/.github/workflows/add_to_octokit_project.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/add-to-project@v0.5.0 + - uses: actions/add-to-project@v0.6.0 with: project-url: https://github.com/orgs/octokit/projects/10 github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} From e0b47e292f2e57b4837f34e00aef47611f4cb016 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sun, 3 Mar 2024 21:02:25 -0500 Subject: [PATCH 53/69] maint: fix spelling errors (#897) Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- cache/event-types-and-payloads.html | 2 +- .../ghes-35/webhook-events-and-payloads.html | 4 +-- .../webhook-events-and-payloads.html | 4 +-- ...son => edited.with-reactions.payload.json} | 0 ...on => labeled.with-reactions.payload.json} | 0 ...son => locked.with-reactions.payload.json} | 0 .../discussion/transferred.payload.json | 2 +- payload-examples/api.github.com/index.json | 26 +++++++++---------- .../package/published.npm.payload.json | 6 ++--- .../created.payload.json | 2 +- .../created.with-organization.payload.json | 2 +- .../deleted.payload.json | 2 +- .../edited.payload.json | 2 +- .../resolved.payload.json | 2 +- .../unresolved.payload.json | 2 +- ...released.with-discussion-url.payload.json} | 0 .../sponsorship/created.payload.json | 2 +- .../sponsorship/downgraded.payload.json | 4 +-- payload-examples/github.ae/index.json | 2 +- .../created.payload.json | 2 +- .../api.github.com/common/release.schema.json | 2 +- .../common/sponsorship-tier.schema.json | 4 +-- payload-types/schema.d.ts | 4 +-- 24 files changed, 39 insertions(+), 39 deletions(-) rename payload-examples/api.github.com/discussion/{edited.with-rections.payload.json => edited.with-reactions.payload.json} (100%) rename payload-examples/api.github.com/discussion/{labeled.with-rections.payload.json => labeled.with-reactions.payload.json} (100%) rename payload-examples/api.github.com/discussion/{locked.with-rections.payload.json => locked.with-reactions.payload.json} (100%) rename payload-examples/api.github.com/release/{prereleased.with-disussion-url.payload.json => prereleased.with-discussion-url.payload.json} (100%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7e36fc50e..9836f8fcc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -70,7 +70,7 @@ The webhook schemas are [JSON schemas](https://json-schema.org/) that are manual "enum": ["foo", "bar", null] } ``` -- When a property can be of multiple types, use a [`oneOf`](https://json-schema.org/understanding-json-schema/reference/combining.html#oneof) for the decleration of that property, and declare each type in the `oneOf` +- When a property can be of multiple types, use a [`oneOf`](https://json-schema.org/understanding-json-schema/reference/combining.html#oneof) for the declaration of that property, and declare each type in the `oneOf` - When it is possible that a property may have a value of `null`: - if there is only one other type the property can be, change the `type` property to an array including the type, and the string `null` diff --git a/cache/event-types-and-payloads.html b/cache/event-types-and-payloads.html index ab77e0189..7866612c0 100644 --- a/cache/event-types-and-payloads.html +++ b/cache/event-types-and-payloads.html @@ -8183,7 +8183,7 @@

"type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/cache/ghes-35/webhook-events-and-payloads.html b/cache/ghes-35/webhook-events-and-payloads.html index dbd19f095..8cbafec57 100644 --- a/cache/ghes-35/webhook-events-and-payloads.html +++ b/cache/ghes-35/webhook-events-and-payloads.html @@ -9561,8 +9561,8 @@

"summary": "A simple npm package to demonstrate GitHub Packages", "name": "sha256:3da1996a8115d7616457760d9920b815241d0a03b34cf5f04e9a0e9d8de37498", "description": "", - "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [Github Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", - "body_html": "<h1>hello-world-npm</h1>\n<p>This is a simple npm package that demonstrates the <a href=\"https://github.com/features/package\">Github Package Registry</a>.</p>\n<h2>Installation</h2>\n<p><code>$ npm install</code></p>\n<h2>Usage</h2>\n<pre><code>const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n</code></pre>", + "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [GitHub Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", + "body_html": "<h1>hello-world-npm</h1>\n<p>This is a simple npm package that demonstrates the <a href=\"https://github.com/features/package\">GitHub Package Registry</a>.</p>\n<h2>Installation</h2>\n<p><code>$ npm install</code></p>\n<h2>Usage</h2>\n<pre><code>const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n</code></pre>", "release": { "url": "https://api.github.com/repos/Codertocat/hello-world-npm/releases/17264286", "html_url": "https://github.com/Codertocat/hello-world-npm/releases/tag/1.0.0", diff --git a/cache/github.ae/webhook-events-and-payloads.html b/cache/github.ae/webhook-events-and-payloads.html index e05629b9e..71113b4c6 100644 --- a/cache/github.ae/webhook-events-and-payloads.html +++ b/cache/github.ae/webhook-events-and-payloads.html @@ -9202,8 +9202,8 @@

"summary": "A simple npm package to demonstrate GitHub Packages", "name": "sha256:3da1996a8115d7616457760d9920b815241d0a03b34cf5f04e9a0e9d8de37498", "description": "", - "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [Github Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", - "body_html": "<h1>hello-world-npm</h1>\n<p>This is a simple npm package that demonstrates the <a href=\"https://github.com/features/package\">Github Package Registry</a>.</p>\n<h2>Installation</h2>\n<p><code>$ npm install</code></p>\n<h2>Usage</h2>\n<pre><code>const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n</code></pre>", + "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [GitHub Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", + "body_html": "<h1>hello-world-npm</h1>\n<p>This is a simple npm package that demonstrates the <a href=\"https://github.com/features/package\">GitHub Package Registry</a>.</p>\n<h2>Installation</h2>\n<p><code>$ npm install</code></p>\n<h2>Usage</h2>\n<pre><code>const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n</code></pre>", "release": { "url": "https://api.github.com/repos/Codertocat/hello-world-npm/releases/17264286", "html_url": "https://github.com/Codertocat/hello-world-npm/releases/tag/1.0.0", diff --git a/payload-examples/api.github.com/discussion/edited.with-rections.payload.json b/payload-examples/api.github.com/discussion/edited.with-reactions.payload.json similarity index 100% rename from payload-examples/api.github.com/discussion/edited.with-rections.payload.json rename to payload-examples/api.github.com/discussion/edited.with-reactions.payload.json diff --git a/payload-examples/api.github.com/discussion/labeled.with-rections.payload.json b/payload-examples/api.github.com/discussion/labeled.with-reactions.payload.json similarity index 100% rename from payload-examples/api.github.com/discussion/labeled.with-rections.payload.json rename to payload-examples/api.github.com/discussion/labeled.with-reactions.payload.json diff --git a/payload-examples/api.github.com/discussion/locked.with-rections.payload.json b/payload-examples/api.github.com/discussion/locked.with-reactions.payload.json similarity index 100% rename from payload-examples/api.github.com/discussion/locked.with-rections.payload.json rename to payload-examples/api.github.com/discussion/locked.with-reactions.payload.json diff --git a/payload-examples/api.github.com/discussion/transferred.payload.json b/payload-examples/api.github.com/discussion/transferred.payload.json index 517504eea..700622f6a 100644 --- a/payload-examples/api.github.com/discussion/transferred.payload.json +++ b/payload-examples/api.github.com/discussion/transferred.payload.json @@ -128,7 +128,7 @@ "site_admin": false }, "html_url": "https://github.com/Codertocat/hello-world-npm", - "description": "This is a simple npm package that demonstrates the Github Package Registry", + "description": "This is a simple npm package that demonstrates the GitHub Package Registry", "fork": false, "url": "https://api.github.com/repos/Codertocat/hello-world-npm", "forks_url": "https://api.github.com/repos/Codertocat/hello-world-npm/forks", diff --git a/payload-examples/api.github.com/index.json b/payload-examples/api.github.com/index.json index dee8443d8..2c5ef0a9a 100644 --- a/payload-examples/api.github.com/index.json +++ b/payload-examples/api.github.com/index.json @@ -14067,7 +14067,7 @@ "site_admin": false }, "html_url": "https://github.com/Codertocat/hello-world-npm", - "description": "This is a simple npm package that demonstrates the Github Package Registry", + "description": "This is a simple npm package that demonstrates the GitHub Package Registry", "fork": false, "url": "https://api.github.com/repos/Codertocat/hello-world-npm", "forks_url": "https://api.github.com/repos/Codertocat/hello-world-npm/forks", @@ -33517,7 +33517,7 @@ "package": { "id": 10696, "name": "hello-world-npm", - "namespace": "Codertocaat/hello-world-npm", + "namespace": "Codertocat/hello-world-npm", "description": null, "ecosystem": "docker", "package_type": "npm", @@ -33550,8 +33550,8 @@ "summary": "A simple npm package to demonstrate GitHub Packages", "name": "sha256:3da1996a8115d7616457760d9920b815241d0a03b34cf5f04e9a0e9d8de37498", "description": "", - "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [Github Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", - "body_html": "

hello-world-npm

\n

This is a simple npm package that demonstrates the Github Package Registry.

\n

Installation

\n

$ npm install

\n

Usage

\n
const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n
", + "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [GitHub Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", + "body_html": "

hello-world-npm

\n

This is a simple npm package that demonstrates the GitHub Package Registry.

\n

Installation

\n

$ npm install

\n

Usage

\n
const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n
", "release": { "url": "https://api.github.com/repos/Codertocat/hello-world-npm/releases/17264286", "html_url": "https://github.com/Codertocat/hello-world-npm/releases/tag/1.0.0", @@ -56347,7 +56347,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", @@ -56915,7 +56915,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", @@ -57497,7 +57497,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", @@ -58066,7 +58066,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", @@ -59581,7 +59581,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", @@ -60156,7 +60156,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", @@ -67076,7 +67076,7 @@ "monthly_price_in_dollars": 5, "name": "$5 a month", "is_one_time": false, - "is_custom_ammount": false + "is_custom_amount": false } }, "sender": { @@ -67154,7 +67154,7 @@ "monthly_price_in_dollars": 5, "name": "$5 a month", "is_one_time": false, - "is_custom_ammount": false + "is_custom_amount": false } }, "changes": { @@ -67167,7 +67167,7 @@ "monthly_price_in_dollars": 10, "name": "$10 a month", "is_one_time": false, - "is_custom_ammount": false + "is_custom_amount": false } } }, diff --git a/payload-examples/api.github.com/package/published.npm.payload.json b/payload-examples/api.github.com/package/published.npm.payload.json index df283a28d..82aeb0444 100644 --- a/payload-examples/api.github.com/package/published.npm.payload.json +++ b/payload-examples/api.github.com/package/published.npm.payload.json @@ -3,7 +3,7 @@ "package": { "id": 10696, "name": "hello-world-npm", - "namespace": "Codertocaat/hello-world-npm", + "namespace": "Codertocat/hello-world-npm", "description": null, "ecosystem": "docker", "package_type": "npm", @@ -36,8 +36,8 @@ "summary": "A simple npm package to demonstrate GitHub Packages", "name": "sha256:3da1996a8115d7616457760d9920b815241d0a03b34cf5f04e9a0e9d8de37498", "description": "", - "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [Github Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", - "body_html": "

hello-world-npm

\n

This is a simple npm package that demonstrates the Github Package Registry.

\n

Installation

\n

$ npm install

\n

Usage

\n
const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n
", + "body": "# hello-world-npm\n\nThis is a simple npm package that demonstrates the [GitHub Packages](https://github.com/features/package).\n\n## Installation \n\n`$ npm install`\n\n## Usage\n\n```\nconst myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n```\n\n", + "body_html": "

hello-world-npm

\n

This is a simple npm package that demonstrates the GitHub Package Registry.

\n

Installation

\n

$ npm install

\n

Usage

\n
const myPackage = require('hello-world-node-package');\nmyPackage.helloWorld();\n
", "release": { "url": "https://api.github.com/repos/Codertocat/hello-world-npm/releases/17264286", "html_url": "https://github.com/Codertocat/hello-world-npm/releases/tag/1.0.0", diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json index fb087bafe..60641a801 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json @@ -31,7 +31,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json index dd281e70c..1e185cd25 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json @@ -31,7 +31,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json index ef5426135..74b5054c5 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json @@ -31,7 +31,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json index 11f41f9d5..5f3a255dc 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json @@ -32,7 +32,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json index cd41d1b15..a47392b4c 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json @@ -410,7 +410,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json index fad9880ee..099415395 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json @@ -410,7 +410,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T15:20:37Z", "updated_at": "2019-05-15T15:20:38Z", "html_url": "https://github.com/Codertocat/Hello-World/pull/2#discussion_r284312630", diff --git a/payload-examples/api.github.com/release/prereleased.with-disussion-url.payload.json b/payload-examples/api.github.com/release/prereleased.with-discussion-url.payload.json similarity index 100% rename from payload-examples/api.github.com/release/prereleased.with-disussion-url.payload.json rename to payload-examples/api.github.com/release/prereleased.with-discussion-url.payload.json diff --git a/payload-examples/api.github.com/sponsorship/created.payload.json b/payload-examples/api.github.com/sponsorship/created.payload.json index 3ecadcdee..a3e3f5339 100644 --- a/payload-examples/api.github.com/sponsorship/created.payload.json +++ b/payload-examples/api.github.com/sponsorship/created.payload.json @@ -52,7 +52,7 @@ "monthly_price_in_dollars": 5, "name": "$5 a month", "is_one_time": false, - "is_custom_ammount": false + "is_custom_amount": false } }, "sender": { diff --git a/payload-examples/api.github.com/sponsorship/downgraded.payload.json b/payload-examples/api.github.com/sponsorship/downgraded.payload.json index c06ad6687..9f746a202 100644 --- a/payload-examples/api.github.com/sponsorship/downgraded.payload.json +++ b/payload-examples/api.github.com/sponsorship/downgraded.payload.json @@ -52,7 +52,7 @@ "monthly_price_in_dollars": 5, "name": "$5 a month", "is_one_time": false, - "is_custom_ammount": false + "is_custom_amount": false } }, "changes": { @@ -65,7 +65,7 @@ "monthly_price_in_dollars": 10, "name": "$10 a month", "is_one_time": false, - "is_custom_ammount": false + "is_custom_amount": false } } }, diff --git a/payload-examples/github.ae/index.json b/payload-examples/github.ae/index.json index e7a9d42d0..fd92eb4de 100644 --- a/payload-examples/github.ae/index.json +++ b/payload-examples/github.ae/index.json @@ -19619,7 +19619,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T19:38:07Z", "updated_at": "2019-05-15T19:38:08Z", "html_url": "https://octocoders.github.io/Codertocat/Hello-World/pull/2#discussion_r2", diff --git a/payload-examples/github.ae/pull_request_review_comment/created.payload.json b/payload-examples/github.ae/pull_request_review_comment/created.payload.json index d341a497d..f38411732 100644 --- a/payload-examples/github.ae/pull_request_review_comment/created.payload.json +++ b/payload-examples/github.ae/pull_request_review_comment/created.payload.json @@ -31,7 +31,7 @@ "type": "User", "site_admin": false }, - "body": "Maybe you should use more emojji on this line.", + "body": "Maybe you should use more emoji on this line.", "created_at": "2019-05-15T19:38:07Z", "updated_at": "2019-05-15T19:38:08Z", "html_url": "https://octocoders.github.io/Codertocat/Hello-World/pull/2#discussion_r2", diff --git a/payload-schemas/api.github.com/common/release.schema.json b/payload-schemas/api.github.com/common/release.schema.json index 26e052572..e5a4aaaad 100644 --- a/payload-schemas/api.github.com/common/release.schema.json +++ b/payload-schemas/api.github.com/common/release.schema.json @@ -37,7 +37,7 @@ "name": { "type": "string" }, "draft": { "type": "boolean", - "description": "Wether the release is a draft or published" + "description": "Whether the release is a draft or published" }, "author": { "$ref": "user.schema.json" }, "prerelease": { diff --git a/payload-schemas/api.github.com/common/sponsorship-tier.schema.json b/payload-schemas/api.github.com/common/sponsorship-tier.schema.json index 08ea2a127..31afcf343 100644 --- a/payload-schemas/api.github.com/common/sponsorship-tier.schema.json +++ b/payload-schemas/api.github.com/common/sponsorship-tier.schema.json @@ -10,7 +10,7 @@ "monthly_price_in_dollars", "name", "is_one_time", - "is_custom_ammount" + "is_custom_amount" ], "type": "object", "properties": { @@ -21,7 +21,7 @@ "monthly_price_in_dollars": { "type": "integer" }, "name": { "type": "string" }, "is_one_time": { "type": "boolean" }, - "is_custom_ammount": { "type": "boolean" } + "is_custom_amount": { "type": "boolean" } }, "additionalProperties": false, "title": "Sponsorship Tier" diff --git a/payload-types/schema.d.ts b/payload-types/schema.d.ts index ec585698a..e8b2745b5 100644 --- a/payload-types/schema.d.ts +++ b/payload-types/schema.d.ts @@ -7237,7 +7237,7 @@ export interface Release { target_commitish: string; name: string; /** - * Wether the release is a draft or published + * Whether the release is a draft or published */ draft: boolean; author: User; @@ -7927,7 +7927,7 @@ export interface SponsorshipTier { monthly_price_in_dollars: number; name: string; is_one_time: boolean; - is_custom_ammount: boolean; + is_custom_amount: boolean; } export interface SponsorshipCreatedEvent { action: "created"; From cdd43ea09fca0dc76c6af948b236cb12a7804e2c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 10:49:08 -0800 Subject: [PATCH 54/69] build(deps): lock file maintenance (#905) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 203 ++++++++++++++++++++++++---------------------- 1 file changed, 108 insertions(+), 95 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8e235768d..66aca9427 100644 --- a/package-lock.json +++ b/package-lock.json @@ -387,9 +387,9 @@ "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.0.tgz", - "integrity": "sha512-NKi0bJEZqOSbBLMv9kdAcuocpe05Q2xAXNLTGi0HN2GSMFJHNZuSoPNa0tcQFTOFCKe+ZaYBZ3lpXh1yxgUDCA==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.1.tgz", + "integrity": "sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==", "dev": true, "dependencies": { "@octokit/types": "^12.6.0" @@ -398,7 +398,7 @@ "node": ">= 18" }, "peerDependencies": { - "@octokit/core": ">=5" + "@octokit/core": "5" } }, "node_modules/@octokit/plugin-retry": { @@ -580,9 +580,9 @@ } }, "node_modules/@semantic-release/npm": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.2.tgz", - "integrity": "sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.3.tgz", + "integrity": "sha512-KUsozQGhRBAnoVg4UMZj9ep436VEGwT536/jwSqB7vcEfA6oncCUU7UIYTRdLx7GvTtqn0kBjnkfLVkcnBa2YQ==", "dev": true, "dependencies": { "@semantic-release/error": "^4.0.0", @@ -592,7 +592,7 @@ "lodash-es": "^4.17.21", "nerf-dart": "^1.0.0", "normalize-url": "^8.0.0", - "npm": "^10.0.0", + "npm": "^10.5.0", "rc": "^1.2.8", "read-pkg": "^9.0.0", "registry-auth-token": "^5.0.0", @@ -643,9 +643,9 @@ } }, "node_modules/@sindresorhus/is": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-6.1.0.tgz", - "integrity": "sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-6.2.0.tgz", + "integrity": "sha512-yM/IGPkVnYGblhDosFBwq0ZGdnVSBkNV4onUtipGMOjZd4kB6GAu3ys91aftSbyMHh6A2GPdt+KDI5NoWP63MQ==", "dev": true, "engines": { "node": ">=16" @@ -752,9 +752,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.20", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.20.tgz", - "integrity": "sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==", + "version": "20.11.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.24.tgz", + "integrity": "sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1119,13 +1119,13 @@ } }, "node_modules/cli-color": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.3.tgz", - "integrity": "sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-2.0.4.tgz", + "integrity": "sha512-zlnpg0jNcibNrO7GG9IeHH7maWFeCz+Ja1wx/7tZNU5ASSSSZ+/qZciM0/LHCYxSdqv5h2sdbQ/PXYdOuetXvA==", "dev": true, "dependencies": { "d": "^1.0.1", - "es5-ext": "^0.10.61", + "es5-ext": "^0.10.64", "es6-iterator": "^2.0.3", "memoizee": "^0.4.15", "timers-ext": "^0.1.7" @@ -1479,13 +1479,16 @@ } }, "node_modules/d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.2.tgz", + "integrity": "sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==", "dev": true, "dependencies": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" + "es5-ext": "^0.10.64", + "type": "^2.7.2" + }, + "engines": { + "node": ">=0.12" } }, "node_modules/debug": { @@ -1748,9 +1751,9 @@ } }, "node_modules/es5-ext": { - "version": "0.10.63", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.63.tgz", - "integrity": "sha512-hUCZd2Byj/mNKjfP9jXrdVZ62B8KuA/VoK7X8nUh5qT+AxDmcbvZz041oDVZdbIN1qW6XY9VDNwzkvKnZvK2TQ==", + "version": "0.10.64", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", + "integrity": "sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -1775,13 +1778,16 @@ } }, "node_modules/es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.4.tgz", + "integrity": "sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==", "dev": true, "dependencies": { - "d": "^1.0.1", - "ext": "^1.1.2" + "d": "^1.0.2", + "ext": "^1.7.0" + }, + "engines": { + "node": ">=0.12" } }, "node_modules/es6-weak-map": { @@ -1832,12 +1838,6 @@ "node": ">=0.10" } }, - "node_modules/esniff/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", - "dev": true - }, "node_modules/event-emitter": { "version": "0.3.5", "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", @@ -1880,12 +1880,6 @@ "type": "^2.7.2" } }, - "node_modules/ext/node_modules/type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", - "dev": true - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -3169,9 +3163,9 @@ } }, "node_modules/npm": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.4.0.tgz", - "integrity": "sha512-RS7Mx0OVfXlOcQLRePuDIYdFCVBPCNapWHplDK+mh7GDdP/Tvor4ocuybRRPSvfcRb2vjRJt1fHCqw3cr8qACQ==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.5.0.tgz", + "integrity": "sha512-Ejxwvfh9YnWVU2yA5FzoYLTW52vxHCz+MHrOFg9Cc8IFgF/6f5AGPAvb5WTay5DIUP1NIfN3VBZ0cLlGO0Ys+A==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3261,7 +3255,7 @@ "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.1", "@npmcli/run-script": "^7.0.4", - "@sigstore/tuf": "^2.3.0", + "@sigstore/tuf": "^2.3.1", "abbrev": "^2.0.0", "archy": "~1.0.0", "cacache": "^18.0.2", @@ -3312,7 +3306,7 @@ "proc-log": "^3.0.0", "qrcode-terminal": "^0.12.0", "read": "^2.1.0", - "semver": "^7.5.4", + "semver": "^7.6.0", "spdx-expression-parse": "^3.0.1", "ssri": "^10.0.5", "supports-color": "^9.4.0", @@ -3443,7 +3437,7 @@ "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/agent": { - "version": "2.2.0", + "version": "2.2.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3459,7 +3453,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.3.1", + "version": "7.4.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3472,7 +3466,7 @@ "@npmcli/name-from-folder": "^2.0.0", "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", - "@npmcli/query": "^3.0.1", + "@npmcli/query": "^3.1.0", "@npmcli/run-script": "^7.0.2", "bin-links": "^4.0.1", "cacache": "^18.0.0", @@ -3506,7 +3500,7 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.1.0", + "version": "8.2.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3677,7 +3671,7 @@ } }, "node_modules/npm/node_modules/@npmcli/query": { - "version": "3.0.1", + "version": "3.1.0", "dev": true, "inBundle": true, "license": "ISC", @@ -3715,19 +3709,19 @@ } }, "node_modules/npm/node_modules/@sigstore/bundle": { - "version": "2.1.1", + "version": "2.2.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.2.1" + "@sigstore/protobuf-specs": "^0.3.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/@sigstore/core": { - "version": "0.2.0", + "version": "1.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3736,7 +3730,7 @@ } }, "node_modules/npm/node_modules/@sigstore/protobuf-specs": { - "version": "0.2.1", + "version": "0.3.0", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3745,14 +3739,14 @@ } }, "node_modules/npm/node_modules/@sigstore/sign": { - "version": "2.2.1", + "version": "2.2.3", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.1.1", - "@sigstore/core": "^0.2.0", - "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/bundle": "^2.2.0", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.0", "make-fetch-happen": "^13.0.0" }, "engines": { @@ -3760,12 +3754,12 @@ } }, "node_modules/npm/node_modules/@sigstore/tuf": { - "version": "2.3.0", + "version": "2.3.1", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/protobuf-specs": "^0.3.0", "tuf-js": "^2.2.0" }, "engines": { @@ -3773,14 +3767,14 @@ } }, "node_modules/npm/node_modules/@sigstore/verify": { - "version": "0.1.0", + "version": "1.1.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.1.1", - "@sigstore/core": "^0.2.0", - "@sigstore/protobuf-specs": "^0.2.1" + "@sigstore/bundle": "^2.2.0", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -4187,7 +4181,7 @@ } }, "node_modules/npm/node_modules/diff": { - "version": "5.1.0", + "version": "5.2.0", "dev": true, "inBundle": true, "license": "BSD-3-Clause", @@ -4338,7 +4332,7 @@ "license": "ISC" }, "node_modules/npm/node_modules/hasown": { - "version": "2.0.0", + "version": "2.0.1", "dev": true, "inBundle": true, "license": "MIT", @@ -4368,7 +4362,7 @@ "license": "BSD-2-Clause" }, "node_modules/npm/node_modules/http-proxy-agent": { - "version": "7.0.0", + "version": "7.0.2", "dev": true, "inBundle": true, "license": "MIT", @@ -4381,7 +4375,7 @@ } }, "node_modules/npm/node_modules/https-proxy-agent": { - "version": "7.0.2", + "version": "7.0.4", "dev": true, "inBundle": true, "license": "MIT", @@ -4463,11 +4457,24 @@ "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/npm/node_modules/ip": { - "version": "2.0.0", + "node_modules/npm/node_modules/ip-address": { + "version": "9.0.5", "dev": true, "inBundle": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/npm/node_modules/ip-address/node_modules/sprintf-js": { + "version": "1.1.3", + "dev": true, + "inBundle": true, + "license": "BSD-3-Clause" }, "node_modules/npm/node_modules/ip-regex": { "version": "5.0.0", @@ -4544,6 +4551,12 @@ "@pkgjs/parseargs": "^0.11.0" } }, + "node_modules/npm/node_modules/jsbn": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, "node_modules/npm/node_modules/json-parse-even-better-errors": { "version": "3.0.1", "dev": true, @@ -4597,7 +4610,7 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.6", + "version": "6.0.7", "dev": true, "inBundle": true, "license": "ISC", @@ -4617,7 +4630,7 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.7", + "version": "7.0.8", "dev": true, "inBundle": true, "license": "ISC", @@ -4639,7 +4652,7 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.4", + "version": "5.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -4677,7 +4690,7 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.6", + "version": "6.0.7", "dev": true, "inBundle": true, "license": "ISC", @@ -4752,7 +4765,7 @@ } }, "node_modules/npm/node_modules/lru-cache": { - "version": "10.1.0", + "version": "10.2.0", "dev": true, "inBundle": true, "license": "ISC", @@ -5414,7 +5427,7 @@ "optional": true }, "node_modules/npm/node_modules/semver": { - "version": "7.5.4", + "version": "7.6.0", "dev": true, "inBundle": true, "license": "ISC", @@ -5480,17 +5493,17 @@ } }, "node_modules/npm/node_modules/sigstore": { - "version": "2.2.0", + "version": "2.2.2", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.1.1", - "@sigstore/core": "^0.2.0", - "@sigstore/protobuf-specs": "^0.2.1", - "@sigstore/sign": "^2.2.1", - "@sigstore/tuf": "^2.3.0", - "@sigstore/verify": "^0.1.0" + "@sigstore/bundle": "^2.2.0", + "@sigstore/core": "^1.0.0", + "@sigstore/protobuf-specs": "^0.3.0", + "@sigstore/sign": "^2.2.3", + "@sigstore/tuf": "^2.3.1", + "@sigstore/verify": "^1.1.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -5507,16 +5520,16 @@ } }, "node_modules/npm/node_modules/socks": { - "version": "2.7.1", + "version": "2.8.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { - "ip": "^2.0.0", + "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 10.13.0", + "node": ">= 16.0.0", "npm": ">= 3.0.0" } }, @@ -5545,7 +5558,7 @@ } }, "node_modules/npm/node_modules/spdx-exceptions": { - "version": "2.3.0", + "version": "2.5.0", "dev": true, "inBundle": true, "license": "CC-BY-3.0" @@ -5561,7 +5574,7 @@ } }, "node_modules/npm/node_modules/spdx-license-ids": { - "version": "3.0.16", + "version": "3.0.17", "dev": true, "inBundle": true, "license": "CC0-1.0" @@ -7206,9 +7219,9 @@ } }, "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", "dev": true }, "node_modules/type-fest": { From bc5f6fd16b0df0e3058512e7d44dcba9ba3e0bb0 Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:25:57 -0400 Subject: [PATCH 55/69] feat: schema updates (adds custom_properties field) to branch_protection_rule, check_suite, code_scanning_alert, commit_comment, create, delete, dependabot_alert, deploy_key, deployment, deployment_review, deployment_status, discussion, disscussion_comment, fork, gollum, issue_comment, issues, label, member, merge_group, meta, milestone, package, page_build. ping, project, project_card, project_column, public, pull_request, pull_request_review, pull_request_review_comment, pull_request_review_thread, push, registry_package, release, repository, repository_dispatch, repository_import, repository_vulnerability_alert, secret_scanning_alert, star, status, team, team_add, watch, workflow_dispatch, workflow_job, workflow_run, branch_protection_configuration, common, custom_property, custom_property_values (#904) * feat: new `branch_protection_rule` event * feat: new `custom_property_values` event * feat: new `custom_property` on `repository` * fix: update examples * build: update types * fix: update examples * build: update types * build: update index.json --------- Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com> --- .../created.1.payload.json | 3 +- .../created.payload.json | 3 +- .../deleted.payload.json | 3 +- .../edited.payload.json | 3 +- .../check_run/completed.1.payload.json | 3 +- .../check_run/completed.payload.json | 3 +- .../completed.with-organization.payload.json | 3 +- .../check_run/created.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../check_run/requested_action.payload.json | 3 +- .../check_run/rerequested.payload.json | 3 +- ...rerequested.with-organization.payload.json | 3 +- .../check_suite/completed.1.payload.json | 3 +- .../check_suite/completed.payload.json | 3 +- .../completed.with-organization.payload.json | 3 +- .../check_suite/requested.payload.json | 3 +- ...ad.with-email-with-special-characters.json | 3 +- .../requested.with-organization.payload.json | 3 +- .../check_suite/rerequested.payload.json | 3 +- ...rerequested.with-organization.payload.json | 3 +- .../closed-by-user.payload.json | 3 +- .../code_scanning_alert/created.payload.json | 3 +- .../code_scanning_alert/fixed.payload.json | 3 +- .../code_scanning_alert/reopened.payload.json | 3 +- .../reopened.with-organization.payload.json | 3 +- .../created.on-file.payload.json | 3 +- .../commit_comment/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../api.github.com/create/payload.json | 3 +- .../create/with-description.payload.json | 3 +- .../create/with-installation.payload.json | 3 +- .../create/with-organization.payload.json | 3 +- .../api.github.com/delete/payload.json | 3 +- .../delete/with-installation.payload.json | 3 +- .../delete/with-organization.payload.json | 3 +- .../dependabot_alert/created.payload.json | 3 +- .../dependabot_alert/fixed.payload.json | 3 +- .../deploy_key/created.payload.json | 3 +- .../deployment/gh-pages.payload.json | 3 +- .../api.github.com/deployment/payload.json | 3 +- .../deployment/with-installation.payload.json | 3 +- .../deployment_review/requested.payload.json | 3 +- .../deployment_status/gh-pages.payload.json | 3 +- .../deployment_status/payload.json | 3 +- .../with-installation.payload.json | 3 +- .../discussion/answered.payload.json | 3 +- .../discussion/category_changed.payload.json | 3 +- .../discussion/created.payload.json | 3 +- .../discussion/edited.payload.json | 3 +- .../edited.with-reactions.payload.json | 3 +- .../discussion/labeled.payload.json | 3 +- .../labeled.with-reactions.payload.json | 3 +- .../discussion/locked.payload.json | 3 +- .../locked.with-reactions.payload.json | 3 +- .../discussion/pinned.payload.json | 3 +- .../discussion/transferred.payload.json | 6 +- .../discussion/unanswered.payload.json | 3 +- .../discussion/unlabeled.payload.json | 3 +- .../discussion/unlocked.payload.json | 3 +- .../discussion_comment/created.payload.json | 3 +- .../discussion_comment/deleted.payload.json | 3 +- .../discussion_comment/edited.payload.json | 3 +- .../api.github.com/fork/payload.json | 6 +- .../fork/with-installation.payload.json | 6 +- .../api.github.com/gollum/payload.json | 3 +- .../gollum/with-installation.payload.json | 3 +- payload-examples/api.github.com/index.json | 939 ++++++++++++------ .../issue_comment/created.1.payload.json | 3 +- .../issue_comment/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../issue_comment/deleted.payload.json | 3 +- .../deleted.with-organization.payload.json | 3 +- .../issue_comment/edited.payload.json | 3 +- .../edited.with-organization.payload.json | 3 +- .../issues/assigned.payload.json | 3 +- .../assigned.with-installation.payload.json | 3 +- .../assigned.with-organization.payload.json | 3 +- .../issues/deleted.payload.json | 3 +- .../issues/demilestoned.payload.json | 3 +- ...emilestoned.with-organization.payload.json | 3 +- .../api.github.com/issues/edited.payload.json | 3 +- .../edited.with-organization.payload.json | 3 +- .../issues/labeled.payload.json | 3 +- .../labeled.with-organization.payload.json | 3 +- .../api.github.com/issues/locked.payload.json | 3 +- .../locked.with-organization.payload.json | 3 +- .../issues/milestoned.payload.json | 3 +- .../milestoned.with-organization.payload.json | 3 +- .../api.github.com/issues/opened.payload.json | 3 +- .../opened.with-empty-body.payload.json | 3 +- .../opened.with-organization.payload.json | 3 +- .../issues/opened.with-transfer.payload.json | 6 +- .../api.github.com/issues/pinned.payload.json | 3 +- .../issues/reopened.payload.json | 3 +- .../issues/transferred.payload.json | 6 +- .../issues/unassigned.payload.json | 3 +- .../unassigned.with-organization.payload.json | 3 +- .../issues/unlabeled.payload.json | 3 +- .../unlabeled.with-organization.payload.json | 3 +- .../issues/unlocked.payload.json | 3 +- .../unlocked.with-organization.payload.json | 3 +- .../issues/unpinned.payload.json | 3 +- .../label/created.1.payload.json | 3 +- .../api.github.com/label/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../api.github.com/label/deleted.payload.json | 3 +- .../api.github.com/label/edited.payload.json | 3 +- .../api.github.com/member/added.payload.json | 3 +- .../added.with-installation.payload.json | 3 +- .../api.github.com/member/edited.payload.json | 3 +- .../merge_group/checks_requested.payload.json | 3 +- .../api.github.com/meta/deleted.payload.json | 3 +- .../milestone/closed.payload.json | 3 +- .../closed.with-installation.payload.json | 3 +- .../milestone/created.payload.json | 3 +- .../milestone/deleted.payload.json | 3 +- .../package/published.docker.payload.json | 6 +- .../package/published.npm.payload.json | 3 +- .../api.github.com/page_build/payload.json | 3 +- .../page_build/with-installation.payload.json | 3 +- .../api.github.com/ping/payload.json | 3 +- .../ping/with-app_id.payload.json | 3 +- .../project/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../project_card/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../created.with-no-note.payload.json | 3 +- .../created.with-organization.payload.json | 3 +- .../project_card/deleted.payload.json | 3 +- .../deleted.with-installation.payload.json | 3 +- .../deleted.with-organization.payload.json | 3 +- .../project_card/moved.payload.json | 3 +- .../project_column/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../project_column/edited.payload.json | 3 +- .../api.github.com/public/payload.json | 3 +- .../public/with-installation.payload.json | 3 +- .../pull_request/assigned.payload.json | 9 +- .../assigned.with-organization.payload.json | 9 +- .../pull_request/closed.payload.json | 9 +- .../closed.with-organization.payload.json | 9 +- .../converted_to_draft.payload.json | 9 +- ...ed_to_draft.with-installation.payload.json | 9 +- ...ed_to_draft.with-organization.payload.json | 9 +- .../pull_request/labeled.payload.json | 9 +- .../labeled.with-organization.payload.json | 9 +- .../pull_request/locked.payload.json | 9 +- .../locked.with-organization.payload.json | 9 +- .../pull_request/opened.payload.json | 9 +- .../pull_request/opened.with-null-body.json | 9 +- .../opened.with-organization.payload.json | 9 +- .../ready_for_review.payload.json | 9 +- ..._for_review.with-installation.payload.json | 9 +- ..._for_review.with-organization.payload.json | 9 +- .../pull_request/reopened.payload.json | 9 +- .../reopened.with-organization.payload.json | 9 +- .../review_request_removed.payload.json | 9 +- .../review_requested.payload.json | 9 +- .../pull_request/synchronize.payload.json | 9 +- .../pull_request/unassigned.payload.json | 9 +- .../unassigned.with-organization.payload.json | 9 +- .../pull_request/unlabeled.payload.json | 9 +- .../unlabeled.with-organization.payload.json | 9 +- .../pull_request/unlocked.payload.json | 9 +- .../unlocked.with-organization.payload.json | 9 +- .../dismissed.payload.json | 9 +- .../submitted.payload.json | 9 +- .../submitted.with-organization.payload.json | 9 +- .../created.payload.json | 9 +- .../created.with-organization.payload.json | 9 +- .../deleted.payload.json | 9 +- .../edited.payload.json | 9 +- .../resolved.payload.json | 9 +- .../unresolved.payload.json | 9 +- .../api.github.com/push/1.payload.json | 3 +- .../api.github.com/push/payload.json | 3 +- .../push/with-installation.payload.json | 3 +- .../push/with-new-branch.payload.json | 3 +- .../with-no-username-committer.payload.json | 3 +- .../push/with-organization.payload.json | 3 +- .../published.docker.payload.json | 6 +- .../release/created.payload.json | 3 +- .../created.with-discussion-url.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../release/deleted.payload.json | 3 +- .../deleted.with-reactions.payload.json | 3 +- .../release/edited.payload.json | 3 +- .../edited.with-reactions.payload.json | 3 +- .../release/prereleased.payload.json | 3 +- ...ereleased.with-discussion-url.payload.json | 3 +- .../release/published.payload.json | 3 +- ...published.with-discussion-url.payload.json | 3 +- .../api.github.com/release/released.json | 3 +- .../repository/created.payload.json | 3 +- .../created.with-installation.payload.json | 3 +- .../repository/edited.payload.json | 3 +- ...ited.with-default_branch-edit.payload.json | 3 +- .../repository/privatized.payload.json | 3 +- .../privatized.with-organization.payload.json | 3 +- .../repository/publicized.payload.json | 3 +- .../publicized.with-organization.payload.json | 3 +- .../repository/renamed.payload.json | 3 +- .../repository/transferred.payload.json | 3 +- ...transferred.with-installation.payload.json | 3 +- ...transferred.with-organization.payload.json | 3 +- .../repository_dispatch/payload.json | 3 +- .../repository_import/payload.json | 3 +- .../create.payload.json | 3 +- .../create.with-organization.payload.json | 3 +- .../dismiss.payload.json | 3 +- .../reopened.payload.json | 3 +- .../api.github.com/star/created.payload.json | 3 +- .../api.github.com/star/deleted.payload.json | 3 +- .../api.github.com/status/payload.json | 3 +- .../with-author-committer-null.payload.json | 3 +- .../status/with-installation.payload.json | 3 +- .../team/added_to_repository.payload.json | 3 +- .../team/removed_from_repository.payload.json | 3 +- .../api.github.com/team_add/payload.json | 3 +- .../team_add/with-installation.payload.json | 3 +- .../api.github.com/watch/started.payload.json | 3 +- .../started.with-installation.payload.json | 3 +- .../workflow_dispatch/payload.json | 3 +- ...ted.failure.with-organization.payload.json | 3 +- ...ted.success.with-organization.payload.json | 3 +- .../workflow_job/in_progress.payload.json | 3 +- ...in_progress.with-queued-steps.payload.json | 3 +- .../workflow_job/queued.payload.json | 3 +- .../queued.with-deployment.payload.json | 3 +- .../workflow_job/waiting.payload.json | 3 +- .../workflow_run/completed.payload.json | 3 +- .../completed.with-pull-requests.payload.json | 3 +- .../workflow_run/requested.payload.json | 3 +- .../requested.with-conclusion.payload.json | 3 +- .../disabled.schema.json | 14 + .../enabled.schema.json | 14 + .../common/custom-property-value.schema.json | 22 + .../common/org-custom-property.schema.json | 44 + .../common/repository.schema.json | 15 +- .../custom_property/created.schema.json | 15 + .../custom_property/deleted.schema.json | 25 + .../updated.schema.json | 31 + payload-types/schema.d.ts | 223 ++++- 245 files changed, 1604 insertions(+), 686 deletions(-) create mode 100644 payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json create mode 100644 payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json create mode 100644 payload-schemas/api.github.com/common/custom-property-value.schema.json create mode 100644 payload-schemas/api.github.com/common/org-custom-property.schema.json create mode 100644 payload-schemas/api.github.com/custom_property/created.schema.json create mode 100644 payload-schemas/api.github.com/custom_property/deleted.schema.json create mode 100644 payload-schemas/api.github.com/custom_property_values/updated.schema.json diff --git a/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json b/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json index 71a92c189..a7806438d 100644 --- a/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/created.1.payload.json @@ -132,7 +132,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "wolfy1339", diff --git a/payload-examples/api.github.com/branch_protection_rule/created.payload.json b/payload-examples/api.github.com/branch_protection_rule/created.payload.json index eefacf6bb..19a22a529 100644 --- a/payload-examples/api.github.com/branch_protection_rule/created.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/created.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json b/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json index c2aa90f9d..9f0b59eb4 100644 --- a/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/deleted.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/branch_protection_rule/edited.payload.json b/payload-examples/api.github.com/branch_protection_rule/edited.payload.json index d72e3f22a..41aedbfe9 100644 --- a/payload-examples/api.github.com/branch_protection_rule/edited.payload.json +++ b/payload-examples/api.github.com/branch_protection_rule/edited.payload.json @@ -139,7 +139,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/check_run/completed.1.payload.json b/payload-examples/api.github.com/check_run/completed.1.payload.json index ac47a6bdf..839948ff5 100644 --- a/payload-examples/api.github.com/check_run/completed.1.payload.json +++ b/payload-examples/api.github.com/check_run/completed.1.payload.json @@ -279,7 +279,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_run/completed.payload.json b/payload-examples/api.github.com/check_run/completed.payload.json index df8d88dca..b180cc8f3 100644 --- a/payload-examples/api.github.com/check_run/completed.payload.json +++ b/payload-examples/api.github.com/check_run/completed.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_run/completed.with-organization.payload.json b/payload-examples/api.github.com/check_run/completed.with-organization.payload.json index 19ea02a95..0bf67ca39 100644 --- a/payload-examples/api.github.com/check_run/completed.with-organization.payload.json +++ b/payload-examples/api.github.com/check_run/completed.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_run/created.payload.json b/payload-examples/api.github.com/check_run/created.payload.json index ae09a8aa7..c4fbc4ff9 100644 --- a/payload-examples/api.github.com/check_run/created.payload.json +++ b/payload-examples/api.github.com/check_run/created.payload.json @@ -297,7 +297,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_run/created.with-organization.payload.json b/payload-examples/api.github.com/check_run/created.with-organization.payload.json index cebe6514e..909092d3b 100644 --- a/payload-examples/api.github.com/check_run/created.with-organization.payload.json +++ b/payload-examples/api.github.com/check_run/created.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_run/requested_action.payload.json b/payload-examples/api.github.com/check_run/requested_action.payload.json index f3a56a10a..f6c9d9b1f 100644 --- a/payload-examples/api.github.com/check_run/requested_action.payload.json +++ b/payload-examples/api.github.com/check_run/requested_action.payload.json @@ -271,7 +271,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "electron", diff --git a/payload-examples/api.github.com/check_run/rerequested.payload.json b/payload-examples/api.github.com/check_run/rerequested.payload.json index 85baf386c..0fe4f69b4 100644 --- a/payload-examples/api.github.com/check_run/rerequested.payload.json +++ b/payload-examples/api.github.com/check_run/rerequested.payload.json @@ -188,7 +188,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "github", diff --git a/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json b/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json index 814a283d2..e63c26aa4 100644 --- a/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json +++ b/payload-examples/api.github.com/check_run/rerequested.with-organization.payload.json @@ -188,7 +188,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_suite/completed.1.payload.json b/payload-examples/api.github.com/check_suite/completed.1.payload.json index 5238b24de..da8777de5 100644 --- a/payload-examples/api.github.com/check_suite/completed.1.payload.json +++ b/payload-examples/api.github.com/check_suite/completed.1.payload.json @@ -176,7 +176,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/completed.payload.json b/payload-examples/api.github.com/check_suite/completed.payload.json index 7ab752820..bb3de3c12 100644 --- a/payload-examples/api.github.com/check_suite/completed.payload.json +++ b/payload-examples/api.github.com/check_suite/completed.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json b/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json index 8f25337fb..3f0c32e27 100644 --- a/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json +++ b/payload-examples/api.github.com/check_suite/completed.with-organization.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_suite/requested.payload.json b/payload-examples/api.github.com/check_suite/requested.payload.json index 312932477..295845856 100644 --- a/payload-examples/api.github.com/check_suite/requested.payload.json +++ b/payload-examples/api.github.com/check_suite/requested.payload.json @@ -178,7 +178,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json b/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json index c90e98b83..0c3d9ab24 100644 --- a/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json +++ b/payload-examples/api.github.com/check_suite/requested.payload.with-email-with-special-characters.json @@ -180,7 +180,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json b/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json index 483a6f92b..99ecd9ddf 100644 --- a/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json +++ b/payload-examples/api.github.com/check_suite/requested.with-organization.payload.json @@ -178,7 +178,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/check_suite/rerequested.payload.json b/payload-examples/api.github.com/check_suite/rerequested.payload.json index edb6f1348..692545755 100644 --- a/payload-examples/api.github.com/check_suite/rerequested.payload.json +++ b/payload-examples/api.github.com/check_suite/rerequested.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "octocoders-linter[bot]", diff --git a/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json b/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json index 54d9b6eca..4d38adb09 100644 --- a/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json +++ b/payload-examples/api.github.com/check_suite/rerequested.with-organization.payload.json @@ -202,7 +202,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json b/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json index bd9c2ff3c..71e47da68 100644 --- a/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/closed-by-user.payload.json @@ -165,7 +165,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/code_scanning_alert/created.payload.json b/payload-examples/api.github.com/code_scanning_alert/created.payload.json index fa81dbd81..4bc3b8ecc 100644 --- a/payload-examples/api.github.com/code_scanning_alert/created.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/created.payload.json @@ -142,7 +142,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json b/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json index 4ba69b05c..2442a5477 100644 --- a/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/fixed.payload.json @@ -159,7 +159,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json b/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json index d5ff52eaf..9c8043ed8 100644 --- a/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/reopened.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json b/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json index 58b5bf39b..aa604f844 100644 --- a/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json +++ b/payload-examples/api.github.com/code_scanning_alert/reopened.with-organization.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/commit_comment/created.on-file.payload.json b/payload-examples/api.github.com/commit_comment/created.on-file.payload.json index a4f48d512..7d3f553d3 100644 --- a/payload-examples/api.github.com/commit_comment/created.on-file.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.on-file.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/commit_comment/created.payload.json b/payload-examples/api.github.com/commit_comment/created.payload.json index acca230b7..4c75c8c31 100644 --- a/payload-examples/api.github.com/commit_comment/created.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json b/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json index 7cf4b67ee..b511e5ea9 100644 --- a/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.with-installation.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json b/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json index a6a27f940..efa8f9dbb 100644 --- a/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/commit_comment/created.with-organization.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/create/payload.json b/payload-examples/api.github.com/create/payload.json index 9164ea910..cecdb053c 100644 --- a/payload-examples/api.github.com/create/payload.json +++ b/payload-examples/api.github.com/create/payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/create/with-description.payload.json b/payload-examples/api.github.com/create/with-description.payload.json index 6006fc338..e81bb7233 100644 --- a/payload-examples/api.github.com/create/with-description.payload.json +++ b/payload-examples/api.github.com/create/with-description.payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/create/with-installation.payload.json b/payload-examples/api.github.com/create/with-installation.payload.json index 768a3cb12..c347bdd90 100644 --- a/payload-examples/api.github.com/create/with-installation.payload.json +++ b/payload-examples/api.github.com/create/with-installation.payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/create/with-organization.payload.json b/payload-examples/api.github.com/create/with-organization.payload.json index 38c72e1c9..d41b183a1 100644 --- a/payload-examples/api.github.com/create/with-organization.payload.json +++ b/payload-examples/api.github.com/create/with-organization.payload.json @@ -100,7 +100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/delete/payload.json b/payload-examples/api.github.com/delete/payload.json index 98fa9128e..874dc5f65 100644 --- a/payload-examples/api.github.com/delete/payload.json +++ b/payload-examples/api.github.com/delete/payload.json @@ -98,7 +98,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/delete/with-installation.payload.json b/payload-examples/api.github.com/delete/with-installation.payload.json index e2e70f78a..c02b59a0f 100644 --- a/payload-examples/api.github.com/delete/with-installation.payload.json +++ b/payload-examples/api.github.com/delete/with-installation.payload.json @@ -98,7 +98,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/delete/with-organization.payload.json b/payload-examples/api.github.com/delete/with-organization.payload.json index a5b56815b..0d0766d0d 100644 --- a/payload-examples/api.github.com/delete/with-organization.payload.json +++ b/payload-examples/api.github.com/delete/with-organization.payload.json @@ -98,7 +98,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/dependabot_alert/created.payload.json b/payload-examples/api.github.com/dependabot_alert/created.payload.json index 719c712a1..244f71fb5 100644 --- a/payload-examples/api.github.com/dependabot_alert/created.payload.json +++ b/payload-examples/api.github.com/dependabot_alert/created.payload.json @@ -179,7 +179,8 @@ "forks": 0, "open_issues": 13, "watchers": 0, - "default_branch": "master" + "default_branch": "master", + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/dependabot_alert/fixed.payload.json b/payload-examples/api.github.com/dependabot_alert/fixed.payload.json index d0ebf1577..b9f4d521c 100644 --- a/payload-examples/api.github.com/dependabot_alert/fixed.payload.json +++ b/payload-examples/api.github.com/dependabot_alert/fixed.payload.json @@ -170,7 +170,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/deploy_key/created.payload.json b/payload-examples/api.github.com/deploy_key/created.payload.json index 1777074c9..6e304e46a 100644 --- a/payload-examples/api.github.com/deploy_key/created.payload.json +++ b/payload-examples/api.github.com/deploy_key/created.payload.json @@ -104,7 +104,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment/gh-pages.payload.json b/payload-examples/api.github.com/deployment/gh-pages.payload.json index 771bf5d20..ad61fb754 100644 --- a/payload-examples/api.github.com/deployment/gh-pages.payload.json +++ b/payload-examples/api.github.com/deployment/gh-pages.payload.json @@ -208,7 +208,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/deployment/payload.json b/payload-examples/api.github.com/deployment/payload.json index 99ba450cd..f307952ae 100644 --- a/payload-examples/api.github.com/deployment/payload.json +++ b/payload-examples/api.github.com/deployment/payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment/with-installation.payload.json b/payload-examples/api.github.com/deployment/with-installation.payload.json index f19a11a3e..87f00313e 100644 --- a/payload-examples/api.github.com/deployment/with-installation.payload.json +++ b/payload-examples/api.github.com/deployment/with-installation.payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment_review/requested.payload.json b/payload-examples/api.github.com/deployment_review/requested.payload.json index e90091d48..abed18fe1 100644 --- a/payload-examples/api.github.com/deployment_review/requested.payload.json +++ b/payload-examples/api.github.com/deployment_review/requested.payload.json @@ -391,7 +391,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "organization": { "login": "terraform-test-github", diff --git a/payload-examples/api.github.com/deployment_status/gh-pages.payload.json b/payload-examples/api.github.com/deployment_status/gh-pages.payload.json index a62eeeb22..b05deb5a5 100644 --- a/payload-examples/api.github.com/deployment_status/gh-pages.payload.json +++ b/payload-examples/api.github.com/deployment_status/gh-pages.payload.json @@ -246,7 +246,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/deployment_status/payload.json b/payload-examples/api.github.com/deployment_status/payload.json index 09f434a9f..34eb9683e 100644 --- a/payload-examples/api.github.com/deployment_status/payload.json +++ b/payload-examples/api.github.com/deployment_status/payload.json @@ -166,7 +166,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/deployment_status/with-installation.payload.json b/payload-examples/api.github.com/deployment_status/with-installation.payload.json index 6062a20c6..64c9a2c60 100644 --- a/payload-examples/api.github.com/deployment_status/with-installation.payload.json +++ b/payload-examples/api.github.com/deployment_status/with-installation.payload.json @@ -166,7 +166,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/answered.payload.json b/payload-examples/api.github.com/discussion/answered.payload.json index a70ab0458..e55cdcc1c 100644 --- a/payload-examples/api.github.com/discussion/answered.payload.json +++ b/payload-examples/api.github.com/discussion/answered.payload.json @@ -198,7 +198,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/category_changed.payload.json b/payload-examples/api.github.com/discussion/category_changed.payload.json index 81fe94a6d..85cd89f11 100644 --- a/payload-examples/api.github.com/discussion/category_changed.payload.json +++ b/payload-examples/api.github.com/discussion/category_changed.payload.json @@ -161,7 +161,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/created.payload.json b/payload-examples/api.github.com/discussion/created.payload.json index 5b237e308..7369f1a17 100644 --- a/payload-examples/api.github.com/discussion/created.payload.json +++ b/payload-examples/api.github.com/discussion/created.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/edited.payload.json b/payload-examples/api.github.com/discussion/edited.payload.json index 86877cc82..1acfba414 100644 --- a/payload-examples/api.github.com/discussion/edited.payload.json +++ b/payload-examples/api.github.com/discussion/edited.payload.json @@ -147,7 +147,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/edited.with-reactions.payload.json b/payload-examples/api.github.com/discussion/edited.with-reactions.payload.json index 031600aa7..0184c61fa 100644 --- a/payload-examples/api.github.com/discussion/edited.with-reactions.payload.json +++ b/payload-examples/api.github.com/discussion/edited.with-reactions.payload.json @@ -159,7 +159,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/labeled.payload.json b/payload-examples/api.github.com/discussion/labeled.payload.json index 5713f44ae..bcc4e2def 100644 --- a/payload-examples/api.github.com/discussion/labeled.payload.json +++ b/payload-examples/api.github.com/discussion/labeled.payload.json @@ -155,7 +155,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/labeled.with-reactions.payload.json b/payload-examples/api.github.com/discussion/labeled.with-reactions.payload.json index feac553b3..08a8c4ded 100644 --- a/payload-examples/api.github.com/discussion/labeled.with-reactions.payload.json +++ b/payload-examples/api.github.com/discussion/labeled.with-reactions.payload.json @@ -167,7 +167,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/locked.payload.json b/payload-examples/api.github.com/discussion/locked.payload.json index 31edf36cf..f71ea8bde 100644 --- a/payload-examples/api.github.com/discussion/locked.payload.json +++ b/payload-examples/api.github.com/discussion/locked.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/locked.with-reactions.payload.json b/payload-examples/api.github.com/discussion/locked.with-reactions.payload.json index ea8f72850..7f0544e1a 100644 --- a/payload-examples/api.github.com/discussion/locked.with-reactions.payload.json +++ b/payload-examples/api.github.com/discussion/locked.with-reactions.payload.json @@ -158,7 +158,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/pinned.payload.json b/payload-examples/api.github.com/discussion/pinned.payload.json index 0b2d04a1d..dab75f025 100644 --- a/payload-examples/api.github.com/discussion/pinned.payload.json +++ b/payload-examples/api.github.com/discussion/pinned.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/transferred.payload.json b/payload-examples/api.github.com/discussion/transferred.payload.json index 700622f6a..1bb794870 100644 --- a/payload-examples/api.github.com/discussion/transferred.payload.json +++ b/payload-examples/api.github.com/discussion/transferred.payload.json @@ -197,7 +197,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { @@ -296,7 +297,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/unanswered.payload.json b/payload-examples/api.github.com/discussion/unanswered.payload.json index 6f928aeec..208df2662 100644 --- a/payload-examples/api.github.com/discussion/unanswered.payload.json +++ b/payload-examples/api.github.com/discussion/unanswered.payload.json @@ -179,7 +179,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/unlabeled.payload.json b/payload-examples/api.github.com/discussion/unlabeled.payload.json index 3723e5ff4..af9cdd4f5 100644 --- a/payload-examples/api.github.com/discussion/unlabeled.payload.json +++ b/payload-examples/api.github.com/discussion/unlabeled.payload.json @@ -155,7 +155,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion/unlocked.payload.json b/payload-examples/api.github.com/discussion/unlocked.payload.json index 5103830a3..2520d6b74 100644 --- a/payload-examples/api.github.com/discussion/unlocked.payload.json +++ b/payload-examples/api.github.com/discussion/unlocked.payload.json @@ -146,7 +146,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion_comment/created.payload.json b/payload-examples/api.github.com/discussion_comment/created.payload.json index d51e7675a..813279c74 100644 --- a/payload-examples/api.github.com/discussion_comment/created.payload.json +++ b/payload-examples/api.github.com/discussion_comment/created.payload.json @@ -191,7 +191,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion_comment/deleted.payload.json b/payload-examples/api.github.com/discussion_comment/deleted.payload.json index bf758fafe..597f828c8 100644 --- a/payload-examples/api.github.com/discussion_comment/deleted.payload.json +++ b/payload-examples/api.github.com/discussion_comment/deleted.payload.json @@ -191,7 +191,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/discussion_comment/edited.payload.json b/payload-examples/api.github.com/discussion_comment/edited.payload.json index 9367cf180..2a88cbb56 100644 --- a/payload-examples/api.github.com/discussion_comment/edited.payload.json +++ b/payload-examples/api.github.com/discussion_comment/edited.payload.json @@ -192,7 +192,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/fork/payload.json b/payload-examples/api.github.com/fork/payload.json index 0c97833cd..ba7b6c016 100644 --- a/payload-examples/api.github.com/fork/payload.json +++ b/payload-examples/api.github.com/fork/payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, @@ -194,7 +195,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/fork/with-installation.payload.json b/payload-examples/api.github.com/fork/with-installation.payload.json index 9deb2a41d..e435acd87 100644 --- a/payload-examples/api.github.com/fork/with-installation.payload.json +++ b/payload-examples/api.github.com/fork/with-installation.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, @@ -194,7 +195,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/gollum/payload.json b/payload-examples/api.github.com/gollum/payload.json index de5a5ff39..d4289666a 100644 --- a/payload-examples/api.github.com/gollum/payload.json +++ b/payload-examples/api.github.com/gollum/payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", diff --git a/payload-examples/api.github.com/gollum/with-installation.payload.json b/payload-examples/api.github.com/gollum/with-installation.payload.json index 5152200d7..8f77f1b04 100644 --- a/payload-examples/api.github.com/gollum/with-installation.payload.json +++ b/payload-examples/api.github.com/gollum/with-installation.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", diff --git a/payload-examples/api.github.com/index.json b/payload-examples/api.github.com/index.json index 2c5ef0a9a..8cdc8ef0b 100644 --- a/payload-examples/api.github.com/index.json +++ b/payload-examples/api.github.com/index.json @@ -321,7 +321,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "wolfy1339", @@ -472,7 +473,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -633,7 +635,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -813,7 +816,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -1510,7 +1514,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -1819,7 +1824,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -2128,7 +2134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -2464,7 +2471,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -2773,7 +2781,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -3083,7 +3092,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "electron", @@ -3314,7 +3324,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "github", @@ -3545,7 +3556,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -4040,7 +4052,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -4267,7 +4280,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -4494,7 +4508,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -4711,7 +4726,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -4920,7 +4936,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -5127,7 +5144,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -5372,7 +5390,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "octocoders-linter[bot]", @@ -5603,7 +5622,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -6017,7 +6037,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", @@ -6202,7 +6223,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", @@ -6404,7 +6426,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -6569,7 +6592,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -6730,7 +6754,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -7083,7 +7108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -7238,7 +7264,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -7393,7 +7420,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -7566,7 +7594,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -7871,7 +7900,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -7996,7 +8026,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8121,7 +8152,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8250,7 +8282,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -8543,7 +8576,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8666,7 +8700,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -8793,7 +8828,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -9237,7 +9273,8 @@ "forks": 0, "open_issues": 13, "watchers": 0, - "default_branch": "master" + "default_branch": "master", + "custom_properties": {} }, "sender": { "login": "github", @@ -9438,7 +9475,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "github", @@ -9717,7 +9755,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -10132,7 +10171,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -10309,7 +10349,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -10468,7 +10509,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -10896,7 +10938,8 @@ "forks": 0, "open_issues": 1, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "organization": { "login": "terraform-test-github", @@ -11416,7 +11459,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -11625,7 +11669,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -11816,7 +11861,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12264,7 +12310,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12454,7 +12501,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12629,7 +12677,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12805,7 +12854,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -12993,7 +13043,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13177,7 +13228,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13373,7 +13425,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13548,7 +13601,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13735,7 +13789,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -13910,7 +13965,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14136,7 +14192,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { @@ -14235,7 +14292,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14443,7 +14501,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14627,7 +14686,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -14802,7 +14862,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -15266,7 +15327,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -15486,7 +15548,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -15707,7 +15770,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -16072,7 +16136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, @@ -16170,7 +16235,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", @@ -16291,7 +16357,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "repository": { "id": 186853002, @@ -16389,7 +16456,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Octocoders", @@ -16757,7 +16825,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", @@ -16887,7 +16956,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "rachmari", @@ -18509,7 +18579,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -18832,7 +18903,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -19141,7 +19213,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -19468,7 +19541,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -19791,7 +19865,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -20100,7 +20175,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -20428,7 +20504,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -20742,7 +20819,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -21354,7 +21432,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -21639,7 +21718,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -21928,7 +22008,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -22209,7 +22290,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -22466,7 +22548,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -22719,7 +22802,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -22999,7 +23083,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -23265,7 +23350,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -23553,7 +23639,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -23827,7 +23914,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -24051,7 +24139,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -24261,7 +24350,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -24583,7 +24673,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -24891,7 +24982,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -25170,7 +25262,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -25435,7 +25528,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -25700,7 +25794,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -25895,7 +25990,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "issue": { @@ -26138,7 +26234,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -26335,7 +26432,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -26606,7 +26704,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -26935,7 +27034,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { @@ -27034,7 +27134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -27319,7 +27420,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -27604,7 +27706,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -27837,7 +27940,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -28056,7 +28160,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -28280,7 +28385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -28490,7 +28596,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -28701,7 +28808,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -28998,7 +29106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29128,7 +29237,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29258,7 +29368,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29392,7 +29503,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -29523,7 +29635,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -30072,7 +30185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", @@ -30213,7 +30327,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", @@ -30358,7 +30473,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -31080,7 +31196,8 @@ "is_template": false, "web_commit_signoff_required": false, "topics": [], - "visibility": "public" + "visibility": "public", + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -31394,7 +31511,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -31748,7 +31866,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -31906,7 +32025,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -32068,7 +32188,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -32226,7 +32347,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -33274,7 +33396,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "info": { @@ -33489,7 +33612,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -33737,7 +33861,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34066,7 +34191,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34216,7 +34342,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34534,7 +34661,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -34676,7 +34804,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35094,7 +35223,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35249,7 +35379,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35597,7 +35728,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35751,7 +35883,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -35909,7 +36042,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -36063,7 +36197,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -36231,7 +36366,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -36385,7 +36521,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -36543,7 +36680,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -36713,7 +36851,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -37012,7 +37151,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -37143,7 +37283,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -37279,7 +37420,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -38077,7 +38219,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -38197,7 +38340,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -38972,7 +39116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -39095,7 +39240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -39257,7 +39403,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -39508,7 +39655,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -39631,7 +39779,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -39807,7 +39956,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -40058,7 +40208,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -40181,7 +40332,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -40323,7 +40475,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -40574,7 +40727,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -40697,7 +40851,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -40839,7 +40994,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -41104,7 +41260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -41227,7 +41384,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -41369,7 +41527,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -41616,7 +41775,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -41739,7 +41899,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -41881,7 +42042,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -42132,7 +42294,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -42255,7 +42418,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -42397,7 +42561,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", @@ -42713,7 +42878,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -42836,7 +43002,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -42987,7 +43154,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -43293,7 +43461,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -43416,7 +43585,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -43567,7 +43737,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -43832,7 +44003,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -43955,7 +44127,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -44097,7 +44270,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -44348,7 +44522,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -44471,7 +44646,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -44613,7 +44789,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -44878,7 +45055,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -45001,7 +45179,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -45143,7 +45322,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -45394,7 +45574,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -45517,7 +45698,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -45659,7 +45841,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -45910,7 +46093,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -46033,7 +46217,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -46175,7 +46360,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -46440,7 +46626,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -46563,7 +46750,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -46705,7 +46893,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -46952,7 +47141,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -47075,7 +47265,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -47217,7 +47408,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -47468,7 +47660,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -47591,7 +47784,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -47733,7 +47927,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", @@ -47994,7 +48189,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -48117,7 +48313,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -48259,7 +48456,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -48510,7 +48708,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -48633,7 +48832,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -48775,7 +48975,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -49040,7 +49241,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -49163,7 +49365,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -49305,7 +49508,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -49590,7 +49794,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -49713,7 +49918,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -49855,7 +50061,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -50140,7 +50347,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -50263,7 +50471,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -50407,7 +50616,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -50692,7 +50902,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -50815,7 +51026,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -50977,7 +51189,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -51262,7 +51475,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -51385,7 +51599,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -51547,7 +51762,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -51791,7 +52007,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -51914,7 +52131,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -52065,7 +52283,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -52295,7 +52514,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -52418,7 +52638,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -52569,7 +52790,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -52813,7 +53035,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -52936,7 +53159,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -53078,7 +53302,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -53308,7 +53533,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -53431,7 +53657,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -53573,7 +53800,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -54393,7 +54621,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -54516,7 +54745,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -54645,7 +54875,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -54949,7 +55180,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -55072,7 +55304,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -55201,7 +55434,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -55491,7 +55725,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -55614,7 +55849,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -55743,7 +55979,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -56604,7 +56841,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -56727,7 +56965,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -56855,7 +57094,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -57172,7 +57412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -57295,7 +57536,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -57423,7 +57665,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -57754,7 +57997,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -57877,7 +58121,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -58005,7 +58250,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -58323,7 +58569,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -58446,7 +58693,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -58574,7 +58822,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -59390,7 +59639,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -59513,7 +59763,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -59715,7 +59966,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -59965,7 +60217,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -60088,7 +60341,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -60290,7 +60544,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, @@ -60692,7 +60947,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -60844,7 +61100,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -60982,7 +61239,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -61117,7 +61375,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -61301,7 +61560,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", @@ -61490,7 +61750,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -61869,7 +62130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62030,7 +62292,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62190,7 +62453,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62354,7 +62618,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62530,7 +62795,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62695,7 +62961,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -62868,7 +63135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63028,7 +63296,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63189,7 +63458,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63349,7 +63619,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63510,7 +63781,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63670,7 +63942,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -63936,7 +64209,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -64227,7 +64501,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64362,7 +64637,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64502,7 +64778,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64638,7 +64915,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -64773,7 +65051,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -64894,7 +65173,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -65029,7 +65309,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65150,7 +65431,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -65286,7 +65568,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65451,7 +65734,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65598,7 +65882,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -65749,7 +66034,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -66038,7 +66324,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -66340,7 +66627,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", @@ -66475,7 +66763,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -66646,7 +66935,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", @@ -67435,7 +67725,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -67557,7 +67848,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68055,7 +68347,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68243,7 +68536,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68471,7 +68765,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -68813,7 +69108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69139,7 +69435,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69462,7 +69759,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69609,7 +69907,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -69890,7 +70189,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -70011,7 +70311,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -70306,7 +70607,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", @@ -70774,7 +71076,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -70999,7 +71302,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", @@ -71168,7 +71472,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -71399,7 +71704,8 @@ "forks": 0, "open_issues": 8, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "renovate[bot]", @@ -71549,7 +71855,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", @@ -71830,7 +72137,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", @@ -71988,7 +72296,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", @@ -72476,7 +72785,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", @@ -72845,7 +73155,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", @@ -73238,7 +73549,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", @@ -73607,7 +73919,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/issue_comment/created.1.payload.json b/payload-examples/api.github.com/issue_comment/created.1.payload.json index 528514ee5..63ff19e85 100644 --- a/payload-examples/api.github.com/issue_comment/created.1.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.1.payload.json @@ -209,7 +209,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/created.payload.json b/payload-examples/api.github.com/issue_comment/created.payload.json index added6ceb..6a89efb01 100644 --- a/payload-examples/api.github.com/issue_comment/created.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json b/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json index 6926a7e84..51b045a4c 100644 --- a/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.with-installation.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json b/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json index 2055b9ca4..1b901988c 100644 --- a/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/issue_comment/created.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/deleted.payload.json b/payload-examples/api.github.com/issue_comment/deleted.payload.json index a9b73965a..823b0aa17 100644 --- a/payload-examples/api.github.com/issue_comment/deleted.payload.json +++ b/payload-examples/api.github.com/issue_comment/deleted.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json b/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json index 882dbfe2f..ba57c9822 100644 --- a/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json +++ b/payload-examples/api.github.com/issue_comment/deleted.with-organization.payload.json @@ -284,7 +284,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issue_comment/edited.payload.json b/payload-examples/api.github.com/issue_comment/edited.payload.json index dfe9c9d64..1a1f445c9 100644 --- a/payload-examples/api.github.com/issue_comment/edited.payload.json +++ b/payload-examples/api.github.com/issue_comment/edited.payload.json @@ -287,7 +287,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json b/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json index 70f0da1a1..33ce3c0e7 100644 --- a/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json +++ b/payload-examples/api.github.com/issue_comment/edited.with-organization.payload.json @@ -287,7 +287,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/assigned.payload.json b/payload-examples/api.github.com/issues/assigned.payload.json index d59751b31..5b9414393 100644 --- a/payload-examples/api.github.com/issues/assigned.payload.json +++ b/payload-examples/api.github.com/issues/assigned.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/assigned.with-installation.payload.json b/payload-examples/api.github.com/issues/assigned.with-installation.payload.json index 36b5dc09e..4a8895d52 100644 --- a/payload-examples/api.github.com/issues/assigned.with-installation.payload.json +++ b/payload-examples/api.github.com/issues/assigned.with-installation.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/assigned.with-organization.payload.json b/payload-examples/api.github.com/issues/assigned.with-organization.payload.json index 9be60f4d5..f25d9ae82 100644 --- a/payload-examples/api.github.com/issues/assigned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/assigned.with-organization.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/deleted.payload.json b/payload-examples/api.github.com/issues/deleted.payload.json index 9f1cbca75..64289dd31 100644 --- a/payload-examples/api.github.com/issues/deleted.payload.json +++ b/payload-examples/api.github.com/issues/deleted.payload.json @@ -242,7 +242,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/demilestoned.payload.json b/payload-examples/api.github.com/issues/demilestoned.payload.json index 4ad9ea0a9..b916deacc 100644 --- a/payload-examples/api.github.com/issues/demilestoned.payload.json +++ b/payload-examples/api.github.com/issues/demilestoned.payload.json @@ -228,7 +228,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json b/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json index f8b092d2b..17d14b47d 100644 --- a/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/demilestoned.with-organization.payload.json @@ -228,7 +228,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/edited.payload.json b/payload-examples/api.github.com/issues/edited.payload.json index 5536b1c35..6da22a241 100644 --- a/payload-examples/api.github.com/issues/edited.payload.json +++ b/payload-examples/api.github.com/issues/edited.payload.json @@ -241,7 +241,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/edited.with-organization.payload.json b/payload-examples/api.github.com/issues/edited.with-organization.payload.json index 1c6b16363..95e6b5857 100644 --- a/payload-examples/api.github.com/issues/edited.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/edited.with-organization.payload.json @@ -241,7 +241,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/labeled.payload.json b/payload-examples/api.github.com/issues/labeled.payload.json index b6e209adc..e430cdbd9 100644 --- a/payload-examples/api.github.com/issues/labeled.payload.json +++ b/payload-examples/api.github.com/issues/labeled.payload.json @@ -249,7 +249,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/labeled.with-organization.payload.json b/payload-examples/api.github.com/issues/labeled.with-organization.payload.json index cd16cfe17..a4d174b71 100644 --- a/payload-examples/api.github.com/issues/labeled.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/labeled.with-organization.payload.json @@ -249,7 +249,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/locked.payload.json b/payload-examples/api.github.com/issues/locked.payload.json index 47735f4dd..f721816c2 100644 --- a/payload-examples/api.github.com/issues/locked.payload.json +++ b/payload-examples/api.github.com/issues/locked.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/locked.with-organization.payload.json b/payload-examples/api.github.com/issues/locked.with-organization.payload.json index fde0bd3f4..8275c7dac 100644 --- a/payload-examples/api.github.com/issues/locked.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/locked.with-organization.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/milestoned.payload.json b/payload-examples/api.github.com/issues/milestoned.payload.json index 966dabd38..da7019270 100644 --- a/payload-examples/api.github.com/issues/milestoned.payload.json +++ b/payload-examples/api.github.com/issues/milestoned.payload.json @@ -283,7 +283,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json b/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json index e59f171cf..c58aa035b 100644 --- a/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/milestoned.with-organization.payload.json @@ -283,7 +283,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/opened.payload.json b/payload-examples/api.github.com/issues/opened.payload.json index e831ea0ec..b37c66f98 100644 --- a/payload-examples/api.github.com/issues/opened.payload.json +++ b/payload-examples/api.github.com/issues/opened.payload.json @@ -240,7 +240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json b/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json index 907b37223..e6284d35f 100644 --- a/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-empty-body.payload.json @@ -240,7 +240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/opened.with-organization.payload.json b/payload-examples/api.github.com/issues/opened.with-organization.payload.json index 27b3d321e..1993eee0c 100644 --- a/payload-examples/api.github.com/issues/opened.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-organization.payload.json @@ -240,7 +240,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/opened.with-transfer.payload.json b/payload-examples/api.github.com/issues/opened.with-transfer.payload.json index 7dc726b62..805829cde 100644 --- a/payload-examples/api.github.com/issues/opened.with-transfer.payload.json +++ b/payload-examples/api.github.com/issues/opened.with-transfer.payload.json @@ -156,7 +156,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "issue": { @@ -399,7 +400,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/pinned.payload.json b/payload-examples/api.github.com/issues/pinned.payload.json index 0a9f5d2ce..5b290c2b8 100644 --- a/payload-examples/api.github.com/issues/pinned.payload.json +++ b/payload-examples/api.github.com/issues/pinned.payload.json @@ -172,7 +172,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/reopened.payload.json b/payload-examples/api.github.com/issues/reopened.payload.json index e9ddd8ce4..cab53ad15 100644 --- a/payload-examples/api.github.com/issues/reopened.payload.json +++ b/payload-examples/api.github.com/issues/reopened.payload.json @@ -242,7 +242,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/transferred.payload.json b/payload-examples/api.github.com/issues/transferred.payload.json index 2eec7987a..9bcf04698 100644 --- a/payload-examples/api.github.com/issues/transferred.payload.json +++ b/payload-examples/api.github.com/issues/transferred.payload.json @@ -300,7 +300,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "repository": { @@ -399,7 +400,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unassigned.payload.json b/payload-examples/api.github.com/issues/unassigned.payload.json index 8aaa515cb..ac8e83ed0 100644 --- a/payload-examples/api.github.com/issues/unassigned.payload.json +++ b/payload-examples/api.github.com/issues/unassigned.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json b/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json index 1ebca04ee..c279b6458 100644 --- a/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/unassigned.with-organization.payload.json @@ -260,7 +260,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/unlabeled.payload.json b/payload-examples/api.github.com/issues/unlabeled.payload.json index 9b6ae0536..0cfa014ad 100644 --- a/payload-examples/api.github.com/issues/unlabeled.payload.json +++ b/payload-examples/api.github.com/issues/unlabeled.payload.json @@ -194,7 +194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json b/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json index 6fe6a828e..7733b2337 100644 --- a/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/unlabeled.with-organization.payload.json @@ -194,7 +194,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/unlocked.payload.json b/payload-examples/api.github.com/issues/unlocked.payload.json index e346b2409..af61697e4 100644 --- a/payload-examples/api.github.com/issues/unlocked.payload.json +++ b/payload-examples/api.github.com/issues/unlocked.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json b/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json index 01d51187a..1a5996bf2 100644 --- a/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json +++ b/payload-examples/api.github.com/issues/unlocked.with-organization.payload.json @@ -185,7 +185,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/issues/unpinned.payload.json b/payload-examples/api.github.com/issues/unpinned.payload.json index 0d8ac84b2..9b0415745 100644 --- a/payload-examples/api.github.com/issues/unpinned.payload.json +++ b/payload-examples/api.github.com/issues/unpinned.payload.json @@ -172,7 +172,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/created.1.payload.json b/payload-examples/api.github.com/label/created.1.payload.json index 417a4bd7c..b7f6debd1 100644 --- a/payload-examples/api.github.com/label/created.1.payload.json +++ b/payload-examples/api.github.com/label/created.1.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/created.payload.json b/payload-examples/api.github.com/label/created.payload.json index 51160a155..26ed2c4d1 100644 --- a/payload-examples/api.github.com/label/created.payload.json +++ b/payload-examples/api.github.com/label/created.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/created.with-installation.payload.json b/payload-examples/api.github.com/label/created.with-installation.payload.json index 46db479c1..c9d9d7d07 100644 --- a/payload-examples/api.github.com/label/created.with-installation.payload.json +++ b/payload-examples/api.github.com/label/created.with-installation.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/deleted.payload.json b/payload-examples/api.github.com/label/deleted.payload.json index b9ecbd51c..289369f64 100644 --- a/payload-examples/api.github.com/label/deleted.payload.json +++ b/payload-examples/api.github.com/label/deleted.payload.json @@ -105,7 +105,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/label/edited.payload.json b/payload-examples/api.github.com/label/edited.payload.json index 96d20577c..1ab8d3957 100644 --- a/payload-examples/api.github.com/label/edited.payload.json +++ b/payload-examples/api.github.com/label/edited.payload.json @@ -106,7 +106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/member/added.payload.json b/payload-examples/api.github.com/member/added.payload.json index 6d09b5f22..0355f0232 100644 --- a/payload-examples/api.github.com/member/added.payload.json +++ b/payload-examples/api.github.com/member/added.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", diff --git a/payload-examples/api.github.com/member/added.with-installation.payload.json b/payload-examples/api.github.com/member/added.with-installation.payload.json index 892769ad9..4da9b1996 100644 --- a/payload-examples/api.github.com/member/added.with-installation.payload.json +++ b/payload-examples/api.github.com/member/added.with-installation.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "hacktocat", diff --git a/payload-examples/api.github.com/member/edited.payload.json b/payload-examples/api.github.com/member/edited.payload.json index f242db2af..c723b124e 100644 --- a/payload-examples/api.github.com/member/edited.payload.json +++ b/payload-examples/api.github.com/member/edited.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/merge_group/checks_requested.payload.json b/payload-examples/api.github.com/merge_group/checks_requested.payload.json index 15a5e744c..f2d902573 100644 --- a/payload-examples/api.github.com/merge_group/checks_requested.payload.json +++ b/payload-examples/api.github.com/merge_group/checks_requested.payload.json @@ -116,7 +116,8 @@ "is_template": false, "web_commit_signoff_required": false, "topics": [], - "visibility": "public" + "visibility": "public", + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/meta/deleted.payload.json b/payload-examples/api.github.com/meta/deleted.payload.json index 04ef9e5ca..50423a285 100644 --- a/payload-examples/api.github.com/meta/deleted.payload.json +++ b/payload-examples/api.github.com/meta/deleted.payload.json @@ -111,7 +111,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/closed.payload.json b/payload-examples/api.github.com/milestone/closed.payload.json index 780df6c8d..86bee9310 100644 --- a/payload-examples/api.github.com/milestone/closed.payload.json +++ b/payload-examples/api.github.com/milestone/closed.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/closed.with-installation.payload.json b/payload-examples/api.github.com/milestone/closed.with-installation.payload.json index c619ba0c3..17fb1929a 100644 --- a/payload-examples/api.github.com/milestone/closed.with-installation.payload.json +++ b/payload-examples/api.github.com/milestone/closed.with-installation.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/created.payload.json b/payload-examples/api.github.com/milestone/created.payload.json index ab738cd4d..05808fbff 100644 --- a/payload-examples/api.github.com/milestone/created.payload.json +++ b/payload-examples/api.github.com/milestone/created.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/milestone/deleted.payload.json b/payload-examples/api.github.com/milestone/deleted.payload.json index da33e5357..8cc7ef598 100644 --- a/payload-examples/api.github.com/milestone/deleted.payload.json +++ b/payload-examples/api.github.com/milestone/deleted.payload.json @@ -133,7 +133,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/package/published.docker.payload.json b/payload-examples/api.github.com/package/published.docker.payload.json index c0338063d..ced1edc83 100644 --- a/payload-examples/api.github.com/package/published.docker.payload.json +++ b/payload-examples/api.github.com/package/published.docker.payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "info": { @@ -349,7 +350,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/package/published.npm.payload.json b/payload-examples/api.github.com/package/published.npm.payload.json index 82aeb0444..8424bae8e 100644 --- a/payload-examples/api.github.com/package/published.npm.payload.json +++ b/payload-examples/api.github.com/package/published.npm.payload.json @@ -223,7 +223,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/page_build/payload.json b/payload-examples/api.github.com/page_build/payload.json index d49fb358a..20a7e4490 100644 --- a/payload-examples/api.github.com/page_build/payload.json +++ b/payload-examples/api.github.com/page_build/payload.json @@ -125,7 +125,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/page_build/with-installation.payload.json b/payload-examples/api.github.com/page_build/with-installation.payload.json index 56eec1f09..75eef3fde 100644 --- a/payload-examples/api.github.com/page_build/with-installation.payload.json +++ b/payload-examples/api.github.com/page_build/with-installation.payload.json @@ -125,7 +125,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/ping/payload.json b/payload-examples/api.github.com/ping/payload.json index bd7f7e237..e6d5ed31b 100644 --- a/payload-examples/api.github.com/ping/payload.json +++ b/payload-examples/api.github.com/ping/payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/ping/with-app_id.payload.json b/payload-examples/api.github.com/ping/with-app_id.payload.json index fa27229a8..463b8d294 100644 --- a/payload-examples/api.github.com/ping/with-app_id.payload.json +++ b/payload-examples/api.github.com/ping/with-app_id.payload.json @@ -117,7 +117,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project/created.payload.json b/payload-examples/api.github.com/project/created.payload.json index 80ac6781e..a532cb765 100644 --- a/payload-examples/api.github.com/project/created.payload.json +++ b/payload-examples/api.github.com/project/created.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project/created.with-installation.payload.json b/payload-examples/api.github.com/project/created.with-installation.payload.json index a31aa31c4..5248c3895 100644 --- a/payload-examples/api.github.com/project/created.with-installation.payload.json +++ b/payload-examples/api.github.com/project/created.with-installation.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.payload.json b/payload-examples/api.github.com/project_card/created.payload.json index c40151817..183093b46 100644 --- a/payload-examples/api.github.com/project_card/created.payload.json +++ b/payload-examples/api.github.com/project_card/created.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.with-installation.payload.json b/payload-examples/api.github.com/project_card/created.with-installation.payload.json index 60d03a68a..c29293a0c 100644 --- a/payload-examples/api.github.com/project_card/created.with-installation.payload.json +++ b/payload-examples/api.github.com/project_card/created.with-installation.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.with-no-note.payload.json b/payload-examples/api.github.com/project_card/created.with-no-note.payload.json index 5318cb914..2ab81528f 100644 --- a/payload-examples/api.github.com/project_card/created.with-no-note.payload.json +++ b/payload-examples/api.github.com/project_card/created.with-no-note.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/created.with-organization.payload.json b/payload-examples/api.github.com/project_card/created.with-organization.payload.json index 4bada12ad..fc51a3222 100644 --- a/payload-examples/api.github.com/project_card/created.with-organization.payload.json +++ b/payload-examples/api.github.com/project_card/created.with-organization.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/project_card/deleted.payload.json b/payload-examples/api.github.com/project_card/deleted.payload.json index 012f44a34..81235a063 100644 --- a/payload-examples/api.github.com/project_card/deleted.payload.json +++ b/payload-examples/api.github.com/project_card/deleted.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json b/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json index 10b9ed7ce..6e4193083 100644 --- a/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json +++ b/payload-examples/api.github.com/project_card/deleted.with-installation.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json b/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json index f2b5b95a4..70df9ae61 100644 --- a/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json +++ b/payload-examples/api.github.com/project_card/deleted.with-organization.payload.json @@ -129,7 +129,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/project_card/moved.payload.json b/payload-examples/api.github.com/project_card/moved.payload.json index 03bf53e4e..11b9f7021 100644 --- a/payload-examples/api.github.com/project_card/moved.payload.json +++ b/payload-examples/api.github.com/project_card/moved.payload.json @@ -131,7 +131,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_column/created.payload.json b/payload-examples/api.github.com/project_column/created.payload.json index 00e30fe2a..342bad80a 100644 --- a/payload-examples/api.github.com/project_column/created.payload.json +++ b/payload-examples/api.github.com/project_column/created.payload.json @@ -106,7 +106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_column/created.with-installation.payload.json b/payload-examples/api.github.com/project_column/created.with-installation.payload.json index 63636b5aa..a81f18678 100644 --- a/payload-examples/api.github.com/project_column/created.with-installation.payload.json +++ b/payload-examples/api.github.com/project_column/created.with-installation.payload.json @@ -106,7 +106,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/project_column/edited.payload.json b/payload-examples/api.github.com/project_column/edited.payload.json index 6ebed86ba..480174ad0 100644 --- a/payload-examples/api.github.com/project_column/edited.payload.json +++ b/payload-examples/api.github.com/project_column/edited.payload.json @@ -107,7 +107,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/public/payload.json b/payload-examples/api.github.com/public/payload.json index eaaafe532..22e0b3fd7 100644 --- a/payload-examples/api.github.com/public/payload.json +++ b/payload-examples/api.github.com/public/payload.json @@ -95,7 +95,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/public/with-installation.payload.json b/payload-examples/api.github.com/public/with-installation.payload.json index c5bb05d74..0a6bb69fa 100644 --- a/payload-examples/api.github.com/public/with-installation.payload.json +++ b/payload-examples/api.github.com/public/with-installation.payload.json @@ -95,7 +95,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/assigned.payload.json b/payload-examples/api.github.com/pull_request/assigned.payload.json index bcddf6434..263675a91 100644 --- a/payload-examples/api.github.com/pull_request/assigned.payload.json +++ b/payload-examples/api.github.com/pull_request/assigned.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -505,7 +507,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json b/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json index 70a5e11f3..847366189 100644 --- a/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/assigned.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -519,7 +521,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/closed.payload.json b/payload-examples/api.github.com/pull_request/closed.payload.json index d38dfa8bb..09505f357 100644 --- a/payload-examples/api.github.com/pull_request/closed.payload.json +++ b/payload-examples/api.github.com/pull_request/closed.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json b/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json index e4b0c165a..0419270bc 100644 --- a/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/closed.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json index 0752c4166..80c4fe47f 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json index e2666fe20..981868a0b 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.with-installation.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json b/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json index 92c736a07..83355b1e6 100644 --- a/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/converted_to_draft.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", diff --git a/payload-examples/api.github.com/pull_request/labeled.payload.json b/payload-examples/api.github.com/pull_request/labeled.payload.json index 942b5dcba..c1f5a4bb9 100644 --- a/payload-examples/api.github.com/pull_request/labeled.payload.json +++ b/payload-examples/api.github.com/pull_request/labeled.payload.json @@ -277,7 +277,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -400,7 +401,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -549,7 +551,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json b/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json index be6a0bb52..7ef7610e1 100644 --- a/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/labeled.with-organization.payload.json @@ -277,7 +277,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -400,7 +401,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -549,7 +551,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/locked.payload.json b/payload-examples/api.github.com/pull_request/locked.payload.json index b860d2618..d36c641eb 100644 --- a/payload-examples/api.github.com/pull_request/locked.payload.json +++ b/payload-examples/api.github.com/pull_request/locked.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json b/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json index 1482ccd54..ba902826e 100644 --- a/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/locked.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/opened.payload.json b/payload-examples/api.github.com/pull_request/opened.payload.json index 49572795a..b034d6171 100644 --- a/payload-examples/api.github.com/pull_request/opened.payload.json +++ b/payload-examples/api.github.com/pull_request/opened.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/opened.with-null-body.json b/payload-examples/api.github.com/pull_request/opened.with-null-body.json index 929411951..f202db0f7 100644 --- a/payload-examples/api.github.com/pull_request/opened.with-null-body.json +++ b/payload-examples/api.github.com/pull_request/opened.with-null-body.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json b/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json index e10887f6f..73252f005 100644 --- a/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/opened.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.payload.json index 12c7df35d..f76c07b53 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json index f0152b40c..da9c72845 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.with-installation.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json b/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json index 7130d1bdc..58d95620e 100644 --- a/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/ready_for_review.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "hellomouse", diff --git a/payload-examples/api.github.com/pull_request/reopened.payload.json b/payload-examples/api.github.com/pull_request/reopened.payload.json index de80da30a..ef1905f68 100644 --- a/payload-examples/api.github.com/pull_request/reopened.payload.json +++ b/payload-examples/api.github.com/pull_request/reopened.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json b/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json index 46c48d0d4..944e90a84 100644 --- a/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/reopened.with-organization.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/review_request_removed.payload.json b/payload-examples/api.github.com/pull_request/review_request_removed.payload.json index b919398a7..0abaa088f 100644 --- a/payload-examples/api.github.com/pull_request/review_request_removed.payload.json +++ b/payload-examples/api.github.com/pull_request/review_request_removed.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/review_requested.payload.json b/payload-examples/api.github.com/pull_request/review_requested.payload.json index 166f7c3d7..893d4e3ef 100644 --- a/payload-examples/api.github.com/pull_request/review_requested.payload.json +++ b/payload-examples/api.github.com/pull_request/review_requested.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -485,7 +487,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/synchronize.payload.json b/payload-examples/api.github.com/pull_request/synchronize.payload.json index 0d6da7e9c..9d7e70b94 100644 --- a/payload-examples/api.github.com/pull_request/synchronize.payload.json +++ b/payload-examples/api.github.com/pull_request/synchronize.payload.json @@ -222,7 +222,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -345,7 +346,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -487,7 +489,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unassigned.payload.json b/payload-examples/api.github.com/pull_request/unassigned.payload.json index d8d616fd0..ee6eeb35a 100644 --- a/payload-examples/api.github.com/pull_request/unassigned.payload.json +++ b/payload-examples/api.github.com/pull_request/unassigned.payload.json @@ -256,7 +256,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -379,7 +380,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -539,7 +541,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json index f272cd2df..c4603420d 100644 --- a/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unassigned.with-organization.payload.json @@ -256,7 +256,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -379,7 +380,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -539,7 +541,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlabeled.payload.json b/payload-examples/api.github.com/pull_request/unlabeled.payload.json index 98a9caf06..d6e367364 100644 --- a/payload-examples/api.github.com/pull_request/unlabeled.payload.json +++ b/payload-examples/api.github.com/pull_request/unlabeled.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -473,7 +475,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json index 596405c85..d8544cbdd 100644 --- a/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unlabeled.with-organization.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -473,7 +475,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlocked.payload.json b/payload-examples/api.github.com/pull_request/unlocked.payload.json index a82d0fbe2..4bda770a8 100644 --- a/payload-examples/api.github.com/pull_request/unlocked.payload.json +++ b/payload-examples/api.github.com/pull_request/unlocked.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -464,7 +466,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json b/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json index a2d8bef03..30d4682f2 100644 --- a/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request/unlocked.with-organization.payload.json @@ -201,7 +201,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -324,7 +325,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -464,7 +466,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review/dismissed.payload.json b/payload-examples/api.github.com/pull_request_review/dismissed.payload.json index ba46228b9..58a5cf59b 100644 --- a/payload-examples/api.github.com/pull_request_review/dismissed.payload.json +++ b/payload-examples/api.github.com/pull_request_review/dismissed.payload.json @@ -261,7 +261,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -384,7 +385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -511,7 +513,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request_review/submitted.payload.json b/payload-examples/api.github.com/pull_request_review/submitted.payload.json index a9fed9c13..26f7643e4 100644 --- a/payload-examples/api.github.com/pull_request_review/submitted.payload.json +++ b/payload-examples/api.github.com/pull_request_review/submitted.payload.json @@ -261,7 +261,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -384,7 +385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -511,7 +513,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json index c63cddcc5..81f44d579 100644 --- a/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review/submitted.with-organization.payload.json @@ -261,7 +261,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -384,7 +385,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -511,7 +513,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json index 60641a801..c31e26a3b 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.payload.json @@ -288,7 +288,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -411,7 +412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -537,7 +539,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json index 1e185cd25..632f91d8e 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/created.with-organization.payload.json @@ -288,7 +288,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -411,7 +412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -537,7 +539,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json index 74b5054c5..b304052c0 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/deleted.payload.json @@ -288,7 +288,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -411,7 +412,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -537,7 +539,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json index 5f3a255dc..04df5a0b2 100644 --- a/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json +++ b/payload-examples/api.github.com/pull_request_review_comment/edited.payload.json @@ -289,7 +289,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -412,7 +413,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -538,7 +540,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json index a47392b4c..74f393160 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/resolved.payload.json @@ -221,7 +221,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -344,7 +345,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -544,7 +546,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json index 099415395..2bb7db2bd 100644 --- a/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json +++ b/payload-examples/api.github.com/pull_request_review_thread/unresolved.payload.json @@ -221,7 +221,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "base": { @@ -344,7 +345,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "_links": { @@ -544,7 +546,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "installation": { "id": 1, diff --git a/payload-examples/api.github.com/push/1.payload.json b/payload-examples/api.github.com/push/1.payload.json index 26029e9e5..d9b590330 100644 --- a/payload-examples/api.github.com/push/1.payload.json +++ b/payload-examples/api.github.com/push/1.payload.json @@ -110,7 +110,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/push/payload.json b/payload-examples/api.github.com/push/payload.json index b7c29d987..03dfa2b11 100644 --- a/payload-examples/api.github.com/push/payload.json +++ b/payload-examples/api.github.com/push/payload.json @@ -109,7 +109,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-installation.payload.json b/payload-examples/api.github.com/push/with-installation.payload.json index 0fd05f9df..610911452 100644 --- a/payload-examples/api.github.com/push/with-installation.payload.json +++ b/payload-examples/api.github.com/push/with-installation.payload.json @@ -109,7 +109,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-new-branch.payload.json b/payload-examples/api.github.com/push/with-new-branch.payload.json index 1920ac88c..a955ae5c5 100644 --- a/payload-examples/api.github.com/push/with-new-branch.payload.json +++ b/payload-examples/api.github.com/push/with-new-branch.payload.json @@ -102,7 +102,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-no-username-committer.payload.json b/payload-examples/api.github.com/push/with-no-username-committer.payload.json index 6e55de92a..7332883e9 100644 --- a/payload-examples/api.github.com/push/with-no-username-committer.payload.json +++ b/payload-examples/api.github.com/push/with-no-username-committer.payload.json @@ -102,7 +102,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "pusher": { "name": "Codertocat", diff --git a/payload-examples/api.github.com/push/with-organization.payload.json b/payload-examples/api.github.com/push/with-organization.payload.json index c0d6cb0db..d30c837b7 100644 --- a/payload-examples/api.github.com/push/with-organization.payload.json +++ b/payload-examples/api.github.com/push/with-organization.payload.json @@ -109,7 +109,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/registry_package/published.docker.payload.json b/payload-examples/api.github.com/registry_package/published.docker.payload.json index 08b0ddb58..294239abf 100644 --- a/payload-examples/api.github.com/registry_package/published.docker.payload.json +++ b/payload-examples/api.github.com/registry_package/published.docker.payload.json @@ -134,7 +134,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} } }, "info": { @@ -335,7 +336,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/release/created.payload.json b/payload-examples/api.github.com/release/created.payload.json index 8f5a91cd9..9c6dde518 100644 --- a/payload-examples/api.github.com/release/created.payload.json +++ b/payload-examples/api.github.com/release/created.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/created.with-discussion-url.payload.json b/payload-examples/api.github.com/release/created.with-discussion-url.payload.json index 17a8c09cf..0535431db 100644 --- a/payload-examples/api.github.com/release/created.with-discussion-url.payload.json +++ b/payload-examples/api.github.com/release/created.with-discussion-url.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/created.with-installation.payload.json b/payload-examples/api.github.com/release/created.with-installation.payload.json index 21169c23e..e9a1b5c6e 100644 --- a/payload-examples/api.github.com/release/created.with-installation.payload.json +++ b/payload-examples/api.github.com/release/created.with-installation.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/deleted.payload.json b/payload-examples/api.github.com/release/deleted.payload.json index 07159d5fd..d80c44286 100644 --- a/payload-examples/api.github.com/release/deleted.payload.json +++ b/payload-examples/api.github.com/release/deleted.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/deleted.with-reactions.payload.json b/payload-examples/api.github.com/release/deleted.with-reactions.payload.json index 75b498bb2..a7fd991b5 100644 --- a/payload-examples/api.github.com/release/deleted.with-reactions.payload.json +++ b/payload-examples/api.github.com/release/deleted.with-reactions.payload.json @@ -147,7 +147,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/edited.payload.json b/payload-examples/api.github.com/release/edited.payload.json index 9e5250814..e20a08138 100644 --- a/payload-examples/api.github.com/release/edited.payload.json +++ b/payload-examples/api.github.com/release/edited.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/edited.with-reactions.payload.json b/payload-examples/api.github.com/release/edited.with-reactions.payload.json index 9d3220c58..ad2c0e7b0 100644 --- a/payload-examples/api.github.com/release/edited.with-reactions.payload.json +++ b/payload-examples/api.github.com/release/edited.with-reactions.payload.json @@ -148,7 +148,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/prereleased.payload.json b/payload-examples/api.github.com/release/prereleased.payload.json index e5dfb062e..197032882 100644 --- a/payload-examples/api.github.com/release/prereleased.payload.json +++ b/payload-examples/api.github.com/release/prereleased.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/prereleased.with-discussion-url.payload.json b/payload-examples/api.github.com/release/prereleased.with-discussion-url.payload.json index fe382982c..596bf6eb4 100644 --- a/payload-examples/api.github.com/release/prereleased.with-discussion-url.payload.json +++ b/payload-examples/api.github.com/release/prereleased.with-discussion-url.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/published.payload.json b/payload-examples/api.github.com/release/published.payload.json index 4ff6e0c3c..305abd390 100644 --- a/payload-examples/api.github.com/release/published.payload.json +++ b/payload-examples/api.github.com/release/published.payload.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/published.with-discussion-url.payload.json b/payload-examples/api.github.com/release/published.with-discussion-url.payload.json index 90e7422c6..2574148dc 100644 --- a/payload-examples/api.github.com/release/published.with-discussion-url.payload.json +++ b/payload-examples/api.github.com/release/published.with-discussion-url.payload.json @@ -136,7 +136,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/release/released.json b/payload-examples/api.github.com/release/released.json index ccd78e781..6cfb5a552 100644 --- a/payload-examples/api.github.com/release/released.json +++ b/payload-examples/api.github.com/release/released.json @@ -135,7 +135,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/created.payload.json b/payload-examples/api.github.com/repository/created.payload.json index e17308a5a..32fa16c15 100644 --- a/payload-examples/api.github.com/repository/created.payload.json +++ b/payload-examples/api.github.com/repository/created.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/created.with-installation.payload.json b/payload-examples/api.github.com/repository/created.with-installation.payload.json index 3569b8ed9..8a927e796 100644 --- a/payload-examples/api.github.com/repository/created.with-installation.payload.json +++ b/payload-examples/api.github.com/repository/created.with-installation.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/edited.payload.json b/payload-examples/api.github.com/repository/edited.payload.json index 30ab01955..706fdab5f 100644 --- a/payload-examples/api.github.com/repository/edited.payload.json +++ b/payload-examples/api.github.com/repository/edited.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json b/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json index 82d2fc67d..dbfef16b0 100644 --- a/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json +++ b/payload-examples/api.github.com/repository/edited.with-default_branch-edit.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/privatized.payload.json b/payload-examples/api.github.com/repository/privatized.payload.json index 078406341..21d92c88f 100644 --- a/payload-examples/api.github.com/repository/privatized.payload.json +++ b/payload-examples/api.github.com/repository/privatized.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/privatized.with-organization.payload.json b/payload-examples/api.github.com/repository/privatized.with-organization.payload.json index 1b855df48..9b647f97c 100644 --- a/payload-examples/api.github.com/repository/privatized.with-organization.payload.json +++ b/payload-examples/api.github.com/repository/privatized.with-organization.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/publicized.payload.json b/payload-examples/api.github.com/repository/publicized.payload.json index 3817716a7..4730ce360 100644 --- a/payload-examples/api.github.com/repository/publicized.payload.json +++ b/payload-examples/api.github.com/repository/publicized.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/publicized.with-organization.payload.json b/payload-examples/api.github.com/repository/publicized.with-organization.payload.json index 293e92822..0c0053f4a 100644 --- a/payload-examples/api.github.com/repository/publicized.with-organization.payload.json +++ b/payload-examples/api.github.com/repository/publicized.with-organization.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository/renamed.payload.json b/payload-examples/api.github.com/repository/renamed.payload.json index e7265c3e6..ee6685682 100644 --- a/payload-examples/api.github.com/repository/renamed.payload.json +++ b/payload-examples/api.github.com/repository/renamed.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/transferred.payload.json b/payload-examples/api.github.com/repository/transferred.payload.json index 5d8f02616..080e46bf1 100644 --- a/payload-examples/api.github.com/repository/transferred.payload.json +++ b/payload-examples/api.github.com/repository/transferred.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/transferred.with-installation.payload.json b/payload-examples/api.github.com/repository/transferred.with-installation.payload.json index e41e7d452..9271f9245 100644 --- a/payload-examples/api.github.com/repository/transferred.with-installation.payload.json +++ b/payload-examples/api.github.com/repository/transferred.with-installation.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/repository/transferred.with-organization.payload.json b/payload-examples/api.github.com/repository/transferred.with-organization.payload.json index 6cd954790..2b2f0631c 100644 --- a/payload-examples/api.github.com/repository/transferred.with-organization.payload.json +++ b/payload-examples/api.github.com/repository/transferred.with-organization.payload.json @@ -122,7 +122,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository_dispatch/payload.json b/payload-examples/api.github.com/repository_dispatch/payload.json index 763d0a517..e53acfae8 100644 --- a/payload-examples/api.github.com/repository_dispatch/payload.json +++ b/payload-examples/api.github.com/repository_dispatch/payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/repository_import/payload.json b/payload-examples/api.github.com/repository_import/payload.json index 1d66ed47c..68cd1c63d 100644 --- a/payload-examples/api.github.com/repository_import/payload.json +++ b/payload-examples/api.github.com/repository_import/payload.json @@ -95,7 +95,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json b/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json index 2c4169c77..0d43d7efe 100644 --- a/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json +++ b/payload-examples/api.github.com/repository_vulnerability_alert/create.payload.json @@ -110,7 +110,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json b/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json index 09432872b..fcac5e05a 100644 --- a/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json +++ b/payload-examples/api.github.com/repository_vulnerability_alert/create.with-organization.payload.json @@ -110,7 +110,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json b/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json index 5f21bab5d..2fb8b2018 100644 --- a/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json +++ b/payload-examples/api.github.com/repository_vulnerability_alert/dismiss.payload.json @@ -132,7 +132,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "github", diff --git a/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json b/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json index cab902467..de47ee2dd 100644 --- a/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json +++ b/payload-examples/api.github.com/secret_scanning_alert/reopened.payload.json @@ -103,7 +103,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/star/created.payload.json b/payload-examples/api.github.com/star/created.payload.json index 85b55d8eb..039d8d8ec 100644 --- a/payload-examples/api.github.com/star/created.payload.json +++ b/payload-examples/api.github.com/star/created.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/star/deleted.payload.json b/payload-examples/api.github.com/star/deleted.payload.json index 653c3fdd5..7d94a2224 100644 --- a/payload-examples/api.github.com/star/deleted.payload.json +++ b/payload-examples/api.github.com/star/deleted.payload.json @@ -97,7 +97,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/status/payload.json b/payload-examples/api.github.com/status/payload.json index 29391d133..507948434 100644 --- a/payload-examples/api.github.com/status/payload.json +++ b/payload-examples/api.github.com/status/payload.json @@ -203,7 +203,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/status/with-author-committer-null.payload.json b/payload-examples/api.github.com/status/with-author-committer-null.payload.json index 87369760f..ad6de0068 100644 --- a/payload-examples/api.github.com/status/with-author-committer-null.payload.json +++ b/payload-examples/api.github.com/status/with-author-committer-null.payload.json @@ -162,7 +162,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/status/with-installation.payload.json b/payload-examples/api.github.com/status/with-installation.payload.json index 00e3b996b..eb8879af9 100644 --- a/payload-examples/api.github.com/status/with-installation.payload.json +++ b/payload-examples/api.github.com/status/with-installation.payload.json @@ -203,7 +203,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/team/added_to_repository.payload.json b/payload-examples/api.github.com/team/added_to_repository.payload.json index 0df841aed..78b352554 100644 --- a/payload-examples/api.github.com/team/added_to_repository.payload.json +++ b/payload-examples/api.github.com/team/added_to_repository.payload.json @@ -111,7 +111,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/team/removed_from_repository.payload.json b/payload-examples/api.github.com/team/removed_from_repository.payload.json index 7f978ca02..02a033801 100644 --- a/payload-examples/api.github.com/team/removed_from_repository.payload.json +++ b/payload-examples/api.github.com/team/removed_from_repository.payload.json @@ -117,7 +117,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/team_add/payload.json b/payload-examples/api.github.com/team_add/payload.json index bbe7ae360..72cef41f9 100644 --- a/payload-examples/api.github.com/team_add/payload.json +++ b/payload-examples/api.github.com/team_add/payload.json @@ -108,7 +108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/team_add/with-installation.payload.json b/payload-examples/api.github.com/team_add/with-installation.payload.json index c7cee283e..3bc00a06e 100644 --- a/payload-examples/api.github.com/team_add/with-installation.payload.json +++ b/payload-examples/api.github.com/team_add/with-installation.payload.json @@ -108,7 +108,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/watch/started.payload.json b/payload-examples/api.github.com/watch/started.payload.json index d8ed1299a..51f79da9b 100644 --- a/payload-examples/api.github.com/watch/started.payload.json +++ b/payload-examples/api.github.com/watch/started.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/watch/started.with-installation.payload.json b/payload-examples/api.github.com/watch/started.with-installation.payload.json index 83f755b50..8cef75f68 100644 --- a/payload-examples/api.github.com/watch/started.with-installation.payload.json +++ b/payload-examples/api.github.com/watch/started.with-installation.payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/workflow_dispatch/payload.json b/payload-examples/api.github.com/workflow_dispatch/payload.json index d5ff14754..6268e45d2 100644 --- a/payload-examples/api.github.com/workflow_dispatch/payload.json +++ b/payload-examples/api.github.com/workflow_dispatch/payload.json @@ -96,7 +96,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "octo-org", diff --git a/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json b/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json index c42acd75d..5aaf9c8d3 100644 --- a/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json +++ b/payload-examples/api.github.com/workflow_job/completed.failure.with-organization.payload.json @@ -218,7 +218,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json b/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json index 4db5310d7..ba243e216 100644 --- a/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json +++ b/payload-examples/api.github.com/workflow_job/completed.success.with-organization.payload.json @@ -186,7 +186,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "organization": { "login": "Octocoders", diff --git a/payload-examples/api.github.com/workflow_job/in_progress.payload.json b/payload-examples/api.github.com/workflow_job/in_progress.payload.json index 94433a14a..e77c9bad2 100644 --- a/payload-examples/api.github.com/workflow_job/in_progress.payload.json +++ b/payload-examples/api.github.com/workflow_job/in_progress.payload.json @@ -130,7 +130,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json b/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json index b47ee4ad0..43ea4ef8d 100644 --- a/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json +++ b/payload-examples/api.github.com/workflow_job/in_progress.with-queued-steps.payload.json @@ -202,7 +202,8 @@ "forks": 0, "open_issues": 8, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "renovate[bot]", diff --git a/payload-examples/api.github.com/workflow_job/queued.payload.json b/payload-examples/api.github.com/workflow_job/queued.payload.json index cb97705c5..788963bfe 100644 --- a/payload-examples/api.github.com/workflow_job/queued.payload.json +++ b/payload-examples/api.github.com/workflow_job/queued.payload.json @@ -121,7 +121,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "login": "Codertocat", diff --git a/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json b/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json index bc5ba4714..882e54c60 100644 --- a/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json +++ b/payload-examples/api.github.com/workflow_job/queued.with-deployment.payload.json @@ -252,7 +252,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", diff --git a/payload-examples/api.github.com/workflow_job/waiting.payload.json b/payload-examples/api.github.com/workflow_job/waiting.payload.json index 07572419a..b439934e5 100644 --- a/payload-examples/api.github.com/workflow_job/waiting.payload.json +++ b/payload-examples/api.github.com/workflow_job/waiting.payload.json @@ -129,7 +129,8 @@ "forks": 0, "open_issues": 0, "watchers": 0, - "default_branch": "main" + "default_branch": "main", + "custom_properties": {} }, "sender": { "login": "lineville", diff --git a/payload-examples/api.github.com/workflow_run/completed.payload.json b/payload-examples/api.github.com/workflow_run/completed.payload.json index 499bcee65..d6f1dc9b7 100644 --- a/payload-examples/api.github.com/workflow_run/completed.payload.json +++ b/payload-examples/api.github.com/workflow_run/completed.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json b/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json index 41daa5f7b..6c0e4abae 100644 --- a/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json +++ b/payload-examples/api.github.com/workflow_run/completed.with-pull-requests.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/workflow_run/requested.payload.json b/payload-examples/api.github.com/workflow_run/requested.payload.json index dc0ddf25b..5336d1bad 100644 --- a/payload-examples/api.github.com/workflow_run/requested.payload.json +++ b/payload-examples/api.github.com/workflow_run/requested.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json b/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json index d6e017213..9fe7edc3b 100644 --- a/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json +++ b/payload-examples/api.github.com/workflow_run/requested.with-conclusion.payload.json @@ -116,7 +116,8 @@ "is_template": false, "topics": [], "visibility": "public", - "web_commit_signoff_required": false + "web_commit_signoff_required": false, + "custom_properties": {} }, "sender": { "avatar_url": "https://avatars0.githubusercontent.com/u/15669918?v=4", diff --git a/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json b/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json new file mode 100644 index 000000000..1ef241ef9 --- /dev/null +++ b/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json @@ -0,0 +1,14 @@ +{ + "title": "branch protection configuration disabled event", + "$id": "branch_protection_rule$disabled", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["disabled"] }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "repository": { "$ref": "common/repository.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "repository", "sender"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json b/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json new file mode 100644 index 000000000..cdf4be842 --- /dev/null +++ b/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json @@ -0,0 +1,14 @@ +{ + "title": "branch protection configuration enabled event", + "$id": "branch_protection_rule$enabled", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["enabled"] }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "repository": { "$ref": "common/repository.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "repository", "sender"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/common/custom-property-value.schema.json b/payload-schemas/api.github.com/common/custom-property-value.schema.json new file mode 100644 index 000000000..15e1e55dd --- /dev/null +++ b/payload-schemas/api.github.com/common/custom-property-value.schema.json @@ -0,0 +1,22 @@ +{ + "title": "Custom Property Value", + "$id": "common/custom-property-value.schema.json", + "description": "Custom property name and associated value", + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property" + }, + "value": { + "oneOf": [ + { "type": "string" }, + { "type": "array", "items": { "type": "string" } }, + { "type": "null" } + ], + "description": "The value assigned to the property" + } + }, + "required": ["property_name", "value"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/common/org-custom-property.schema.json b/payload-schemas/api.github.com/common/org-custom-property.schema.json new file mode 100644 index 000000000..d74fa2d21 --- /dev/null +++ b/payload-schemas/api.github.com/common/org-custom-property.schema.json @@ -0,0 +1,44 @@ +{ + "title": "Organization Custom Property", + "$id": "common/org-custom-property.schema.json", + "description": "Custom property defined on an organization", + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property" + }, + "value_type": { + "type": "string", + "enum": ["string", "single_select"], + "description": "The type of the value for the property", + "examples": ["single_select"] + }, + "required": { + "type": "boolean", + "description": "Whether the property is required." + }, + "default_value": { + "type": ["string", "null"], + "description": "Default value of the property" + }, + "description": { + "type": ["string", "null"], + "description": "Short description of the property" + }, + "allowed_values": { + "type": ["array", "null"], + "items": { "type": "string", "maxLength": 75 }, + "maxItems": 200, + "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": ["string", "null"], + "enum": ["org_actors", "org_and_repo_actors", null], + "description": "Who can edit the values of the property", + "examples": ["org_actors"] + } + }, + "required": ["property_name", "value_type"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/common/repository.schema.json b/payload-schemas/api.github.com/common/repository.schema.json index 0ee8a8d07..67d48bcf4 100644 --- a/payload-schemas/api.github.com/common/repository.schema.json +++ b/payload-schemas/api.github.com/common/repository.schema.json @@ -79,7 +79,8 @@ "is_template", "web_commit_signoff_required", "topics", - "visibility" + "visibility", + "custom_properties" ], "properties": { "id": { @@ -426,7 +427,17 @@ "additionalProperties": false }, "public": { "type": "boolean" }, - "organization": { "type": "string" } + "organization": { "type": "string" }, + "custom_properties": { + "type": "object", + "additionalProperties": { + "oneOf": [ + { "type": "null" }, + { "type": "string" }, + { "type": "array", "items": { "type": "string" } } + ] + } + } }, "additionalProperties": false, "title": "Repository" diff --git a/payload-schemas/api.github.com/custom_property/created.schema.json b/payload-schemas/api.github.com/custom_property/created.schema.json new file mode 100644 index 000000000..6d1262007 --- /dev/null +++ b/payload-schemas/api.github.com/custom_property/created.schema.json @@ -0,0 +1,15 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "custom_property$created", + "title": "custom property created event", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["created"] }, + "definition": { "$ref": "common/org-custom-property.schema.json" }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "definition", "organization"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/custom_property/deleted.schema.json b/payload-schemas/api.github.com/custom_property/deleted.schema.json new file mode 100644 index 000000000..96776cff7 --- /dev/null +++ b/payload-schemas/api.github.com/custom_property/deleted.schema.json @@ -0,0 +1,25 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "title": "custom property deleted event", + "$id": "custom_property$deleted", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["deleted"] }, + "definition": { + "type": "object", + "properties": { + "property_name": { + "type": "string", + "description": "The name of the property that was deleted." + } + }, + "required": ["property_name"], + "additionalProperties": false + }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "sender": { "$ref": "common/user.schema.json" } + }, + "required": ["action", "definition", "organization"], + "additionalProperties": false +} diff --git a/payload-schemas/api.github.com/custom_property_values/updated.schema.json b/payload-schemas/api.github.com/custom_property_values/updated.schema.json new file mode 100644 index 000000000..a84ac5cc2 --- /dev/null +++ b/payload-schemas/api.github.com/custom_property_values/updated.schema.json @@ -0,0 +1,31 @@ +{ + "title": "Custom property values updated event", + "$id": "custom_property_values$updated", + "type": "object", + "properties": { + "action": { "type": "string", "enum": ["updated"] }, + "installation": { "$ref": "common/installation-lite.schema.json" }, + "repository": { "$ref": "common/repository.schema.json" }, + "organization": { "$ref": "common/organization.schema.json" }, + "sender": { "$ref": "common/user.schema.json" }, + "new_property_values": { + "type": "array", + "description": "The new custom property values for the repository.", + "items": { "$ref": "common/custom-property-value.schema.json" } + }, + "old_property_values": { + "type": "array", + "description": "The old custom property values for the repository.", + "items": { "$ref": "common/custom-property-value.schema.json" } + } + }, + "required": [ + "action", + "repository", + "organization", + "sender", + "new_property_values", + "old_property_values" + ], + "additionalProperties": false +} diff --git a/payload-types/schema.d.ts b/payload-types/schema.d.ts index e8b2745b5..b4b9fc5bd 100644 --- a/payload-types/schema.d.ts +++ b/payload-types/schema.d.ts @@ -6,12 +6,15 @@ */ export type Schema = + | BranchProtectionConfigurationEvent | BranchProtectionRuleEvent | CheckRunEvent | CheckSuiteEvent | CodeScanningAlertEvent | CommitCommentEvent | CreateEvent + | CustomPropertyEvent + | CustomPropertyValuesEvent | DeleteEvent | DependabotAlertEvent | DeployKeyEvent @@ -69,6 +72,9 @@ export type Schema = | WorkflowDispatchEvent | WorkflowJobEvent | WorkflowRunEvent; +export type BranchProtectionConfigurationEvent = + | BranchProtectionConfigurationDisabledEvent + | BranchProtectionConfigurationEnabledEvent; export type BranchProtectionRuleEvent = | BranchProtectionRuleCreatedEvent | BranchProtectionRuleDeletedEvent @@ -109,6 +115,10 @@ export type AuthorAssociation = | "MEMBER" | "NONE" | "OWNER"; +export type CustomPropertyEvent = + | CustomPropertyCreatedEvent + | CustomPropertyDeletedEvent; +export type CustomPropertyValuesEvent = CustomPropertyValuesUpdatedEvent; export type DependabotAlertEvent = | DependabotAlertCreatedEvent | DependabotAlertDismissedEvent @@ -467,47 +477,37 @@ export type WorkflowRunEvent = | WorkflowRunInProgressEvent | WorkflowRunRequestedEvent; -/** - * Activity related to a branch protection rule. For more information, see "[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules)." - */ -export interface BranchProtectionRuleCreatedEvent { - action: "created"; - rule: BranchProtectionRule; - repository: Repository; - sender: User; +export interface BranchProtectionConfigurationDisabledEvent { + action: "disabled"; installation?: InstallationLite; organization?: Organization; + repository: Repository; + sender: User; } /** - * The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings. + * Installation */ -export interface BranchProtectionRule { +export interface InstallationLite { + /** + * The ID of the installation. + */ id: number; - repository_id: number; - name: string; - created_at: string; - updated_at: string; - pull_request_reviews_enforcement_level: BranchProtectionRuleEnforcementLevel; - required_approving_review_count: BranchProtectionRuleNumber; - dismiss_stale_reviews_on_push: BranchProtectionRuleBoolean; - require_code_owner_review: BranchProtectionRuleBoolean; - authorized_dismissal_actors_only: BranchProtectionRuleBoolean; - ignore_approvals_from_contributors: BranchProtectionRuleBoolean; - require_last_push_approval?: BranchProtectionRuleBoolean; - required_status_checks: BranchProtectionRuleArray; - required_status_checks_enforcement_level: BranchProtectionRuleEnforcementLevel; - strict_required_status_checks_policy: BranchProtectionRuleBoolean; - signature_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; - linear_history_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; - admin_enforced: BranchProtectionRuleBoolean; - create_protected?: BranchProtectionRuleBoolean; - allow_force_pushes_enforcement_level: BranchProtectionRuleEnforcementLevel; - allow_deletions_enforcement_level: BranchProtectionRuleEnforcementLevel; - merge_queue_enforcement_level: BranchProtectionRuleEnforcementLevel; - required_deployments_enforcement_level: BranchProtectionRuleEnforcementLevel; - required_conversation_resolution_level: BranchProtectionRuleEnforcementLevel; - authorized_actors_only: BranchProtectionRuleBoolean; - authorized_actor_names: BranchProtectionRuleArray; + node_id: string; +} +export interface Organization { + login: string; + id: number; + node_id: string; + url: string; + html_url?: string; + repos_url: string; + events_url: string; + hooks_url: string; + issues_url: string; + members_url: string; + public_members_url: string; + avatar_url: string; + description: string | null; } /** * A git repository @@ -791,6 +791,9 @@ export interface Repository { }; public?: boolean; organization?: string; + custom_properties: { + [k: string]: null | string | string[]; + }; } export interface User { login: string; @@ -821,30 +824,54 @@ export interface License { url: string | null; node_id: string; } +export interface BranchProtectionConfigurationEnabledEvent { + action: "enabled"; + installation?: InstallationLite; + organization?: Organization; + repository: Repository; + sender: User; +} /** - * Installation + * Activity related to a branch protection rule. For more information, see "[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules)." */ -export interface InstallationLite { - /** - * The ID of the installation. - */ - id: number; - node_id: string; +export interface BranchProtectionRuleCreatedEvent { + action: "created"; + rule: BranchProtectionRule; + repository: Repository; + sender: User; + installation?: InstallationLite; + organization?: Organization; } -export interface Organization { - login: string; +/** + * The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) applied to branches that match the name. Binary settings are boolean. Multi-level configurations are one of `off`, `non_admins`, or `everyone`. Actor and build lists are arrays of strings. + */ +export interface BranchProtectionRule { id: number; - node_id: string; - url: string; - html_url?: string; - repos_url: string; - events_url: string; - hooks_url: string; - issues_url: string; - members_url: string; - public_members_url: string; - avatar_url: string; - description: string | null; + repository_id: number; + name: string; + created_at: string; + updated_at: string; + pull_request_reviews_enforcement_level: BranchProtectionRuleEnforcementLevel; + required_approving_review_count: BranchProtectionRuleNumber; + dismiss_stale_reviews_on_push: BranchProtectionRuleBoolean; + require_code_owner_review: BranchProtectionRuleBoolean; + authorized_dismissal_actors_only: BranchProtectionRuleBoolean; + ignore_approvals_from_contributors: BranchProtectionRuleBoolean; + require_last_push_approval?: BranchProtectionRuleBoolean; + required_status_checks: BranchProtectionRuleArray; + required_status_checks_enforcement_level: BranchProtectionRuleEnforcementLevel; + strict_required_status_checks_policy: BranchProtectionRuleBoolean; + signature_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; + linear_history_requirement_enforcement_level: BranchProtectionRuleEnforcementLevel; + admin_enforced: BranchProtectionRuleBoolean; + create_protected?: BranchProtectionRuleBoolean; + allow_force_pushes_enforcement_level: BranchProtectionRuleEnforcementLevel; + allow_deletions_enforcement_level: BranchProtectionRuleEnforcementLevel; + merge_queue_enforcement_level: BranchProtectionRuleEnforcementLevel; + required_deployments_enforcement_level: BranchProtectionRuleEnforcementLevel; + required_conversation_resolution_level: BranchProtectionRuleEnforcementLevel; + authorized_actors_only: BranchProtectionRuleBoolean; + authorized_actor_names: BranchProtectionRuleArray; } /** * Activity related to a branch protection rule. For more information, see "[About branch protection rules](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-rules)." @@ -2334,6 +2361,89 @@ export interface CreateEvent { installation?: InstallationLite; organization?: Organization; } +export interface CustomPropertyCreatedEvent { + action: "created"; + definition: OrganizationCustomProperty; + installation?: InstallationLite; + organization: Organization; + sender?: User; +} +/** + * Custom property defined on an organization + */ +export interface OrganizationCustomProperty { + /** + * The name of the property + */ + property_name: string; + /** + * The type of the value for the property + */ + value_type: "string" | "single_select"; + /** + * Whether the property is required. + */ + required?: boolean; + /** + * Default value of the property + */ + default_value?: string | null; + /** + * Short description of the property + */ + description?: string | null; + /** + * An ordered list of the allowed values of the property. + * The property can have up to 200 allowed values. + * + * @maxItems 200 + */ + allowed_values?: string[] | null; + /** + * Who can edit the values of the property + */ + values_editable_by?: "org_actors" | "org_and_repo_actors" | null; +} +export interface CustomPropertyDeletedEvent { + action: "deleted"; + definition: { + /** + * The name of the property that was deleted. + */ + property_name: string; + }; + installation?: InstallationLite; + organization: Organization; + sender?: User; +} +export interface CustomPropertyValuesUpdatedEvent { + action: "updated"; + installation?: InstallationLite; + repository: Repository; + organization: Organization; + sender: User; + /** + * The new custom property values for the repository. + */ + new_property_values: CustomPropertyValue[]; + /** + * The old custom property values for the repository. + */ + old_property_values: CustomPropertyValue[]; +} +/** + * Custom property name and associated value + */ +export interface CustomPropertyValue { + /** + * The name of the property + */ + property_name: string; + /** + * The value assigned to the property + */ + value: string | string[] | null; +} /** * A Git branch or tag is deleted. */ @@ -8401,12 +8511,15 @@ export interface WorkflowRunRequestedEvent { } export interface EventPayloadMap { + branch_protection_configuration: BranchProtectionConfigurationEvent; branch_protection_rule: BranchProtectionRuleEvent; check_run: CheckRunEvent; check_suite: CheckSuiteEvent; code_scanning_alert: CodeScanningAlertEvent; commit_comment: CommitCommentEvent; create: CreateEvent; + custom_property: CustomPropertyEvent; + custom_property_values: CustomPropertyValuesEvent; delete: DeleteEvent; dependabot_alert: DependabotAlertEvent; deploy_key: DeployKeyEvent; From b97e063c13411bd1840bc0debadc64632dda25ec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 10:09:09 -0500 Subject: [PATCH 56/69] ci(action): update actions/checkout digest to 9bb5618 (#906) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/prettier.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 8 ++++---- .github/workflows/update-prettier.yml | 2 +- .github/workflows/update.yml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 57b91b16f..989c89889 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 1e9e398f3..bf441ccea 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -7,7 +7,7 @@ jobs: lint_repo: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 with: token: ${{ secrets.OCTOKITBOT_PAT }} - uses: actions/setup-node@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58cf39842..dd3ebba6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: lts/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e473af337..9134ce8ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: name: CI Checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: 18 @@ -24,7 +24,7 @@ jobs: name: Type Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: 18 @@ -36,7 +36,7 @@ jobs: name: Do types need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: 18 @@ -52,7 +52,7 @@ jobs: name: Do examples need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: 18 diff --git a/.github/workflows/update-prettier.yml b/.github/workflows/update-prettier.yml index f94288aff..c1757157d 100644 --- a/.github/workflows/update-prettier.yml +++ b/.github/workflows/update-prettier.yml @@ -7,7 +7,7 @@ jobs: update_prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: 18 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 29abae307..2213400cc 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -9,7 +9,7 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 - uses: actions/setup-node@v4 with: node-version: 18 From 8eb536f57e49234be54ca097b12949ac433010c5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 08:30:01 -0700 Subject: [PATCH 57/69] ci(action): update actions/checkout digest to b4ffde6 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/prettier.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 8 ++++---- .github/workflows/update-prettier.yml | 2 +- .github/workflows/update.yml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 989c89889..57b91b16f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index bf441ccea..1e9e398f3 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -7,7 +7,7 @@ jobs: lint_repo: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: token: ${{ secrets.OCTOKITBOT_PAT }} - uses: actions/setup-node@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dd3ebba6f..58cf39842 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: lts/* diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9134ce8ae..e473af337 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: name: CI Checks runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: 18 @@ -24,7 +24,7 @@ jobs: name: Type Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: 18 @@ -36,7 +36,7 @@ jobs: name: Do types need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: 18 @@ -52,7 +52,7 @@ jobs: name: Do examples need to be regenerated? runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: 18 diff --git a/.github/workflows/update-prettier.yml b/.github/workflows/update-prettier.yml index c1757157d..f94288aff 100644 --- a/.github/workflows/update-prettier.yml +++ b/.github/workflows/update-prettier.yml @@ -7,7 +7,7 @@ jobs: update_prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: 18 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 2213400cc..29abae307 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -9,7 +9,7 @@ jobs: update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - uses: actions/setup-node@v4 with: node-version: 18 From 3d77bef96909c1c27af100dd118657ad68ffcd6f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 11:39:40 -0700 Subject: [PATCH 58/69] build(deps): lock file maintenance (#908) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 60 +++++++++++++++--------------- payload-examples/package-lock.json | 6 +-- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/package-lock.json b/package-lock.json index 66aca9427..f7ef804fe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -740,9 +740,9 @@ "dev": true }, "node_modules/@types/lodash": { - "version": "4.14.202", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.202.tgz", - "integrity": "sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==", + "version": "4.17.0", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.0.tgz", + "integrity": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==", "dev": true }, "node_modules/@types/minimatch": { @@ -752,9 +752,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.24", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.24.tgz", - "integrity": "sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==", + "version": "20.11.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.26.tgz", + "integrity": "sha512-YwOMmyhNnAWijOBQweOJnQPl068Oqd4K3OFbTc6AHJwzweUwwWG3GIFY74OKks2PJUDkQPeddOQES9mLn1CTEQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1912,9 +1912,9 @@ } }, "node_modules/figures": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.0.1.tgz", - "integrity": "sha512-0oY/olScYD4IhQ8u//gCPA4F3mlTn2dacYmiDm/mbDQvpmLjV4uH+zhsQ5IyXRyvqkvtUkXkNdGvg5OFJTCsuQ==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", "dev": true, "dependencies": { "is-unicode-supported": "^2.0.0" @@ -2174,9 +2174,9 @@ } }, "node_modules/got": { - "version": "14.2.0", - "resolved": "https://registry.npmjs.org/got/-/got-14.2.0.tgz", - "integrity": "sha512-dBq2KkHcQl3AwPoIWsLsQScCPpUgRulz1qZVthjPYKYOPmYfBnekR3vxecjZbm91Vc3JUGnV9mqFX7B+Fe2quw==", + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/got/-/got-14.2.1.tgz", + "integrity": "sha512-KOaPMremmsvx6l9BLC04LYE6ZFW4x7e4HkTe3LwBmtuYYQwpeS4XKqzhubTIkaQ1Nr+eXxeori0zuwupXMovBQ==", "dev": true, "dependencies": { "@sindresorhus/is": "^6.1.0", @@ -2235,9 +2235,9 @@ } }, "node_modules/hasown": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.1.tgz", - "integrity": "sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "dependencies": { "function-bind": "^1.1.2" @@ -2914,9 +2914,9 @@ "dev": true }, "node_modules/marked": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.0.tgz", - "integrity": "sha512-Vkwtq9rLqXryZnWaQc86+FHLC6tr/fycMfYAhiOIXkrNmeGAyhSxjqu0Rs1i0bBqw5u0S7+lV9fdH2ZSVaoa0w==", + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.1.tgz", + "integrity": "sha512-Y1/V2yafOcOdWQCX0XpAKXzDakPOpn6U0YLxTJs3cww6VxOzZV1BTOOYWLvH3gX38cq+iLwljHHTnMtlDfg01Q==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -3151,9 +3151,9 @@ } }, "node_modules/normalize-url": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.0.tgz", - "integrity": "sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", "dev": true, "engines": { "node": ">=14.16" @@ -6372,9 +6372,9 @@ } }, "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.10.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.3.tgz", - "integrity": "sha512-JLXyjizi072smKGGcZiAJDCNweT8J+AuRxmPZ1aG7TERg4ijx9REl8CNhbr36RV4qXqL1gO1FF9HL8OkVmmrsA==", + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz", + "integrity": "sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ==", "dev": true, "engines": { "node": ">=16" @@ -6401,9 +6401,9 @@ } }, "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.10.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.10.3.tgz", - "integrity": "sha512-JLXyjizi072smKGGcZiAJDCNweT8J+AuRxmPZ1aG7TERg4ijx9REl8CNhbr36RV4qXqL1gO1FF9HL8OkVmmrsA==", + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz", + "integrity": "sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ==", "dev": true, "engines": { "node": ">=16" @@ -7237,9 +7237,9 @@ } }, "node_modules/typescript": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", - "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz", + "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/payload-examples/package-lock.json b/payload-examples/package-lock.json index 474e87393..6d83490dd 100644 --- a/payload-examples/package-lock.json +++ b/payload-examples/package-lock.json @@ -14,9 +14,9 @@ "devDependencies": {} }, "node_modules/@octokit/webhooks-types": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.3.2.tgz", - "integrity": "sha512-JWOoOgtWTFnTSAamPXXyjTY5/apttvNxF+vPBnwdSu5cj5snrd7FO0fyw4+wTXy8fHduq626JjhO+TwCyyA6vA==" + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.4.0.tgz", + "integrity": "sha512-FE2V+QZ2UYlh+9wWd5BPLNXG+J/XUD/PPq0ovS+nCcGX4+3qVbi3jYOmCTW48hg9SBBLtInx9+o7fFt4H5iP0Q==" } } } From b3b0467e5df24b08c67fe25dd7b831c8fd27f1b9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 08:27:04 -0700 Subject: [PATCH 59/69] build(deps): lock file maintenance (#909) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 166 ++++++++++++++++++++++------------------------ 1 file changed, 79 insertions(+), 87 deletions(-) diff --git a/package-lock.json b/package-lock.json index f7ef804fe..46b44c0fe 100644 --- a/package-lock.json +++ b/package-lock.json @@ -327,54 +327,54 @@ } }, "node_modules/@octokit/auth-token": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", - "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.0.1.tgz", + "integrity": "sha512-RTmWsLfig8SBoiSdgvCht4BXl1CHU89Co5xiQ5JF19my/sIRDFCQ1RPrmK0exgqUZuNm39C/bV8+/83+MJEjGg==", "dev": true, "engines": { "node": ">= 18" } }, "node_modules/@octokit/core": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.1.0.tgz", - "integrity": "sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.0.1.tgz", + "integrity": "sha512-MIpPQXu8Y8GjHwXM81JLveiV+DHJZtLMcB5nKekBGOl3iAtk0HT3i12Xl8Biybu+bCS1+k4qbuKEq5d0RxNRnQ==", "dev": true, "dependencies": { - "@octokit/auth-token": "^4.0.0", - "@octokit/graphql": "^7.0.0", - "@octokit/request": "^8.0.2", - "@octokit/request-error": "^5.0.0", + "@octokit/auth-token": "^5.0.0", + "@octokit/graphql": "^8.0.0", + "@octokit/request": "^9.0.0", + "@octokit/request-error": "^6.0.1", "@octokit/types": "^12.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" + "before-after-hook": "^3.0.2", + "universal-user-agent": "^7.0.0" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/endpoint": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", - "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.0.0.tgz", + "integrity": "sha512-emBcNDxBdC1y3+knJonS5zhUB/CG6TihubxM2U1/pG/Z1y3a4oV0Gzz3lmkCvWWQI6h3tqBAX9MgCBFp+M68Jw==", "dev": true, "dependencies": { "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" + "universal-user-agent": "^7.0.2" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/graphql": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", - "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.0.1.tgz", + "integrity": "sha512-lLDb6LhC1gBj2CxEDa5Xk10+H/boonhs+3Mi6jpRyetskDKNHe6crMeKmUE2efoLofMP8ruannLlCUgpTFmVzQ==", "dev": true, "dependencies": { - "@octokit/request": "^8.0.1", + "@octokit/request": "^9.0.0", "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" + "universal-user-agent": "^7.0.0" }, "engines": { "node": ">= 18" @@ -387,9 +387,9 @@ "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.1.tgz", - "integrity": "sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-10.0.0.tgz", + "integrity": "sha512-G1Z67qOiFneKDJyMafHQkWnKm1kU3FfbRZLzxgsFg4dOa3pRNdABbdk+xo/oev6P88lnbt7GKdBNB6dJZuPphA==", "dev": true, "dependencies": { "@octokit/types": "^12.6.0" @@ -398,16 +398,16 @@ "node": ">= 18" }, "peerDependencies": { - "@octokit/core": "5" + "@octokit/core": ">=6" } }, "node_modules/@octokit/plugin-retry": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.0.1.tgz", - "integrity": "sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.0.3.tgz", + "integrity": "sha512-T9l5Z7XnDZ7dkyNmhJPSUq0YjbqUT/xn4yQbhcSuv4WGC/LqM73/mKwkl68VDPoLw20e8oz4L7qQopWt9v6sow==", "dev": true, "dependencies": { - "@octokit/request-error": "^5.0.0", + "@octokit/request-error": "^6.0.0", "@octokit/types": "^12.0.0", "bottleneck": "^2.15.3" }, @@ -415,49 +415,47 @@ "node": ">= 18" }, "peerDependencies": { - "@octokit/core": ">=5" + "@octokit/core": ">=6" } }, "node_modules/@octokit/plugin-throttling": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.2.0.tgz", - "integrity": "sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.0.3.tgz", + "integrity": "sha512-DReKamrLBJOzld73dmmxV2H137QKJfsxszAczEZXeAJQ/Po6bzQacKajPdodA6T1jfmP9+waImus+d/R2j+R7Q==", "dev": true, "dependencies": { - "@octokit/types": "^12.2.0", + "@octokit/types": "^12.6.0", "bottleneck": "^2.15.3" }, "engines": { "node": ">= 18" }, "peerDependencies": { - "@octokit/core": "^5.0.0" + "@octokit/core": "^6.0.0" } }, "node_modules/@octokit/request": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.2.0.tgz", - "integrity": "sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.0.1.tgz", + "integrity": "sha512-kL+cAcbSl3dctYLuJmLfx6Iku2MXXy0jszhaEIjQNaCp4zjHXrhVAHeuaRdNvJjW9qjl3u1MJ72+OuBP0YW/pg==", "dev": true, "dependencies": { - "@octokit/endpoint": "^9.0.0", - "@octokit/request-error": "^5.0.0", + "@octokit/endpoint": "^10.0.0", + "@octokit/request-error": "^6.0.1", "@octokit/types": "^12.0.0", - "universal-user-agent": "^6.0.0" + "universal-user-agent": "^7.0.2" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/request-error": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", - "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.0.2.tgz", + "integrity": "sha512-WtRVpoHcNXs84+s9s/wqfHaxM68NGMg8Av7h59B50OVO0PwwMx+2GgQ/OliUd0iQBSNWgR6N8afi/KjSHbXHWw==", "dev": true, "dependencies": { - "@octokit/types": "^12.0.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" + "@octokit/types": "^12.0.0" }, "engines": { "node": ">= 18" @@ -550,15 +548,15 @@ } }, "node_modules/@semantic-release/github": { - "version": "9.2.6", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.6.tgz", - "integrity": "sha512-shi+Lrf6exeNZF+sBhK+P011LSbhmIAoUEgEY6SsxF8irJ+J2stwI5jkyDQ+4gzYyDImzV6LCKdYB9FXnQRWKA==", + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-10.0.2.tgz", + "integrity": "sha512-SP5ihhv/uQa8vPuWKmbJrrzfv8lRUkDFC6qwgaWoorrflN1DEW0IGCa9w/PxUp8Ad3dbvXZPmpXdGiP3eyTzhg==", "dev": true, "dependencies": { - "@octokit/core": "^5.0.0", - "@octokit/plugin-paginate-rest": "^9.0.0", - "@octokit/plugin-retry": "^6.0.0", - "@octokit/plugin-throttling": "^8.0.0", + "@octokit/core": "^6.0.0", + "@octokit/plugin-paginate-rest": "^10.0.0", + "@octokit/plugin-retry": "^7.0.0", + "@octokit/plugin-throttling": "^9.0.0", "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "debug": "^4.3.4", @@ -566,23 +564,23 @@ "globby": "^14.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", - "issue-parser": "^6.0.0", + "issue-parser": "^7.0.0", "lodash-es": "^4.17.21", "mime": "^4.0.0", "p-filter": "^4.0.0", "url-join": "^5.0.0" }, "engines": { - "node": ">=18" + "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" } }, "node_modules/@semantic-release/npm": { - "version": "11.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-11.0.3.tgz", - "integrity": "sha512-KUsozQGhRBAnoVg4UMZj9ep436VEGwT536/jwSqB7vcEfA6oncCUU7UIYTRdLx7GvTtqn0kBjnkfLVkcnBa2YQ==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.0.tgz", + "integrity": "sha512-72TVYQCH9NvVsO/y13eF8vE4bNnfls518+4KcFwJUKi7AtA/ZXoNgSg9gTTfw5eMZMkiH0izUrpGXgZE/cSQhA==", "dev": true, "dependencies": { "@semantic-release/error": "^4.0.0", @@ -600,7 +598,7 @@ "tempy": "^3.0.0" }, "engines": { - "node": "^18.17 || >=20" + "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" @@ -752,9 +750,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.26.tgz", - "integrity": "sha512-YwOMmyhNnAWijOBQweOJnQPl068Oqd4K3OFbTc6AHJwzweUwwWG3GIFY74OKks2PJUDkQPeddOQES9mLn1CTEQ==", + "version": "20.11.28", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.28.tgz", + "integrity": "sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -951,9 +949,9 @@ "dev": true }, "node_modules/before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", + "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", "dev": true }, "node_modules/boolbase": { @@ -1553,12 +1551,6 @@ "node": ">=10" } }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true - }, "node_modules/detect-indent": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", @@ -2610,9 +2602,9 @@ "dev": true }, "node_modules/issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.0.tgz", + "integrity": "sha512-jgAw78HO3gs9UrKqJNQvfDj9Ouy8Mhu40fbEJ8yXff4MW8+/Fcn9iFjyWUQ6SKbX8ipPk3X5A3AyfYHRu6uVLw==", "dev": true, "dependencies": { "lodash.capitalize": "^4.2.1", @@ -2622,7 +2614,7 @@ "lodash.uniqby": "^4.7.0" }, "engines": { - "node": ">=10.13" + "node": "^18.17 || >=20.6.1" } }, "node_modules/java-properties": { @@ -6527,15 +6519,15 @@ "dev": true }, "node_modules/semantic-release": { - "version": "23.0.2", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.2.tgz", - "integrity": "sha512-OnVYJ6Xgzwe1x8MKswba7RU9+5djS1MWRTrTn5qsq3xZYpslroZkV9Pt0dA2YcIuieeuSZWJhn+yUWoBUHO5Fw==", + "version": "23.0.4", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.4.tgz", + "integrity": "sha512-UlcgO6SEcFtwSF/JMVXKswK+4Af2ypu55WRdLL6IhnKHPCZ9Zap7CV8PN2+wmvAdAPTI76CqouJyGZyb1fp9VA==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^11.0.0", "@semantic-release/error": "^4.0.0", - "@semantic-release/github": "^9.0.0", - "@semantic-release/npm": "^11.0.0", + "@semantic-release/github": "^10.0.0", + "@semantic-release/npm": "^12.0.0", "@semantic-release/release-notes-generator": "^12.0.0", "aggregate-error": "^5.0.0", "cosmiconfig": "^9.0.0", @@ -7210,9 +7202,9 @@ "dev": true }, "node_modules/turndown": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/turndown/-/turndown-7.1.2.tgz", - "integrity": "sha512-ntI9R7fcUKjqBP6QU8rBK2Ehyt8LAzt3UBT9JR9tgo6GtuKvyUzpayWmeMKJw1DPdXzktvtIT8m2mVXz+bL/Qg==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/turndown/-/turndown-7.1.3.tgz", + "integrity": "sha512-Z3/iJ6IWh8VBiACWQJaA5ulPQE5E1QwvBHj00uGzdQxdRnd8fh1DPqNOJqzQDu6DkOstORrtXzf/9adB+vMtEA==", "dev": true, "dependencies": { "domino": "^2.1.6" @@ -7305,9 +7297,9 @@ } }, "node_modules/universal-user-agent": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", - "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "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==", "dev": true }, "node_modules/universalify": { From d0eac4f7fc97fae3ce20307e7960a4f639356208 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 14:44:38 -0700 Subject: [PATCH 60/69] ci(action): update actions/add-to-project action to v0.6.1 (#910) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/add_to_octokit_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml index e1c533150..84f2877e3 100644 --- a/.github/workflows/add_to_octokit_project.yml +++ b/.github/workflows/add_to_octokit_project.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/add-to-project@v0.6.0 + - uses: actions/add-to-project@v0.6.1 with: project-url: https://github.com/orgs/octokit/projects/10 github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} From 28abb9a3da60f81a0d8ddcf820d7bc00781be95f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 08:45:12 -0700 Subject: [PATCH 61/69] build(deps): lock file maintenance (#912) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 187 ++++++++++++---------------------------------- 1 file changed, 48 insertions(+), 139 deletions(-) diff --git a/package-lock.json b/package-lock.json index 46b44c0fe..574f8e22d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,89 +34,18 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", "dev": true, "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/code-frame/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@babel/code-frame/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/@babel/code-frame/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/code-frame/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/@babel/helper-validator-identifier": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", @@ -127,14 +56,15 @@ } }, "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" @@ -518,9 +448,9 @@ } }, "node_modules/@semantic-release/commit-analyzer": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-11.1.0.tgz", - "integrity": "sha512-cXNTbv3nXR2hlzHjAMgbuiQVtvWHTlwwISt60B+4NZv01y/QRY7p2HcJm8Eh2StzcTJoNnflvKjHH/cjFS7d5g==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-12.0.0.tgz", + "integrity": "sha512-qG+md5gdes+xa8zP7lIo1fWE17zRdO8yMCaxh9lyL65TQleoSv8WHHOqRURfghTytUh+NpkSyBprQ5hrkxOKVQ==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", @@ -532,7 +462,7 @@ "micromatch": "^4.0.2" }, "engines": { - "node": "^18.17 || >=20.6.1" + "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" @@ -605,9 +535,9 @@ } }, "node_modules/@semantic-release/release-notes-generator": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-12.1.0.tgz", - "integrity": "sha512-g6M9AjUKAZUZnxaJZnouNBeDNTCUrJ5Ltj+VJ60gJeDaRRahcHsry9HW8yKrnKkKNkx5lbWiEP1FPMqVNQz8Kg==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-13.0.0.tgz", + "integrity": "sha512-LEeZWb340keMYuREMyxrODPXJJ0JOL8D/mCl74B4LdzbxhtXV2LrPN2QBEcGJrlQhoqLO0RhxQb6masHytKw+A==", "dev": true, "dependencies": { "conventional-changelog-angular": "^7.0.0", @@ -622,7 +552,7 @@ "read-pkg-up": "^11.0.0" }, "engines": { - "node": "^18.17 || >=20.6.1" + "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" @@ -677,9 +607,9 @@ } }, "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.10.tgz", + "integrity": "sha512-PiaIWIoPvO6qm6t114ropMCagj6YAF24j9OkCA2mJDXFnlionEwhsBCJ8yek4aib575BI3OkART/90WsgHgLWw==", "dev": true }, "node_modules/@tsconfig/node12": { @@ -750,9 +680,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.28", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.28.tgz", - "integrity": "sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==", + "version": "20.11.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", + "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -874,13 +804,10 @@ } }, "node_modules/ansi-escapes": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.0.tgz", - "integrity": "sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.2.1.tgz", + "integrity": "sha512-4nJ3yixlEthEJ9Rk4vPcdBRkZvQZlYyu8j4/Mqz5sgIkddmEnH2Yj2ZrnP9S3tQOvSNRUIgVNF/1yPpRAGNRig==", "dev": true, - "dependencies": { - "type-fest": "^3.0.0" - }, "engines": { "node": ">=14.16" }, @@ -1229,9 +1156,9 @@ } }, "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", + "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", "dev": true, "dependencies": { "string-width": "^4.2.0" @@ -6191,6 +6118,12 @@ "node": ">=8" } }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", @@ -6363,18 +6296,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz", - "integrity": "sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/read-pkg/node_modules/parse-json": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", @@ -6392,18 +6313,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz", - "integrity": "sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", @@ -6519,16 +6428,16 @@ "dev": true }, "node_modules/semantic-release": { - "version": "23.0.4", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.4.tgz", - "integrity": "sha512-UlcgO6SEcFtwSF/JMVXKswK+4Af2ypu55WRdLL6IhnKHPCZ9Zap7CV8PN2+wmvAdAPTI76CqouJyGZyb1fp9VA==", + "version": "23.0.6", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.6.tgz", + "integrity": "sha512-/r62F4PNhJZhyZYMobcpcACGwpFNQyaVcSmqZQXG50GMbHSBVZQLCvwafqxO1lDQKVgmGmyCEtOVYzwvzvyhVw==", "dev": true, "dependencies": { - "@semantic-release/commit-analyzer": "^11.0.0", + "@semantic-release/commit-analyzer": "^12.0.0", "@semantic-release/error": "^4.0.0", "@semantic-release/github": "^10.0.0", "@semantic-release/npm": "^12.0.0", - "@semantic-release/release-notes-generator": "^12.0.0", + "@semantic-release/release-notes-generator": "^13.0.0", "aggregate-error": "^5.0.0", "cosmiconfig": "^9.0.0", "debug": "^4.0.0", @@ -7217,21 +7126,21 @@ "dev": true }, "node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.14.0.tgz", + "integrity": "sha512-on5/Cw89wwqGZQu+yWO0gGMGu8VNxsaW9SB2HE8yJjllEk7IDTwnSN1dUVldYILhYPN5HzD7WAaw2cc/jBfn0Q==", "dev": true, "engines": { - "node": ">=14.16" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/typescript": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz", - "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==", + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz", + "integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==", "dev": true, "bin": { "tsc": "bin/tsc", From 8cbbc6b89f929453e15fc191baef829d21e6d21b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 11:36:11 -0700 Subject: [PATCH 62/69] ci(action): update actions/add-to-project action to v1 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/add_to_octokit_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml index 84f2877e3..0ac7fd7b4 100644 --- a/.github/workflows/add_to_octokit_project.yml +++ b/.github/workflows/add_to_octokit_project.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/add-to-project@v0.6.1 + - uses: actions/add-to-project@v1.0.0 with: project-url: https://github.com/orgs/octokit/projects/10 github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} From 897531eb42a8670a636f4ba7a5d2c1b6db1a4512 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 09:57:59 -0700 Subject: [PATCH 63/69] build(deps): lock file maintenance (#915) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/package-lock.json b/package-lock.json index 574f8e22d..c3a703608 100644 --- a/package-lock.json +++ b/package-lock.json @@ -607,9 +607,9 @@ } }, "node_modules/@tsconfig/node10": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.10.tgz", - "integrity": "sha512-PiaIWIoPvO6qm6t114ropMCagj6YAF24j9OkCA2mJDXFnlionEwhsBCJ8yek4aib575BI3OkART/90WsgHgLWw==", + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", "dev": true }, "node_modules/@tsconfig/node12": { @@ -680,9 +680,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.30", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.30.tgz", - "integrity": "sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==", + "version": "20.12.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.2.tgz", + "integrity": "sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -743,9 +743,9 @@ } }, "node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", "dev": true, "dependencies": { "debug": "^4.3.4" @@ -6174,12 +6174,12 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.12", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.12.tgz", - "integrity": "sha512-hifuuOgw5rHHTdouw9VrhT8+Nd7UwxtL1qco8dUfd4XUFQL6ia3xyjSxhPQTsGnSYFraTWy5Omb+MZm/OWDTpQ==", + "version": "2.4.14", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.14.tgz", + "integrity": "sha512-sli+gV5tW7uxvzDZQscaBtSfbyAW2ToL6n/HGt51PipwX9vI7M54vefG0mKSfklVkT29TNGO6Mo6g8c6Z79gmw==", "dev": true, "dependencies": { - "sort-package-json": "2.8.0", + "sort-package-json": "2.10.0", "synckit": "0.9.0" }, "peerDependencies": { @@ -6707,9 +6707,9 @@ "dev": true }, "node_modules/sort-package-json": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.8.0.tgz", - "integrity": "sha512-PxeNg93bTJWmDGnu0HADDucoxfFiKkIr73Kv85EBThlI1YQPdc0XovBgg2llD0iABZbu2SlKo8ntGmOP9wOj/g==", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/sort-package-json/-/sort-package-json-2.10.0.tgz", + "integrity": "sha512-MYecfvObMwJjjJskhxYfuOADkXp1ZMMnCFC8yhp+9HDsk7HhR336hd7eiBs96lTXfiqmUNI+WQCeCMRBhl251g==", "dev": true, "dependencies": { "detect-indent": "^7.0.1", @@ -6718,6 +6718,7 @@ "git-hooks-list": "^3.0.0", "globby": "^13.1.2", "is-plain-obj": "^4.1.0", + "semver": "^7.6.0", "sort-object-keys": "^1.1.3" }, "bin": { From b28ee220ca96db44a8555551ccd6cf06c8b37052 Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Wed, 3 Apr 2024 20:12:30 +0200 Subject: [PATCH 64/69] feat(security): Add provenance (#916) * Enable provenance in package.json * Add necessary permissions to the release workflow * Adapt PR --------- Co-authored-by: wolfy1339 --- .github/workflows/release.yml | 7 +++++++ package.json | 3 --- payload-examples/package.json | 3 ++- payload-schemas/package.json | 3 ++- payload-types/package.json | 3 ++- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58cf39842..56b814069 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,13 @@ - main - beta name: Release +# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance +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 + jobs: build: name: release diff --git a/package.json b/package.json index 908b0c2ce..069b78c15 100644 --- a/package.json +++ b/package.json @@ -91,8 +91,5 @@ "turndown": "^7.1.1", "typescript": "^5.0.0", "yargs": "^17.3.1" - }, - "publishConfig": { - "access": "public" } } diff --git a/payload-examples/package.json b/payload-examples/package.json index 2690845fa..82df8fd5f 100644 --- a/payload-examples/package.json +++ b/payload-examples/package.json @@ -18,6 +18,7 @@ }, "devDependencies": {}, "publishConfig": { - "access": "public" + "access": "public", + "provenance": true } } diff --git a/payload-schemas/package.json b/payload-schemas/package.json index 4a2d37062..b957a0428 100644 --- a/payload-schemas/package.json +++ b/payload-schemas/package.json @@ -14,6 +14,7 @@ "dependencies": {}, "devDependencies": {}, "publishConfig": { - "access": "public" + "access": "public", + "provenance": true } } diff --git a/payload-types/package.json b/payload-types/package.json index cd05b03bf..f3e51d9c5 100644 --- a/payload-types/package.json +++ b/payload-types/package.json @@ -15,6 +15,7 @@ "dependencies": {}, "devDependencies": {}, "publishConfig": { - "access": "public" + "access": "public", + "provenance": true } } From a1d33907f4e367e85478e6765a0aacf39be1487a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 16:31:11 +0200 Subject: [PATCH 65/69] build(deps): lock file maintenance (#917) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 326 ++++++++++++++++++----------- payload-examples/package-lock.json | 6 +- 2 files changed, 209 insertions(+), 123 deletions(-) diff --git a/package-lock.json b/package-lock.json index c3a703608..2552b691a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -257,25 +257,25 @@ } }, "node_modules/@octokit/auth-token": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.0.1.tgz", - "integrity": "sha512-RTmWsLfig8SBoiSdgvCht4BXl1CHU89Co5xiQ5JF19my/sIRDFCQ1RPrmK0exgqUZuNm39C/bV8+/83+MJEjGg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.0.tgz", + "integrity": "sha512-JH+5PhVMjpbBuKlykiseCHa2uZdEd8Qm/N9Kpqncx4o/wkGF38gqVjIP2gZqfaP3nxFZPpg0FwGClKzBi6nS2g==", "dev": true, "engines": { "node": ">= 18" } }, "node_modules/@octokit/core": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.0.1.tgz", - "integrity": "sha512-MIpPQXu8Y8GjHwXM81JLveiV+DHJZtLMcB5nKekBGOl3iAtk0HT3i12Xl8Biybu+bCS1+k4qbuKEq5d0RxNRnQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.1.tgz", + "integrity": "sha512-uVypPdnZV7YoEa69Ky2kTSw3neFLGT0PZ54OwUMDph7w6TmhF0ZnoVcvb/kYnjDHCFo2mfoeRDYifLKhLNasUg==", "dev": true, "dependencies": { "@octokit/auth-token": "^5.0.0", "@octokit/graphql": "^8.0.0", "@octokit/request": "^9.0.0", "@octokit/request-error": "^6.0.1", - "@octokit/types": "^12.0.0", + "@octokit/types": "^13.0.0", "before-after-hook": "^3.0.2", "universal-user-agent": "^7.0.0" }, @@ -284,12 +284,12 @@ } }, "node_modules/@octokit/endpoint": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.0.0.tgz", - "integrity": "sha512-emBcNDxBdC1y3+knJonS5zhUB/CG6TihubxM2U1/pG/Z1y3a4oV0Gzz3lmkCvWWQI6h3tqBAX9MgCBFp+M68Jw==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.0.tgz", + "integrity": "sha512-ogZ5uLMeGBZUzS32fNt9j+dNw3kkEn5CSw4CVkN1EvCNdFYWrQ5diQR6Hh52VrPR0oayIoYTqQFL/l8RqkV0qw==", "dev": true, "dependencies": { - "@octokit/types": "^12.0.0", + "@octokit/types": "^13.0.0", "universal-user-agent": "^7.0.2" }, "engines": { @@ -297,13 +297,13 @@ } }, "node_modules/@octokit/graphql": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.0.1.tgz", - "integrity": "sha512-lLDb6LhC1gBj2CxEDa5Xk10+H/boonhs+3Mi6jpRyetskDKNHe6crMeKmUE2efoLofMP8ruannLlCUgpTFmVzQ==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.1.0.tgz", + "integrity": "sha512-XDvj6GcUnQYgbCLXElt3vZDzNIPGvGiwxQO2XzsvfVUjebGh0E5eCD/1My9zUGSNKaGVZitVuO8LMziGmoFryg==", "dev": true, "dependencies": { "@octokit/request": "^9.0.0", - "@octokit/types": "^12.0.0", + "@octokit/types": "^13.0.0", "universal-user-agent": "^7.0.0" }, "engines": { @@ -311,18 +311,18 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", - "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-21.2.0.tgz", + "integrity": "sha512-xx+Xd6I7rYvul/hgUDqv6TeGX0IOGnhSg9IOeYgd/uI7IAqUy6DE2B6Ipv2M4mWoxaMcWjIzgTIcv8pMO3F3vw==", "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-10.0.0.tgz", - "integrity": "sha512-G1Z67qOiFneKDJyMafHQkWnKm1kU3FfbRZLzxgsFg4dOa3pRNdABbdk+xo/oev6P88lnbt7GKdBNB6dJZuPphA==", + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.0.0.tgz", + "integrity": "sha512-HLz6T9HWeNkX3SVqc7FUYlh+TAg3G7gCc1MGuNcov8mSrFU9dc4ABmRmgqR9TsY1doUx42vLN5UxxWlnqBX8xw==", "dev": true, "dependencies": { - "@octokit/types": "^12.6.0" + "@octokit/types": "^13.0.0" }, "engines": { "node": ">= 18" @@ -332,13 +332,13 @@ } }, "node_modules/@octokit/plugin-retry": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.0.3.tgz", - "integrity": "sha512-T9l5Z7XnDZ7dkyNmhJPSUq0YjbqUT/xn4yQbhcSuv4WGC/LqM73/mKwkl68VDPoLw20e8oz4L7qQopWt9v6sow==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.1.0.tgz", + "integrity": "sha512-6mc4xNtT6eoDBGrJJn0sFALUmIba2f7Wx+G8XV9GkBLcyX5PogBdx2mDMW5yPPqSD/y23tYagkjOLX9sT7O6jA==", "dev": true, "dependencies": { "@octokit/request-error": "^6.0.0", - "@octokit/types": "^12.0.0", + "@octokit/types": "^13.0.0", "bottleneck": "^2.15.3" }, "engines": { @@ -349,12 +349,12 @@ } }, "node_modules/@octokit/plugin-throttling": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.0.3.tgz", - "integrity": "sha512-DReKamrLBJOzld73dmmxV2H137QKJfsxszAczEZXeAJQ/Po6bzQacKajPdodA6T1jfmP9+waImus+d/R2j+R7Q==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.1.0.tgz", + "integrity": "sha512-16lDMMhChavhvXKr2zRK7sD+hTpuVm697xZNf1a0C/MFRZU8CFkrNJEYX7Fqo2dc44lISp7V5Vm0sgJIx2bRkw==", "dev": true, "dependencies": { - "@octokit/types": "^12.6.0", + "@octokit/types": "^13.0.0", "bottleneck": "^2.15.3" }, "engines": { @@ -380,18 +380,24 @@ } }, "node_modules/@octokit/request-error": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.0.2.tgz", - "integrity": "sha512-WtRVpoHcNXs84+s9s/wqfHaxM68NGMg8Av7h59B50OVO0PwwMx+2GgQ/OliUd0iQBSNWgR6N8afi/KjSHbXHWw==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.0.tgz", + "integrity": "sha512-xcLJv4IgfWIOEEVZwfhUN3yHNWJL0AMw1J1Ba8BofM9RdDTbapg6MO4zNxlPS4XXX9aAIsbDRa47K57EhgeVAw==", "dev": true, "dependencies": { - "@octokit/types": "^12.0.0" + "@octokit/types": "^13.0.0" }, "engines": { "node": ">= 18" } }, - "node_modules/@octokit/types": { + "node_modules/@octokit/request/node_modules/@octokit/openapi-types": { + "version": "20.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", + "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", + "dev": true + }, + "node_modules/@octokit/request/node_modules/@octokit/types": { "version": "12.6.0", "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", @@ -400,6 +406,15 @@ "@octokit/openapi-types": "^20.0.0" } }, + "node_modules/@octokit/types": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.1.0.tgz", + "integrity": "sha512-nBwAFOYqVUUJ2AZFK4ZzESQptaAVqdTDKk8gE0Xr0o99WuPDSrhUC38x0F40xD9OUxXhOOuZKWNNVVLPSHQDvQ==", + "dev": true, + "dependencies": { + "@octokit/openapi-types": "^21.0.0" + } + }, "node_modules/@pkgr/core": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", @@ -478,13 +493,13 @@ } }, "node_modules/@semantic-release/github": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-10.0.2.tgz", - "integrity": "sha512-SP5ihhv/uQa8vPuWKmbJrrzfv8lRUkDFC6qwgaWoorrflN1DEW0IGCa9w/PxUp8Ad3dbvXZPmpXdGiP3eyTzhg==", + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-10.0.3.tgz", + "integrity": "sha512-nSJQboKrG4xBn7hHpRMrK8lt5DgqJg50ZMz9UbrsfTxuRk55XVoQEadbGZ2L9M0xZAC6hkuwkDhQJKqfPU35Fw==", "dev": true, "dependencies": { "@octokit/core": "^6.0.0", - "@octokit/plugin-paginate-rest": "^10.0.0", + "@octokit/plugin-paginate-rest": "^11.0.0", "@octokit/plugin-retry": "^7.0.0", "@octokit/plugin-throttling": "^9.0.0", "@semantic-release/error": "^4.0.0", @@ -680,9 +695,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.12.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.2.tgz", - "integrity": "sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==", + "version": "20.12.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.5.tgz", + "integrity": "sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -1296,6 +1311,18 @@ "node": ">=16" } }, + "node_modules/convert-hrtime": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-5.0.0.tgz", + "integrity": "sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", @@ -1882,15 +1909,16 @@ } }, "node_modules/find-versions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-5.1.0.tgz", - "integrity": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-6.0.0.tgz", + "integrity": "sha512-2kCCtc+JvcZ86IGAz3Z2Y0A1baIz9fL31pH/0S1IqZr9Iwnjq8izfPtrCyQKO6TLMPELLsQMre7VDqeIKCsHkA==", "dev": true, "dependencies": { - "semver-regex": "^4.0.5" + "semver-regex": "^4.0.5", + "super-regex": "^1.0.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -1944,6 +1972,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/function-timeout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/function-timeout/-/function-timeout-1.0.1.tgz", + "integrity": "sha512-6yPMImFFuaMPNaTMTBuolA8EanHJWF5Vju0NHpObRURT105J6x1Mf2a7J4P7Sqk2xDxv24N5L0RatEhTBhNmdA==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -3082,9 +3122,9 @@ } }, "node_modules/npm": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.5.0.tgz", - "integrity": "sha512-Ejxwvfh9YnWVU2yA5FzoYLTW52vxHCz+MHrOFg9Cc8IFgF/6f5AGPAvb5WTay5DIUP1NIfN3VBZ0cLlGO0Ys+A==", + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.5.1.tgz", + "integrity": "sha512-RozZuGuWbbhDM2sRhOSLIRb3DLyof6TREi0TW5b3xUEBropDhDqEHv0iAjA1zsIwXKgfIkR8GvQMd4oeKKg9eQ==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3093,6 +3133,7 @@ "@npmcli/map-workspaces", "@npmcli/package-json", "@npmcli/promise-spawn", + "@npmcli/redact", "@npmcli/run-script", "@sigstore/tuf", "abbrev", @@ -3173,23 +3214,24 @@ "@npmcli/map-workspaces": "^3.0.4", "@npmcli/package-json": "^5.0.0", "@npmcli/promise-spawn": "^7.0.1", + "@npmcli/redact": "^1.1.0", "@npmcli/run-script": "^7.0.4", - "@sigstore/tuf": "^2.3.1", + "@sigstore/tuf": "^2.3.2", "abbrev": "^2.0.0", "archy": "~1.0.0", "cacache": "^18.0.2", "chalk": "^5.3.0", "ci-info": "^4.0.0", "cli-columns": "^4.0.0", - "cli-table3": "^0.6.3", + "cli-table3": "^0.6.4", "columnify": "^1.6.0", "fastest-levenshtein": "^1.0.16", "fs-minipass": "^3.0.3", - "glob": "^10.3.10", + "glob": "^10.3.12", "graceful-fs": "^4.2.11", "hosted-git-info": "^7.0.1", - "ini": "^4.1.1", - "init-package-json": "^6.0.0", + "ini": "^4.1.2", + "init-package-json": "^6.0.2", "is-cidr": "^5.0.3", "json-parse-even-better-errors": "^3.0.1", "libnpmaccess": "^8.0.1", @@ -3204,11 +3246,11 @@ "libnpmteam": "^6.0.0", "libnpmversion": "^5.0.1", "make-fetch-happen": "^13.0.0", - "minimatch": "^9.0.3", + "minimatch": "^9.0.4", "minipass": "^7.0.4", "minipass-pipeline": "^1.2.4", "ms": "^2.1.2", - "node-gyp": "^10.0.1", + "node-gyp": "^10.1.0", "nopt": "^7.2.0", "normalize-package-data": "^6.0.0", "npm-audit-report": "^5.0.0", @@ -3216,7 +3258,7 @@ "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", "npm-profile": "^9.0.0", - "npm-registry-fetch": "^16.1.0", + "npm-registry-fetch": "^16.2.0", "npm-user-validate": "^2.0.0", "npmlog": "^7.0.1", "p-map": "^4.0.0", @@ -3224,12 +3266,12 @@ "parse-conflict-json": "^3.0.1", "proc-log": "^3.0.0", "qrcode-terminal": "^0.12.0", - "read": "^2.1.0", + "read": "^3.0.1", "semver": "^7.6.0", "spdx-expression-parse": "^3.0.1", "ssri": "^10.0.5", "supports-color": "^9.4.0", - "tar": "^6.2.0", + "tar": "^6.2.1", "text-table": "~0.2.0", "tiny-relative-date": "^1.3.0", "treeverse": "^3.0.0", @@ -3372,7 +3414,7 @@ } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.4.0", + "version": "7.4.1", "dev": true, "inBundle": true, "license": "ISC", @@ -3393,12 +3435,12 @@ "hosted-git-info": "^7.0.1", "json-parse-even-better-errors": "^3.0.0", "json-stringify-nice": "^1.1.4", - "minimatch": "^9.0.0", + "minimatch": "^9.0.4", "nopt": "^7.0.0", "npm-install-checks": "^6.2.0", "npm-package-arg": "^11.0.1", "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^16.0.0", + "npm-registry-fetch": "^16.2.0", "npmlog": "^7.0.1", "pacote": "^17.0.4", "parse-conflict-json": "^3.0.0", @@ -3419,14 +3461,14 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.2.0", + "version": "8.2.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/map-workspaces": "^3.0.2", "ci-info": "^4.0.0", - "ini": "^4.1.0", + "ini": "^4.1.2", "nopt": "^7.0.0", "proc-log": "^3.0.0", "read-package-json-fast": "^3.0.2", @@ -3601,6 +3643,15 @@ "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, + "node_modules/npm/node_modules/@npmcli/redact": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, "node_modules/npm/node_modules/@npmcli/run-script": { "version": "7.0.4", "dev": true, @@ -3673,7 +3724,7 @@ } }, "node_modules/npm/node_modules/@sigstore/tuf": { - "version": "2.3.1", + "version": "2.3.2", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3731,7 +3782,7 @@ } }, "node_modules/npm/node_modules/agent-base": { - "version": "7.1.0", + "version": "7.1.1", "dev": true, "inBundle": true, "license": "MIT", @@ -3819,12 +3870,15 @@ } }, "node_modules/npm/node_modules/binary-extensions": { - "version": "2.2.0", + "version": "2.3.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/brace-expansion": { @@ -3939,7 +3993,7 @@ } }, "node_modules/npm/node_modules/cli-table3": { - "version": "0.6.3", + "version": "0.6.4", "dev": true, "inBundle": true, "license": "MIT", @@ -4217,16 +4271,16 @@ } }, "node_modules/npm/node_modules/glob": { - "version": "10.3.10", + "version": "10.3.12", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", + "jackspeak": "^2.3.6", "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" }, "bin": { "glob": "dist/esm/bin.mjs" @@ -4350,7 +4404,7 @@ } }, "node_modules/npm/node_modules/ini": { - "version": "4.1.1", + "version": "4.1.2", "dev": true, "inBundle": true, "license": "ISC", @@ -4359,15 +4413,15 @@ } }, "node_modules/npm/node_modules/init-package-json": { - "version": "6.0.0", + "version": "6.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { + "@npmcli/package-json": "^5.0.0", "npm-package-arg": "^11.0.0", "promzard": "^1.0.0", - "read": "^2.0.0", - "read-package-json": "^7.0.0", + "read": "^3.0.1", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4", "validate-npm-package-name": "^5.0.0" @@ -4516,20 +4570,20 @@ "license": "MIT" }, "node_modules/npm/node_modules/libnpmaccess": { - "version": "8.0.2", + "version": "8.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-package-arg": "^11.0.1", - "npm-registry-fetch": "^16.0.0" + "npm-registry-fetch": "^16.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.7", + "version": "6.0.8", "dev": true, "inBundle": true, "license": "ISC", @@ -4537,19 +4591,19 @@ "@npmcli/arborist": "^7.2.1", "@npmcli/disparity-colors": "^3.0.0", "@npmcli/installed-package-contents": "^2.0.2", - "binary-extensions": "^2.2.0", + "binary-extensions": "^2.3.0", "diff": "^5.1.0", - "minimatch": "^9.0.0", + "minimatch": "^9.0.4", "npm-package-arg": "^11.0.1", "pacote": "^17.0.4", - "tar": "^6.2.0" + "tar": "^6.2.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.8", + "version": "7.0.9", "dev": true, "inBundle": true, "license": "ISC", @@ -4561,7 +4615,7 @@ "npmlog": "^7.0.1", "pacote": "^17.0.4", "proc-log": "^3.0.0", - "read": "^2.0.0", + "read": "^3.0.1", "read-package-json-fast": "^3.0.2", "semver": "^7.3.7", "walk-up-path": "^3.0.1" @@ -4571,7 +4625,7 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.5", + "version": "5.0.6", "dev": true, "inBundle": true, "license": "ISC", @@ -4583,33 +4637,33 @@ } }, "node_modules/npm/node_modules/libnpmhook": { - "version": "10.0.1", + "version": "10.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" + "npm-registry-fetch": "^16.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmorg": { - "version": "6.0.2", + "version": "6.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" + "npm-registry-fetch": "^16.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.7", + "version": "6.0.8", "dev": true, "inBundle": true, "license": "ISC", @@ -4624,7 +4678,7 @@ } }, "node_modules/npm/node_modules/libnpmpublish": { - "version": "9.0.4", + "version": "9.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -4632,7 +4686,7 @@ "ci-info": "^4.0.0", "normalize-package-data": "^6.0.0", "npm-package-arg": "^11.0.1", - "npm-registry-fetch": "^16.0.0", + "npm-registry-fetch": "^16.2.0", "proc-log": "^3.0.0", "semver": "^7.3.7", "sigstore": "^2.2.0", @@ -4643,25 +4697,25 @@ } }, "node_modules/npm/node_modules/libnpmsearch": { - "version": "7.0.1", + "version": "7.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "npm-registry-fetch": "^16.0.0" + "npm-registry-fetch": "^16.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/libnpmteam": { - "version": "6.0.1", + "version": "6.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "aproba": "^2.0.0", - "npm-registry-fetch": "^16.0.0" + "npm-registry-fetch": "^16.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -4715,7 +4769,7 @@ } }, "node_modules/npm/node_modules/minimatch": { - "version": "9.0.3", + "version": "9.0.4", "dev": true, "inBundle": true, "license": "ISC", @@ -4923,7 +4977,7 @@ } }, "node_modules/npm/node_modules/node-gyp": { - "version": "10.0.1", + "version": "10.1.0", "dev": true, "inBundle": true, "license": "MIT", @@ -5074,11 +5128,12 @@ } }, "node_modules/npm/node_modules/npm-registry-fetch": { - "version": "16.1.0", + "version": "16.2.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { + "@npmcli/redact": "^1.1.0", "make-fetch-happen": "^13.0.0", "minipass": "^7.0.2", "minipass-fetch": "^3.0.0", @@ -5186,12 +5241,12 @@ } }, "node_modules/npm/node_modules/path-scurry": { - "version": "1.10.1", + "version": "1.10.2", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { @@ -5261,12 +5316,12 @@ } }, "node_modules/npm/node_modules/promzard": { - "version": "1.0.0", + "version": "1.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "read": "^2.0.0" + "read": "^3.0.1" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -5281,12 +5336,12 @@ } }, "node_modules/npm/node_modules/read": { - "version": "2.1.0", + "version": "3.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { - "mute-stream": "~1.0.0" + "mute-stream": "^1.0.0" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" @@ -5577,7 +5632,7 @@ } }, "node_modules/npm/node_modules/tar": { - "version": "6.2.0", + "version": "6.2.1", "dev": true, "inBundle": true, "license": "ISC", @@ -5995,9 +6050,9 @@ } }, "node_modules/p-map": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.1.tgz", - "integrity": "sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.2.tgz", + "integrity": "sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==", "dev": true, "engines": { "node": ">=18" @@ -6428,9 +6483,9 @@ "dev": true }, "node_modules/semantic-release": { - "version": "23.0.6", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.6.tgz", - "integrity": "sha512-/r62F4PNhJZhyZYMobcpcACGwpFNQyaVcSmqZQXG50GMbHSBVZQLCvwafqxO1lDQKVgmGmyCEtOVYzwvzvyhVw==", + "version": "23.0.7", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.7.tgz", + "integrity": "sha512-PFxXQE57zrYiCbWKkdsVUF08s0SifEw3WhDhrN47ZEUWQiLl21FI9Dg/H8g7i/lPx0IkF6u7PjJbgxPceXKBeg==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^12.0.0", @@ -6444,7 +6499,7 @@ "env-ci": "^11.0.0", "execa": "^8.0.0", "figures": "^6.0.0", - "find-versions": "^5.1.0", + "find-versions": "^6.0.0", "get-stream": "^6.0.0", "git-log-parser": "^1.2.0", "hook-std": "^3.0.0", @@ -6899,6 +6954,22 @@ "node": ">=0.10.0" } }, + "node_modules/super-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/super-regex/-/super-regex-1.0.0.tgz", + "integrity": "sha512-CY8u7DtbvucKuquCmOFEKhr9Besln7n9uN8eFbwcoGYWXOMW07u2o8njWaiXt11ylS3qoGF55pILjRmPlbodyg==", + "dev": true, + "dependencies": { + "function-timeout": "^1.0.1", + "time-span": "^5.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -7028,6 +7099,21 @@ "xtend": "~4.0.1" } }, + "node_modules/time-span": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/time-span/-/time-span-5.1.0.tgz", + "integrity": "sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==", + "dev": true, + "dependencies": { + "convert-hrtime": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/timers-ext": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", @@ -7127,9 +7213,9 @@ "dev": true }, "node_modules/type-fest": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.14.0.tgz", - "integrity": "sha512-on5/Cw89wwqGZQu+yWO0gGMGu8VNxsaW9SB2HE8yJjllEk7IDTwnSN1dUVldYILhYPN5HzD7WAaw2cc/jBfn0Q==", + "version": "4.15.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.15.0.tgz", + "integrity": "sha512-tB9lu0pQpX5KJq54g+oHOLumOx+pMep4RaM6liXh2PKmVRFF+/vAtUP0ZaJ0kOySfVNjF6doBWPHhBhISKdlIA==", "dev": true, "engines": { "node": ">=16" @@ -7139,9 +7225,9 @@ } }, "node_modules/typescript": { - "version": "5.4.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.3.tgz", - "integrity": "sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==", + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", + "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/payload-examples/package-lock.json b/payload-examples/package-lock.json index 6d83490dd..a8ca12952 100644 --- a/payload-examples/package-lock.json +++ b/payload-examples/package-lock.json @@ -14,9 +14,9 @@ "devDependencies": {} }, "node_modules/@octokit/webhooks-types": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.4.0.tgz", - "integrity": "sha512-FE2V+QZ2UYlh+9wWd5BPLNXG+J/XUD/PPq0ovS+nCcGX4+3qVbi3jYOmCTW48hg9SBBLtInx9+o7fFt4H5iP0Q==" + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@octokit/webhooks-types/-/webhooks-types-7.5.0.tgz", + "integrity": "sha512-oFypF1oD0z1x4qi+Ff4ienJ/iZ3GBXoht+0B+x8gMIWiNhRJZADYO+2KOh03ZGOX8WF6iJELZWw+giHieBO7rg==" } } } From c71a8e147bcc3a3ce71bd267a1bbdaabde946c3e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 14 Apr 2024 13:16:40 +0200 Subject: [PATCH 66/69] ci(action): update actions/add-to-project action to v1.0.1 (#918) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/add_to_octokit_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add_to_octokit_project.yml b/.github/workflows/add_to_octokit_project.yml index 0ac7fd7b4..936e1f4f8 100644 --- a/.github/workflows/add_to_octokit_project.yml +++ b/.github/workflows/add_to_octokit_project.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/add-to-project@v1.0.0 + - uses: actions/add-to-project@v1.0.1 with: project-url: https://github.com/orgs/octokit/projects/10 github-token: ${{ secrets.OCTOKITBOT_PROJECT_ACTION_TOKEN }} From 10620f09ba433937fdfe1ff29aca294673b85ce9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 16 Apr 2024 08:08:12 -0700 Subject: [PATCH 67/69] build(deps): lock file maintenance (#919) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 1219 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 1124 insertions(+), 95 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2552b691a..8c3c6a3ea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -266,9 +266,9 @@ } }, "node_modules/@octokit/core": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.1.tgz", - "integrity": "sha512-uVypPdnZV7YoEa69Ky2kTSw3neFLGT0PZ54OwUMDph7w6TmhF0ZnoVcvb/kYnjDHCFo2mfoeRDYifLKhLNasUg==", + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.2.tgz", + "integrity": "sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==", "dev": true, "dependencies": { "@octokit/auth-token": "^5.0.0", @@ -311,18 +311,18 @@ } }, "node_modules/@octokit/openapi-types": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-21.2.0.tgz", - "integrity": "sha512-xx+Xd6I7rYvul/hgUDqv6TeGX0IOGnhSg9IOeYgd/uI7IAqUy6DE2B6Ipv2M4mWoxaMcWjIzgTIcv8pMO3F3vw==", + "version": "22.0.1", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-22.0.1.tgz", + "integrity": "sha512-1yN5m1IMNXthoBDUXFF97N1gHop04B3H8ws7wtOr8GgRyDO1gKALjwMHARNBoMBiB/2vEe/vxstrApcJZzQbnQ==", "dev": true }, "node_modules/@octokit/plugin-paginate-rest": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.0.0.tgz", - "integrity": "sha512-HLz6T9HWeNkX3SVqc7FUYlh+TAg3G7gCc1MGuNcov8mSrFU9dc4ABmRmgqR9TsY1doUx42vLN5UxxWlnqBX8xw==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.1.0.tgz", + "integrity": "sha512-VyWrvJUivEv2pKmHLBLtLX2vDbGfMiLrxSZE7vV2NAO1VsCWFIVVj7xodkOr7zOfsEkzTvF1Koi7Rsg6KvSc2A==", "dev": true, "dependencies": { - "@octokit/types": "^13.0.0" + "@octokit/types": "^13.4.0" }, "engines": { "node": ">= 18" @@ -365,14 +365,14 @@ } }, "node_modules/@octokit/request": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.0.1.tgz", - "integrity": "sha512-kL+cAcbSl3dctYLuJmLfx6Iku2MXXy0jszhaEIjQNaCp4zjHXrhVAHeuaRdNvJjW9qjl3u1MJ72+OuBP0YW/pg==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.1.0.tgz", + "integrity": "sha512-1mDzqKSiryRKZM++MhO6WQBukWbikes6AN6UTxB5vpRnNUbPDkVfUhpSvZ3aXYEFnbcV8DZkikOnCr3pdgMD3Q==", "dev": true, "dependencies": { "@octokit/endpoint": "^10.0.0", "@octokit/request-error": "^6.0.1", - "@octokit/types": "^12.0.0", + "@octokit/types": "^13.1.0", "universal-user-agent": "^7.0.2" }, "engines": { @@ -391,28 +391,13 @@ "node": ">= 18" } }, - "node_modules/@octokit/request/node_modules/@octokit/openapi-types": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", - "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", - "dev": true - }, - "node_modules/@octokit/request/node_modules/@octokit/types": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", - "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", - "dev": true, - "dependencies": { - "@octokit/openapi-types": "^20.0.0" - } - }, "node_modules/@octokit/types": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.1.0.tgz", - "integrity": "sha512-nBwAFOYqVUUJ2AZFK4ZzESQptaAVqdTDKk8gE0Xr0o99WuPDSrhUC38x0F40xD9OUxXhOOuZKWNNVVLPSHQDvQ==", + "version": "13.4.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.4.0.tgz", + "integrity": "sha512-WlMegy3lPXYWASe3k9Jslc5a0anrYAYMWtsFrxBTdQjS70hvLH6C+PGvHbOsgy3RA3LouGJoU/vAt4KarecQLQ==", "dev": true, "dependencies": { - "@octokit/openapi-types": "^21.0.0" + "@octokit/openapi-types": "^22.0.1" } }, "node_modules/@pkgr/core": { @@ -695,9 +680,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.12.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.5.tgz", - "integrity": "sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -878,12 +863,65 @@ "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", "dev": true }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array-ify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", "dev": true }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, + "dependencies": { + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -969,6 +1007,25 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/call-me-maybe": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", @@ -1443,6 +1500,57 @@ "node": ">=0.12" } }, + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -1505,6 +1613,40 @@ "node": ">=10" } }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/detect-indent": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.1.tgz", @@ -1696,6 +1838,130 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/es5-ext": { "version": "0.10.64", "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.64.tgz", @@ -1924,6 +2190,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, "node_modules/form-data-encoder": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.0.2.tgz", @@ -1984,6 +2259,33 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -1993,6 +2295,25 @@ "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-stdin": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", @@ -2017,6 +2338,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/git-hooks-list": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/git-hooks-list/-/git-hooks-list-3.1.0.tgz", @@ -2100,6 +2438,21 @@ "glob": "^7.1.6" } }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/globby": { "version": "14.0.1", "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", @@ -2132,6 +2485,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/got": { "version": "14.2.1", "resolved": "https://registry.npmjs.org/got/-/got-14.2.1.tgz", @@ -2184,6 +2549,15 @@ "uglify-js": "^3.1.4" } }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -2193,6 +2567,57 @@ "node": ">=8" } }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", @@ -2420,6 +2845,20 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/into-stream": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", @@ -2436,12 +2875,68 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-core-module": { "version": "2.13.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", @@ -2454,6 +2949,36 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, + "dependencies": { + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -2484,6 +3009,18 @@ "node": ">=0.10.0" } }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -2493,6 +3030,21 @@ "node": ">=0.12.0" } }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", @@ -2520,6 +3072,37 @@ "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", "dev": true }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", @@ -2532,6 +3115,36 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-text-path": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz", @@ -2544,6 +3157,21 @@ "node": ">=8" } }, + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.14" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-unicode-supported": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", @@ -2556,6 +3184,18 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -3122,9 +3762,9 @@ } }, "node_modules/npm": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.5.1.tgz", - "integrity": "sha512-RozZuGuWbbhDM2sRhOSLIRb3DLyof6TREi0TW5b3xUEBropDhDqEHv0iAjA1zsIwXKgfIkR8GvQMd4oeKKg9eQ==", + "version": "10.5.2", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.5.2.tgz", + "integrity": "sha512-cHVG7QEJwJdZyOrK0dKX5uf3R5Fd0E8AcmSES1jLtO52UT1enUKZ96Onw/xwq4CbrTZEnDuu2Vf9kCQh/Sd12w==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -3211,8 +3851,8 @@ "@npmcli/arborist": "^7.2.1", "@npmcli/config": "^8.0.2", "@npmcli/fs": "^3.1.0", - "@npmcli/map-workspaces": "^3.0.4", - "@npmcli/package-json": "^5.0.0", + "@npmcli/map-workspaces": "^3.0.6", + "@npmcli/package-json": "^5.0.2", "@npmcli/promise-spawn": "^7.0.1", "@npmcli/redact": "^1.1.0", "@npmcli/run-script": "^7.0.4", @@ -3232,7 +3872,7 @@ "hosted-git-info": "^7.0.1", "ini": "^4.1.2", "init-package-json": "^6.0.2", - "is-cidr": "^5.0.3", + "is-cidr": "^5.0.5", "json-parse-even-better-errors": "^3.0.1", "libnpmaccess": "^8.0.1", "libnpmdiff": "^6.0.3", @@ -3268,7 +3908,7 @@ "qrcode-terminal": "^0.12.0", "read": "^3.0.1", "semver": "^7.6.0", - "spdx-expression-parse": "^3.0.1", + "spdx-expression-parse": "^4.0.0", "ssri": "^10.0.5", "supports-color": "^9.4.0", "tar": "^6.2.1", @@ -3398,7 +4038,7 @@ "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/agent": { - "version": "2.2.1", + "version": "2.2.2", "dev": true, "inBundle": true, "license": "ISC", @@ -3407,14 +4047,14 @@ "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.1" + "socks-proxy-agent": "^8.0.3" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "7.4.1", + "version": "7.4.2", "dev": true, "inBundle": true, "license": "ISC", @@ -3428,6 +4068,7 @@ "@npmcli/node-gyp": "^3.0.0", "@npmcli/package-json": "^5.0.0", "@npmcli/query": "^3.1.0", + "@npmcli/redact": "^1.1.0", "@npmcli/run-script": "^7.0.2", "bin-links": "^4.0.1", "cacache": "^18.0.0", @@ -3461,7 +4102,7 @@ } }, "node_modules/npm/node_modules/@npmcli/config": { - "version": "8.2.1", + "version": "8.2.2", "dev": true, "inBundle": true, "license": "ISC", @@ -3519,7 +4160,7 @@ } }, "node_modules/npm/node_modules/@npmcli/git": { - "version": "5.0.4", + "version": "5.0.5", "dev": true, "inBundle": true, "license": "ISC", @@ -3554,7 +4195,7 @@ } }, "node_modules/npm/node_modules/@npmcli/map-workspaces": { - "version": "3.0.4", + "version": "3.0.6", "dev": true, "inBundle": true, "license": "ISC", @@ -3602,7 +4243,7 @@ } }, "node_modules/npm/node_modules/@npmcli/package-json": { - "version": "5.0.0", + "version": "5.0.2", "dev": true, "inBundle": true, "license": "ISC", @@ -3679,19 +4320,19 @@ } }, "node_modules/npm/node_modules/@sigstore/bundle": { - "version": "2.2.0", + "version": "2.3.1", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.3.0" + "@sigstore/protobuf-specs": "^0.3.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/@sigstore/core": { - "version": "1.0.0", + "version": "1.1.0", "dev": true, "inBundle": true, "license": "Apache-2.0", @@ -3700,23 +4341,23 @@ } }, "node_modules/npm/node_modules/@sigstore/protobuf-specs": { - "version": "0.3.0", + "version": "0.3.1", "dev": true, "inBundle": true, "license": "Apache-2.0", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/@sigstore/sign": { - "version": "2.2.3", + "version": "2.3.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.2.0", + "@sigstore/bundle": "^2.3.0", "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.0", + "@sigstore/protobuf-specs": "^0.3.1", "make-fetch-happen": "^13.0.0" }, "engines": { @@ -3737,14 +4378,14 @@ } }, "node_modules/npm/node_modules/@sigstore/verify": { - "version": "1.1.0", + "version": "1.2.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.2.0", - "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.0" + "@sigstore/bundle": "^2.3.1", + "@sigstore/core": "^1.1.0", + "@sigstore/protobuf-specs": "^0.3.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -3891,7 +4532,7 @@ } }, "node_modules/npm/node_modules/builtins": { - "version": "5.0.1", + "version": "5.1.0", "dev": true, "inBundle": true, "license": "MIT", @@ -3959,7 +4600,7 @@ } }, "node_modules/npm/node_modules/cidr-regex": { - "version": "4.0.3", + "version": "4.0.5", "dev": true, "inBundle": true, "license": "BSD-2-Clause", @@ -4305,7 +4946,7 @@ "license": "ISC" }, "node_modules/npm/node_modules/hasown": { - "version": "2.0.1", + "version": "2.0.2", "dev": true, "inBundle": true, "license": "MIT", @@ -4462,12 +5103,12 @@ } }, "node_modules/npm/node_modules/is-cidr": { - "version": "5.0.3", + "version": "5.0.5", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { - "cidr-regex": "4.0.3" + "cidr-regex": "^4.0.4" }, "engines": { "node": ">=14" @@ -4583,7 +5224,7 @@ } }, "node_modules/npm/node_modules/libnpmdiff": { - "version": "6.0.8", + "version": "6.0.9", "dev": true, "inBundle": true, "license": "ISC", @@ -4603,7 +5244,7 @@ } }, "node_modules/npm/node_modules/libnpmexec": { - "version": "7.0.9", + "version": "7.0.10", "dev": true, "inBundle": true, "license": "ISC", @@ -4625,7 +5266,7 @@ } }, "node_modules/npm/node_modules/libnpmfund": { - "version": "5.0.6", + "version": "5.0.7", "dev": true, "inBundle": true, "license": "ISC", @@ -4663,7 +5304,7 @@ } }, "node_modules/npm/node_modules/libnpmpack": { - "version": "6.0.8", + "version": "6.0.9", "dev": true, "inBundle": true, "license": "ISC", @@ -5257,7 +5898,7 @@ } }, "node_modules/npm/node_modules/postcss-selector-parser": { - "version": "6.0.15", + "version": "6.0.16", "dev": true, "inBundle": true, "license": "MIT", @@ -5467,17 +6108,17 @@ } }, "node_modules/npm/node_modules/sigstore": { - "version": "2.2.2", + "version": "2.3.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.2.0", + "@sigstore/bundle": "^2.3.1", "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.0", - "@sigstore/sign": "^2.2.3", + "@sigstore/protobuf-specs": "^0.3.1", + "@sigstore/sign": "^2.3.0", "@sigstore/tuf": "^2.3.1", - "@sigstore/verify": "^1.1.0" + "@sigstore/verify": "^1.2.0" }, "engines": { "node": "^16.14.0 || >=18.0.0" @@ -5494,7 +6135,7 @@ } }, "node_modules/npm/node_modules/socks": { - "version": "2.8.0", + "version": "2.8.3", "dev": true, "inBundle": true, "license": "MIT", @@ -5503,17 +6144,17 @@ "smart-buffer": "^4.2.0" }, "engines": { - "node": ">= 16.0.0", + "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, "node_modules/npm/node_modules/socks-proxy-agent": { - "version": "8.0.2", + "version": "8.0.3", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.1", "debug": "^4.3.4", "socks": "^2.7.1" }, @@ -5531,6 +6172,16 @@ "spdx-license-ids": "^3.0.0" } }, + "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, "node_modules/npm/node_modules/spdx-exceptions": { "version": "2.5.0", "dev": true, @@ -5538,7 +6189,7 @@ "license": "CC-BY-3.0" }, "node_modules/npm/node_modules/spdx-expression-parse": { - "version": "3.0.1", + "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", @@ -5756,6 +6407,16 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, "node_modules/npm/node_modules/validate-npm-package-name": { "version": "5.0.0", "dev": true, @@ -5956,6 +6617,42 @@ "node": ">=0.10.0" } }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", @@ -6213,6 +6910,15 @@ "node": ">=4" } }, + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/prettier": { "version": "3.2.5", "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", @@ -6229,9 +6935,9 @@ } }, "node_modules/prettier-plugin-packagejson": { - "version": "2.4.14", - "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.4.14.tgz", - "integrity": "sha512-sli+gV5tW7uxvzDZQscaBtSfbyAW2ToL6n/HGt51PipwX9vI7M54vefG0mKSfklVkT29TNGO6Mo6g8c6Z79gmw==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/prettier-plugin-packagejson/-/prettier-plugin-packagejson-2.5.0.tgz", + "integrity": "sha512-6XkH3rpin5QEQodBSVNg+rBo4r91g/1mCaRwS1YGdQJZ6jwqrg2UchBsIG9tpS1yK1kNBvOt84OILsX8uHzBGg==", "dev": true, "dependencies": { "sort-package-json": "2.10.0", @@ -6314,6 +7020,23 @@ "rc": "cli.js" } }, + "node_modules/read-package-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz", + "integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==", + "dev": true, + "dependencies": { + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/read-pkg": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", @@ -6383,6 +7106,24 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/registry-auth-token": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", @@ -6476,16 +7217,57 @@ "queue-microtask": "^1.2.2" } }, + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true }, + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/semantic-release": { - "version": "23.0.7", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.7.tgz", - "integrity": "sha512-PFxXQE57zrYiCbWKkdsVUF08s0SifEw3WhDhrN47ZEUWQiLl21FI9Dg/H8g7i/lPx0IkF6u7PjJbgxPceXKBeg==", + "version": "23.0.8", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-23.0.8.tgz", + "integrity": "sha512-yZkuWcTTfh5h/DrR4Q4QvJSARJdb6wjwn/sN0qKMYEkvwaVFek8YWfrgtL8oWaRdl0fLte0Y1wWMzLbwoaII1g==", "dev": true, "dependencies": { "@semantic-release/commit-analyzer": "^12.0.0", @@ -6511,7 +7293,7 @@ "micromatch": "^4.0.2", "p-each-series": "^3.0.0", "p-reduce": "^3.0.0", - "read-pkg-up": "^11.0.0", + "read-package-up": "^11.0.0", "resolve-from": "^5.0.0", "semver": "^7.3.2", "semver-diff": "^4.0.0", @@ -6601,6 +7383,38 @@ "node": ">=10" } }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -6622,6 +7436,24 @@ "node": ">=8" } }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", @@ -6912,6 +7744,55 @@ "node": ">=8" } }, + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -7137,10 +8018,15 @@ } }, "node_modules/traverse": { - "version": "0.6.8", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.8.tgz", - "integrity": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==", + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.9.tgz", + "integrity": "sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==", "dev": true, + "dependencies": { + "gopd": "^1.0.1", + "typedarray.prototype.slice": "^1.0.3", + "which-typed-array": "^1.1.15" + }, "engines": { "node": ">= 0.4" }, @@ -7224,10 +8110,103 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/typedarray.prototype.slice/-/typedarray.prototype.slice-1.0.3.tgz", + "integrity": "sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-errors": "^1.3.0", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-offset": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typescript": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", - "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -7250,6 +8229,21 @@ "node": ">=0.8.0" } }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", @@ -7362,6 +8356,41 @@ "node": ">= 8" } }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", From eb87d8d6ff265df9cf15512d06d12b67af2e990f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 00:32:11 -0400 Subject: [PATCH 68/69] chore(deps): update dependency json-schema-to-typescript to v14 (#920) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- package-lock.json | 499 ++++++++++++++++++++++++++++++++++++---------- package.json | 2 +- 2 files changed, 396 insertions(+), 105 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8c3c6a3ea..f7ee3a22c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,7 +22,7 @@ "fast-deep-equal": "^3.1.3", "got": "^14.0.0", "json-diff": "^1.0.0", - "json-schema-to-typescript": "^13.0.0", + "json-schema-to-typescript": "^14.0.0", "prettier": "3.2.5", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", @@ -33,6 +33,23 @@ "yargs": "^17.3.1" } }, + "node_modules/@apidevtools/json-schema-ref-parser": { + "version": "11.5.5", + "resolved": "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-11.5.5.tgz", + "integrity": "sha512-hv/aXDILyroHioVW27etFMV+IX6FyNn41YwbeGIAt5h/7fUTQvHI5w3ols8qYAT8aQt3kzexq5ZwxFDxNHIhdQ==", + "dev": true, + "dependencies": { + "@jsdevtools/ono": "^7.1.3", + "@types/json-schema": "^7.0.15", + "js-yaml": "^4.1.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/philsturgeon" + } + }, "node_modules/@babel/code-frame": { "version": "7.24.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", @@ -141,24 +158,6 @@ "node": ">=4" } }, - "node_modules/@bcherny/json-schema-ref-parser": { - "version": "10.0.5-fork", - "resolved": "https://registry.npmjs.org/@bcherny/json-schema-ref-parser/-/json-schema-ref-parser-10.0.5-fork.tgz", - "integrity": "sha512-E/jKbPoca1tfUPj3iSbitDZTGnq6FUFjkH6L8U2oDwSuwK1WhnnVtCG7oFOTg/DDnyoXbQYUiUiGOibHqaGVnw==", - "dev": true, - "dependencies": { - "@jsdevtools/ono": "^7.1.3", - "@types/json-schema": "^7.0.6", - "call-me-maybe": "^1.0.1", - "js-yaml": "^4.1.0" - }, - "engines": { - "node": ">= 16" - }, - "funding": { - "url": "https://github.com/sponsors/philsturgeon" - } - }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", @@ -190,6 +189,102 @@ "heap": ">= 0.2.0" } }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", @@ -400,6 +495,16 @@ "@octokit/openapi-types": "^22.0.1" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pkgr/core": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", @@ -639,16 +744,6 @@ "@types/node": "*" } }, - "node_modules/@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "dev": true, - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, "node_modules/@types/http-cache-semantics": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", @@ -673,12 +768,6 @@ "integrity": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==", "dev": true }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true - }, "node_modules/@types/node": { "version": "20.12.7", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", @@ -695,10 +784,14 @@ "dev": true }, "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-3.0.0.tgz", + "integrity": "sha512-mFMBfMOz8QxhYVbuINtswBp9VL2b4Y0QqYHwqLz3YbgtfAcat2Dl6Y1o4e22S/OVE6Ebl9m7wWiMT2lSbAs1wA==", + "deprecated": "This is a stub types definition. prettier provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "prettier": "*" + } }, "node_modules/@types/turndown": { "version": "5.0.4", @@ -1026,12 +1119,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/call-me-maybe": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", - "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", - "dev": true - }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", @@ -1500,6 +1587,15 @@ "node": ">=0.12" } }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, "node_modules/data-view-buffer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", @@ -1783,6 +1879,12 @@ "readable-stream": "^2.0.2" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -2123,6 +2225,29 @@ "reusify": "^1.0.4" } }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, "node_modules/figures": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", @@ -2199,6 +2324,22 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/form-data-encoder": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-4.0.2.tgz", @@ -2208,6 +2349,18 @@ "node": ">= 18" } }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, "node_modules/from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", @@ -2314,18 +2467,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/get-stream": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", @@ -2419,25 +2560,6 @@ "node": ">= 6" } }, - "node_modules/glob-promise": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz", - "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==", - "dev": true, - "dependencies": { - "@types/glob": "^7.1.3" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "individual", - "url": "https://github.com/sponsors/ahmadnassri" - }, - "peerDependencies": { - "glob": "^7.1.6" - } - }, "node_modules/globalthis": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", @@ -3224,6 +3346,24 @@ "node": "^18.17 || >=20.6.1" } }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/java-properties": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", @@ -3287,46 +3427,77 @@ "dev": true }, "node_modules/json-schema-to-typescript": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-13.1.2.tgz", - "integrity": "sha512-17G+mjx4nunvOpkPvcz7fdwUwYCEwyH8vR3Ym3rFiQ8uzAL3go+c1306Kk7iGRk8HuXBXqy+JJJmpYl0cvOllw==", - "dev": true, - "dependencies": { - "@bcherny/json-schema-ref-parser": "10.0.5-fork", - "@types/json-schema": "^7.0.11", - "@types/lodash": "^4.14.182", - "@types/prettier": "^2.6.1", - "cli-color": "^2.0.2", - "get-stdin": "^8.0.0", - "glob": "^7.1.6", - "glob-promise": "^4.2.2", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/json-schema-to-typescript/-/json-schema-to-typescript-14.0.0.tgz", + "integrity": "sha512-y/Pj93Ggu69LyRPxqpe16t8LA/5ZyJVoqmUf+o+2cBG33dH/GsDn5oDZD3EiOTkHXjVuZg4qWnWzTtS2LcoeiA==", + "dev": true, + "dependencies": { + "@apidevtools/json-schema-ref-parser": "^11.5.5", + "@types/json-schema": "^7.0.15", + "@types/lodash": "^4.17.0", + "@types/prettier": "^3.0.0", + "cli-color": "^2.0.4", + "glob": "^10.3.12", "is-glob": "^4.0.3", + "js-yaml": "^4.1.0", "lodash": "^4.17.21", - "minimist": "^1.2.6", - "mkdirp": "^1.0.4", + "minimist": "^1.2.8", + "mkdirp": "^3.0.1", "mz": "^2.7.0", - "prettier": "^2.6.2" + "node-fetch": "^3.3.2", + "prettier": "^3.2.5" }, "bin": { "json2ts": "dist/src/cli.js" }, "engines": { - "node": ">=12.0.0" + "node": ">=16.0.0" } }, - "node_modules/json-schema-to-typescript/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "node_modules/json-schema-to-typescript/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/json-schema-to-typescript/node_modules/glob": { + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" + }, "bin": { - "prettier": "bin-prettier.js" + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=10.13.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/json-schema-to-typescript/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/json-schema-traverse": { @@ -3660,16 +3831,28 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", "dev": true, "bin": { - "mkdirp": "bin/cmd.js" + "mkdirp": "dist/cjs/src/bin.js" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/ms": { @@ -3707,6 +3890,25 @@ "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", "dev": true }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, "node_modules/node-emoji": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.1.3.tgz", @@ -3734,6 +3936,24 @@ "url": "https://github.com/sindresorhus/is?sponsor=1" } }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, "node_modules/normalize-package-data": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", @@ -6861,6 +7081,22 @@ "node": ">=8" } }, + "node_modules/path-scurry": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", + "dev": true, + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -7744,6 +7980,21 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/string.prototype.trim": { "version": "1.2.9", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", @@ -7805,6 +8056,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -8341,6 +8605,15 @@ "spdx-expression-parse": "^3.0.0" } }, + "node_modules/web-streams-polyfill": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz", + "integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -8414,6 +8687,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/package.json b/package.json index 069b78c15..7a19572d8 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "fast-deep-equal": "^3.1.3", "got": "^14.0.0", "json-diff": "^1.0.0", - "json-schema-to-typescript": "^13.0.0", + "json-schema-to-typescript": "^14.0.0", "prettier": "3.2.5", "prettier-plugin-packagejson": "^2.2.15", "semantic-release": "^23.0.0", From babdb8a21566f1521007e8979c29cbeca2e358ed Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Mon, 22 Apr 2024 13:02:19 -0400 Subject: [PATCH 69/69] fix(schema): correct some schema IDs (#921) --- .../branch_protection_configuration/disabled.schema.json | 2 +- .../branch_protection_configuration/enabled.schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json b/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json index 1ef241ef9..670394277 100644 --- a/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json +++ b/payload-schemas/api.github.com/branch_protection_configuration/disabled.schema.json @@ -1,6 +1,6 @@ { "title": "branch protection configuration disabled event", - "$id": "branch_protection_rule$disabled", + "$id": "branch_protection_configuration$disabled", "type": "object", "properties": { "action": { "type": "string", "enum": ["disabled"] }, diff --git a/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json b/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json index cdf4be842..51b4c71e9 100644 --- a/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json +++ b/payload-schemas/api.github.com/branch_protection_configuration/enabled.schema.json @@ -1,6 +1,6 @@ { "title": "branch protection configuration enabled event", - "$id": "branch_protection_rule$enabled", + "$id": "branch_protection_configuration$enabled", "type": "object", "properties": { "action": { "type": "string", "enum": ["enabled"] },