Skip to content

Commit

Permalink
Merge pull request #455 from python-jsonschema/vendor-schemas-auto
Browse files Browse the repository at this point in the history
Update vendored schemas
  • Loading branch information
sirosen committed Jul 1, 2024
2 parents 12eb096 + b14da78 commit 5788a02
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Unreleased
----------

.. vendor-insert-here
- Update vendored schemas (2024-06-30)
- Fix an ordering bug which caused caching to be ineffective, resulting in
repeated downloads of remote schemas even when the cache was populated.
Thanks :user:`alex1701c` for reporting! (:issue:`453`)
Expand Down
19 changes: 14 additions & 5 deletions src/check_jsonschema/builtin_schemas/vendor/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@
"dockerSidecarImage": {
"description": "Change this value to override the default Renovate sidecar image.",
"type": "string",
"default": "ghcr.io/containerbase/sidecar:10.11.7"
"default": "ghcr.io/containerbase/sidecar:10.12.0"
},
"dockerUser": {
"description": "Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`.",
Expand Down Expand Up @@ -3207,6 +3207,17 @@
},
"$ref": "#"
},
"runtime-version": {
"description": "Configuration object for the runtime-version manager",
"type": "object",
"default": {
"fileMatch": [
"(^|/)runtime.txt$"
],
"pinDigests": false
},
"$ref": "#"
},
"sbt": {
"description": "Configuration object for the sbt manager",
"type": "object",
Expand Down Expand Up @@ -3339,17 +3350,14 @@
"branchAutomergeFailure",
"configErrorIssue",
"dependencyLookupWarnings",
"deprecationWarningIssues",
"lockFileErrors",
"missingCredentialsError",
"onboardingClose",
"prEditedNotification",
"prIgnoreNotification"
]
},
"default": [
"deprecationWarningIssues"
]
"default": []
},
"swift": {
"description": "Configuration object for the swift manager",
Expand Down Expand Up @@ -3581,6 +3589,7 @@
"rez",
"rpm",
"ruby",
"same-major",
"semver",
"semver-coerced",
"swift",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ddfe7dda772797830c75a5df98aa1129a17c36c9661251120420b91e7de3e906
b008cf9527af892ae6e23001be9783836f73386b3919d96cb357c68cc67be65a
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12c7dc514cac2a440d324fc66e23fcf403d679e56775d0b18580617992550aca
04a2cb3dd3eb0d119d820c9bc71e1560a2687eda1f2fdda2e4e365aa0ca0dc84
43 changes: 43 additions & 0 deletions src/check_jsonschema/builtin_schemas/vendor/woodpecker-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,14 @@
"runtimeClassName": {
"description": "Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#runtimeclassname",
"type": "string"
},
"secrets": {
"description": "The secrets section defines a list of references to the native Kubernetes secrets",
"type": "array",
"items": {
"$ref": "#/definitions/step_kubernetes_secret"
},
"minLength": 1
}
}
},
Expand Down Expand Up @@ -810,6 +818,41 @@
"type": "string"
}
},
"step_kubernetes_secret": {
"description": "A reference to a native Kubernetes secret",
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the secret. Can be used if using the array style secrets list.",
"type": "string"
},
"key": {
"description": "The key of the secret to select from.",
"type": "string"
},
"target": {
"$ref": "#/definitions/step_kubernetes_secret_target"
}
}
},
"step_kubernetes_secret_target": {
"description": "A target which a native Kubernetes secret maps to.",
"oneOf": [
{
"env": {
"description": "The name of the environment variable which secret maps to.",
"type": "string"
}
},
{
"file": {
"description": "The filename (path) which secret maps to.",
"type": "string"
}
}
]
},
"services": {
"description": "Read more: https://woodpecker-ci.org/docs/usage/services",
"oneOf": [
Expand Down

0 comments on commit 5788a02

Please sign in to comment.