Skip to content

Commit

Permalink
chore(camel-k): Update Fabric8 CamelK Extension model to v1.7.0 (#3670)
Browse files Browse the repository at this point in the history
+ Bump Go Module dependencies to v1.7.0

Signed-off-by: Rohan Kumar <rohaan@redhat.com>
  • Loading branch information
rohanKanojia authored and manusa committed Jan 13, 2022
1 parent 3957bb0 commit 0a262cc
Show file tree
Hide file tree
Showing 11 changed files with 2,040 additions and 198 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#### Dependency Upgrade
* Fix #3637: Update Fabric8 Kubernetes Model to v1.23.0
* Fix #3670: Point CamelK Extension model to latest released version v1.7.0

#### New Features
* Fix #3721: Add support for uploading file via InputStream
Expand Down
18 changes: 10 additions & 8 deletions extensions/camel-k/generator-v1/go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
module github.com/fabric8io/kubernetes-client/extensions/camel-k/generator

require (
github.com/apache/camel-k v1.3.1 // indirect
github.com/apache/camel-k/pkg/apis/camel v1.3.1
contrib.go.opencensus.io/exporter/stackdriver v0.13.2 // indirect
github.com/apache/camel-k v1.7.0 // indirect
github.com/apache/camel-k/pkg/apis/camel v1.7.0
github.com/fabric8io/kubernetes-client/generator v0.0.0
github.com/tektoncd/pipeline v0.13.1-0.20200625065359-44f22a067b75 // indirect
k8s.io/apimachinery v0.19.0
knative.dev/pkg v0.0.0-20200922164940-4bf40ad82aab
k8s.io/apimachinery v0.21.4
knative.dev/pkg v0.0.0-20211104101302-51b9e7f161b4
knative.dev/test-infra v0.0.0-20200921012245-37f1a12adbd3 // indirect
)

replace (
github.com/fabric8io/kubernetes-client/generator v0.0.0 => ./../../../generator
github.com/openshift/api => github.com/openshift/api v0.0.0-20190927182313-d4a64ec2cbd8 // invalid pseudo-version: preceding tag (v3.9.0) not found
k8s.io/api => k8s.io/api v0.16.5
k8s.io/apimachinery => k8s.io/apimachinery v0.16.5
k8s.io/client-go => k8s.io/client-go v0.16.5
github.com/openshift/api => github.com/openshift/api v3.9.1-0.20190927182313-d4a64ec2cbd8+incompatible
k8s.io/api => k8s.io/api v0.21.4
k8s.io/apimachinery => k8s.io/apimachinery v0.21.4
k8s.io/client-go => k8s.io/client-go v0.21.4
)

exclude github.com/mikefarah/yaml/v2 v2.4.0
Expand Down
727 changes: 727 additions & 0 deletions extensions/camel-k/generator-v1/go.sum

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ func main() {
reflect.TypeOf(apis.URL{}): "java.lang.String",
reflect.TypeOf(apis.VolatileTime{}): "java.lang.String",
reflect.TypeOf(runtime.RawExtension{}): "java.util.Map<String, Object>",
reflect.TypeOf(v1.Template{}): "java.util.Map<String, Object>",
}

json := schemagen.GenerateSchema("http://fabric8.io/camel-k/v1alpha1/CamelKSchema#", crdLists, providedPackages, manualTypeMap, packageMapping, mappingSchema, providedTypes, constraints, "io.fabric8")
Expand Down
16 changes: 8 additions & 8 deletions extensions/camel-k/generator-v1alpha1/go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
module github.com/fabric8io/kubernetes-client/extensions/camel-k/generator

require (
github.com/apache/camel-k v1.3.1 // indirect
github.com/apache/camel-k/pkg/apis/camel v1.3.1
github.com/apache/camel-k v1.7.0 // indirect
github.com/apache/camel-k/pkg/apis/camel v1.7.0
github.com/fabric8io/kubernetes-client/generator v0.0.0
k8s.io/apimachinery v0.19.0
knative.dev/pkg v0.0.0-20200922164940-4bf40ad82aab
k8s.io/apimachinery v0.21.4
knative.dev/pkg v0.0.0-20211206113427-18589ac7627e
)

replace (
github.com/fabric8io/kubernetes-client/generator v0.0.0 => ./../../../generator
github.com/openshift/api => github.com/openshift/api v0.0.0-20190927182313-d4a64ec2cbd8 // invalid pseudo-version: preceding tag (v3.9.0) not found
k8s.io/api => k8s.io/api v0.16.5
k8s.io/apimachinery => k8s.io/apimachinery v0.16.5
k8s.io/client-go => k8s.io/client-go v0.16.5
github.com/openshift/api => github.com/openshift/api v3.9.1-0.20190927182313-d4a64ec2cbd8+incompatible
k8s.io/api => k8s.io/api v0.21.4
k8s.io/apimachinery => k8s.io/apimachinery v0.21.4
k8s.io/client-go => k8s.io/client-go v0.21.4
)

exclude github.com/mikefarah/yaml/v2 v2.4.0
Expand Down
741 changes: 741 additions & 0 deletions extensions/camel-k/generator-v1alpha1/go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 0a262cc

Please sign in to comment.