-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Begin publishing armv7hl rpm packages (#18387)
* feat: Begin publishing armv7hl rpm packages * docs: Add 0.33.0 upgrade guide
- Loading branch information
1 parent
f15144b
commit 4c901ed
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -749,3 +749,16 @@ jobs: | |
release: "any-version" | ||
republish: "true" | ||
file: "target/artifacts/vector-${{ env.VECTOR_VERSION }}-1.armv7.rpm" | ||
- name: Push armv7hl-gnu RPM | ||
id: push-rpm-armv7hl-gnu | ||
uses: cloudsmith-io/[email protected] | ||
with: | ||
api-key: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
command: "push" | ||
format: "rpm" | ||
owner: "timber" | ||
repo: ${{ env.CLOUDSMITH_REPO }} | ||
distro: "any-distro" | ||
release: "any-version" | ||
republish: "true" | ||
file: "target/artifacts/vector-${{ env.VECTOR_VERSION }}-1.armv7hl.rpm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
website/content/en/highlights/2023-09-26-0-33-0-upgrade-guide.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
date: "2023-09-26" | ||
title: "0.33 Upgrade Guide" | ||
description: "An upgrade guide that addresses breaking changes in 0.33.0" | ||
authors: ["spencergilbert"] | ||
release: "0.33.0" | ||
hide_on_release_notes: false | ||
badges: | ||
type: breaking change | ||
--- | ||
|
||
Vector's 0.33.0 release includes **deprecations**: | ||
|
||
1. [Renaming the `armv7` rpm package](#armv7-rename) | ||
|
||
We cover them below to help you upgrade quickly: | ||
|
||
## Upgrade guide | ||
|
||
### Deprecations | ||
|
||
#### Renaming the `armv7` rpm package {#armv7-rename} | ||
|
||
The `armv7` rpm package, `vector-<version>-1.armv7.rpm`, is now published as | ||
`vector-<version>-1.armv7hl.rpm` to better follow rpm guidelines. The `armv7` | ||
package will be no longer be published beginning in the 0.34.0 release. |