1. 07 Dec, 2020 1 commit
  2. 05 Dec, 2020 1 commit
  3. 04 Dec, 2020 3 commits
  4. 03 Dec, 2020 1 commit
  5. 02 Dec, 2020 1 commit
    • Marc Cornellà's avatar
      fix(updater): fix ignored variable name in read · 3f8af040
      Marc Cornellà authored
      I used _ which is a convention in other languages, but in shell scripting
      $_ is a special variable set by the shell, and in Zsh versions older than
      5.0.6 it complains for being a `read-only variable`.
      
      Fixes #9482
      3f8af040
  6. 01 Dec, 2020 1 commit
  7. 30 Nov, 2020 4 commits
  8. 26 Nov, 2020 1 commit
  9. 25 Nov, 2020 1 commit
  10. 22 Nov, 2020 1 commit
  11. 20 Nov, 2020 2 commits
  12. 19 Nov, 2020 2 commits
  13. 12 Nov, 2020 2 commits
  14. 11 Nov, 2020 2 commits
  15. 10 Nov, 2020 3 commits
  16. 09 Nov, 2020 4 commits
  17. 04 Nov, 2020 1 commit
    • Maksym's avatar
      fix(aws): support MFA for profiles without role to assume (#9411) · 3e6ee85a
      Maksym authored
      Previously, the plugin only supported MFA for profiles that had a role to assume, specified in role_arn. Now, the plugin supports MFA for profiles without a role to assume.
      
      Closes #9408
      
      * refactor(aws plugin): remove dependency on jq
      
      Previously, acp command relied on jq. Now that dependency has been removed, as well as some linter suggestions implemented.
      3e6ee85a
  18. 29 Oct, 2020 4 commits
  19. 28 Oct, 2020 1 commit
  20. 27 Oct, 2020 2 commits
  21. 24 Oct, 2020 2 commits
    • Maksym's avatar
      aws: add role delegation and MFA support as per IAM Best Practices (#8419) · fcb6fa78
      Maksym authored
      * Added role delegation support and MFA support as per IAM Best Practices
      
      * fix: grep with color enabled breaks profile parsing
      
      * fix: compatible with MacOS basic sed
      
      * docs: Added jq as a dependency
      
      * feat: added variable session duration, if the role to be assumed permits it.
      
      * bug: incorrect assigment for session length
      
      * fix: profile extraction failed with some versions of sed
      
      Fixed the issue that resulted from merging upstream changes to allow "." in the profile name
      
      * fix: broken profile parsing when profile name contains "@"
      fcb6fa78
    • Felipe Contreras's avatar
      gitfast: improve command aliases (#9385) · 66f9fdab
      Felipe Contreras authored
      
      
      So that compdefs with dashes work as well as underscores:
      
        compdef _git gc=git_commit
      
      Or:
      
        compdef _git gc=git-commit
      
      The official Zsh Git completion uses dashes, and this way people don't
      have to change their existing definitions.
      Signed-off-by: default avatarFelipe Contreras <felipe.contreras@gmail.com>
      66f9fdab