All Versions
17
Latest Version
Avg Release Cycle
36 days
Latest Release
1253 days ago

Changelog History
Page 2

  • v4.2.0 Changes

    February 12, 2020

    📄 PlatformIO Home 3.1:

    • Project Manager

    - Project Configuration UI for "platformio.ini"

    📄 PIO Check – automated code analysis without hassle:

    - Added support for PVS-Studio static code analyzer

    🎉 Initial support for Project Manager CLI:

    - Moved platformio init command to platformio project init

    📄 Generate compilation database "compile_commands.json" (issue #2990)

    🏗 Control debug flags and optimization level with a new debug_build_flags option

    📦 Install a dev-platform with ALL declared packages using a new --with-all-packages option for pio platform install command (issue #3345)

    ➕ Added support for "pythonPackages" in platform.json manifest (PlatformIO Package Manager will install dependent Python packages from PyPi registry automatically when dev-platform is installed)

    🔧 Handle project configuration (monitor, test, and upload options) for PIO Remote commands (issue #2591)

    ➕ Added support for Arduino's library.properties depends field (issue #2781)

    Autodetect monitor port for boards with specified HWIDs (issue #3349)

    ⚡️ Updated SCons tool to 3.1.2

    ⚡️ Updated Unity tool to 2.5.0

    📦 Made package ManifestSchema compatible with marshmallow >= 3 (issue #3296)

    Warn about broken library manifest when scanning dependencies (issue #3268)

    Do not overwrite custom items in VSCode's "extensions.json" (issue #3374)

    🛠 Fixed an issue when env.BoardConfig() does not work for custom boards in extra scripts of libraries (issue #3264)

    🛠 Fixed an issue with "start-group/end-group" linker flags on Native development platform (issue #3282)

    🛠 Fixed default PIO Unified Debugger configuration for J-Link probe

    Fixed an issue with LDF when header files not found if "libdeps_dir" is within a subdirectory of "lib_extra_dirs" (issue #3311)

    🛠 Fixed an issue "Import of non-existent variable 'projenv''" when development platform does not call "env.BuildProgram()" (issue #3315)

    🛠 Fixed an issue when invalid CLI command does not return non-zero exit code

    🛠 Fixed an issue when Project Inspector crashes when flash use > 100% (issue #3368)

    🛠 Fixed a "UnicodeDecodeError" when listing built-in libraries on macOS with Python 2.7 (issue #3370)

    🛠 Fixed an issue with improperly handled compiler flags with space symbols in VSCode template (issue #3364)

    🛠 Fixed an issue when no error is raised if referred parameter (interpolation) is missing in a project configuration file (issue #3279)

  • v4.1.0 Changes

    November 07, 2019
    • 📄 PIO Check – automated code analysis without hassle:
      • Potential NULL pointer dereferences
      • Possible indexing beyond array bounds
      • Suspicious assignments
      • Reads of potentially uninitialized objects
      • Unused variables or functions
      • Out of scope memory usage.
    • 📄 PlatformIO Home 3.0 and Project Inspection
      • Static Code Analysis
      • Firmware File Explorer
      • Firmware Memory Inspection
      • Firmware Sections & Symbols Viewer.
    • ➕ Added support for Build Middlewares: configure custom build flags per specific file, skip any build nodes from a framework, replace build file with another on-the-fly, etc.
    • Extend project environment configuration in "platformio.ini" with other sections using a new extends option (issue #2953)
    • 📄 Generate .ccls LSP file for Emacs cross references, hierarchies, completion and semantic highlighting
    • ➕ Added --no-ansi flag for PIO Core to disable ANSI control characters
    • ➕ Added --shutdown-timeout option to PIO Home Server
    • 🛠 Fixed an issue with project generator for CLion IDE when 2 environments were used (issue #2824)
    • 🛠 Fixed default PIO Unified Debugger configuration for J-Link probe
    • 🛠 Fixed an issue when configuration file options partly ignored when using custom --project-conf (issue #3034)
    • 🛠 Fixed an issue when installing a package using custom Git tag and submodules were not updated correctly (issue #3060)
    • 🛠 Fixed an issue with linking process when $LDSCRIPT contains a space in path
    • 🛠 Fixed security issue when extracting items from TAR archive (issue #2995)
    • 🏗 Fixed an issue with project generator when src_build_flags were not respected (issue #3137)
    • 🛠 Fixed an issue when booleans in "platformio.ini" are not parsed properly (issue #3022)
    • 🛠 Fixed an issue with invalid encoding when generating project for Visual Studio (issue #3183)
    • 🛠 Fixed an issue when Project Config Parser does not remove in-line comments when Python 3 is used (issue #3213)
    • 🛠 Fixed an issue with a GCC Linter for PlatformIO IDE for Atom (issue #3218)
  • v4.0.3 Changes

    August 30, 2019
  • v4.0.2 Changes

    August 23, 2019
    • 🛠 Fixed an issue with a broken LDF when checking for framework compatibility issue #2940
  • v4.0.1 Changes

    August 22, 2019
    • 🖨 Print debug tool name for the active debugging session
    • ⬆️ Do not shutdown PIO Home Server for "upgrade" operations (issue #2784)
    • 👌 Improved computing of project check sum (structure, configuration) and avoid unnecessary rebuilding
    • 👌 Improved printing of tabulated results
    • 💅 Automatically normalize file system paths to UNIX-style for Project Generator (issue #2857)
    • Ability to set "databaseFilename" for VSCode and C/C++ extension (issue #2825)
    • Renamed "enable_ssl" setting to strict_ssl
    • 🛠 Fixed an issue with incorrect escaping of Windows slashes when using PIO Unified Debugger and "piped" openOCD
    • 🛠 Fixed an issue when "debug", "home", "run", and "test" commands were not shown in "platformio --help" CLI
    • 🛠 Fixed an issue with PIO Home's "No JSON object could be decoded" (issue #2823)
    • 🛠 Fixed an issue when library.json had priority over project configuration for LDF (issue #2867)
  • v4.0.0 Changes

    July 10, 2019

    📄 Migration Guide from 3.0 to 4.0.

    PlatformIO Plus Goes Open Source

    - Built-in PIO Unit Testing

    🔧 Project Configuration

    - Added support for shared_dir where you can place an extra files (extra scripts, LD scripts, etc.) which should be transferred to a PIO Remote machine

    Library Management

    • Switched to workspace .pio/libdeps folder for project dependencies instead of .piolibdeps
    • Save libraries passed to platformio lib install command into the project dependency list (lib_deps) with a new --save flag (issue #1028)
    • Install all project dependencies declared via lib_deps option using a simple platformio lib install command (issue #2147)
    • Use isolated library dependency storage per project build environment (issue #1696)
    • Look firstly in built-in library storages for a missing dependency instead of PlatformIO Registry (issue #1654)
    • Override default source and include directories for a library via library.json manifest using includeDir and srcDir fields
    • Fixed an issue when library keeps reinstalling for non-latin path (issue #1252)

    - Fixed an issue when lib_compat_mode = strict does not ignore libraries incompatible with a project framework

    👷 Build System

    - Fixed an issue when -U in build_flags does not remove macro previously defined via -D flag (issue #2508)

    Infrastructure

    - Fixed numerous issues related to "UnicodeDecodeError" and international locales, or when project path contains non-ASCII chars (issue #143, issue #1342, issue #1959, issue #2100)

    Integration

    • Support custom CMake configuration for CLion IDE using CMakeListsUser.txt file
    • Fixed an issue with hardcoded C standard version when generating project for CLion IDE (issue #2527)
    • Fixed an issue with Project Generator when an include path search order is inconsistent to what passed to the compiler (issue #2509)

    - Fixed an issue when generating invalid "Eclipse CDT Cross GCC Built-in Compiler Settings" if a custom PLATFORMIO_CORE_DIR is used (issue #806)

    Miscellaneous

    • Deprecated --only-check PlatformIO Core CLI option for "update" sub-commands, please use --dry-run instead
    • Fixed "systemd-udevd" warnings in 99-platformio-udev.rules (issue #2442)
    • Fixed an issue when package cache (Library Manager) expires too fast (issue #2559)
  • v3.6.7 Changes

    April 23, 2019
    • PIO Unified Debugger: improved debugging in debug_load_mode = modified and fixed an issue with useless project rebuilding
    • ⚠ Project Generator: fixed a VSCode C/C++'s "Cannot find" warning when CPPPATH folder does not exist
    • 🛠 Fixed an "IndexError: list index out of range" for Arduino sketch preprocessor (issue #2268)
    • 🛠 Fixed an issue when invalid "env_default" in "platformio.ini" (Project Configuration File) results into unhandled errors (issue #2265)