Skip to content

Commit ea03b95

Browse files
authored
chore: prepare release v0.10.0-alpha.6 (#1001)
Signed-off-by: Luca Zaninotto <luca.zaninotto@secomind.com>
1 parent de1b8dc commit ea03b95

File tree

7 files changed

+23
-9
lines changed

7 files changed

+23
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.10.0-alpha.6] - 2025-10-16
8+
### Added
9+
- The backend now allows to define different images with the same reference but different image credentials associated.
10+
### Changed
11+
- CPU Period and CPU Quota get validated on the fronted.
12+
- Updated the postgres version in dev, test still run on all versions.
13+
- Added validation for unique volume targets
14+
- Deployment readiness is now a single field
15+
- Deployments now report in the UI the state of each single container. Showing whether the container is running, exited or encountered some error.
16+
- Key-value structure for container environment variables is enforced on backend level.
17+
### Fixed
18+
- Reconciler wrongful map comparison.
19+
- Properly update relay connections to avoid out-of sync errors.
20+
721
## [0.10.0-alpha.5] - 2025-10-06
822
### Changed
923
- When no device group exist, on the Channel List page prompt the user to create at least one group before creating a Channel ([#972](https://github.com/edgehog-device-manager/edgehog/issues/972)).

backend/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defmodule Edgehog.MixProject do
2424
def project do
2525
[
2626
app: :edgehog,
27-
version: "0.10.0-alpha.5",
27+
version: "0.10.0-alpha.6",
2828
elixir: "~> 1.17",
2929
elixirc_paths: elixirc_paths(Mix.env()),
3030
compilers: Mix.compilers(),

doc/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defmodule Doc.MixProject do
2424
def project do
2525
[
2626
app: :doc,
27-
version: "0.10.0-alpha.5",
27+
version: "0.10.0-alpha.6",
2828
elixir: "~> 1.15",
2929
start_permanent: Mix.env() == :prod,
3030
deps: deps(),

doc/pages/admin/deploying_with_kubernetes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ spec:
417417
- name: admin-public-key
418418
mountPath: /keys
419419
readOnly: true
420-
image: edgehogdevicemanager/edgehog-backend:0.10.0-alpha.5
420+
image: edgehogdevicemanager/edgehog-backend:0.10.0-alpha.6
421421
imagePullPolicy: Always
422422
name: edgehog-backend
423423
ports:
@@ -485,7 +485,7 @@ spec:
485485
- env:
486486
- name: BACKEND_URL
487487
value: <BACKEND-HOST>
488-
image: edgehogdevicemanager/edgehog-frontend:0.10.0-alpha.5
488+
image: edgehogdevicemanager/edgehog-frontend:0.10.0-alpha.6
489489
imagePullPolicy: Always
490490
name: edgehog-frontend
491491
ports:

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
- "traefik.http.services.pgadmin.loadbalancer.server.port=80"
5050

5151
edgehog-backend:
52-
image: edgehogdevicemanager/edgehog-backend:0.10.0-alpha.5
52+
image: edgehogdevicemanager/edgehog-backend:0.10.0-alpha.6
5353
build:
5454
context: backend
5555
env_file: .env
@@ -87,7 +87,7 @@ services:
8787
- "traefik.http.services.edgehog-backend.loadbalancer.server.port=4000"
8888

8989
edgehog-frontend:
90-
image: edgehogdevicemanager/edgehog-frontend:0.10.0-alpha.5
90+
image: edgehogdevicemanager/edgehog-frontend:0.10.0-alpha.6
9191
build:
9292
context: frontend
9393
environment:

frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "edgehog-device-manager-frontend",
3-
"version": "0.10.0-alpha.5",
3+
"version": "0.10.0-alpha.6",
44
"bugs": {
55
"url": "https://github.com/edgehog-device-manager/edgehog/issues"
66
},

0 commit comments

Comments
 (0)