From 8e15ac6dc67c6d324553a932cf65e393e0b6f74a Mon Sep 17 00:00:00 2001 From: Jordan Dubrick Date: Thu, 15 Aug 2024 11:35:28 -0400 Subject: [PATCH] v2.3.0 (#223) * update schema version to 2.2.2 for nodejs test child devfiles (#213) Signed-off-by: Michael Valdron * add ubuntu server bypass error case for invalid registry urls (#217) Signed-off-by: Michael Valdron * Fix parent version on test devfile (#216) * Fix parent version on test devfile Signed-off-by: thepetk * Update parent version Signed-off-by: thepetk --------- Signed-off-by: thepetk * bump k8s api (#212) Signed-off-by: Kartikey-star * update references to Go 1.21 in docs (#218) Signed-off-by: Michael Valdron * Add support for 2.3.0 schema version (#219) * updateApi.sh script includes newer schema versions Signed-off-by: Michael Valdron * devfile 2.3.0 support Signed-off-by: Michael Valdron * revert schema versions for testing older features Signed-off-by: Michael Valdron --------- Signed-off-by: Michael Valdron * Bump github.com/docker/docker (#221) Bumps [github.com/docker/docker](https://github.com/docker/docker) from 25.0.1+incompatible to 25.0.6+incompatible. - [Release notes](https://github.com/docker/docker/releases) - [Commits](https://github.com/docker/docker/compare/v25.0.1...v25.0.6) --- updated-dependencies: - dependency-name: github.com/docker/docker dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update readme for 2.3.0 schema (#222) Signed-off-by: Jordan Dubrick --------- Signed-off-by: Michael Valdron Signed-off-by: thepetk Signed-off-by: Kartikey-star Signed-off-by: dependabot[bot] Signed-off-by: Jordan Dubrick Co-authored-by: Michael Valdron Co-authored-by: Theofanis Petkos Co-authored-by: Kartikey Mamgain Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- README.md | 4 +- go.mod | 53 +- go.sum | 463 +--- pkg/devfile/generator/utils.go | 2 +- pkg/devfile/parse_test.go | 4 +- .../data/v2/2.3.0/devfileJsonSchema230.go | 2230 +++++++++++++++++ pkg/devfile/parser/data/versions.go | 6 +- pkg/devfile/parser/parse_test.go | 38 +- scripts/updateApi.sh | 41 +- .../samples/Test_Parent_RegistryURL.yaml | 3 +- 11 files changed, 2445 insertions(+), 401 deletions(-) create mode 100644 pkg/devfile/parser/data/v2/2.3.0/devfileJsonSchema230.go diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 138a7859..35639a77 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ contribution. See the [DCO](./DCO) file for details. The following are required to work on devfile library: - Git -- Go 1.19 or later +- Go 1.21 or later ## Code of Conduct Before contributing to this repository, see [contributor code of conduct](https://github.com/devfile/api/blob/main/CODE_OF_CONDUCT.md#contributor-covenant-code-of-conduct) diff --git a/README.md b/README.md index 58f44fa4..85bf9fba 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@