Skip to content

Commit

Permalink
Merge pull request #468 from python-jsonschema/vendor-schemas-auto
Browse files Browse the repository at this point in the history
Update vendored schemas
  • Loading branch information
sirosen authored Jul 28, 2024
2 parents d9de842 + cc7d862 commit a1ee4cf
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 276 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Unreleased

.. vendor-insert-here
- Update vendored schemas (2024-07-28)

0.29.1
------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@
"$comment": "https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_iduses",
"description": "The location and version of a reusable workflow file to run as a job, of the form './{path/to}/{localfile}.yml' or '{owner}/{repo}/{path}/{filename}@{ref}'. {ref} can be a SHA, a release tag, or a branch name. Using the commit SHA is the safest for stability and security.",
"type": "string",
"pattern": "^(.+/)+(.+)\\.(ya?ml)(@.+)?$"
"pattern": "^(.+\\/)+(.+)\\.(ya?ml)(@.+)?$"
},
"with": {
"$comment": "https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idwith",
Expand Down
227 changes: 29 additions & 198 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,16 @@
},
"$ref": "#"
},
"bitrise": {
"description": "Configuration object for the bitrise manager",
"type": "object",
"default": {
"fileMatch": [
"(^|/)bitrise\\.ya?ml$"
]
},
"$ref": "#"
},
"branchConcurrentLimit": {
"description": "Limit to a maximum of x concurrent branches. 0 means no limit, `null` (default) inherits value from `prConcurrentLimit`.",
"type": "integer",
Expand Down Expand Up @@ -970,7 +980,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:10.15.6"
"default": "ghcr.io/containerbase/sidecar:11.1.2"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -1831,15 +1841,6 @@
"type": "string",
"default": null
},
"logFile": {
"description": "Log file path.",
"type": "string"
},
"logFileLevel": {
"description": "Set the log file log level.",
"type": "string",
"default": "debug"
},
"logLevelRemap": {
"description": "Remap log levels to different levels.",
"type": "array",
Expand Down Expand Up @@ -1994,7 +1995,8 @@
"type": "object",
"default": {
"fileMatch": [
"(^|/)\\.mise\\.toml$"
"(^|/)\\.?mise\\.toml$",
"(^|/)\\.?mise/config\\.toml$"
]
},
"$ref": "#"
Expand Down Expand Up @@ -2136,8 +2138,13 @@
},
"onboardingNoDeps": {
"description": "Onboard the repository even if no dependencies are found.",
"type": "boolean",
"default": false
"type": "string",
"enum": [
"auto",
"enabled",
"disabled"
],
"default": "auto"
},
"onboardingPrTitle": {
"description": "Change this value to override the default onboarding PR title.",
Expand Down Expand Up @@ -2197,111 +2204,9 @@
"type": "string"
},
"changelogUrl": {
"description": "If set, Renovate will use this URL to fetch changelogs for a matched dependency. Valid only within a `packageRules` object.",
"description": "Set a custom URL for the changelog. Renovate will put this URL in the PR body text.",
"type": "string"
},
"excludeDepNames": {
"description": "Dep names to exclude. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"excludeDepPatterns": {
"description": "Dep name patterns to exclude. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"format": "regex"
}
},
{
"type": "string",
"format": "regex"
}
]
},
"excludeDepPrefixes": {
"description": "Dep names prefixes to exclude. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"excludePackageNames": {
"description": "Package names to exclude. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"excludePackagePatterns": {
"description": "Package name patterns to exclude. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"format": "regex"
}
},
{
"type": "string",
"format": "regex"
}
]
},
"excludePackagePrefixes": {
"description": "Package name prefixes to exclude. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"excludeRepositories": {
"description": "List of repositories to exclude (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"matchBaseBranches": {
"description": "List of strings containing exact matches (e.g. `[\"main\"]`) and/or regex expressions (e.g. `[\"/^release/.*/\"]`). Valid only within a `packageRules` object.",
"oneOf": [
Expand Down Expand Up @@ -2396,36 +2301,6 @@
}
]
},
"matchDepPatterns": {
"description": "Dep name patterns to match. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"format": "regex"
}
},
{
"type": "string",
"format": "regex"
}
]
},
"matchDepPrefixes": {
"description": "Dep names prefixes to match. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"matchDepTypes": {
"description": "List of depTypes to match (e.g. [`peerDependencies`]). Valid only within `packageRules` object.",
"oneOf": [
Expand Down Expand Up @@ -2479,36 +2354,6 @@
}
]
},
"matchPackagePatterns": {
"description": "Package name patterns to match. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string",
"format": "regex"
}
},
{
"type": "string",
"format": "regex"
}
]
},
"matchPackagePrefixes": {
"description": "Package name prefixes to match. Valid only within a `packageRules` object.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"matchRepositories": {
"description": "List of repositories to match (e.g. `[\"**/*-archived\"]`). Valid only within a `packageRules` object.",
"oneOf": [
Expand All @@ -2523,20 +2368,6 @@
}
]
},
"matchSourceUrlPrefixes": {
"description": "A list of source URL prefixes to match against, commonly used to group monorepos or packages from the same organization.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"matchSourceUrls": {
"description": "A list of source URLs to exact match against.",
"oneOf": [
Expand Down Expand Up @@ -2745,8 +2576,13 @@
},
"platformCommit": {
"description": "Use platform API to perform commits instead of using Git directly.",
"type": "boolean",
"default": false
"type": "string",
"enum": [
"auto",
"disabled",
"enabled"
],
"default": "auto"
},
"poetry": {
"description": "Configuration object for the poetry manager",
Expand Down Expand Up @@ -3462,11 +3298,6 @@
"description": "Repository Auth Token.",
"type": "string"
},
"transitiveRemediation": {
"description": "Enable remediation of transitive dependencies.",
"type": "boolean",
"default": false
},
"travis": {
"description": "Configuration object for the travis manager",
"type": "object",
Expand Down Expand Up @@ -3629,7 +3460,7 @@
"minimumReleaseAge": null,
"rangeStrategy": "update-lockfile",
"commitMessageSuffix": "[SECURITY]",
"branchTopic": "{{{datasource}}}-{{{depName}}}-vulnerability",
"branchTopic": "{{{datasource}}}-{{{depNameSanitized}}}-vulnerability",
"prCreation": "immediate"
},
"$ref": "#"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29e0b659974db82ea19e8a5ba137e3bd008a14eee733bc0bd633ce261e208dc9
2bee746ffdc65ae0688e717dff660c9ea74a11e5b458ecc25fddcf8c9e16602a
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4100bea98ee657c788cdde5ef2ad7eeb769ccb6ee3aef9dd10228b397d3507f5
ec3b66e92202f9e3a3812189922a6b3072757e582724210361d21130019514fe
Original file line number Diff line number Diff line change
@@ -1 +1 @@
909b82bf1b1a536f35bc4ea51a0dff4c1437d76bc8db78645b3a13d00cbd7e49
29ef63757de94d0be7ed5988cc563f771e3cc712abc7ba6410598bad7ae6d0bc
Loading

0 comments on commit a1ee4cf

Please sign in to comment.