Skip to content

Latest commit

 

History

History
200 lines (127 loc) · 5.57 KB

File metadata and controls

200 lines (127 loc) · 5.57 KB

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

5.0.1 - 2026-03-27

Changed

  • Remove upper boundary on platform version for optimistic compatibility with future releases
  • Migrate from Gradle 8 to Gradle 9

5.0.0 - 2026-01-26

Changed

  • Upgraded Gradle IntelliJ plugin to v2
  • Updated platform version from 2022.2 to 2022.3 as it's the minimum version for v2 of the Gradle IntelliJ plugin
  • Fixed an issue where environment variables weren't applied on Java and Kotlin projects in 2025.2+
  • Bumped minimum version from 2022.2 to 2024.3
  • Updated Gradle wrapper from 8.5 to 8.14.3
  • Bumped Java version from 17 to 21

4.0.0 - 2026-01-15

Changed

  • Updated Gradle plugin from 1.9.0 to 1.17.4
  • Updated platform version from 2022.2 to 2024.1
  • Extended IDE compatibility range to support versions 241-253.* (2024.1 through 2025.3.x)
  • Upgraded Gradle wrapper from 7.5.1 to 8.5

Fixed

  • Compatibility with IntelliJ IDEA 2025.x versions (#248)

3.4.2 - 2023-12-25

Fixed

  • Bump org.apache.commons:commons-text to `1.10.0'

3.4.1 - 2022-10-04

Fixed

  • Plugin affecting env vars even when disabled

3.4.0 - 2022-10-03

Added

  • When environment variables file is executed, it now receives all environment variables accumulated by previous entries
  • Log stderr from execution of environment variables files into IDE event console

3.3.0 - 2022-10-02

Added

  • Multi-line variable support in .env files (#127) - special thanks to @ledoyen
  • Ignore for export prefix in .env files
  • Include parent environment variables (when enabled) into environment substitution (#165) - special thanks to @jansorg
  • An option to execute file and parse content from standard output

Fixed

  • Incompatibility with IDEA 2022.2 (#151) - special thanks to @HassanAbouelela
  • Experimental features checkbox is properly enabled/disabled when plugin is enabled/disabled

3.2.2 - 2021-09-02

Fixed

  • Incompatibility with IDEA 2021 (#151) - special thanks to @tosmun for contribution

3.2.1 - 2020-03-30

Fixed

  • Incompatibility with IDEA 2020 (#38) - special thanks to @pilzm for contribution

3.2.0 - 2019-05-24

Added

  • Experimental integration for external system run configurations (such as Gradle) (#38)

3.1.2 - 2019-05-21

Fixed

  • Try to recover from AssertionError: Already disposed: Project, reported via email and in ([#83])

3.1.1 - 2019-04-24

Fixed

  • Substitute parent process env vars in IDEA - wasn't working before (#81)

3.1.0 - 2018-11-28

Added

  • EnvFile can substitute Jet Brains path macro references (#70)
  • Add an option to ignore missing files (#72)

3.0.1 - 2018-10-15

Fixed

  • Fix language support announcement

3.0.0 - 2018-10-11

Added

  • Gradle build system support (#68)
  • Automatic versioning from git tags (#68)
  • Integration with Goland (#67)
  • Announce support for .env file extension
  • Run Configuration defined environment variables are now displayed in EnvFile tab as individual entry
  • Optional environment variable substitution (#16) using StringSubstitutor

Fixed

  • Unicode sequence handling in .env files [(#32)]
  • Backslash being removed from values in .env files (#52)
  • White text on white background when Light theme is used (#61)

Changed

  • Core API extension envfileParser replaced with envFileProvider
  • Shorten path to relative for files within project dir

2.1.0 - 2017-03-14

Added

  • File paths can be edited manually with double-click
  • Display 5 most recently used files within current IDE session

Fixed

  • Environment variables are not set in IDEA

2.0.0 - 2017-01-16

Added

  • Integration with IDEA
  • Integration with RubyMine
  • Support for multiple files

Changed

  • The .env parser now strips trailing " and '
  • UI is moved to a separate tab
  • API for extension point envfileParser
  • The way how plugin settings saved into project definition

Removed

  • Extension point envfileFormat

1.0.1 - 2016-05-09

Fixed

  • UI components overlap with multiple projects opened within same window

Changed

1.0.0 - 2015-07-18

Added

  • Added support for .env file format
  • Added support for YAML dictionary format
  • Added support for JSON dictionary format (handled by YAML parser)
  • Initial Release