Skip to content

Releases: platformio/platformio-core

5.2.4

15 Dec 10:21
Compare
Choose a tag to compare
  • Added support for a new headers field in library.json (declare a list of header files that can be included in a project source files using #include <...> directive)
  • Improved tab completion support for Bash, ZSH, and Fish shells (issue #4114)
  • Improved support for projects located on a network share (issue #3417, issue #3926, issue #4099)
  • Improved PIO Remote setup on credit-card sized computers (Raspberry Pi, BeagleBon, etc) (issue #3865)
  • Upgraded build engine to the SCons 4.3 (release notes)
  • Fixed an issue with the CLion project generator when a macro contains a space (issue #4102)
  • Fixed an issue with the NetBeans project generator when the path to PlatformIO contains a space (issue #4096)
  • Fixed an issue when the system environment variable does not override a project configuration option (issue #4125)
  • Fixed an issue when referencing *_dir option from a custom project configuration environment (issue #4110)
  • Fixed an issue with the CLion template that generated a broken CMake file if user's home directory contained an unescaped backslash (issue #4071)
  • Fixed an issue with wrong detecting Windows architecture when Python 32bit is used (issue #4134)

5.2.3

05 Nov 15:34
Compare
Choose a tag to compare

5.2.2

20 Oct 15:50
Compare
Choose a tag to compare
  • Override debugging firmware loading mode using --load-mode option for pio debug command
  • Added support for CLion IDE 2021.3 (pull #4085)
  • Removed debugging "legacy Click" message from CLI (issue #4083)
  • Fixed a "TypeError: sequence item 1: expected str instance, list found" issue when extending configuration option in "platformio.ini" with the multi-line default value (issue #4082)

5.2.1

11 Oct 12:11
Compare
Choose a tag to compare
  • Clean a build environment and installed library dependencies using a new cleanall target (issue #4062)
  • Override a default library builder via a new builder field in a build group of library.json manifest (issue #3957)
  • Updated Cppcheck v2.6 with new checks, increased reliability of advanced addons (MISRA/CERT) and various improvements
  • Handle the "test" folder as a part of CLion project (issue #4005)
  • Improved handling of a library root based on "Conan" or "CMake" build systems (issue #3887)
  • Fixed a "KeyError: Invalid board option 'build.cpu'" when using a precompiled library with a board that does not have a CPU field in the manifest (issue #4056)
  • Fixed a "FileExist" error when the platformio ci command is used in pair with the --keep-build-dir option (issue #4011)
  • Fixed an issue with draft values of C++ language standards that broke static analysis via Cppcheck (issue #3944)

5.2.0

13 Sep 16:03
Compare
Choose a tag to compare
  • PlatformIO Debugging

  • Package Management

    • Improved a package publishing process:

      • Show package details
      • Check for conflicting names in the PlatformIO Trusted Registry
      • Check for duplicates and used version
      • Validate package manifest
    • Added a new option --non-interactive to pio package publish command

  • Build System

    • Process "precompiled" and "ldflags" properties of the "library.properties" manifest (issue #3994)
    • Upgraded build engine to the SCons 4.2 (release notes)
    • Fixed an issue with broken binary file extension when a custom PROGNAME contains dot symbols (issue #3906)
    • Fixed an issue when PlatformIO archives a library that does not contain C/C++ source files (issue #4019)
  • Static Code Analysis

    • Updated analysis tools:

      • Clang-Tidy v12.0.1 with new modules and extended checks list
      • Cppcheck v2.5.0 with improved code analysis and MISRA improvements
      • PVS-Studio v7.14 with support for intermodular analysis, improved MISRA support and new diagnostics
  • Miscellaneous

    • Ensure that a serial port is ready before running unit tests on a remote target (issue #3742)
    • Fixed an error "Unknown development platform" when running unit tests on a clean machine (issue #3901)
    • Fixed an issue when "main.cpp" was generated for a new project for 8-bit development platforms (issue #3872)

5.1.1

17 Mar 16:24
Compare
Choose a tag to compare
  • Fixed a "The command line is too long" issue with a linking process on Windows (issue #3827)
  • Fixed an issue with device monitor when the "send_on_enter" filter didn't send EOL chars (issue #3787)
  • Fixed an issue with silent mode when unwanted data is printed to stdout (issue #3837)
  • Fixed an issue when code inspection fails with "Bad JSON" (issue #3790)
  • Fixed an issue with overriding user-specified debugging configuration information in VSCode (issue #3824)

5.1.0

28 Jan 17:29
Compare
Choose a tag to compare
  • PlatformIO Home
    • Boosted PlatformIO Home performance thanks to migrating the codebase to the pure Python 3 Asynchronous I/O stack
    • Added a new --session-id option to pio home command that helps to keep PlatformIO Home isolated from other instances and protect from 3rd party access (issue #3397)
  • Build System
    • Upgraded build engine to the SCons 4.1 (release notes)
    • Refactored a workaround for a maximum command line character limitation (issue #3792)
    • Fixed an issue with Python 3.8+ on Windows when a network drive is used (issue #3417)
  • Package Management
    • New options for pio system prune command:
      • --dry-run option to show data that will be removed
      • --core-packages option to remove unnecessary core packages
      • --platform-packages option to remove unnecessary development platform packages (issue #923)
    • Added new check_prune_system_threshold setting
    • Disabled automatic removal of unnecessary development platform packages (issue #3708, issue #3770)
    • Fixed an issue when unnecessary packages were removed in update --dry-run mode (issue #3809)
    • Fixed a "ValueError: Invalid simple block" when uninstalling a package with a custom name and external source (issue #3816)
  • Debugging
    • Configure a custom debug adapter speed using a new debug_speed option (issue #3799)
    • Handle debugging server's "ready_pattern" in "stderr" output
  • Miscellaneous

5.0.4

30 Dec 11:27
Compare
Choose a tag to compare
  • Added "Core" suffix when showing PlatformIO Core version using pio --version command
  • Improved .ccls configuration file for Emacs, Vim, and Sublime Text integrations
  • Updated analysis tools:
    • Cppcheck v2.3 with improved C++ parser and several new MISRA rules
    • PVS-Studio v7.11 with new diagnostics and updated mass suppression mechanism
  • Show a warning message about deprecated support for Python 2 and Python 3.5
  • Do not provide "intelliSenseMode" option when generating configuration for VSCode C/C++ extension
  • Fixed a "git-sh-setup: file not found" error when installing project dependencies from Git VCS (issue #3740)
  • Fixed an issue with package publishing on Windows when Unix permissions are not preserved (issue #3776)

5.0.3

12 Nov 16:01
Compare
Choose a tag to compare
  • Added an error selector for Sublime Text build runner (issue #3733)
  • Generate a working "projectEnvName" for PlatformIO IDE's debugger for VSCode
  • Force VSCode's intelliSenseMode to "gcc-x64" when GCC toolchain is used
  • Print ignored test suites and environments in the test summary report only in verbose mode (issue #3726)
  • Fixed an issue when the package manager tries to install a built-in library from the registry (issue #3662)
  • Fixed an issue when pio package pack ignores some folders (issue #3730)

5.0.2

30 Oct 16:18
Compare
Choose a tag to compare
  • Initialize a new project or update the existing passing working environment name and its options (issue #3686)
  • Automatically build PlatformIO Core extra Python dependencies on a host machine if they are missed in the registry (issue #3700)
  • Improved "core.call" RPC for PlatformIO Home (issue #3671)
  • Fixed a "PermissionError: [WinError 5]" on Windows when an external repository is used with lib_deps option (issue #3664)
  • Fixed a "KeyError: 'versions'" when dependency does not exist in the registry (issue #3666)
  • Fixed an issue with GCC linker when "native" dev-platform is used in pair with library dependencies (issue #3669)
  • Fixed an "AssertionError: ensure_dir_exists" when checking library updates from simultaneous subprocesses (issue #3677)
  • Fixed an issue when pio package publish command removes original archive after submitting to the registry (issue #3716)
  • Fixed an issue when multiple pio lib install command with the same local library results in duplicates in lib_deps (issue #3715)
  • Fixed an issue with a "wrong" timestamp in device monitor output using "time" filter (issue #3712)