Skip to content

Commit db2cde6

Browse files
chore: release v0.11 (#1181)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 899f431 commit db2cde6

File tree

6 files changed

+57
-6
lines changed

6 files changed

+57
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"backend": "0.10.0",
2+
"backend": "0.11.0",
33
"doc": "0.10.0",
4-
"frontend": "0.10.0"
4+
"frontend": "0.11.0"
55
}

backend/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
<!-- Starting from v0.11 changelogs are separated per-project. The changes below
1010
refer to both the frontend *and* the backend of edgehog -->
1111

12+
## [0.11.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.10.0...v0.11.0) (2026-02-03)
13+
14+
15+
### Features
16+
17+
* add calculation to expose Base Image name ([d3affa5](https://github.com/edgehog-device-manager/edgehog/commit/d3affa57af400440a26bccc6c29b3fb9c3534b23))
18+
* add device group subscription ([#1198](https://github.com/edgehog-device-manager/edgehog/issues/1198)) ([adb91f4](https://github.com/edgehog-device-manager/edgehog/commit/adb91f4e5f7011cdf424b77371ebf4f8858f66d1))
19+
* Additional information on deployment events ([ba27473](https://github.com/edgehog-device-manager/edgehog/commit/ba2747342f3b048a695f81deab856ce943aa39ab))
20+
* **backend:** base_images subscriptions ([bf28b85](https://github.com/edgehog-device-manager/edgehog/commit/bf28b85f909e6cfa1a2d8faf0979a4904073df67))
21+
* **backend:** manual OTA with base image from collection ([1af4b8d](https://github.com/edgehog-device-manager/edgehog/commit/1af4b8d8b9f10ca480a2aacf6073e8c2f2297b1c))
22+
* **backend:** run tenant reconciliation at creation ([f806909](https://github.com/edgehog-device-manager/edgehog/commit/f806909c1159ffd6f9171885f8ccee96f2a6f582))
23+
* GraphQL subscription for device updates in table ([#1118](https://github.com/edgehog-device-manager/edgehog/issues/1118)) ([be6a629](https://github.com/edgehog-device-manager/edgehog/commit/be6a6295f2767cf3ae766984aedbc29833a95a06))
24+
* implement GraphQL subscriptions for device events ([32badc9](https://github.com/edgehog-device-manager/edgehog/commit/32badc94a5705f3003ce66c1837430863a0217e3))
25+
* OTA updates can be canceled ([1daed60](https://github.com/edgehog-device-manager/edgehog/commit/1daed60e4fa6af858208f4b3fe3c3863006168c3)), closes [#266](https://github.com/edgehog-device-manager/edgehog/issues/266)
26+
* show `partNumber` and `serialNumber` in `Device` page if available ([#1123](https://github.com/edgehog-device-manager/edgehog/issues/1123)) ([c2261bb](https://github.com/edgehog-device-manager/edgehog/commit/c2261bb7397c4ca956013d245dc16a537e308267)), closes [#226](https://github.com/edgehog-device-manager/edgehog/issues/226)
27+
28+
29+
### Bug Fixes
30+
31+
* **backend:** log errors instead of crashing ([899f431](https://github.com/edgehog-device-manager/edgehog/commit/899f4315f01e67331057dcd11c4dbf0bee11c734))
32+
* device reconciliation not working ([ba1b025](https://github.com/edgehog-device-manager/edgehog/commit/ba1b02530283f69de9cafa5ce4a19cdb117de285))
33+
* Handle reconciler task replies ([bec0758](https://github.com/edgehog-device-manager/edgehog/commit/bec075870002b9e7c9213e7d9d0eeb2fd763d890))
34+
* include tenant in socket options ([d3c8921](https://github.com/edgehog-device-manager/edgehog/commit/d3c89212ca7c4fb25cab293985da144eac3f9188))
35+
* unify device creation and update subscriptions ([c09e7de](https://github.com/edgehog-device-manager/edgehog/commit/c09e7de8d5570cd15f158ade835e9a332c602597))
36+
1237
## [0.10.0] - 2025-12-09
1338

1439
### Fixed

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",
27+
version: "0.11.0",
2828
elixir: "~> 1.17",
2929
elixirc_paths: elixirc_paths(Mix.env()),
3030
compilers: Mix.compilers(),

frontend/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
<!-- Starting from v0.11 changelogs are separated per-project. The changes below
1010
refer to both the frontend *and* the backend of edgehog -->
1111

12+
## [0.11.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.10.0...v0.11.0) (2026-02-03)
13+
14+
15+
### Features
16+
17+
* `chevronDown` and `chevronUp` icon ([6d5dc58](https://github.com/edgehog-device-manager/edgehog/commit/6d5dc582a37f3a1278f623d3baf3d2baf67996d3))
18+
* add device group subscription ([#1198](https://github.com/edgehog-device-manager/edgehog/issues/1198)) ([adb91f4](https://github.com/edgehog-device-manager/edgehog/commit/adb91f4e5f7011cdf424b77371ebf4f8858f66d1))
19+
* add GraphQL subscription for device creation ([1d5a0ba](https://github.com/edgehog-device-manager/edgehog/commit/1d5a0ba36a7a6c3940ae61215fc03614e6817db6))
20+
* **backend:** manual OTA with base image from collection ([1af4b8d](https://github.com/edgehog-device-manager/edgehog/commit/1af4b8d8b9f10ca480a2aacf6073e8c2f2297b1c))
21+
* Collapsible headers in container form ([0ac3199](https://github.com/edgehog-device-manager/edgehog/commit/0ac3199635ce23176a01f465cd7ca57aadfa29a0))
22+
* **frontend:** manual OTA with base image from collection ([11f9a83](https://github.com/edgehog-device-manager/edgehog/commit/11f9a83cd08f1e2d810813dea72ac41704717e94))
23+
* GraphQL subscription for device updates in table ([#1118](https://github.com/edgehog-device-manager/edgehog/issues/1118)) ([be6a629](https://github.com/edgehog-device-manager/edgehog/commit/be6a6295f2767cf3ae766984aedbc29833a95a06))
24+
* integrate Absinthe WebSocket ([50fd9fc](https://github.com/edgehog-device-manager/edgehog/commit/50fd9fc3319932a8bc00ce84c12d1cb396beaacd))
25+
* Make Hardware Type clearable in Create System Model ([becc958](https://github.com/edgehog-device-manager/edgehog/commit/becc95896919b33f056622d8e36ee239d10f1914))
26+
* show `partNumber` and `serialNumber` in `Device` page if available ([#1123](https://github.com/edgehog-device-manager/edgehog/issues/1123)) ([c2261bb](https://github.com/edgehog-device-manager/edgehog/commit/c2261bb7397c4ca956013d245dc16a537e308267)), closes [#226](https://github.com/edgehog-device-manager/edgehog/issues/226)
27+
* UI for deployment events' additional information ([b03f50a](https://github.com/edgehog-device-manager/edgehog/commit/b03f50aaf10b9cff00e5a782bfdbdec1c5e034ba))
28+
29+
30+
### Bug Fixes
31+
32+
* Correct GraphQL field name in subscription updater ([#1134](https://github.com/edgehog-device-manager/edgehog/issues/1134)) ([f5ac89b](https://github.com/edgehog-device-manager/edgehog/commit/f5ac89b3da2dde8ef741f370c93a2a8bfbfe47b4))
33+
* Restrict collapse toggle to icon click only ([eeb59e4](https://github.com/edgehog-device-manager/edgehog/commit/eeb59e48bd2d2b2948397dca333d4e5b614c9fed))
34+
* Stabilize field help icon alignment across browsers ([bfda785](https://github.com/edgehog-device-manager/edgehog/commit/bfda785fa4acc3559c655fdacd8986dc388f0165))
35+
* trim JWT for websockets in frontend ([#1130](https://github.com/edgehog-device-manager/edgehog/issues/1130)) ([a633e01](https://github.com/edgehog-device-manager/edgehog/commit/a633e01d0cb41fd6f55adc609ada1298a50a4bda))
36+
* unify device creation and update subscriptions ([c09e7de](https://github.com/edgehog-device-manager/edgehog/commit/c09e7de8d5570cd15f158ade835e9a332c602597))
37+
1238
## [0.10.0] - 2025-12-09
1339

1440
### Fixed

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",
3+
"version": "0.11.0",
44
"bugs": {
55
"url": "https://github.com/edgehog-device-manager/edgehog/issues"
66
},

0 commit comments

Comments
 (0)