-
-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: correctly expand default bash env syntax #1915
Conversation
Signed-off-by: Valery Piashchynski <[email protected]>
WalkthroughThis update primarily enhances the handling of environment variables and configuration in a Go-based RPC client, improves linting settings, and updates dependencies. The changes introduce new utility functions for better variable parsing and expansion, streamline the linting process by removing certain linters, and upgrade the versions of the linting action and Go itself. Changes
Assessment against linked issues
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files ignored due to path filters (2)
go.mod
is excluded by!**/*.mod
go.sum
is excluded by!**/*.sum
Files selected for processing (3)
- .github/workflows/tests.yml (1 hunks)
- .golangci.yml (2 hunks)
- internal/rpc/client.go (3 hunks)
Files skipped from review due to trivial changes (1)
- .golangci.yml
Additional comments not posted (3)
.github/workflows/tests.yml (1)
42-44
: Update to[email protected]
and versionv1.58
appears correctly implemented.Ensure that the new linter version does not introduce any breaking changes or new linter errors that could affect the build.
internal/rpc/client.go (2)
21-22
: Introduction ofenvDefault
constant for handling default environment variables.This change supports the new functionality for default value handling in environment variable expansion.
189-216
: Enhancements toexpandEnvViper
function to handle different types of values.The modifications support expanded functionality for environment variable handling in configurations, including strings and arrays of strings.
Ensure thorough testing to confirm that all supported value types are correctly handled and that no regressions have occurred in configuration parsing.
Reason for This PR
closes: #1914
Description of Changes
License Acceptance
By submitting this pull request, I confirm that my contribution is made under the terms of the MIT license.
PR Checklist
[Author TODO: Meet these criteria.]
[Reviewer TODO: Verify that these criteria are met. Request changes if not]
git commit -s
).CHANGELOG.md
.Summary by CodeRabbit