Skip to content

Commit 0837376

Browse files
committed
docs: update changelog to include pull request links for added, removed, and fixed entries
1 parent 2bf2f8b commit 0837376

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

CHANGELOG.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,60 +8,60 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
88

99
### Added
1010

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

2222
### Removed
2323

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

2626
### Fixed
2727

28-
- pkg/board/remote/adb: fix zombie process in adb that resulted in `fork failed: resource temporarily unavailable` error (#81)
29-
- Check if the app is running/starting before stopping it in `arduino-app-cli app stop` and `DELETE /v1/apps/{appID}` (#84)
30-
- Allow missing required variables when adding a brick (#74)
28+
- pkg/board/remote/adb: fix zombie process in adb that resulted in `fork failed: resource temporarily unavailable` error (https://github.com/arduino/arduino-app-cli/pull/81)[#81]
29+
- Check if the app is running/starting before stopping it in `arduino-app-cli app stop` and `DELETE /v1/apps/{appID}` (https://github.com/arduino/arduino-app-cli/pull/84)[#84]
30+
- Allow missing required variables when adding a brick (https://github.com/arduino/arduino-app-cli/pull/74)[#74]
3131

3232
## [0.6.7] - 2025-11-10
3333

3434
### Added
3535

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

4040
### Fixed
4141

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

4545
## [0.6.6] - 2025-11-03
4646

4747
### Added
4848

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

5353
### Fixed
5454

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

5959
## [0.6.5] - 2025-10-27
6060

6161
### Removed
6262

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

6666
## [0.6.3] - 2025-10-27 [YANKED]
6767

0 commit comments

Comments
 (0)