v1.128.0
cloudposse-releaser
released this
17 Dec 03:32
·
12 commits
to refs/heads/main
since this release
Replace `path.Join` with `filepath.Join` @samtholiya (#856)
what
- Replaced all instances of
path.Join
withfilepath.Join
in the codebase - Updated imports to use the
path/filepath
package instead ofpath
why
- Cross-platform compatibility:
path.Join
does not respect platform-specific path separators, causing potential issues on non-Unix systems (e.g. Windows) - Correct usage:
filepath.Join
is designed for working with filesystem paths, ensuring semantic correctness - Ensures the codebase adheres to Go best practices for handling file paths.