From 9920fe261139b2d12246e39b4e0866642c9559b6 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Tue, 8 Oct 2024 11:17:40 -0400 Subject: [PATCH 1/6] Add 0.18 release note for LH PR #1660 https://github.com/submariner-io/lighthouse/pull/1660 Signed-off-by: Tom Pantelis --- src/content/community/releases/_index.en.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/content/community/releases/_index.en.md b/src/content/community/releases/_index.en.md index 31fc2bec5..114a75bfe 100644 --- a/src/content/community/releases/_index.en.md +++ b/src/content/community/releases/_index.en.md @@ -5,6 +5,11 @@ weight = 40 +++ +## v0.18.2 + +* Fixed an issue with Service Discovery that caused a new `EndpointSlice` to be created when the labels on the exporting `Service` + were updated. + ## v0.19.0 (October 25, 2024) ### New features From 1e45b9b10facaa148d9d8e553fa9a8fa2a87d219 Mon Sep 17 00:00:00 2001 From: Aswin Suryanarayanan Date: Tue, 15 Oct 2024 12:26:32 -0400 Subject: [PATCH 2/6] Add 0.18 release note for PR submariner-io/cloud-prepare#1008 Signed-off-by: Aswin Suryanarayanan --- src/content/community/releases/_index.en.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/community/releases/_index.en.md b/src/content/community/releases/_index.en.md index 114a75bfe..e0d367983 100644 --- a/src/content/community/releases/_index.en.md +++ b/src/content/community/releases/_index.en.md @@ -9,6 +9,7 @@ weight = 40 * Fixed an issue with Service Discovery that caused a new `EndpointSlice` to be created when the labels on the exporting `Service` were updated. +* New options were added to `subctl cloud prepare` to support a custom vpc for AWS. ## v0.19.0 (October 25, 2024) From 57ceee8240d36223f2b1c380fc763802fa0b6639 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Wed, 30 Oct 2024 08:03:34 -0400 Subject: [PATCH 3/6] Add release date for 0.18.2 Signed-off-by: Tom Pantelis --- src/content/community/releases/_index.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/community/releases/_index.en.md b/src/content/community/releases/_index.en.md index e0d367983..2b068e87e 100644 --- a/src/content/community/releases/_index.en.md +++ b/src/content/community/releases/_index.en.md @@ -5,7 +5,7 @@ weight = 40 +++ -## v0.18.2 +## v0.18.2 (October 30, 2024) * Fixed an issue with Service Discovery that caused a new `EndpointSlice` to be created when the labels on the exporting `Service` were updated. From 78e24709bd1a09c901936a3e959a54ceddec8b15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:35:50 +0000 Subject: [PATCH 4/6] Bump actions/upload-artifact from 4.4.0 to 4.4.3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.0 to 4.4.3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/50769540e7f4bd5e21e526ee35c689e35e0d6874...b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df768b949..4d7313427 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: run: make static-all - name: Upload proposed static website for review - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: Proposed static website path: output From 824c538770fb1382dc0b5192ac7feb34e2865401 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 08:17:01 +0000 Subject: [PATCH 5/6] Bump actions/checkout from 4.2.0 to 4.2.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/d632683dd7b4114ad314bca15554477dd762a938...11bd71901bbe5b1630ceea73d27597364c9af683) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/linting.yml | 6 +++--- .github/workflows/periodic.yml | 2 +- .github/workflows/publish.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d7313427..44a08fb39 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: fetch-depth: 0 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 543f116bf..518f682e1 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec @@ -53,7 +53,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run markdownlint uses: nosborn/github-action-markdown-cli@9b5e871c11cc0649c5ac2526af22e23525fa344d with: @@ -66,7 +66,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run yamllint uses: ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c with: diff --git a/.github/workflows/periodic.yml b/.github/workflows/periodic.yml index fe2a5d01b..4f783b62e 100644 --- a/.github/workflows/periodic.yml +++ b/.github/workflows/periodic.yml @@ -16,7 +16,7 @@ jobs: issues: write steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - name: Run markdown-link-check uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a3b931947..13c36b21e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 with: fetch-depth: 0 From 257729a7e98ce39fad9aeddb32ef2352dccdbc39 Mon Sep 17 00:00:00 2001 From: Yossi Boaron Date: Thu, 31 Oct 2024 12:09:14 +0200 Subject: [PATCH 6/6] Add KubeVirt clusters support for 0.19.0 release notes Signed-off-by: Yossi Boaron --- src/content/community/releases/_index.en.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/community/releases/_index.en.md b/src/content/community/releases/_index.en.md index 2b068e87e..6d034b269 100644 --- a/src/content/community/releases/_index.en.md +++ b/src/content/community/releases/_index.en.md @@ -23,6 +23,7 @@ weight = 40 * Each Route Agent now monitors the connectivity to each remote cluster's gateway using ICMP and the health of each connection is reported by `subctl diagnose`. * New options were added to `subctl cloud prepare` to support a custom vpc for AWS. +* Submariner can now be deployed on Kubernetes KubeVirt clusters. ### Other changes