From 952132de8ec5ca21707c4ab7a259f82c9391a9f1 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Mon, 3 Nov 2025 07:31:08 +0200 Subject: [PATCH] chore: update changelog and version to 0.53.15 --- CHANGELOG.md | 17 +++++++++++++++++ Makefile | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68396a7..7c77244 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,23 @@ The format is based on [Keep a Changelog][keepachangelog] and adheres to [Semant ### Deprecated ### Fixed +## [0.53.15] - 2025-11-03 + +### Added +\n +### Changed +- Improved the pre-push git hook to automatically commit updated changelog and Makefile after generation. +- Updated the changelog generation script to load the OpenRouter API key from the .env file or environment variables for better security. +- Modified the pre-push hook to read user confirmation from /dev/tty for better compatibility. +- Updated the bootstrap peer logic to prioritize the DEBROS_BOOTSTRAP_PEERS environment variable for easier configuration. +- Improved the gateway's private host check to correctly handle IPv6 addresses with or without brackets and ports. + +### Deprecated + +### Removed + +### Fixed +\n ## [0.53.14] - 2025-11-03 ### Added diff --git a/Makefile b/Makefile index 6f9a996..e799601 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ test-e2e: .PHONY: build clean test run-node run-node2 run-node3 run-example deps tidy fmt vet lint clear-ports install-hooks -VERSION := 0.53.14 +VERSION := 0.53.15 COMMIT ?= $(shell git rev-parse --short HEAD 2>/dev/null || echo unknown) DATE ?= $(shell date -u +%Y-%m-%dT%H:%M:%SZ) LDFLAGS := -X 'main.version=$(VERSION)' -X 'main.commit=$(COMMIT)' -X 'main.date=$(DATE)'