File tree 5 files changed +61
-7
lines changed
src/check_jsonschema/builtin_schemas/vendor
5 files changed +61
-7
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ Unreleased
9
9
----------
10
10
11
11
.. vendor-insert-here
12
+
13
+ - Update vendored schemas (2024-06-30)
12
14
- Fix an ordering bug which caused caching to be ineffective, resulting in
13
15
repeated downloads of remote schemas even when the cache was populated.
14
16
Thanks :user: `alex1701c ` for reporting! (:issue: `453 `)
Original file line number Diff line number Diff line change 965
965
"dockerSidecarImage" : {
966
966
"description" : " Change this value to override the default Renovate sidecar image." ,
967
967
"type" : " string" ,
968
- "default" : " ghcr.io/containerbase/sidecar:10.11.7 "
968
+ "default" : " ghcr.io/containerbase/sidecar:10.12.0 "
969
969
},
970
970
"dockerUser" : {
971
971
"description" : " Set the `UID` and `GID` for Docker-based binaries if you use `binarySource=docker`." ,
3207
3207
},
3208
3208
"$ref" : " #"
3209
3209
},
3210
+ "runtime-version" : {
3211
+ "description" : " Configuration object for the runtime-version manager" ,
3212
+ "type" : " object" ,
3213
+ "default" : {
3214
+ "fileMatch" : [
3215
+ " (^|/)runtime.txt$"
3216
+ ],
3217
+ "pinDigests" : false
3218
+ },
3219
+ "$ref" : " #"
3220
+ },
3210
3221
"sbt" : {
3211
3222
"description" : " Configuration object for the sbt manager" ,
3212
3223
"type" : " object" ,
3339
3350
" branchAutomergeFailure" ,
3340
3351
" configErrorIssue" ,
3341
3352
" dependencyLookupWarnings" ,
3342
- " deprecationWarningIssues" ,
3343
3353
" lockFileErrors" ,
3344
3354
" missingCredentialsError" ,
3345
3355
" onboardingClose" ,
3346
3356
" prEditedNotification" ,
3347
3357
" prIgnoreNotification"
3348
3358
]
3349
3359
},
3350
- "default" : [
3351
- " deprecationWarningIssues"
3352
- ]
3360
+ "default" : []
3353
3361
},
3354
3362
"swift" : {
3355
3363
"description" : " Configuration object for the swift manager" ,
3581
3589
" rez" ,
3582
3590
" rpm" ,
3583
3591
" ruby" ,
3592
+ " same-major" ,
3584
3593
" semver" ,
3585
3594
" semver-coerced" ,
3586
3595
" swift" ,
Original file line number Diff line number Diff line change 1
- ddfe7dda772797830c75a5df98aa1129a17c36c9661251120420b91e7de3e906
1
+ b008cf9527af892ae6e23001be9783836f73386b3919d96cb357c68cc67be65a
Original file line number Diff line number Diff line change 1
- 12c7dc514cac2a440d324fc66e23fcf403d679e56775d0b18580617992550aca
1
+ 04a2cb3dd3eb0d119d820c9bc71e1560a2687eda1f2fdda2e4e365aa0ca0dc84
Original file line number Diff line number Diff line change 730
730
"runtimeClassName" : {
731
731
"description" : " Read more: https://woodpecker-ci.org/docs/administration/backends/kubernetes#runtimeclassname" ,
732
732
"type" : " string"
733
+ },
734
+ "secrets" : {
735
+ "description" : " The secrets section defines a list of references to the native Kubernetes secrets" ,
736
+ "type" : " array" ,
737
+ "items" : {
738
+ "$ref" : " #/definitions/step_kubernetes_secret"
739
+ },
740
+ "minLength" : 1
733
741
}
734
742
}
735
743
},
810
818
"type" : " string"
811
819
}
812
820
},
821
+ "step_kubernetes_secret" : {
822
+ "description" : " A reference to a native Kubernetes secret" ,
823
+ "type" : " object" ,
824
+ "additionalProperties" : false ,
825
+ "properties" : {
826
+ "name" : {
827
+ "description" : " The name of the secret. Can be used if using the array style secrets list." ,
828
+ "type" : " string"
829
+ },
830
+ "key" : {
831
+ "description" : " The key of the secret to select from." ,
832
+ "type" : " string"
833
+ },
834
+ "target" : {
835
+ "$ref" : " #/definitions/step_kubernetes_secret_target"
836
+ }
837
+ }
838
+ },
839
+ "step_kubernetes_secret_target" : {
840
+ "description" : " A target which a native Kubernetes secret maps to." ,
841
+ "oneOf" : [
842
+ {
843
+ "env" : {
844
+ "description" : " The name of the environment variable which secret maps to." ,
845
+ "type" : " string"
846
+ }
847
+ },
848
+ {
849
+ "file" : {
850
+ "description" : " The filename (path) which secret maps to." ,
851
+ "type" : " string"
852
+ }
853
+ }
854
+ ]
855
+ },
813
856
"services" : {
814
857
"description" : " Read more: https://woodpecker-ci.org/docs/usage/services" ,
815
858
"oneOf" : [
You can’t perform that action at this time.
0 commit comments