Skip to content

Commit 4a39db9

Browse files
authored
Merge pull request #49 from dotenv-linter/v320
Release v3.2.0
2 parents 4a9471c + b917020 commit 4a39db9

File tree

4 files changed

+47
-2
lines changed

4 files changed

+47
-2
lines changed
344 KB
Loading

docs/_sidebar.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
* [👨‍💻Installation](installation.md)
33

44
* 🎉What's new?
5-
* [v3.1.1 (latest)](whats_new/v311.md)
5+
* [v3.2.0 (latest)](whats_new/v320.md)
6+
* [v3.1.1](whats_new/v311.md)
67
* [v3.1.0](whats_new/v310.md)
78
* [v3.0.0](whats_new/v300.md)
89
* [v2.2.1](whats_new/v221.md)

docs/whats_new/v311.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# What's new in v3.1.1 (latest)?
1+
# What's new in v3.1.1?
22

33
### Support architecture `ARM` for macOS, Linux and Windows 🚀
44

docs/whats_new/v320.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# What's new in v3.2.0 (latest)?
2+
3+
Here's an overview of the key changes included in this release.
4+
5+
### 1. Support for multi-line values 🔥
6+
7+
Previously, `dotenv-linter` only supported multi-line values, separated by `\n`:
8+
9+
```
10+
# .env
11+
MULTILINE="new\nline"
12+
```
13+
14+
In the new version, we added full support for multi-line values:
15+
16+
```
17+
# .env
18+
MULTILINE="{
19+
'key': 'value'
20+
}"
21+
```
22+
23+
PR: [#450](https://github.com/dotenv-linter/action-dotenv-linter/pull/450), [#453](https://github.com/dotenv-linter/action-dotenv-linter/pull/453) ([@DDtKey](https://github.com/DDtKey))
24+
25+
### 2. Check for updates 🆕
26+
27+
Now `dotenv-Linter` will check the availability of a new version once a day.<br/>
28+
If the new version is available, then `dotenv-Linter` will display this message:
29+
30+
<img width="714" alt="colored_output" src="_assets/docs/whats_new/v320/check_for_updates.png">
31+
32+
You can disable checking for updates using the `--not-check-updates` flag.
33+
34+
PR: [#454](https://github.com/dotenv-linter/action-dotenv-linter/pull/454) ([@mgrachev](https://github.com/mgrachev))
35+
36+
These are all the key changes that are included in the new [v3.2.0](https://github.com/dotenv-linter/dotenv-linter/releases/tag/v3.2.0) release.<br/>
37+
Thanks to everyone who contributed 🙏
38+
39+
---
40+
41+
How you can support the project 😉
42+
* Star on [GitHub](https://github.com/dotenv-linter/dotenv-linter) ⭐️
43+
* Become a sponsor on [GitHub Sponsors](https://github.com/sponsors/dotenv-linter) or [OpenCollective](https://opencollective.com/dotenv-linter) ❤️
44+
* Contribute to the [dotenv-linter](https://github.com/dotenv-linter/dotenv-linter/blob/master/CONTRIBUTING.md) ⚙️

0 commit comments

Comments
 (0)