Upgrading

Here you can find a list of migration guides to handle breaking changes between releases of the CLI.

0.18.0

Breaking changes in gRPC API and CLI JSON output.

Starting from this release we applied a more rigorous and stricter naming conventions in gRPC API following the official guidelines: https://developers.google.com/protocol-buffers/docs/style

We also started using a linter to implement checks for gRPC API style errors.

This provides a better consistency and higher quality API but inevitably introduces breaking changes.

gRPC API breaking changes

Consumers of the gRPC API should regenerate their bindings and update all structures naming where necessary. Most of the changes are trivial and falls into the following categories:

  • Service names have been suffixed with ...Service (for example ArduinoCore -> ArduinoCoreService)
  • Message names suffix has been changed from ...Req/...Resp to ...Request/...Response (for example BoardDetailsReq -> BoardDetailsRequest)
  • Enumerations now have their class name prefixed (for example the enumeration value FLAT in LibraryLayout has been changed to LIBRARY_LAYOUT_FLAT)
  • Use of lower-snake case on all fields (for example: ID -> id, FQBN -> fqbn, Name -> name, ArchiveFilename -> archive_filename)
  • Package names are now versioned (for example cc.arduino.cli.commands -> cc.arduino.cli.commands.v1)
  • Repeated responses are now in plural form (identification_pref -> identification_prefs, platform -> platforms)

arduino-cli JSON output breaking changes

Consumers of the JSON output of the CLI must update their clients if they use one of the following commands:

  • in core search command the following fields have been renamed:

    • Boards -> boards
    • Email -> email
    • ID -> id
    • Latest -> latest
    • Maintainer -> maintainer
    • Name -> name
    • Website -> website

    The new output is like:

    $ arduino-cli core search Due --format json
    [
      {
        "id": "arduino:sam",
        "latest": "1.6.12",
        "name": "Arduino SAM Boards (32-bits ARM Cortex-M3)",
        "maintainer": "Arduino",
        "website": "http://www.arduino.cc/",
        "email": "packages@arduino.cc",
        "boards": [
          {
            "name": "Arduino Due (Native USB Port)",
            "fqbn": "arduino:sam:arduino_due_x"
          },
          {
            "name": "Arduino Due (Programming Port)",
            "fqbn": "arduino:sam:arduino_due_x_dbg"
          }
        ]
      }
    ]
    
  • in board details command the following fields have been renamed:

    • identification_pref -> identification_prefs
    • usbID -> usb_id
    • PID -> pid
    • VID -> vid
    • websiteURL -> website_url
    • archiveFileName -> archive_filename
    • propertiesId -> properties_id
    • toolsDependencies -> tools_dependencies

    The new output is like:

    $ arduino-cli board details arduino:avr:uno --format json
    {
      "fqbn": "arduino:avr:uno",
      "name": "Arduino Uno",
      "version": "1.8.3",
      "properties_id": "uno",
      "official": true,
      "package": {
        "maintainer": "Arduino",
        "url": "https://downloads.arduino.cc/packages/package_index.json",
        "website_url": "http://www.arduino.cc/",
        "email": "packages@arduino.cc",
        "name": "arduino",
        "help": {
          "online": "http://www.arduino.cc/en/Reference/HomePage"
        }
      },
      "platform": {
        "architecture": "avr",
        "category": "Arduino",
        "url": "http://downloads.arduino.cc/cores/avr-1.8.3.tar.bz2",
        "archive_filename": "avr-1.8.3.tar.bz2",
        "checksum": "SHA-256:de8a9b982477762d3d3e52fc2b682cdd8ff194dc3f1d46f4debdea6a01b33c14",
        "size": 4941548,
        "name": "Arduino AVR Boards"
      },
      "tools_dependencies": [
        {
          "packager": "arduino",
          "name": "avr-gcc",
          "version": "7.3.0-atmel3.6.1-arduino7",
          "systems": [
            {
              "checksum": "SHA-256:3903553d035da59e33cff9941b857c3cb379cb0638105dfdf69c97f0acc8e7b5",
              "host": "arm-linux-gnueabihf",
              "archive_filename": "avr-gcc-7.3.0-atmel3.6.1-arduino7-arm-linux-gnueabihf.tar.bz2",
              "url": "http://downloads.arduino.cc/tools/avr-gcc-7.3.0-atmel3.6.1-arduino7-arm-linux-gnueabihf.tar.bz2",
              "size": 34683056
            },
            { ... }
          ]
        },
        { ... }
      ],
      "identification_prefs": [
        {
          "usb_id": {
            "vid": "0x2341",
            "pid": "0x0043"
          }
        },
        { ... }
      ],
      "programmers": [
        {
          "platform": "Arduino AVR Boards",
          "id": "parallel",
          "name": "Parallel Programmer"
        },
        { ... }
      ]
    }
    
  • in board listall command the following fields have been renamed:

    • FQBN -> fqbn
    • Email -> email
    • ID -> id
    • Installed -> installed
    • Latest -> latest
    • Name -> name
    • Maintainer -> maintainer
    • Website -> website

    The new output is like:

    $ arduino-cli board listall Uno --format json
    {
      "boards": [
        {
          "name": "Arduino Uno",
          "fqbn": "arduino:avr:uno",
          "platform": {
            "id": "arduino:avr",
            "installed": "1.8.3",
            "latest": "1.8.3",
            "name": "Arduino AVR Boards",
            "maintainer": "Arduino",
            "website": "http://www.arduino.cc/",
            "email": "packages@arduino.cc"
          }
        }
      ]
    }
    
  • in board search command the following fields have been renamed:

    • FQBN -> fqbn
    • Email -> email
    • ID -> id
    • Installed -> installed
    • Latest -> latest
    • Name -> name
    • Maintainer -> maintainer
    • Website -> website

    The new output is like:

    $ arduino-cli board search Uno --format json
    [
      {
        "name": "Arduino Uno",
        "fqbn": "arduino:avr:uno",
        "platform": {
          "id": "arduino:avr",
          "installed": "1.8.3",
          "latest": "1.8.3",
          "name": "Arduino AVR Boards",
          "maintainer": "Arduino",
          "website": "http://www.arduino.cc/",
          "email": "packages@arduino.cc"
        }
      }
    ]
    
  • in lib deps command the following fields have been renamed:

    • versionRequired -> version_required
    • versionInstalled -> version_installed

    The new output is like:

    $ arduino-cli lib deps Arduino_MKRIoTCarrier --format json
    {
      "dependencies": [
        {
          "name": "Adafruit seesaw Library",
          "version_required": "1.3.1"
        },
        {
          "name": "SD",
          "version_required": "1.2.4",
          "version_installed": "1.2.3"
        },
        { ... }
      ]
    }
    
  • in lib search command the following fields have been renamed:

    • archivefilename -> archive_filename
    • cachepath -> cache_path

    The new output is like:

    $ arduino-cli lib search NTPClient --format json
    {
      "libraries": [
        {
          "name": "NTPClient",
          "releases": {
            "1.0.0": {
              "author": "Fabrice Weinberg",
              "version": "1.0.0",
              "maintainer": "Fabrice Weinberg \u003cfabrice@weinberg.me\u003e",
              "sentence": "An NTPClient to connect to a time server",
              "paragraph": "Get time from a NTP server and keep it in sync.",
              "website": "https://github.com/FWeinb/NTPClient",
              "category": "Timing",
              "architectures": [
                "esp8266"
              ],
              "types": [
                "Arduino"
              ],
              "resources": {
                "url": "https://downloads.arduino.cc/libraries/github.com/arduino-libraries/NTPClient-1.0.0.zip",
                "archive_filename": "NTPClient-1.0.0.zip",
                "checksum": "SHA-256:b1f2907c9d51ee253bad23d05e2e9c1087ab1e7ba3eb12ee36881ba018d81678",
                "size": 6284,
                "cache_path": "libraries"
              }
            },
            "2.0.0": { ... },
            "3.0.0": { ... },
            "3.1.0": { ... },
            "3.2.0": { ... }
          },
          "latest": {
            "author": "Fabrice Weinberg",
            "version": "3.2.0",
            "maintainer": "Fabrice Weinberg \u003cfabrice@weinberg.me\u003e",
            "sentence": "An NTPClient to connect to a time server",
            "paragraph": "Get time from a NTP server and keep it in sync.",
            "website": "https://github.com/arduino-libraries/NTPClient",
            "category": "Timing",
            "architectures": [
              "*"
            ],
            "types": [
              "Arduino"
            ],
            "resources": {
              "url": "https://downloads.arduino.cc/libraries/github.com/arduino-libraries/NTPClient-3.2.0.zip",
              "archive_filename": "NTPClient-3.2.0.zip",
              "checksum": "SHA-256:122d00df276972ba33683aff0f7fe5eb6f9a190ac364f8238a7af25450fd3e31",
              "size": 7876,
              "cache_path": "libraries"
            }
          }
        }
      ],
      "status": 1
    }
    
  • in board list command the following fields have been renamed:

    • FQBN -> fqbn
    • VID -> vid
    • PID -> pid

    The new output is like:

    $ arduino-cli board list --format json
    [
      {
        "address": "/dev/ttyACM0",
        "protocol": "serial",
        "protocol_label": "Serial Port (USB)",
        "boards": [
          {
            "name": "Arduino Nano 33 BLE",
            "fqbn": "arduino:mbed:nano33ble",
            "vid": "0x2341",
            "pid": "0x805a"
          },
          {
            "name": "Arduino Nano 33 BLE",
            "fqbn": "arduino-dev:mbed:nano33ble",
            "vid": "0x2341",
            "pid": "0x805a"
          },
          {
            "name": "Arduino Nano 33 BLE",
            "fqbn": "arduino-dev:nrf52:nano33ble",
            "vid": "0x2341",
            "pid": "0x805a"
          },
          {
            "name": "Arduino Nano 33 BLE",
            "fqbn": "arduino-beta:mbed:nano33ble",
            "vid": "0x2341",
            "pid": "0x805a"
          }
        ],
        "serial_number": "BECC45F754185EC9"
      }
    ]
    $ arduino-cli board list -w --format json
    {
      "type": "add",
      "address": "/dev/ttyACM0",
      "protocol": "serial",
      "protocol_label": "Serial Port (USB)",
      "boards": [
        {
          "name": "Arduino Nano 33 BLE",
          "fqbn": "arduino-dev:nrf52:nano33ble",
          "vid": "0x2341",
          "pid": "0x805a"
        },
        {
          "name": "Arduino Nano 33 BLE",
          "fqbn": "arduino-dev:mbed:nano33ble",
          "vid": "0x2341",
          "pid": "0x805a"
        },
        {
          "name": "Arduino Nano 33 BLE",
          "fqbn": "arduino-beta:mbed:nano33ble",
          "vid": "0x2341",
          "pid": "0x805a"
        },
        {
          "name": "Arduino Nano 33 BLE",
          "fqbn": "arduino:mbed:nano33ble",
          "vid": "0x2341",
          "pid": "0x805a"
        }
      ],
      "serial_number": "BECC45F754185EC9"
    }
    {
      "type": "remove",
      "address": "/dev/ttyACM0"
    }
    

0.16.0

Change type of CompileReq.ExportBinaries message in gRPC interface

This change affects only the gRPC consumers.

In the CompileReq message the export_binaries property type has been changed from bool to google.protobuf.BoolValue. This has been done to handle settings bindings by gRPC consumers and the CLI in the same way so that they an identical behaviour.

0.15.0

Rename telemetry settings to metrics

All instances of the term telemetry in the code and the documentation has been changed to metrics. This has been done to clarify that no data is currently gathered from users of the CLI.

To handle this change the users must edit their config file, usually arduino-cli.yaml, and change the telemetry key to metrics. The modification must be done by manually editing the file using a text editor, it can't be done via CLI. No other action is necessary.

The default folders for the arduino-cli.yaml are:

  • Linux: /home/<your_username>/.arduino15/arduino-cli.yaml
  • OS X: /Users/<your_username>/Library/Arduino15/arduino-cli.yaml
  • Windows: C:\Users\<your_username>\AppData\Local\Arduino15\arduino-cli.yaml

0.14.0

Changes in debug command

Previously it was required:

  • To provide a debug command line recipe in platform.txt like tools.reciped-id.debug.pattern=..... that will start a gdb session for the selected board.
  • To add a debug.tool definition in the boards.txt to recall that recipe, for example myboard.debug.tool=recipe-id

Now:

  • Only the configuration needs to be supplied, the arduino-cli or the GUI tool will figure out how to call and setup the gdb session. An example of configuration is the following:
debug.executable={build.path}/{build.project_name}.elf
debug.toolchain=gcc
debug.toolchain.path={runtime.tools.arm-none-eabi-gcc-7-2017q4.path}/bin/
debug.toolchain.prefix=arm-none-eabi-
debug.server=openocd
debug.server.openocd.path={runtime.tools.openocd-0.10.0-arduino7.path}/bin/
debug.server.openocd.scripts_dir={runtime.tools.openocd-0.10.0-arduino7.path}/share/openocd/scripts/
debug.server.openocd.script={runtime.platform.path}/variants/{build.variant}/{build.openocdscript}

The debug.server.XXXX subkeys are optional and also "free text", this means that the configuration may be extended as needed by the specific server. For now only openocd is supported. Anyway, if this change works, any other kind of server may be fairly easily added.

The debug.xxx=yyy definitions above may be supplied and overlayed in the usual ways:

  • on platform.txt: definition here will be shared through all boards in the platform
  • on boards.txt as part of a board definition: they will override the global platform definitions
  • on programmers.txt: they will override the boards and global platform definitions if the programmer is selected

Binaries export must now be explicitly specified

Previously, if the --build-path was not specified, compiling a Sketch would copy the generated binaries in <sketch_folder>/build/<fqbn>/, uploading to a board required that path to exist and contain the necessary binaries.

The --dry-run flag was removed.

The default, compile does not copy generated binaries to the sketch folder. The --export-binaries (-e) flag was introduced to copy the binaries from the build folder to the sketch one. --export-binaries is not required when using the --output-dir flag. A related configuration key and environment variable has been added to avoid the need to always specify the --export-binaries flag: sketch.always_export_binaries and ARDUINO_SKETCH_ALWAYS_EXPORT_BINARIES.

If --input-dir or --input-file is not set when calling upload the command will search for the deterministically created build directory in the temp folder and use the binaries found there.

The gRPC interface has been updated accordingly, dryRun is removed.

Programmers can't be listed anymore using burn-bootloader -P list

The -P flag is used to select the programmer used to burn the bootloader on the specified board. Using -P list to list all the possible programmers for the current board was hackish.

This way has been removed in favour of board details <fqbn> --list-programmers.

lib install --git-url and --zip-file must now be explicitly enabled

With the introduction of the --git-url and --zip-file flags the new config key library.enable_unsafe_install has been added to enable them.

This changes the ouput of the config dump command.

Change behaviour of --config-file flag with config commands

To create a new config file with config init one must now use --dest-dir or the new --dest-file flags. Previously the config file would always be overwritten by this command, now it fails if the it already exists, to force the previous behaviour the user must set the --overwrite flag.