Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ ENV/
htmlcov/
.coverage
.coverage.*
coverage.xml
.pytest_cache/
.tox/
.hypothesis/
generated_envs/
generated_envs_2/
**/generated_envs/
**/generated_envs_2/
**/generated_envs_*/

# IDEs
.vscode/
Expand Down
6 changes: 6 additions & 0 deletions changelogs/2026-01-29_18-43-51.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## [Unreleased]

### Changed
- Enhanced the parsing of environment variable secrets (`env` format) within the `parse_all_in_one_secret` function. The updated parser now robustly handles multi-line values, correctly strips comment lines, and properly manages values enclosed in single or double quotes, improving reliability when processing complex environment variable strings.
6 changes: 6 additions & 0 deletions changelogs/2026-01-29_18-44-07.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## [Unreleased]

### Changed
- Enhanced environment variable parsing for `env` format secrets within the `parse_all_in_one_secret` function. The parser now accurately handles multi-line values, correctly strips leading/trailing quotes from string values, and properly ignores comment lines, leading to more robust extraction of environment variables from various input formats.
6 changes: 6 additions & 0 deletions changelogs/2026-01-29_18-50-28.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## [Unreleased]

### Changed
- Enhanced environment variable parsing for `env` format secrets within the `parse_all_in_one_secret` function. The parser now robustly handles multi-line values, correctly ignores comment lines, and accurately strips leading/trailing quotes from string values, improving reliability when processing complex environment variable strings.
Loading