1. 10 May, 2021 8 commits
  2. 13 Apr, 2021 1 commit
  3. 30 Mar, 2021 2 commits
  4. 29 Mar, 2021 4 commits
    • Silvano Cerza's avatar
    • Silvano Cerza's avatar
      Add library validation step when installing from zip or git (#1234) · 5f4f6e90
      Silvano Cerza authored
      * Add library validation when installing from zip or git
      
      * [skip changelog] Fix tests temp directory deletion on Windows
      
      * [skip changelog] Fix test_install_git_invalid_library test
      
      * [skip changelog] Add more check in lib install git repo tests
      5f4f6e90
    • Cristian Maglie's avatar
    • Cristian Maglie's avatar
      Linting and refactoring of gRPC API .proto files - BREAKING CHANGE (#1223) · e7cdde6e
      Cristian Maglie authored
      * Added linter ignore rules to match current .proto files
      
      * Fixed SERVICE_SUFFIX lint warning
      
      * Fixed RPC_RESPONSE_STANDARD_NAME lint warning
      
      * Fixed RPC_REQUEST_STANDARD_NAME and RPC_REQUEST_RESPONSE_UNIQUE lint warning
      
      There is one error remaining that require a more involved refactoring.
      
      * Fixed ENUM_VALUE_PREFIX and ENUM_VALUE_UPPER_SNAKE_CASE lint warning
      
      * Fixed FIELD_LOWER_SNAKE_CASE lint warning
      
      * Fixed PACKAGE_VERSION_SUFFIX lint warning
      
      * Fixed PACKAGE_DIRECTORY_MATCH lint warning
      
      * Fixed plurals in repeated fields
      
      * Fixed .proto files indentations
      
      * Fixed some multiword names
      
      * Pass of clang-format
      
      * Fixed integration tests for JSON output
      
      * Updated example_client
      
      * Rename archive_file_name to archive_filename for coherence with the rest of the API
      
      * Updated migration guide
      
      * Added lint and format as Taskfile targets
      e7cdde6e
  5. 25 Mar, 2021 1 commit
  6. 24 Mar, 2021 2 commits
  7. 23 Mar, 2021 1 commit
  8. 22 Mar, 2021 1 commit
  9. 19 Mar, 2021 1 commit
  10. 18 Mar, 2021 2 commits
  11. 17 Mar, 2021 3 commits
  12. 16 Mar, 2021 1 commit
  13. 15 Mar, 2021 1 commit
  14. 12 Mar, 2021 1 commit
  15. 10 Mar, 2021 2 commits
  16. 09 Mar, 2021 1 commit
  17. 08 Mar, 2021 1 commit
  18. 05 Mar, 2021 1 commit
  19. 04 Mar, 2021 2 commits
  20. 01 Mar, 2021 1 commit
    • per1234's avatar
      [skip changelog] Remove outdated information re: debug config from platform spec (#1203) · b2b9fba7
      per1234 authored
      Since the time the documentation for the initial experimental debugging configuration system was added to the Arduino
      Platform Specification, the system has changed significantly, resulting in some of the documentation no longer being
      applicable to the current version of Arduino CLI. This only removes the outdated information, leaving the parts that are
      still correct. The new debug system will be fully documented at a later time.
      b2b9fba7
  21. 26 Feb, 2021 3 commits
    • per1234's avatar
      [skip changelog] Improve wording of docs introduction (#1200) · bf364db7
      per1234 authored
      The introductory sentence of the documentation homepage is the first thing the user may see when discovering Arduino
      CLI. For this reason, it's important for it to quickly and clearly convey what Arduino CLI is. Toward that goal, the
      following changes are made:
      
      - Use more understandable terms
      - Rearrange features list in the order of typical usage (install dependencies, compile, upload)
      bf364db7
    • per1234's avatar
      [skip changelog] Correct library+sketch specifications re: spaces in folder name (#1194) · 33067500
      per1234 authored
      The previous mention of spaces as one of the characters allowed in library and sketch folder names was a copy/paste
      error originating in the allowed characters in library.properties `name` properties. This specific part of the `name`
      property specification doesn't apply to folder names. The reason it is allowed in the `name` property is because that
      value is "sanitized" before being used by Library Manager for the library installation folder name by replacing all
      spaces with underscores.
      33067500
    • per1234's avatar
      [skip changelog] Update Platform Specification link in warning (#1199) · 33242988
      per1234 authored
      When a boards platform uses an outdated `recipe.ar.pattern`, Arduino CLI displays a helpful message:
      
      Unable to cache built core, please tell foo:bar@1.2.3 maintainers to follow http://goo.gl/QdCUjo
      
      That short link points to the old Arduino Platform Specification page in the arduino/Arduino repository's wiki. The
      platform specification has since been moved to the arduino/arduino-cli repository.
      
      Even though the old page provides a
      link to the new location, this message uses an anchor to direct the developer to the relevant section of the
      specification. When they follow the link from the old page, they will simply end up at the top of the specification and
      may have a hard time finding the information that tells them how to fix the platform. Updating the link restores the
      intended behavior.
      33242988