Merge branch 'main' into dynamic_clients

This commit is contained in:
Ryan Richard 2022-09-15 12:00:41 -07:00
commit 7c247e9000
3 changed files with 15 additions and 10 deletions

View File

@ -30,11 +30,12 @@ goals. Priorities and requirements change based on community feedback, roadblock
etc. If you depend on a specific item, we encourage you to reach out for updated status information, or help us deliver
that feature by [contributing](https://github.com/vmware-tanzu/pinniped/blob/main/CONTRIBUTING.md) to Pinniped.
Last Updated: May 2022
Last Updated: Sept 2022
|Theme|Description|Timeline|
|--|--|--|
|Improving Security Posture|Support Audit logging of security events related to Authentication |May/June 2022|
|Improving Usability|Support for integrating with UI/Dashboards |May/June 2022|
|Improving Security Posture| Secrets Rotation and Management |Q3 2022|
|Improving Security Posture|Session Management |Q4 2022|
|Improving Security Posture|TLS hardening contd|Q4 2022|
|Improving Usability|Dynamic Oauth Client Support for integrating with UI/Dashboards |Sept/Oct 2022|
|Improving Usability|Support for custom claim mappings in OIDCIdentityProvider |Q4 2022|
|Improving Usability|Support for Multiple Identity Providers |Q4 2022|
|Improving Security Posture|Support Audit logging of security events related to Authentication |Q4 2022|
|Improving Security Posture|Session Management |2022/2023|
|Improving Security Posture|Secrets Rotation and Management |2022/2023|

View File

@ -7,8 +7,8 @@ params:
github_url: "https://github.com/vmware-tanzu/pinniped"
slack_url: "https://go.pinniped.dev/community/slack"
community_url: "https://go.pinniped.dev/community"
latest_version: v0.18.0
latest_codegen_version: 1.24
latest_version: v0.19.0
latest_codegen_version: 1.25
pygmentsCodefences: true
pygmentsStyle: "pygments"
markup:

View File

@ -33,7 +33,7 @@ To load completions for every new session, execute once:
#### macOS:
pinniped completion bash > /usr/local/etc/bash_completion.d/pinniped
pinniped completion bash > $(brew --prefix)/etc/bash_completion.d/pinniped
You will need to start a new shell for this setup to take effect.
@ -131,6 +131,10 @@ to enable it. You can execute the following once:
echo "autoload -U compinit; compinit" >> ~/.zshrc
To load completions in your current shell session:
source <(pinniped completion zsh); compdef _pinniped pinniped
To load completions for every new session, execute once:
#### Linux:
@ -139,7 +143,7 @@ To load completions for every new session, execute once:
#### macOS:
pinniped completion zsh > /usr/local/share/zsh/site-functions/_pinniped
pinniped completion zsh > $(brew --prefix)/share/zsh/site-functions/_pinniped
You will need to start a new shell for this setup to take effect.