From 3cc27b98bbab84e6e749cc405fe6a62797a0926d Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Fri, 27 Oct 2023 15:53:32 -0700 Subject: [PATCH] chore(releasing): Prepare v0.33.1 release Signed-off-by: Jesse Szwedko --- .github/actions/spelling/expect.txt | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- distribution/install.sh | 2 +- license-tool.toml | 3 +- website/content/en/releases/0.33.1.md | 4 ++ website/cue/reference/releases/0.33.1.cue | 70 +++++++++++++++++++++++ website/cue/reference/versions.cue | 1 + 8 files changed, 81 insertions(+), 4 deletions(-) create mode 100644 website/content/en/releases/0.33.1.md create mode 100644 website/cue/reference/releases/0.33.1.cue diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt index 286c3a18caa1f..3bcfc6a064995 100644 --- a/.github/actions/spelling/expect.txt +++ b/.github/actions/spelling/expect.txt @@ -1228,6 +1228,7 @@ wktpointer wmem woooooow woothee +wor wordlist workdir workstreams diff --git a/Cargo.lock b/Cargo.lock index 1f9ec4a816570..c3e659723df50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9598,7 +9598,7 @@ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" [[package]] name = "vector" -version = "0.33.0" +version = "0.33.1" dependencies = [ "apache-avro", "approx", diff --git a/Cargo.toml b/Cargo.toml index 9e821e9957c34..91dc7cc20824b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vector" -version = "0.33.0" +version = "0.33.1" authors = ["Vector Contributors "] edition = "2021" description = "A lightweight and ultra-fast tool for building observability pipelines" diff --git a/distribution/install.sh b/distribution/install.sh index c654c1826ba94..df07b61f7e90d 100755 --- a/distribution/install.sh +++ b/distribution/install.sh @@ -12,7 +12,7 @@ set -u # If PACKAGE_ROOT is unset or empty, default it. PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}" -VECTOR_VERSION="0.33.0" +VECTOR_VERSION="0.33.1" _divider="--------------------------------------------------------------------------------" _prompt=">>>" _indent=" " diff --git a/license-tool.toml b/license-tool.toml index f0e6df918efbf..2e6902e69ba78 100644 --- a/license-tool.toml +++ b/license-tool.toml @@ -6,12 +6,13 @@ # `ring` has a custom license that is mostly "ISC-style" but parts of it also fall under OpenSSL licensing. "ring-0.16.20" = { license = "ISC AND Custom" } +"ring-0.17.3" = { license = "ISC AND Custom" } # `rustls-webpki` doesn't specify their license in the metadata, but the file contains the ISC terms. "rustls-webpki-0.100.1" = { license = "ISC" } # `webpki` doesn't specify their license in the metadata, but the file contains the ISC terms. -"webpki-0.22.2" = { license = "ISC" } +"webpki-0.22.4" = { license = "ISC" } # `zerocopy` et al don't specify their licenses in the metadata, but the file contains the 2-clause BSD terms. "zerocopy-0.6.1" = { license = "BSD-2-Clause" } diff --git a/website/content/en/releases/0.33.1.md b/website/content/en/releases/0.33.1.md new file mode 100644 index 0000000000000..464ec0095aefa --- /dev/null +++ b/website/content/en/releases/0.33.1.md @@ -0,0 +1,4 @@ +--- +title: Vector v0.33.1 release notes +weight: 21 +--- diff --git a/website/cue/reference/releases/0.33.1.cue b/website/cue/reference/releases/0.33.1.cue new file mode 100644 index 0000000000000..d9809e1536fe4 --- /dev/null +++ b/website/cue/reference/releases/0.33.1.cue @@ -0,0 +1,70 @@ +package metadata + +releases: "0.33.1": { + date: "2023-10-30" + codename: "" + + whats_next: [] + + description: """ + This patch release contains fixes for regressions in 0.33.0 and fixes an issues with the Debian release artifacts. + + **Note:** Please see the release notes for [`v0.33.0`](/releases/0.33.0/) for additional changes if upgrading from + `v0.32.X`. In particular, the upgrade guide for breaking changes. + """ + + changelog: [ + { + type: "fix" + scopes: ["releasing", "debian"] + description: """ + Debian packages again avoid overwriting existing configuration files when upgrading. + """ + pr_numbers: [18718] + }, + { + type: "fix" + scopes: ["datadog_metrics sink"] + description: """ + The performance of the Datadog Metrics sink was greatly improved when the incoming + metric stream contains mostly counters. + """ + pr_numbers: [18759] + }, + { + type: "fix" + scopes: ["dnstap source"] + description: """ + The `dnstap` source can again parse DNSSEC/RRSIG RRs records. + """ + pr_numbers: [18878] + }, + { + type: "fix" + scopes: ["kafka source"] + description: """ + A performance regression in the `kafka` source was corrected. + """ + pr_numbers: [18770] + }, + ] + + commits: [ + {sha: "eae7b827fb885af5af12419b3451c841df06abdf", date: "2023-09-30 03:07:13 UTC", description: "Add known issue for 0.33.0 debian packaging regression", pr_number: 18727, scopes: ["releasing"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 3, deletions_count: 1}, + {sha: "4b72f7e13c7607705fe16227259bd7b1429fc1f7", date: "2023-10-04 06:52:37 UTC", description: "Set download page dropdown to latest version", pr_number: 18758, scopes: ["website"], type: "chore", breaking_change: false, author: "Devin Ford", files_count: 1, insertions_count: 1, deletions_count: 1}, + {sha: "9c31f322df7114b70231b843fcd975087ede2a5d", date: "2023-09-27 10:13:36 UTC", description: "Bump tokio-tungstenite from 0.20.0 to 0.20.1", pr_number: 18661, scopes: ["deps"], type: "chore", breaking_change: false, author: "dependabot[bot]", files_count: 3, insertions_count: 9, deletions_count: 9}, + {sha: "45a9fcf60e51ac213f3cd018183b5890feb5a317", date: "2023-10-04 05:19:08 UTC", description: "Bump webpki from 0.22.1 to 0.22.2", pr_number: 18744, scopes: ["deps"], type: "chore", breaking_change: false, author: "dependabot[bot]", files_count: 1, insertions_count: 1, deletions_count: 1}, + {sha: "abe84489cc5cfa19490d83576f867073a30f62da", date: "2023-09-30 05:01:39 UTC", description: "Bump warp from 0.3.5 to 0.3.6", pr_number: 18704, scopes: ["deps"], type: "chore", breaking_change: false, author: "dependabot[bot]", files_count: 2, insertions_count: 7, deletions_count: 38}, + {sha: "1b9a012cd4590b3f5f40b3190b3577ea9eb53046", date: "2023-09-30 05:16:11 UTC", description: "Re-add `conf-files` directive for `cargo-deb`", pr_number: 18726, scopes: ["debian platform"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 1, deletions_count: 0}, + {sha: "b8b6f9ed76141de290307b3d414c785dd4230ce1", date: "2023-10-06 05:45:13 UTC", description: "improve aggregation performance", pr_number: 18759, scopes: ["datadog_metrics sink"], type: "fix", breaking_change: false, author: "Doug Smith", files_count: 5, insertions_count: 173, deletions_count: 201}, + {sha: "05527172d1ab16d4c4481d392bdc26c89528beab", date: "2023-10-21 02:31:29 UTC", description: "Update example YAML config data_dir", pr_number: 18896, scopes: ["releasing"], type: "fix", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 1, deletions_count: 1}, + {sha: "1d4487c3b12033dba8dc58ae4199706552e3014b", date: "2023-10-21 01:33:10 UTC", description: "support DNSSEC RRSIG record data", pr_number: 18878, scopes: ["dnstap source"], type: "fix", breaking_change: false, author: "neuronull", files_count: 2, insertions_count: 52, deletions_count: 1}, + {sha: "b246610fd53f62ec07682a22f79d664f5ad031bc", date: "2023-10-25 07:21:51 UTC", description: "Make KafkaService return `Poll::Pending` when producer queue is full", pr_number: 18770, scopes: ["kafka sink"], type: "fix", breaking_change: false, author: "Doug Smith", files_count: 2, insertions_count: 78, deletions_count: 26}, + {sha: "391067761a210341f68ad3a4db8fcd0cfa42e578", date: "2023-09-28 06:28:14 UTC", description: "Remove or replace mentions of vector in functions doc", pr_number: 18679, scopes: ["external docs"], type: "chore", breaking_change: false, author: "May Lee", files_count: 9, insertions_count: 21, deletions_count: 21}, + {sha: "9ca6c7b186e73605359844db0bb20946bfdc6390", date: "2023-10-24 05:48:36 UTC", description: "add new dedicated page for TLS configuration", pr_number: 18844, scopes: ["tls"], type: "docs", breaking_change: false, author: "Hugo Hromic", files_count: 7, insertions_count: 164, deletions_count: 3}, + {sha: "0e0f6411608b8f37c311c3923c352e58f88d869b", date: "2023-09-28 11:44:20 UTC", description: "Add SHA256 checksums file to GH releases", pr_number: 18701, scopes: [], type: "chore", breaking_change: false, author: "Spencer Gilbert", files_count: 1, insertions_count: 6, deletions_count: 0}, + {sha: "5037fe756a2216cfa340b842387f745af2c29363", date: "2023-10-04 05:46:40 UTC", description: "Add a test to assert conf files aren't overwritten", pr_number: 18728, scopes: ["ci"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 2, insertions_count: 33, deletions_count: 15}, + {sha: "b4262335582c4466bbef5a9371433bdfbefaf587", date: "2023-10-12 06:27:08 UTC", description: "Bump MacOS unit test runners to 13", pr_number: 18823, scopes: ["ci"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 1, insertions_count: 1, deletions_count: 1}, + {sha: "792a1b541aaa1b34bef605bb9be4f0787b35afab", date: "2023-10-03 06:52:13 UTC", description: "Fix cookie banner style issues", pr_number: 18745, scopes: ["ci"], type: "chore", breaking_change: false, author: "Jesse Szwedko", files_count: 3, insertions_count: 11, deletions_count: 6}, + ] +} diff --git a/website/cue/reference/versions.cue b/website/cue/reference/versions.cue index 27f172e53bf9a..1de27dad1d867 100644 --- a/website/cue/reference/versions.cue +++ b/website/cue/reference/versions.cue @@ -2,6 +2,7 @@ package metadata // This has to be maintained manually because there's currently no way to sort versions programmatically versions: [string, ...string] & [ + "0.33.1", "0.33.0", "0.32.2", "0.32.1",