Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"backend": "0.10.0",
"frontend": "0.10.0"
"backend": "0.11.0",
"frontend": "0.11.0"
}
18 changes: 18 additions & 0 deletions backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

## [0.11.0](https://github.com/lusergit/edgehog/compare/v0.10.0...v0.11.0) (2026-01-22)


### Features

* add calculation to expose Base Image name ([d3affa5](https://github.com/lusergit/edgehog/commit/d3affa57af400440a26bccc6c29b3fb9c3534b23))
* Additional information on deployment events ([ba27473](https://github.com/lusergit/edgehog/commit/ba2747342f3b048a695f81deab856ce943aa39ab))
* GraphQL subscription for device updates in table ([#1118](https://github.com/lusergit/edgehog/issues/1118)) ([be6a629](https://github.com/lusergit/edgehog/commit/be6a6295f2767cf3ae766984aedbc29833a95a06))
* implement GraphQL subscriptions for device events ([32badc9](https://github.com/lusergit/edgehog/commit/32badc94a5705f3003ce66c1837430863a0217e3))
* show `partNumber` and `serialNumber` in `Device` page if available ([#1123](https://github.com/lusergit/edgehog/issues/1123)) ([c2261bb](https://github.com/lusergit/edgehog/commit/c2261bb7397c4ca956013d245dc16a537e308267)), closes [#226](https://github.com/lusergit/edgehog/issues/226)


### Bug Fixes

* include tenant in socket options ([d3c8921](https://github.com/lusergit/edgehog/commit/d3c89212ca7c4fb25cab293985da144eac3f9188))
* unify device creation and update subscriptions ([c09e7de](https://github.com/lusergit/edgehog/commit/c09e7de8d5570cd15f158ade835e9a332c602597))
2 changes: 1 addition & 1 deletion backend/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defmodule Edgehog.MixProject do
def project do
[
app: :edgehog,
version: "0.10.0",
version: "0.11.0",
elixir: "~> 1.17",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
Expand Down
24 changes: 24 additions & 0 deletions frontend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

## [0.11.0](https://github.com/lusergit/edgehog/compare/v0.10.0...v0.11.0) (2026-01-22)


### Features

* `chevronDown` and `chevronUp` icon ([6d5dc58](https://github.com/lusergit/edgehog/commit/6d5dc582a37f3a1278f623d3baf3d2baf67996d3))
* add GraphQL subscription for device creation ([1d5a0ba](https://github.com/lusergit/edgehog/commit/1d5a0ba36a7a6c3940ae61215fc03614e6817db6))
* Collapsible headers in container form ([0ac3199](https://github.com/lusergit/edgehog/commit/0ac3199635ce23176a01f465cd7ca57aadfa29a0))
* GraphQL subscription for device updates in table ([#1118](https://github.com/lusergit/edgehog/issues/1118)) ([be6a629](https://github.com/lusergit/edgehog/commit/be6a6295f2767cf3ae766984aedbc29833a95a06))
* integrate Absinthe WebSocket ([50fd9fc](https://github.com/lusergit/edgehog/commit/50fd9fc3319932a8bc00ce84c12d1cb396beaacd))
* Make Hardware Type clearable in Create System Model ([becc958](https://github.com/lusergit/edgehog/commit/becc95896919b33f056622d8e36ee239d10f1914))
* show `partNumber` and `serialNumber` in `Device` page if available ([#1123](https://github.com/lusergit/edgehog/issues/1123)) ([c2261bb](https://github.com/lusergit/edgehog/commit/c2261bb7397c4ca956013d245dc16a537e308267)), closes [#226](https://github.com/lusergit/edgehog/issues/226)
* UI for deployment events' additional information ([b03f50a](https://github.com/lusergit/edgehog/commit/b03f50aaf10b9cff00e5a782bfdbdec1c5e034ba))


### Bug Fixes

* Correct GraphQL field name in subscription updater ([#1134](https://github.com/lusergit/edgehog/issues/1134)) ([f5ac89b](https://github.com/lusergit/edgehog/commit/f5ac89b3da2dde8ef741f370c93a2a8bfbfe47b4))
* Restrict collapse toggle to icon click only ([eeb59e4](https://github.com/lusergit/edgehog/commit/eeb59e48bd2d2b2948397dca333d4e5b614c9fed))
* Stabilize field help icon alignment across browsers ([bfda785](https://github.com/lusergit/edgehog/commit/bfda785fa4acc3559c655fdacd8986dc388f0165))
* trim JWT for websockets in frontend ([#1130](https://github.com/lusergit/edgehog/issues/1130)) ([a633e01](https://github.com/lusergit/edgehog/commit/a633e01d0cb41fd6f55adc609ada1298a50a4bda))
* unify device creation and update subscriptions ([c09e7de](https://github.com/lusergit/edgehog/commit/c09e7de8d5570cd15f158ade835e9a332c602597))
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edgehog-device-manager-frontend",
"version": "0.10.0",
"version": "0.11.0",
"bugs": {
"url": "https://github.com/edgehog-device-manager/edgehog/issues"
},
Expand Down
Loading