Skip to content
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
4e0214f
docs: add initial changelog file
dido18 Nov 21, 2025
e806769
docs: update changelog with recent changes and fixes
dido18 Nov 21, 2025
e559df5
docs: update changelog to reflect recent additions and fixes
dido18 Nov 21, 2025
e5476c9
docs: fix typo in changelog for used_by_apps field addition
dido18 Nov 21, 2025
064addc
docs: remove outdated release information from changelog
dido18 Nov 21, 2025
c77cc6b
docs: improve clarity and consistency in changelog entries
dido18 Nov 21, 2025
311e898
docs: add initial changelog with notable changes and version history
dido18 Nov 21, 2025
2bf2f8b
docs: remove outdated changelog file
dido18 Nov 21, 2025
0837376
docs: update changelog to include pull request links for added, remov…
dido18 Nov 21, 2025
80e896f
docs: update changelog formatting for consistency and clarity
dido18 Nov 21, 2025
eba468f
docs: fix link formatting for code field entry in changelog
dido18 Nov 21, 2025
108400e
Update CHANGELOG.md
dido18 Nov 21, 2025
9e28cb8
docs: update changelog for version 0.6.8 release and fix minor wordin…
dido18 Nov 24, 2025
f44d955
docs: remove yanked version 0.6.3 from changelog
dido18 Nov 24, 2025
de559e0
docs: remove unnecessary blank line in changelog
dido18 Nov 24, 2025
0d6283f
docs: reorganize entries in changelog for clarity and remove duplicates
dido18 Nov 24, 2025
4d4f1fc
docs: remove entry for bumping `app-bricks-examples` to version `0.5.…
dido18 Nov 24, 2025
c156292
docs: add missing sections to the unreleased changelog
dido18 Nov 24, 2025
e031339
Update CHANGELOG.md
dido18 Nov 24, 2025
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
75 changes: 75 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)

## [Unreleased]

### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security


## [0.6.8] - 2025-11-24

### Added

- Add `arduino-avahi-serial.service` systemd service that runs once to add the `serial_number` to the avahi daemon [#48](https://github.com/arduino/arduino-app-cli/pull/48)
- Add the `daemon_version` field to the `arduino-app-cli version` command [#49](https://github.com/arduino/arduino-app-cli/pull/49)
- Refactor README.md and contribution guidelines [#58](https://github.com/arduino/arduino-app-cli/pull/58)
- Add `arduino-app-cli app clean-cache <app-id>` command [#59](https://github.com/arduino/arduino-app-cli/pull/59)
- Improve the help message of `arduino-app-cli` [#61](https://github.com/arduino/arduino-app-cli/pull/61)
- Add `code` field with `NO_INTERNET_CONNECTION`, `OPERATION_IN_PROGRESS` and `UNKNOWN_ERROR` values in the update handlers and CLI [#62](https://github.com/arduino/arduino-app-cli/pull/62)
- pkg/board/board: expose the `serial_number` in network mode [#63](https://github.com/arduino/arduino-app-cli/pull/63)
- pkg/board/remote/adb: return `failed to create command` error when `GetCmd` fails [#79](https://github.com/arduino/arduino-app-cli/pull/79)
- Update `arduino-cli` dependencies [#86](https://github.com/arduino/arduino-app-cli/pull/86)
- Return detailed `error running needrestart command` error information during updates [#95](https://github.com/arduino/arduino-app-cli/pull/95)

### Removed

- Remove `arduino-app-cli app ps` command [#65](https://github.com/arduino/arduino-app-cli/pull/65)

### Fixed

- Allow missing required variables when a brick is added [#74](https://github.com/arduino/arduino-app-cli/pull/74)
- pkg/board/remote/adb: fix zombie process in adb that resulted in `fork failed: resource temporarily unavailable` error [#81](https://github.com/arduino/arduino-app-cli/pull/81)
- Check if the app is running/starting before stopping it in `arduino-app-cli app stop` and `DELETE /v1/apps/{appID}` [#84](https://github.com/arduino/arduino-app-cli/pull/84)
- Early return without opening SSE stream when `HEAD /system/update/events` is called [#96](https://github.com/arduino/arduino-app-cli/pull/96)

## [0.6.7] - 2025-11-10

### Added

- Flash sketch in ram [#12](https://github.com/arduino/arduino-app-cli/pull/12)
- Return `config_variables` field in `/apps/:id/bricks` and `apps/:id/bricks/:id` [#18](https://github.com/arduino/arduino-app-cli/pull/18)
- Add brick details completions [#54](https://github.com/arduino/arduino-app-cli/pull/54)

### Fixed

- Remove the `variable default value cannot be empty` error when adding a brick to an app [#44](https://github.com/arduino/arduino-app-cli/pull/44)
- Install libraries missing from local library-index [#50](https://github.com/arduino/arduino-app-cli/pull/50)

## [0.6.6] - 2025-11-03

### Added

- Add `used_by_apps` field to the `GET /v1/bricks/{brickID}` [#30](https://github.com/arduino/arduino-app-cli/pull/30)
- Improve `arduino-app-cli restart` command [#37](https://github.com/arduino/arduino-app-cli/pull/37)
- Return adb stdout/err in case of error [#40](https://github.com/arduino/arduino-app-cli/pull/40)

### Fixed

- Remove `Requires` from the systemd `arduino-app-cli.service` [#34](https://github.com/arduino/arduino-app-cli/pull/34)
- Fix websocket origin validation (fixes serial monitor on Windows) [#39](https://github.com/arduino/arduino-app-cli/pull/39)
- Use a valid origin in `GET /v1/monitor/ws` [#41](https://github.com/arduino/arduino-app-cli/pull/41)

## [0.6.5] - 2025-10-27

### Removed

- Remove the `arduino-app-cli board` sub-command [#27](https://github.com/arduino/arduino-app-cli/pull/27)
- Remove the internal zephyr core [#28](https://github.com/arduino/arduino-app-cli/pull/28)
Loading