| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-12-24 | 6.0 kB | |
| v4.5.0 source code.tar.gz | 2025-12-24 | 3.9 MB | |
| v4.5.0 source code.zip | 2025-12-24 | 4.0 MB | |
| Totals: 3 Items | 7.9 MB | 0 | |
Use atmos for readme generation @goruha (#978)
## what * Use atmos for readme generation ## why * Use atmos to generate readme instead of build-harness🚀 Enhancements
fix: `codespell` typo fixes, replace unsafe array assignments, quote variable expansions to prevent globbing @RoseSecurity (#980)
## what > [!NOTE] > All modifications are non-functional improvements focused on reliability and security - Codespell typo fixes - Improve shell script quality and security by fixing unquoted variables and unsafe array splitting patterns identified by ShellCheck - Replace unsafe array assignment patterns like `array=($(command))` with the more robust `mapfile -t array < <(command)` syntax - Quote all variable expansions to prevent word splitting and globbing - Fix command substitutions that could break with special characters. ## why - Improve the reliability and security of Geodesic ## references - [Shellcheck](https://www.shellcheck.net/)Add Atmos auth integration to Geodesic @osterman (#979)
## Summary This PR integrates Atmos authentication support into Geodesic by: - Mounting Atmos-specific directories (`.cache/atmos` and `.local/share/atmos`) when they exist on the host - Configuring Atmos XDG environment variables for proper credential and cache storage - Adding a new `use-identity` helper function for seamless Atmos auth workflow ## Changes ### 1. Wrapper Script (wrapper-body.sh) - Added conditional mounting of `.cache/atmos` and `.local/share/atmos` directories - Only mounts directories if they exist on the host to avoid unnecessary overhead - Enables persistent SSO token caching and keyring storage across Geodesic sessions ### 2. Atmos Configuration (atmos.sh) - Export `ATMOS_XDG_CONFIG_HOME`, `ATMOS_XDG_DATA_HOME`, and `ATMOS_XDG_CACHE_HOME` environment variables - These direct Atmos to use the container's home directory paths that are mounted from the host ### 3. New `use-identity` Function - Added in atmos.sh as a general-purpose function (not AWS-specific) - Usage: `use-identity [identity-name]` - `use-identity` alone brings up the interactive identity selector - `use-identity my-identity` directly authenticates with that identity using `--identity=my-identity` syntax - Integrates with AWS prompt refresh when available (checks for `export_current_aws_role`) ## Test Plan - [ ] Verify Atmos auth directories are mounted when present - [ ] Test `use-identity` with no arguments (should show selector) - [ ] Test `use-identity my-identity` (should authenticate directly) - [ ] Verify SSO tokens persist across Geodesic sessions - [ ] Verify keyring data persists across Geodesic sessions - [ ] Confirm existing `assume-role` workflows still work - [ ] Test with Geodesic container that has Atmos installed🧰 Included Tools
fix: `codespell` typo fixes, replace unsafe array assignments, quote variable expansions to prevent globbing @RoseSecurity (#980)
## what > [!NOTE] > All modifications are non-functional improvements focused on reliability and security - Codespell typo fixes - Improve shell script quality and security by fixing unquoted variables and unsafe array splitting patterns identified by ShellCheck - Replace unsafe array assignment patterns like `array=($(command))` with the more robust `mapfile -t array < <(command)` syntax - Quote all variable expansions to prevent word splitting and globbing - Fix command substitutions that could break with special characters. ## why - Improve the reliability and security of Geodesic ## references - [Shellcheck](https://www.shellcheck.net/)Add Atmos auth integration to Geodesic @osterman (#979)
## Summary This PR integrates Atmos authentication support into Geodesic by: - Mounting Atmos-specific directories (`.cache/atmos` and `.local/share/atmos`) when they exist on the host - Configuring Atmos XDG environment variables for proper credential and cache storage - Adding a new `use-identity` helper function for seamless Atmos auth workflow ## Changes ### 1. Wrapper Script (wrapper-body.sh) - Added conditional mounting of `.cache/atmos` and `.local/share/atmos` directories - Only mounts directories if they exist on the host to avoid unnecessary overhead - Enables persistent SSO token caching and keyring storage across Geodesic sessions ### 2. Atmos Configuration (atmos.sh) - Export `ATMOS_XDG_CONFIG_HOME`, `ATMOS_XDG_DATA_HOME`, and `ATMOS_XDG_CACHE_HOME` environment variables - These direct Atmos to use the container's home directory paths that are mounted from the host ### 3. New `use-identity` Function - Added in atmos.sh as a general-purpose function (not AWS-specific) - Usage: `use-identity [identity-name]` - `use-identity` alone brings up the interactive identity selector - `use-identity my-identity` directly authenticates with that identity using `--identity=my-identity` syntax - Integrates with AWS prompt refresh when available (checks for `export_current_aws_role`) ## Test Plan - [ ] Verify Atmos auth directories are mounted when present - [ ] Test `use-identity` with no arguments (should show selector) - [ ] Test `use-identity my-identity` (should authenticate directly) - [ ] Verify SSO tokens persist across Geodesic sessions - [ ] Verify keyring data persists across Geodesic sessions - [ ] Confirm existing `assume-role` workflows still work - [ ] Test with Geodesic container that has Atmos installedFootnote
In every release, we update all unpinned packages to their latest packaged versions. These changes are not detailed here.