-Link: https://github.com/vitessio/vitess/commit/2b71d1b5f8ca676beeab2875525003cd45096217.patch
----
- go/vt/vtgate/debugenv.go | 3 ++-
- go/vt/vtgate/querylogz.go | 4 ++--
- go/vt/vtgate/querylogz_test.go | 8 ++++----
- go/vt/vttablet/tabletserver/debugenv.go | 3 ++-
- go/vt/vttablet/tabletserver/querylogz.go | 3 ++-
- go/vt/vttablet/tabletserver/querylogz_test.go | 8 ++++----
- 6 files changed, 16 insertions(+), 13 deletions(-)
-
-diff --git a/go/vt/vtgate/debugenv.go b/go/vt/vtgate/debugenv.go
-index 4fa989c69a3..7213353432d 100644
---- a/go/vt/vtgate/debugenv.go
-+++ b/go/vt/vtgate/debugenv.go
-@@ -22,9 +22,10 @@ import (
- "html"
- "net/http"
- "strconv"
-- "text/template"
- "time"
-
-+ "github.com/google/safehtml/template"
-+
- "vitess.io/vitess/go/acl"
- "vitess.io/vitess/go/vt/discovery"
- "vitess.io/vitess/go/vt/log"
-diff --git a/go/vt/vtgate/querylogz.go b/go/vt/vtgate/querylogz.go
-index 7c72e950d4a..05d301f28be 100644
---- a/go/vt/vtgate/querylogz.go
-+++ b/go/vt/vtgate/querylogz.go
-@@ -20,15 +20,15 @@ import (
- "net/http"
- "strconv"
- "strings"
-- "text/template"
- "time"
-
-- "vitess.io/vitess/go/vt/vtgate/logstats"
-+ "github.com/google/safehtml/template"
-
- "vitess.io/vitess/go/acl"
- "vitess.io/vitess/go/vt/log"
- "vitess.io/vitess/go/vt/logz"
- "vitess.io/vitess/go/vt/sqlparser"
-+ "vitess.io/vitess/go/vt/vtgate/logstats"
- )
-
- var (
-diff --git a/go/vt/vtgate/querylogz_test.go b/go/vt/vtgate/querylogz_test.go
-index 3cecb983b3f..9236b2ac840 100644
---- a/go/vt/vtgate/querylogz_test.go
-+++ b/go/vt/vtgate/querylogz_test.go
-@@ -35,7 +35,7 @@ import (
-
- func TestQuerylogzHandlerFormatting(t *testing.T) {
- req, _ := http.NewRequest("GET", "/querylogz?timeout=10&limit=1", nil)
-- logStats := logstats.NewLogStats(context.Background(), "Execute", "select name from test_table limit 1000", "suuid", nil)
-+ logStats := logstats.NewLogStats(context.Background(), "Execute", "select name, 'inject ' from test_table limit 1000", "suuid", nil)
- logStats.StmtType = "select"
- logStats.RowsAffected = 1000
- logStats.ShardQueries = 1
-@@ -64,7 +64,7 @@ func TestQuerylogzHandlerFormatting(t *testing.T) {
- `| 0.002 | `,
- `0.003 | `,
- `select | `,
-- `select name from test_table limit 1000 | `,
-+ regexp.QuoteMeta(`select name, 'inject <script>alert();</script>' from test_table limit 1000 | `),
- `1 | `,
- `1000 | `,
- ` | `,
-@@ -94,7 +94,7 @@ func TestQuerylogzHandlerFormatting(t *testing.T) {
- `0.002 | `,
- `0.003 | `,
- `select | `,
-- `select name from test_table limit 1000 | `,
-+ regexp.QuoteMeta(`select name, 'inject <script>alert();</script>' from test_table limit 1000 | `),
- `1 | `,
- `1000 | `,
- ` | `,
-@@ -124,7 +124,7 @@ func TestQuerylogzHandlerFormatting(t *testing.T) {
- `0.002 | `,
- `0.003 | `,
- `select | `,
-- `select name from test_table limit 1000 | `,
-+ regexp.QuoteMeta(`select name, 'inject <script>alert();</script>' from test_table limit 1000 | `),
- `1 | `,
- `1000 | `,
- ` | `,
-diff --git a/go/vt/vttablet/tabletserver/debugenv.go b/go/vt/vttablet/tabletserver/debugenv.go
-index 9a802a5d49c..6f1ea854ea9 100644
---- a/go/vt/vttablet/tabletserver/debugenv.go
-+++ b/go/vt/vttablet/tabletserver/debugenv.go
-@@ -23,9 +23,10 @@ import (
- "html"
- "net/http"
- "strconv"
-- "text/template"
- "time"
-
-+ "github.com/google/safehtml/template"
-+
- "vitess.io/vitess/go/acl"
- "vitess.io/vitess/go/vt/log"
- )
-diff --git a/go/vt/vttablet/tabletserver/querylogz.go b/go/vt/vttablet/tabletserver/querylogz.go
-index 33341d1641b..09f375aa329 100644
---- a/go/vt/vttablet/tabletserver/querylogz.go
-+++ b/go/vt/vttablet/tabletserver/querylogz.go
-@@ -20,9 +20,10 @@ import (
- "net/http"
- "strconv"
- "strings"
-- "text/template"
- "time"
-
-+ "github.com/google/safehtml/template"
-+
- "vitess.io/vitess/go/acl"
- "vitess.io/vitess/go/vt/log"
- "vitess.io/vitess/go/vt/logz"
-diff --git a/go/vt/vttablet/tabletserver/querylogz_test.go b/go/vt/vttablet/tabletserver/querylogz_test.go
-index 25f03c762c7..ee26437f330 100644
---- a/go/vt/vttablet/tabletserver/querylogz_test.go
-+++ b/go/vt/vttablet/tabletserver/querylogz_test.go
-@@ -37,7 +37,7 @@ func TestQuerylogzHandler(t *testing.T) {
- req, _ := http.NewRequest("GET", "/querylogz?timeout=10&limit=1", nil)
- logStats := tabletenv.NewLogStats(context.Background(), "Execute")
- logStats.PlanType = planbuilder.PlanSelect.String()
-- logStats.OriginalSQL = "select name from test_table limit 1000"
-+ logStats.OriginalSQL = "select name, 'inject ' from test_table limit 1000"
- logStats.RowsAffected = 1000
- logStats.NumberOfQueries = 1
- logStats.StartTime, _ = time.Parse("Jan 2 15:04:05", "Nov 29 13:33:09")
-@@ -64,7 +64,7 @@ func TestQuerylogzHandler(t *testing.T) {
- `0.001 | `,
- `1e-08 | `,
- `Select | `,
-- `select name from test_table limit 1000 | `,
-+ regexp.QuoteMeta(`select name, 'inject <script>alert();</script>' from test_table limit 1000 | `),
- `1 | `,
- `none | `,
- `1000 | `,
-@@ -95,7 +95,7 @@ func TestQuerylogzHandler(t *testing.T) {
- `0.001 | `,
- `1e-08 | `,
- `Select | `,
-- `select name from test_table limit 1000 | `,
-+ regexp.QuoteMeta(`select name, 'inject <script>alert();</script>' from test_table limit 1000 | `),
- `1 | `,
- `none | `,
- `1000 | `,
-@@ -126,7 +126,7 @@ func TestQuerylogzHandler(t *testing.T) {
- `0.001 | `,
- `1e-08 | `,
- `Select | `,
-- `select name from test_table limit 1000 | `,
-+ regexp.QuoteMeta(`select name, 'inject <script>alert();</script>' from test_table limit 1000 | `),
- `1 | `,
- `none | `,
- `1000 | `,
diff --git a/SPECS/vitess/CVE-2025-22868.patch b/SPECS/vitess/CVE-2025-22868.patch
deleted file mode 100644
index c4f136f3ca..0000000000
--- a/SPECS/vitess/CVE-2025-22868.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 681b4d8edca1bcfea5bce685d77ea7b82ed3e7b3 Mon Sep 17 00:00:00 2001
-From: Neal Patel
-Date: Thu, 30 Jan 2025 14:10:09 -0500
-Subject: [PATCH] jws: split token into fixed number of parts
-
-Thanks to 'jub0bs' for reporting this issue.
-
-Fixes #71490
-Fixes CVE-2025-22868
-
-Change-Id: I2552731f46d4907f29aafe7863c558387b6bd6e2
-Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/652155
-Auto-Submit: Gopher Robot
-Reviewed-by: Damien Neil
-Reviewed-by: Roland Shoemaker
-LUCI-TryBot-Result: Go LUCI
----
- vendor/golang.org/x/oauth2/jws/jws.go | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/vendor/golang.org/x/oauth2/jws/jws.go b/vendor/golang.org/x/oauth2/jws/jws.go
-index 95015648b..6f03a49d3 100644
---- a/vendor/golang.org/x/oauth2/jws/jws.go
-+++ b/vendor/golang.org/x/oauth2/jws/jws.go
-@@ -165,11 +165,11 @@ func Encode(header *Header, c *ClaimSet, key *rsa.PrivateKey) (string, error) {
- // Verify tests whether the provided JWT token's signature was produced by the private key
- // associated with the supplied public key.
- func Verify(token string, key *rsa.PublicKey) error {
-- parts := strings.Split(token, ".")
-- if len(parts) != 3 {
-+ if strings.Count(token, ".") != 2 {
- return errors.New("jws: invalid token received, token must have 3 parts")
- }
-
-+ parts := strings.SplitN(token, ".", 3)
- signedContent := parts[0] + "." + parts[1]
- signatureString, err := base64.RawURLEncoding.DecodeString(parts[2])
- if err != nil {
diff --git a/SPECS/vitess/CVE-2025-22870.patch b/SPECS/vitess/CVE-2025-22870.patch
deleted file mode 100644
index af73f155bf..0000000000
--- a/SPECS/vitess/CVE-2025-22870.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From b10fd8fac9d7dae6942853a08c51985a0497161b Mon Sep 17 00:00:00 2001
-From: Sreenivasulu Malavathula
-Date: Wed, 12 Mar 2025 06:11:52 -0500
-Subject: [PATCH] Address CVE-2025-22870
-Upstream Patch Reference: https://github.com/golang/go/commit/25177ecde0922c50753c043579d17828b7ee88e7
-
----
- vendor/golang.org/x/net/http/httpproxy/proxy.go | 10 ++++++++--
- 1 file changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/vendor/golang.org/x/net/http/httpproxy/proxy.go b/vendor/golang.org/x/net/http/httpproxy/proxy.go
-index 6404aaf..d89c257 100644
---- a/vendor/golang.org/x/net/http/httpproxy/proxy.go
-+++ b/vendor/golang.org/x/net/http/httpproxy/proxy.go
-@@ -14,6 +14,7 @@ import (
- "errors"
- "fmt"
- "net"
-+ "net/netip"
- "net/url"
- "os"
- "strings"
-@@ -177,8 +178,10 @@ func (cfg *config) useProxy(addr string) bool {
- if host == "localhost" {
- return false
- }
-- ip := net.ParseIP(host)
-- if ip != nil {
-+ nip, err := netip.ParseAddr(host)
-+ var ip net.IP
-+ if err == nil {
-+ ip = net.IP(nip.AsSlice())
- if ip.IsLoopback() {
- return false
- }
-@@ -360,6 +363,9 @@ type domainMatch struct {
- }
-
- func (m domainMatch) match(host, port string, ip net.IP) bool {
-+ if ip != nil {
-+ return false
-+ }
- if strings.HasSuffix(host, m.host) || (m.matchHost && host == m.host[1:]) {
- return m.port == "" || m.port == port
- }
---
-2.45.2
-
diff --git a/SPECS/vitess/generate_source_tarball.sh b/SPECS/vitess/generate_source_tarball.sh
deleted file mode 100755
index ea62483105..0000000000
--- a/SPECS/vitess/generate_source_tarball.sh
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/bash
-# Copyright (c) Microsoft Corporation.
-# Licensed under the MIT License.
-
-set -e
-
-get_param() {
- if [ -n "$2" ] && [ "${2:0:1}" != "-" ]; then
- echo "$2"
- else
- echo "Error: argument for ($1) is missing." >&2
- return 1
- fi
-}
-
-PKG_VERSION=""
-SRC_TARBALL=""
-OUT_FOLDER="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-
-# parameters:
-#
-# --srcTarball : src tarball file
-# --outFolder : folder where to copy the new tarball(s)
-# --pkgVersion : package version
-#
-while (( "$#" )); do
- case "$1" in
- --srcTarball)
- SRC_TARBALL="$(get_param "$1" "$2")"
- shift 2
- ;;
- --outFolder)
- OUT_FOLDER="$(get_param "$1" "$2")"
- shift 2
- ;;
- --pkgVersion)
- PKG_VERSION="$(get_param "$1" "$2")"
- shift 2
- ;;
- -*)
- echo "Error: unsupported flag $1." >&2
- exit 1
- ;;
- esac
-done
-
-echo "--srcTarball -> $SRC_TARBALL"
-echo "--outFolder -> $OUT_FOLDER"
-echo "--pkgVersion -> $PKG_VERSION"
-
-if [ -z "$PKG_VERSION" ]; then
- echo "Error: --pkgVersion parameter cannot be empty." >&2
- exit 1
-fi
-
-if [ ! -f "$SRC_TARBALL" ]; then
- echo "Error: --srcTarball is not a file." >&2
- exit 1
-fi
-
-SRC_TARBALL="$(realpath "$SRC_TARBALL")"
-OUT_FOLDER="$(realpath "$OUT_FOLDER")"
-
-echo "Creating a tempdir."
-tmpdir=$(mktemp -d)
-function cleanup {
- echo "Clean-up: removing tempdir ($tmpdir)."
- rm -rf "$tmpdir"
-}
-trap cleanup EXIT
-
-pushd "$tmpdir" > /dev/null
-
-NAME_VER="vitess-$PKG_VERSION"
-VENDOR_TARBALL="$(realpath "$OUT_FOLDER/$NAME_VER-vendor.tar.gz")"
-
-echo "Unpacking the source tarball."
-tar -xf "$SRC_TARBALL"
-
-cd "$NAME_VER"
-echo "Getting the vendored modules."
-go mod vendor
-
-mkdir -p "$OUT_FOLDER"
-
-echo "Tar vendored modules."
-tar --sort=name \
- --mtime="2021-04-26 00:00Z" \
- --owner=0 --group=0 --numeric-owner \
- --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime \
- -czf "$VENDOR_TARBALL" vendor
-
-echo "Vitess vendored modules are available at ($VENDOR_TARBALL)."
-echo "SHA256: $(sha256sum "$VENDOR_TARBALL")."
diff --git a/SPECS/vitess/vitess.signatures.json b/SPECS/vitess/vitess.signatures.json
deleted file mode 100644
index bcfcbd3466..0000000000
--- a/SPECS/vitess/vitess.signatures.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "Signatures": {
- "vitess-19.0.4-vendor.tar.gz": "9368c47b1a6758007a1238aad13342bad7d1ea8b40e38626c2fbe5fa30327343",
- "vitess-19.0.4.tar.gz": "5293a9ee440a0e3d383b94fd81511adfb90657c42f1d3b73d1c54f85e3435fe9"
- }
-}
diff --git a/SPECS/vitess/vitess.spec b/SPECS/vitess/vitess.spec
deleted file mode 100644
index edac384c3e..0000000000
--- a/SPECS/vitess/vitess.spec
+++ /dev/null
@@ -1,223 +0,0 @@
-# Generated by go2rpm
-%bcond_without check
-
-Name: vitess
-Version: 19.0.4
-Release: 8%{?dist}
-Summary: Database clustering system for horizontal scaling of MySQL
-# Upstream license specification: MIT and Apache-2.0
-License: MIT and ASL 2.0
-Vendor: Microsoft Corporation
-Distribution: Azure Linux
-URL: https://github.com/vitessio/vitess
-#Source0: https://github.com/vitessio/%{name}/archive/refs/tags/v%{version}.tar.gz
-Source0: %{name}-%{version}.tar.gz
-# Below is a manually created tarball, no download link.
-# We're using pre-populated Go modules from this tarball, since network is disabled during build time.
-# How to re-build this file:
-# 1. wget https://github.com/vitessio/vitess/archive/refs/tags/%%{version}.tar.gz -O %%{name}-%%{version}.tar.gz
-# 2. tar -xf %%{name}-%%{version}.tar.gz
-# 3. cd %%{name}-%%{version}
-# 4. go mod vendor
-# 5. tar --sort=name \
-# --mtime="2021-04-26 00:00Z" \
-# --owner=0 --group=0 --numeric-owner \
-# --pax-option=exthdr.name=%d/PaxHeaders/%f,delete=atime,delete=ctime \
-# -cf %%{name}-%%{version}-vendor.tar.gz vendor
-#
-Source1: %{name}-%{version}-vendor.tar.gz
-Patch0: CVE-2017-14623.patch
-Patch1: CVE-2024-45339.patch
-Patch2: CVE-2025-22868.patch
-Patch3: CVE-2025-22870.patch
-Patch4: CVE-2024-53257.patch
-BuildRequires: golang < 1.23
-
-%description
-Vitess is a database clustering system for horizontal scaling of MySQL through
-generalized sharding.
-
-By encapsulating shard-routing logic, Vitess allows application code and
-database queries to remain agnostic to the distribution of data onto multiple
-shards. With Vitess, you can even split and merge shards as your needs grow,
-with an atomic cutover step that takes only a few seconds.
-
-
-%prep
-%autosetup -N
-# Apply vendor before patching
-tar --no-same-owner -xf %{SOURCE1}
-%autopatch -p1
-
-# sed in Mariner does not work on a group of files; use for-loop to apply
-# to apply to individual file
-for i in $(find . -iname "*.go" -type f); do
- sed -i "s|github.com/coreos/etcd|go.etcd.io/etcd|" $i
- sed -i "s|gotest.tools|gotest.tools/v3|" $i
-done
-
-rm -rf go/trace/plugin_datadog.go
-mv go/README.md README-go.md
-
-%build
-export VERSION=%{version}
-
-for cmd in $(find go/cmd/* -maxdepth 0 -type d); do
- # Skip internal directory
- if [ "$cmd" == "go/cmd/internal" ]; then
- continue
- fi
- go build -buildmode pie -compiler gc '-tags=rpm_crashtraceback ' \
- -ldflags "-X vitess.io/vitess/version=$VERSION -extldflags -Wl,-z,relro" \
- -mod=vendor -v -a -x -o ./bin/$(basename $cmd) ./$cmd
-done
-
-%install
-install -m 0755 -vd %{buildroot}%{_bindir}
-install -m 0755 -vp ./bin/* %{buildroot}%{_bindir}/
-
-%check
-go check -t go/cmd \
- -d go/mysql \
- -d go/mysql/endtoend \
- -d go/sqltypes \
- -d go/vt/hook \
- -d go/vt/mysqlctl \
- -d go/vt/srvtopo \
- -t go/vt/topo \
- -d go/vt/vtctld \
- -d go/vt/vtgate/evalengine \
- -d go/vt/vtqueryserver \
- -d go/vt/vttablet/endtoend \
- -t go/vt/vttablet/tabletmanager \
- -t go/vt/vttablet/tabletserver \
- -t go/vt/vttablet/worker \
- -d go/vt/withddl \
- -t go/vt/worker \
- -d go/vt/workflow/reshardingworkflowgen \
- -d go/vt/wrangler \
- -d go/vt/wrangler/testlib \
- -d go/vt/zkctl \
- -d go/json2 \
- -t go/test/endtoend
-
-%files
-%license LICENSE
-%doc CODE_OF_CONDUCT.md GOVERNANCE.md GUIDING_PRINCIPLES.md
-%doc ADOPTERS.md CONTRIBUTING.md README.md README-go.md
-%{_bindir}/*
-
-%changelog
-* Fri May 30 2025 Ranjan Dutta - 19.0.4-8
-- merge from Azure Linux 3.0.20250521-3.0
-- Add patch for CVE-2024-53257
-- Patch to fix CVE-2025-22870
-
-* Fri Apr 28 2025 Ranjan Dutta -19.0.4-6
-- merge from Azure Linux tag 3.0.20250423-3.0
-- Fix CVE-2025-22868 with an upstream patch
-
-* Fri Mar 21 2025 Anuj Mittal - 19.0.4-5
-- Bump Release to rebuild
-
-* Fri Jan 31 2025 Kavya Sree Kaitepalli -19.0.4-4
-- Patch for CVE-2024-45339
-
-* Tue Oct 15 2024 Muhammad Falak - 19.0.4-3
-- Pin golang version to <= 1.22
-
-* Thu Jun 27 2024 Nicolas Guibourge - 19.0.4-2
-- Address CVE-2017-14623
-
-* Tue Jun 25 2024 Nicolas Guibourge - 19.0.4-1
-- Auto-upgrade to 17.0.2 - Azure Linux 3.0 - package upgrades
-
-* Fri Oct 27 2023 CBL-Mariner Servicing Account - 17.0.2-1
-- Auto-upgrade to 17.0.2 - Azure Linux 3.0 - package upgrades
-
-* Mon Oct 16 2023 CBL-Mariner Servicing Account - 16.0.2-6
-- Bump release to rebuild with go 1.20.10
-
-* Tue Oct 10 2023 Dan Streetman - 16.0.2-5
-- Bump release to rebuild with updated version of Go.
-
-* Mon Aug 07 2023 CBL-Mariner Servicing Account - 16.0.2-4
-- Bump release to rebuild with go 1.19.12
-
-* Thu Jul 13 2023 CBL-Mariner Servicing Account - 16.0.2-3
-- Bump release to rebuild with go 1.19.11
-
-* Thu Jun 15 2023 CBL-Mariner Servicing Account - 16.0.2-2
-- Bump release to rebuild with go 1.19.10
-
-* Fri May 12 2023 Bala - 16.0.2-1
-- Update to 16.0.2 to fix CVE-2023-29194
-- Remove all the patches are they are merged with latest version
-
-* Wed Apr 05 2023 CBL-Mariner Servicing Account - 8.0.0-12
-- Bump release to rebuild with go 1.19.8
-
-* Tue Mar 28 2023 CBL-Mariner Servicing Account - 8.0.0-11
-- Bump release to rebuild with go 1.19.7
-
-* Wed Mar 15 2023 CBL-Mariner Servicing Account - 8.0.0-10
-- Bump release to rebuild with go 1.19.6
-
-* Fri Feb 03 2023 CBL-Mariner Servicing Account - 8.0.0-9
-- Bump release to rebuild with go 1.19.5
-
-* Wed Jan 18 2023 CBL-Mariner Servicing Account - 8.0.0-8
-- Bump release to rebuild with go 1.19.4
-
-* Fri Dec 16 2022 Daniel McIlvaney - 8.0.0-7
-- Bump release to rebuild with go 1.18.8 with patch for CVE-2022-41717
-
-* Tue Nov 01 2022 Olivia Crain - 8.0.0-6
-- Bump release to rebuild with go 1.18.8
-
-* Mon Aug 22 2022 Olivia Crain - 8.0.0-5
-- Bump release to rebuild against Go 1.18.5
-
-* Tue Jun 14 2022 Muhammad Falak - 8.0.0-4
-- Bump release to rebuild with golang 1.18.3
-
-* Mon Aug 16 2021 Henry Li - 8.0.0-3
-- Initial CBL-Mariner import from Fedora 34 (license: MIT)
-- License Verified
-- Use golang as BR
-- Use prebuilt vendor source for building
-- Remove unsupported macros in Mariner
-- Use for loop to apply sed changes
-- Apply patch to use new versions to dependent golang modules
-
-* Tue Jan 26 2021 Fedora Release Engineering - 8.0.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Sat Dec 26 13:28:45 CET 2020 Robert-André Mauchin - 8.0.0-1
-- Update to 8.0.0
-- Close: rhbz#1742264
-
-* Thu Oct 01 11:57:17 CEST 2020 Robert-André Mauchin - 7.0.2-1
-- Update to 7.0.2
-
-* Sat Aug 01 2020 Fedora Release Engineering - 5.0.1-3
-- Second attempt - Rebuilt for
- https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Tue Jul 28 2020 Fedora Release Engineering - 5.0.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Wed Apr 08 2020 Robert-André Mauchin - 5.0.1-1
-- Update to 5.0.1
-
-* Mon Feb 17 2020 Elliott Sales de Andrade - 3.0-4
-- Rebuilt for GHSA-jf24-p9p9-4rjh
-
-* Wed Jan 29 2020 Fedora Release Engineering - 3.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Thu Jul 25 2019 Fedora Release Engineering - 3.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Thu May 16 00:30:49 CEST 2019 Robert-André Mauchin - 3.0-1.20190701git948c251
-- Initial package
diff --git a/cgmanifest.json b/cgmanifest.json
index 27a965d9ac..454686a1a9 100644
--- a/cgmanifest.json
+++ b/cgmanifest.json
@@ -1862,16 +1862,6 @@
}
}
},
- {
- "component": {
- "type": "other",
- "other": {
- "name": "cloud-provider-kubevirt",
- "version": "0.5.1",
- "downloadUrl": "https://github.com/kubevirt/cloud-provider-kubevirt/archive/refs/tags/v0.5.1.tar.gz"
- }
- }
- },
{
"component": {
"type": "other",
@@ -2562,16 +2552,6 @@
}
}
},
- {
- "component": {
- "type": "other",
- "other": {
- "name": "dcos-cli",
- "version": "1.2.0",
- "downloadUrl": "https://github.com/dcos/dcos-cli/archive/refs/tags/1.2.0.tar.gz"
- }
- }
- },
{
"component": {
"type": "other",
@@ -30481,16 +30461,6 @@
}
}
},
- {
- "component": {
- "type": "other",
- "other": {
- "name": "vitess",
- "version": "19.0.4",
- "downloadUrl": "https://github.com/vitessio/vitess/archive/refs/tags/v19.0.4.tar.gz"
- }
- }
- },
{
"component": {
"type": "other",