From 0ad4c8443a393e29e4a6ceb58f5279a38434ed59 Mon Sep 17 00:00:00 2001 From: Pive01 Date: Mon, 26 Jan 2026 16:56:14 +0100 Subject: [PATCH] Updated deps --- CHANGELOG.md | 10 ++++++++++ Dockerfile | 2 +- Makefile | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06f4046..3103216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.5.8] — 2026-01-27 + +### Changed + +- Dependencies update and api-key text removal + +### Changed + +- Refactoring and dependencies update + ## [0.5.7] — 2025-10-17 ### Changed diff --git a/Dockerfile b/Dockerfile index 37ddde8..5838622 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25-alpine AS builder +FROM golang:1.25.6-alpine AS builder ENV CGO_ENABLED=0 WORKDIR /backend COPY vm/go.* ./ diff --git a/Makefile b/Makefile index 7e9c11e..2f3e362 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ IMAGE?=localstack/localstack-docker-desktop -TAG?=0.5.7 +TAG?=0.5.8 BUILDER=buildx-multi-arch @@ -8,7 +8,7 @@ NO_COLOR = \033[m build-extension: ## Build service image to be deployed as a desktop extension ls binaries/linux/localstack-* > /dev/null 2>&1 || ./downloadBinaries.sh - docker build --tag=$(IMAGE):$(TAG) . + docker build --tag=$(IMAGE):$(TAG) . install-extension: build-extension ## Install the extension docker extension install $(IMAGE):$(TAG)