mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
chore: publish gateway 1.4.14 (#10030)
This commit is contained in:
6
.github/workflows/_build_artifacts.yml
vendored
6
.github/workflows/_build_artifacts.yml
vendored
@@ -248,9 +248,9 @@ jobs:
|
||||
artifact: firezone-gateway
|
||||
image_name: gateway
|
||||
# mark:next-gateway-version
|
||||
release_name: gateway-1.4.14
|
||||
release_name: gateway-1.4.15
|
||||
# mark:next-gateway-version
|
||||
version: 1.4.14
|
||||
version: 1.4.15
|
||||
- package: http-test-server
|
||||
artifact: http-test-server
|
||||
image_name: http-test-server
|
||||
@@ -395,7 +395,7 @@ jobs:
|
||||
- name: relay
|
||||
- name: gateway
|
||||
# mark:next-gateway-version
|
||||
version: 1.4.14
|
||||
version: 1.4.15
|
||||
- name: client
|
||||
# mark:next-client-version
|
||||
version: 1.0.6
|
||||
|
||||
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -192,7 +192,7 @@ jobs:
|
||||
matrix:
|
||||
include:
|
||||
# mark:next-gateway-version
|
||||
- release_name: gateway-1.4.14
|
||||
- release_name: gateway-1.4.15
|
||||
config_name: release-drafter-gateway.yml
|
||||
# mark:next-headless-version
|
||||
- release_name: headless-client-1.5.2
|
||||
|
||||
2
rust/Cargo.lock
generated
2
rust/Cargo.lock
generated
@@ -2376,7 +2376,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "firezone-gateway"
|
||||
version = "1.4.14"
|
||||
version = "1.4.15"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"backoff",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
[package]
|
||||
name = "firezone-gateway"
|
||||
# mark:next-gateway-version
|
||||
version = "1.4.14"
|
||||
version = "1.4.15"
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@@ -198,8 +198,8 @@ function headless() {
|
||||
# 3. Run `scripts/bump-versions.sh gateway` to update the versions in the codebase.
|
||||
# 4. Commit the changes and open a PR.
|
||||
function gateway() {
|
||||
current_gateway_version="1.4.13"
|
||||
next_gateway_version="1.4.14"
|
||||
current_gateway_version="1.4.14"
|
||||
next_gateway_version="1.4.15"
|
||||
|
||||
update_changelog "website/src/components/Changelog/Gateway.tsx" "$current_gateway_version"
|
||||
find website -type f -name "redirects.js" -exec sed "${SEDARG[@]}" -e '/mark:current-gateway-version/{n;s/[0-9]\{1,\}\.[0-9]\{1,\}\.[0-9]\{1,\}/'"${current_gateway_version}"'/g;}' {} \;
|
||||
|
||||
@@ -105,21 +105,21 @@ module.exports = [
|
||||
source: "/dl/firezone-gateway/latest/x86_64",
|
||||
destination:
|
||||
// mark:current-gateway-version
|
||||
"https://www.github.com/firezone/firezone/releases/download/gateway-1.4.13/firezone-gateway_1.4.13_x86_64",
|
||||
"https://www.github.com/firezone/firezone/releases/download/gateway-1.4.14/firezone-gateway_1.4.14_x86_64",
|
||||
permanent: false,
|
||||
},
|
||||
{
|
||||
source: "/dl/firezone-gateway/latest/aarch64",
|
||||
destination:
|
||||
// mark:current-gateway-version
|
||||
"https://www.github.com/firezone/firezone/releases/download/gateway-1.4.13/firezone-gateway_1.4.13_aarch64",
|
||||
"https://www.github.com/firezone/firezone/releases/download/gateway-1.4.14/firezone-gateway_1.4.14_aarch64",
|
||||
permanent: false,
|
||||
},
|
||||
{
|
||||
source: "/dl/firezone-gateway/latest/armv7",
|
||||
destination:
|
||||
// mark:current-gateway-version
|
||||
"https://www.github.com/firezone/firezone/releases/download/gateway-1.4.13/firezone-gateway_1.4.13_armv7",
|
||||
"https://www.github.com/firezone/firezone/releases/download/gateway-1.4.14/firezone-gateway_1.4.14_armv7",
|
||||
permanent: false,
|
||||
},
|
||||
/*
|
||||
|
||||
@@ -13,7 +13,7 @@ export async function GET(_req: NextRequest) {
|
||||
// mark:current-headless-version
|
||||
headless: "1.5.1",
|
||||
// mark:current-gateway-version
|
||||
gateway: "1.4.13",
|
||||
gateway: "1.4.14",
|
||||
};
|
||||
|
||||
return NextResponse.json(versions, {
|
||||
|
||||
@@ -22,7 +22,8 @@ export default function Gateway() {
|
||||
|
||||
return (
|
||||
<Entries downloadLinks={downloadLinks} title="Gateway">
|
||||
<Unreleased>
|
||||
<Unreleased></Unreleased>
|
||||
<Entry version="1.4.14" date={new Date("2025-07-28")}>
|
||||
<ChangeItem pull="9986">
|
||||
Fixes an issue where a Client could not establish a connection unless
|
||||
their first attempt succeeded.
|
||||
@@ -31,7 +32,7 @@ export default function Gateway() {
|
||||
Fixes an issue where connections in low-latency networks (between
|
||||
Client and Gateway) would fail to establish reliably.
|
||||
</ChangeItem>
|
||||
</Unreleased>
|
||||
</Entry>
|
||||
<Entry version="1.4.13" date={new Date("2025-07-22")}>
|
||||
<ChangeItem pull="9834">
|
||||
Excludes ICMP errors from the ICMP traffic filter. Those are now
|
||||
|
||||
Reference in New Issue
Block a user