Skip to content

Commit 3fa06b6

Browse files
chore: release main
1 parent ec7fe9c commit 3fa06b6

File tree

8 files changed

+56
-8
lines changed

8 files changed

+56
-8
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"backend": "0.11.0",
3-
"doc": "0.11.0",
4-
"frontend": "0.11.0"
2+
"backend": "0.12.0",
3+
"doc": "0.12.0",
4+
"frontend": "0.12.0"
55
}

backend/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,27 @@ 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.12.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.11.0...v0.12.0) (2026-02-18)
13+
14+
15+
### ⚠ BREAKING CHANGES
16+
17+
* **backend:** remove authentication bypass configuration
18+
19+
### Features
20+
21+
* Add `Pause` and `Resume` functionality for campaigns ([#1204](https://github.com/edgehog-device-manager/edgehog/issues/1204)) ([35a9aab](https://github.com/edgehog-device-manager/edgehog/commit/35a9aab42a458358bf87a60e37453b26a7ac0228)), closes [#277](https://github.com/edgehog-device-manager/edgehog/issues/277)
22+
* add GraphQL subscriptions for containers ([#1224](https://github.com/edgehog-device-manager/edgehog/issues/1224)) ([6c36e6d](https://github.com/edgehog-device-manager/edgehog/commit/6c36e6d0e632251f64a6ffef4a2a304f658f55ad))
23+
* add GraphQL subscriptions for OTA operations ([#1220](https://github.com/edgehog-device-manager/edgehog/issues/1220)) ([db679ce](https://github.com/edgehog-device-manager/edgehog/commit/db679ceebe687909871ed3fee9e59303b4397aa0))
24+
* Add subscriptions for HT and SMPN ([#1225](https://github.com/edgehog-device-manager/edgehog/issues/1225)) ([7d46654](https://github.com/edgehog-device-manager/edgehog/commit/7d466541e3b77f87d84884332046a677d102b441))
25+
* **backend:** add subscriptions to campaigns domain ([2bda866](https://github.com/edgehog-device-manager/edgehog/commit/2bda8661d064a4eb45ade539058930e1b54ddefb))
26+
* **backend:** allow deletion of BaseImage used in completed campaign ([46f7aa3](https://github.com/edgehog-device-manager/edgehog/commit/46f7aa34f585aabf2a37f4baef10a8ac4a5ea33d)), closes [#598](https://github.com/edgehog-device-manager/edgehog/issues/598)
27+
28+
29+
### Miscellaneous Chores
30+
31+
* **backend:** remove authentication bypass configuration ([fb5585c](https://github.com/edgehog-device-manager/edgehog/commit/fb5585ccddc547a7bb5cb084265788d29472fec4))
32+
1233
## [0.11.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.10.0...v0.11.0) (2026-02-03)
1334

1435

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

doc/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.12.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.11.0...v0.12.0) (2026-02-18)
4+
5+
6+
### Features
7+
8+
* **doc:** expose v0.11 documentation ([#1242](https://github.com/edgehog-device-manager/edgehog/issues/1242)) ([68dfa71](https://github.com/edgehog-device-manager/edgehog/commit/68dfa71a24ab4719dc4a8e29e6b26b6d0b886ecf))

doc/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ defmodule Doc.MixProject do
2222
def project do
2323
[
2424
app: :doc,
25-
version: "0.11.0",
25+
version: "0.12.0",
2626
elixir: "~> 1.15",
2727
start_permanent: Mix.env() == :prod,
2828
deps: deps(),

frontend/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@ 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.12.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.11.0...v0.12.0) (2026-02-18)
13+
14+
15+
### Features
16+
17+
* Add `Pause` and `Resume` functionality for campaigns ([#1204](https://github.com/edgehog-device-manager/edgehog/issues/1204)) ([35a9aab](https://github.com/edgehog-device-manager/edgehog/commit/35a9aab42a458358bf87a60e37453b26a7ac0228)), closes [#277](https://github.com/edgehog-device-manager/edgehog/issues/277)
18+
* **backend:** allow deletion of BaseImage used in completed campaign ([46f7aa3](https://github.com/edgehog-device-manager/edgehog/commit/46f7aa34f585aabf2a37f4baef10a8ac4a5ea33d)), closes [#598](https://github.com/edgehog-device-manager/edgehog/issues/598)
19+
* **frontend:** add retry count column to campaign targets tables ([dfe0649](https://github.com/edgehog-device-manager/edgehog/commit/dfe0649be89060cd67f44e31909892549644363e))
20+
* **frontend:** add subscriptions ([ec7fe9c](https://github.com/edgehog-device-manager/edgehog/commit/ec7fe9c4badcd90ba211071b6d6be513ced36f36))
21+
* **frontend:** add subscriptions for campaigns ([6269990](https://github.com/edgehog-device-manager/edgehog/commit/6269990e2318acf9484608e0cafff6bf6fe65462))
22+
* **frontend:** allow deletion of BaseImage used in completed campaign ([b182943](https://github.com/edgehog-device-manager/edgehog/commit/b182943608d7076303b8c7542035fe156779fa8a)), closes [#598](https://github.com/edgehog-device-manager/edgehog/issues/598)
23+
24+
25+
### Bug Fixes
26+
27+
* add text reporters to coverage output for visibility ([e7c56f8](https://github.com/edgehog-device-manager/edgehog/commit/e7c56f8c5bca9d5517b67041e3537a6bf2e8abb5))
28+
* **frontend:** fix Campaigns create subscription data ([898ad56](https://github.com/edgehog-device-manager/edgehog/commit/898ad56e5c2bac7413e1fdf031b5c9c6243cad6a))
29+
* Hide Applications tab when offline or unsupported ([004cbce](https://github.com/edgehog-device-manager/edgehog/commit/004cbce7fc9b1764469c09ff022375ddaf7f0488))
30+
1231
## [0.11.0](https://github.com/edgehog-device-manager/edgehog/compare/v0.10.0...v0.11.0) (2026-02-03)
1332

1433

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

0 commit comments

Comments
 (0)