Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

226,341

Downloads of v 1.9.0:

1,589

Last Update:

23 Nov 2021

Package Maintainer(s):

Software Author(s):

  • Mitchell Hashimoto
  • HashiCorp

Tags:

vault hashicorp

Vault

This is not the latest version of Vault available.

  • 1
  • 2
  • 3

1.9.0 | Updated: 23 Nov 2021

Downloads:

226,341

Downloads of v 1.9.0:

1,589

Maintainer(s):

Software Author(s):

  • Mitchell Hashimoto
  • HashiCorp

Vault 1.9.0

This is not the latest version of Vault available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Vault, run the following command from the command line or from PowerShell:

>

To upgrade Vault, run the following command from the command line or from PowerShell:

>

To uninstall Vault, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade vault -y --source="'INTERNAL REPO URL'" --version="'1.9.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade vault -y --source="'INTERNAL REPO URL'" --version="'1.9.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install vault
  win_chocolatey:
    name: vault
    version: '1.9.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'vault' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.9.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller vault
{
    Name     = "vault"
    Version  = "1.9.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'vault':
  ensure   => '1.9.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 23 Nov 2021.

Description

Vault is a tool for securely accessing secrets. A secret is anything that you want to tightly control access to, such as API keys, passwords, certificates, and more. Vault provides a unified interface to any secret, while providing tight access control and recording a detailed audit log.

A modern system requires access to a multitude of secrets: database credentials, API keys for external services, credentials for service-oriented architecture communication, etc. Understanding who is accessing what secrets is already very difficult and platform-specific. Adding on key rolling, secure storage, and detailed audit logs is almost impossible without a custom solution. This is where Vault steps in.

The key features of Vault are:

* Secure Secret Storage: Arbitrary key/value secrets can be stored in Vault. Vault encrypts these secrets prior to writing them to persistent storage, so gaining access to the raw storage isn't enough to access your secrets. Vault can write to disk, Consul, and more.
* Dynamic Secrets: Vault can generate secrets on-demand for some systems, such as AWS or SQL databases. For example, when an application needs to access an S3 bucket, it asks Vault for credentials, and Vault will generate an AWS keypair with valid permissions on demand. After creating these dynamic secrets, Vault will also automatically revoke them after the lease is up.
* Data Encryption: Vault can encrypt and decrypt data without storing it. This allows security teams to define encryption parameters and developers to store encrypted data in a location such as SQL without having to design their own encryption methods.
* Leasing and Renewal: All secrets in Vault have a lease associated with it. At the end of the lease, Vault will automatically revoke that secret. Clients are able to renew leases via built-in renew APIs.
* Revocation: Vault has built-in support for secret revocation. Vault can revoke not only single secrets, but a tree of secrets, for example all secrets read by a specific user, or all secrets of a particular type. Revocation assists in key rolling as well as locking down systems in the case of an intrusion.

For more information, see the introduction section of the Vault website.


tools\chocolateyInstall.ps1
$packageArgs = @{
  PackageName         = "vault"
  Url                 = "https://releases.hashicorp.com/vault/$($version)/vault_$($version)_windows_386.zip"
  UnzipLocation       = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
  Url64               = "https://releases.hashicorp.com/vault/$($version)/vault_$($version)_windows_amd64.zip"
  Checksum            = 'd9ac0b70bfc5153b1779934419cf7d20e3cdd724de5798e1adb7ba0d8deba98c'
  ChecksumType        = 'sha256'
  Checksum64          = 'ba10908b9f3962a4df787134d7bc6b6db250ba367263b41e03394b3c30b65059'
  version             = '1.9.0'  
}

Install-ChocolateyZipPackage @packageArgs

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Vault 1.16.1 2592 Friday, April 5, 2024 Approved
Vault 1.16.0 1381 Wednesday, March 27, 2024 Approved
Vault 1.15.6 4431 Friday, March 1, 2024 Approved
Vault 1.15.5 8012 Wednesday, January 31, 2024 Approved
Vault 1.15.4 21041 Wednesday, December 6, 2023 Approved
Vault 1.15.3 909 Friday, December 1, 2023 Approved
Vault 1.15.2 6039 Thursday, November 9, 2023 Approved
Vault 1.15.1 2967 Thursday, October 26, 2023 Approved
Vault 1.15.0 5333 Wednesday, September 27, 2023 Approved
Vault 1.14.3 2101 Thursday, September 14, 2023 Approved
Vault 1.14.2 1971 Wednesday, August 30, 2023 Approved
Vault 1.14.1 4140 Wednesday, July 26, 2023 Approved
Vault 1.14.0 4672 Wednesday, June 21, 2023 Approved
Vault 1.13.3 1590 Friday, June 9, 2023 Approved
Vault 1.13.2 12728 Thursday, April 27, 2023 Approved
Vault 1.13.1 4230 Thursday, March 30, 2023 Approved
Vault 1.13.0 1534 Tuesday, March 7, 2023 Approved
Vault 1.12.3 2128 Thursday, February 23, 2023 Approved
Vault 1.12.2 5951 Saturday, December 17, 2022 Approved
Vault 1.11.1 23653 Wednesday, July 27, 2022 Approved
Vault 1.11.0 2537 Tuesday, June 21, 2022 Approved
Vault 1.10.4 497 Friday, June 17, 2022 Approved
Vault 1.10.3 3321 Friday, May 13, 2022 Approved
Vault 1.10.2 52 Friday, May 13, 2022 Approved
Vault 1.10.1 1524 Monday, April 25, 2022 Approved
Vault 1.10.0 2316 Friday, March 25, 2022 Approved
Vault 1.9.4 1407 Wednesday, March 9, 2022 Approved
Vault 1.9.3 2328 Monday, January 31, 2022 Approved
Vault 1.9.2 1943 Wednesday, December 22, 2021 Approved
Vault 1.9.1 1089 Tuesday, December 14, 2021 Approved
Vault 1.9.0 1589 Tuesday, November 23, 2021 Approved
Vault 1.8.5 85 Tuesday, November 23, 2021 Approved
Vault 1.8.4 3106 Friday, October 8, 2021 Approved
Vault 1.8.3 674 Friday, October 1, 2021 Approved
Vault 1.8.2 672 Thursday, September 30, 2021 Approved
Vault 1.8.1 157 Thursday, September 30, 2021 Approved
Vault 1.8.0 3316 Thursday, July 29, 2021 Approved
Vault 1.7.3 2659 Thursday, June 17, 2021 Approved
Vault 1.7.2 1955 Friday, May 21, 2021 Approved
Vault 1.7.1 1546 Monday, April 26, 2021 Approved
Vault 1.7.0 1580 Tuesday, April 6, 2021 Approved
Vault 1.6.3 448 Thursday, March 25, 2021 Approved
Vault 1.6.2 4006 Monday, February 1, 2021 Approved
Vault 1.6.1 721 Thursday, January 21, 2021 Approved
Vault 1.5.5 5431 Friday, October 23, 2020 Approved
Vault 1.5.4 21872 Thursday, October 22, 2020 Approved
Vault 1.5.3 592 Thursday, October 22, 2020 Approved
Vault 1.5.2 2324 Wednesday, August 26, 2020 Approved
Vault 1.5.0 1670 Wednesday, July 22, 2020 Approved
Vault 1.4.3 894 Friday, July 3, 2020 Approved
Vault 1.4.1 1750 Monday, May 4, 2020 Approved
Vault 1.4.0 1388 Thursday, April 9, 2020 Approved
Vault 1.3.4 227 Wednesday, April 8, 2020 Approved
Vault 1.3.3 922 Monday, March 9, 2020 Approved
Vault 1.3.2 1488 Friday, January 24, 2020 Approved
Vault 1.3.1 1646 Friday, December 20, 2019 Approved
Vault 1.3.0 505 Wednesday, December 11, 2019 Approved
Vault 1.2.4 1029 Tuesday, November 12, 2019 Approved
Vault 1.2.3 3420 Monday, September 16, 2019 Approved
Vault 1.2.2 2363 Friday, August 16, 2019 Approved
Vault 1.2.1 176 Thursday, August 8, 2019 Approved
Vault 1.2.0 956 Wednesday, July 31, 2019 Approved
Vault 1.1.1 5070 Tuesday, April 16, 2019 Approved
Vault 1.1.0 1025 Tuesday, March 19, 2019 Approved
Vault 1.0.3 695 Friday, March 1, 2019 Approved
Vault 0.10.0 3127 Monday, April 16, 2018 Approved
Vault 0.10.0-rc1 310 Saturday, April 7, 2018 Approved
Vault 0.9.6 491 Saturday, April 7, 2018 Approved
Vault 0.9.5 276 Saturday, April 7, 2018 Approved
Vault 0.9.4 355 Saturday, April 7, 2018 Approved
Vault 0.9.3 300 Saturday, April 7, 2018 Approved
Vault 0.9.2 295 Saturday, April 7, 2018 Approved
Vault 0.9.1 1005 Saturday, January 13, 2018 Approved
Vault 0.9.0 368 Saturday, January 13, 2018 Approved
Vault 0.8.3 954 Wednesday, September 20, 2017 Approved
Vault 0.8.2 374 Wednesday, September 20, 2017 Approved
Vault 0.8.1 446 Thursday, August 24, 2017 Approved
Vault 0.8.0 444 Thursday, August 24, 2017 Approved
Vault 0.7.3 571 Thursday, June 8, 2017 Approved
Vault 0.7.2 418 Wednesday, June 7, 2017 Approved
Vault 0.7.1 389 Wednesday, June 7, 2017 Approved
Vault 0.7.0 409 Wednesday, June 7, 2017 Approved
Vault 0.6.5 924 Wednesday, February 8, 2017 Approved
Vault 0.6.4 534 Thursday, December 22, 2016 Approved
Vault 0.6.3 413 Wednesday, December 14, 2016 Approved
Vault 0.6.2 486 Tuesday, October 25, 2016 Approved
Vault 0.6.1 481 Tuesday, August 30, 2016 Approved

1.9.0

### November 17, 2021

CHANGES:

* auth/kubernetes: disable_iss_validation defaults to true. GH-12975
* expiration: VAULT_16_REVOKE_PERMITPOOL environment variable has been removed. GH-12888
* expiration: VAULT_LEASE_USE_LEGACY_REVOCATION_STRATEGY environment variable has
been removed. GH-12888
* go: Update go version to 1.17.2
* secrets/ssh: Roles with empty allowed_extensions will now forbid end-users
specifying extensions when requesting ssh key signing. Update roles setting
allowed_extensions to * to permit any extension to be specified by an end-user. GH-12847

FEATURES:

* Customizable HTTP Headers: Add support to define custom HTTP headers for root path (/) and also on API endpoints (/v1/*) GH-12485
* Deduplicate Token With Entities in Activity Log: Vault tokens without entities are now tracked with client IDs and deduplicated in the Activity Log GH-12820
* Elasticsearch Database UI: The UI now supports adding and editing Elasticsearch connections in the database secret engine. GH-12672
* KV Custom Metadata: Add ability in kv-v2 to specify version-agnostic custom key metadata via the
metadata endpoint. The data will be present in responses made to the data endpoint independent of the
calling token's read access to the metadata endpoint. GH-12907
* KV patch (Tech Preview): Add partial update support for the /mount/data/:path kv-v2
endpoint through HTTP PATCH. A new patch ACL capability has been added and
is required to make such requests. GH-12687
* Key Management Secrets Engine (Enterprise): Adds support for distributing and managing keys in GCP Cloud KMS.
* Local Auth Mount Entities (enterprise): Logins on local auth mounts will
generate identity entities for the tokens issued. The aliases of the entity
resulting from local auth mounts (local-aliases), will be scoped by the cluster.
This means that the local-aliases will never leave the geographical boundary of
the cluster where they were issued. This is something to be mindful about for
those who have implemented local auth mounts for complying with GDPR guidelines.
* Namespaces (Enterprise): Adds support for locking Vault API for particular namespaces.
* OIDC Identity Provider (Tech Preview): Adds support for Vault to be an OpenID Connect (OIDC) provider. GH-12932
* Oracle Database UI: The UI now supports adding and editing Oracle connections in the database secret engine. GH-12752
* Postgres Database UI: The UI now supports adding and editing Postgres connections in the database secret engine. GH-12945

IMPROVEMENTS:

* agent/cache: Process persistent cache leases in dependency order during restore to ensure child leases are always correctly restored GH-12843
* agent/cache: Use an in-process listener between consul-template and vault-agent when caching is enabled and either templates or a listener is defined GH-12762
* agent/cache: tolerate partial restore failure from persistent cache GH-12718
* agent/template: add support for new 'writeToFile' template function GH-12505
* api: Add configuration option for ensuring isolated read-after-write semantics for all Client requests. GH-12814
* api: adds native Login method to Go client module with different auth method interfaces to support easier authentication GH-12796
* api: Move mergeStates and other required utils from agent to api module GH-12731
* api: Support VAULT_HTTP_PROXY environment variable to allow overriding the Vault client's HTTP proxy GH-12582
* auth/approle: The role/:name/secret-id-accessor/lookup endpoint now returns a 404 status code when the secret_id_accessor cannot be found GH-12788
* auth/approle: expose secret_id_accessor as WrappedAccessor when creating wrapped secret-id. GH-12425
* auth/aws: add profile support for AWS credentials when using the AWS auth method GH-12621
* auth/kubernetes: validate JWT against the provided role on alias look ahead operations GH-12688
* auth/kubernetes: Add ability to configure entity alias names based on the serviceaccount's namespace and name. GH-12633
* auth/ldap: include support for an optional user filter field when searching for users GH-11000
* auth/oidc: Adds the skip_browser CLI option to allow users to skip opening the default browser during the authentication flow. GH-12876
* auth/okta: Send x-forwarded-for in Okta Push Factor request GH-12320
* auth/token: Add allowed_policies_glob and disallowed_policies_glob fields to token roles to allow glob matching of policies GH-7277
* cli: Operator diagnose now tests for missing or partial telemetry configurations. GH-12802
* cli: add new http option : -header which enable sending arbitrary headers with the cli GH-12508
* command: operator generate-root -decode: allow passing encoded token via stdin GH-12881
* core/token: Return the token_no_default_policy config on token role read if set GH-12565
* core: Add support for go-sockaddr templated addresses in config. GH-9109
* core: adds custom_metadata field for aliases GH-12502
* core: Update Oracle Cloud library to enable seal integration with the uk-gov-london-1 region GH-12724
* core: Update github.com/ulikunitz/xz to fix security vulnerability GHSA-25xm-hr59-7c27. GH-12253
* core: Upgrade github.com/gogo/protobuf GH-12255
* core: build with Go 1.17, and mitigate a breaking change they made that could impact how approle and ssh interpret IPs/CIDRs GH-12868
* core: observe the client counts broken down by namespace for partial month client count GH-12393
* db/cassandra: make the connect_timeout config option actually apply to connection timeouts, in addition to non-connection operations GH-12903
* identity/token: Only return keys from the .well-known/keys endpoint that are being used by roles to sign/verify tokens. GH-12780
* identity: fix issue where Cache-Control header causes stampede of requests for JWKS keys GH-12414
* physical/etcd: Upgrade etcd3 client to v3.5.0 and etcd2 to v2.305.0. GH-11980
* pki: adds signature_bits field to customize signature algorithm on CAs and certs signed by Vault GH-11245
* plugin: update the couchbase gocb version in the couchbase plugin GH-12483
* replication (enterprise): Add merkle.flushDirty.num_pages_outstanding metric which specifies number of
outstanding dirty pages that were not flushed. GH-2093
* sdk/framework: The '+' wildcard is now supported for parameterizing unauthenticated paths. GH-12668
* secrets/aws: Add conditional template that allows custom usernames for both STS and IAM cases GH-12185
* secrets/azure: Adds support for rotate-root. GH-13034
* secrets/azure: Adds support for using Microsoft Graph API since Azure Active Directory API is being removed in 2022. GH-12629
* secrets/database: Update MSSQL dependency github.com/denisenkom/go-mssqldb to v0.11.0 and include support for contained databases in MSSQL plugin GH-12839
* secrets/pki: Allow signing of self-issued certs with a different signature algorithm. GH-12514
* secrets/pki: Use entropy augmentation when available when generating root and intermediate CA key material. GH-12559
* secrets/pki: select appropriate signature algorithm for ECDSA signature on certificates. GH-11216
* secrets/pki: Support ed25519 as a key for the pki backend GH-11780
* secrets/rabbitmq: Update dependency github.com/michaelklishin/rabbit-hole to v2 and resolve UserInfo.tags regression from RabbitMQ v3.9 GH-12877
* secrets/ssh: Let allowed_users template mix templated and non-templated parts. GH-10886
* secrets/ssh: Use entropy augmentation when available for generation of the signing key. GH-12560
* serviceregistration: add external-source: "vault" metadata value for Consul registration. GH-12163
* storage/raft: Best-effort handling of cancelled contexts. GH-12162
* transform (enterprise): Add advanced features for encoding and decoding for Transform FPE
* transform (enterprise): Add a reference field to batch items, and propogate it to the response
* ui: Add KV secret search box when no metadata list access. GH-12626
* ui: Add custom metadata to KV secret engine and metadata to config GH-12169
* ui: Creates new StatText component GH-12295
* ui: client count monthly view GH-12554
* ui: creates bar chart component for displaying client count data by namespace GH-12437
* ui: Add creation time to KV 2 version history and version view GH-12663
* ui: Added resize for JSON editor GH-12906 GH-12906
* ui: Adds warning about white space in KV secret engine. GH-12921
* ui: Click to copy database static role last rotation value in tooltip GH-12890
* ui: Filter DB connection attributes so only relevant attrs POST to backend GH-12770
* ui: Removes empty rows from DB config views GH-12819
* ui: Standardizes toolbar presentation of destructive actions GH-12895
* ui: Updates font for table row value fields GH-12908
* ui: namespace search in client count views GH-12577
* ui: parse and display pki cert metadata GH-12541
* ui: replaces Vault's use of elazarl/go-bindata-assetfs in building the UI with Go's native Embed package GH-11208
* ui: updated client tracking config view GH-12422

DEPRECATIONS:

* auth/kubernetes: deprecate disable_iss_validation and issuer configuration fields GH-12975

BUG FIXES:

* activity log (enterprise): allow partial monthly client count to be accessed from namespaces GH-13086
* agent: Avoid possible unexpected fault address panic when using persistent cache. GH-12534
* api: Fixes storage APIs returning incorrect error when parsing responses GH-12338
* auth/aws: Fix ec2 auth on instances that have a cert in their PKCS7 signature GH-12519
* auth/aws: Fixes ec2 login no longer supporting DSA signature verification GH-12340
* auth/aws: fix config/rotate-root to store new key GH-12715
* auth/jwt: Fixes OIDC auth from the Vault UI when using form_post as the oidc_response_mode. GH-12265
* cli/api: Providing consistency for the use of comma separated parameters in auth/secret enable/tune GH-12126
* cli: fixes CLI requests when namespace is both provided as argument and part of the path GH-12720
* cli: fixes CLI requests when namespace is both provided as argument and part of the path GH-12911
* cli: vault debug now puts newlines after every captured log line. GH-12175
* core (enterprise): Allow deletion of stored licenses on DR secondary nodes
* core (enterprise): Disallow autogenerated licenses to be used in diagnose even when config is specified
* core (enterprise): Fix bug where password generation through password policies do not work on namespaces if performed outside a request callback or from an external plugin. GH-12635
* core (enterprise): Fix data race during perf standby sealing
* core (enterprise): Fixes reading raft auto-snapshot configuration from performance standby node GH-12317
* core (enterprise): Only delete quotas on primary cluster. GH-12339
* core (enterprise): namespace header included in responses, Go client uses it when displaying error messages GH-12196
* core/api: Fix an arm64 bug converting a negative int to an unsigned int GH-12372
* core/identity: Address a data race condition between local updates to aliases and invalidations GH-13093
* core/identity: Cleanup alias in the in-memory entity after an alias deletion by ID GH-12834
* core/identity: Disallow entity alias creation/update if a conflicting alias exists for the target entity and mount combination GH-12747
* core: Fix a deadlock on HA leadership transfer GH-12691
* core: Fix warnings logged on perf standbys re stored versions GH-13042
* core: fix byte printing for diagnose disk checks GH-12229
* core: revert some unintentionally downgraded dependencies from 1.9.0-rc1 GH-13168
* database/couchbase: change default template to truncate username at 128 characters GH-12301
* database/postgres: Update postgres library (github.com/lib/pq) to properly remove terminated TLS connections from the connection pool. GH-12413
* http (enterprise): Always forward internal/counters endpoints from perf standbys to active node
* http: removed unpublished true from logical_system path, making openapi spec consistent with documentation GH-12713
* identity/token: Adds missing call to unlock mutex in key deletion error handling GH-12916
* identity: Fail alias rename if the resulting (name,accessor) exists already GH-12473
* identity: Fix a panic on arm64 platform when doing identity I/O. GH-12371
* identity: Fix regression preventing startup when aliases were created pre-1.9. GH-13169
* identity: dedup from_entity_ids when merging two entities GH-10101
* identity: disallow creation of role without a key parameter GH-12208
* identity: do not allow a role's token_ttl to be longer than the signing key's verification_ttl GH-12151
* identity: merge associated entity groups when merging entities GH-10085
* identity: suppress duplicate policies on entities GH-12812
* kmip (enterprise): Fix handling of custom attributes when servicing GetAttributes requests
* kmip (enterprise): Fix handling of invalid role parameters within various vault api calls
* kmip (enterprise): Forward KMIP register operations to the active node
* license: ignore stored terminated license while autoloading is enabled GH-2104
* licensing (enterprise): Revert accidental inclusion of the TDE feature from the prem build.
* physical/raft: Fix safeio.Rename error when restoring snapshots on windows GH-12377
* pki: Fix regression preventing email addresses being used as a common name within certificates GH-12716
* plugin/couchbase: Fix an issue in which the locking patterns did not allow parallel requests. GH-13033
* plugin/snowflake: Fixed bug where plugin would crash on 32 bit systems GH-12378
* raft (enterprise): Fix panic when updating auto-snapshot config
* replication (enterprise): Fix issue where merkle.flushDirty.num_pages metric is not emitted if number
of dirty pages is 0. GH-2093
* replication (enterprise): Fix merkle.saveCheckpoint.num_dirty metric to accurately specify the number
of dirty pages in the merkle tree at time of checkpoint creation. GH-2093
* sdk/database: Fix a DeleteUser error message on the gRPC client. GH-12351
* secrets/db: Fix bug where Vault can rotate static role passwords early during start up under certain conditions. GH-12563
* secrets/gcp: Fixes a potential panic in the service account policy rollback for rolesets. GH-12379
* secrets/keymgmt (enterprise): Fix support for Azure Managed HSM Key Vault instances. GH-12934
* secrets/openldap: Fix bug where Vault can rotate static role passwords early during start up under certain conditions. GH-12600
* secrets/transit: Enforce minimum cache size for transit backend and init cache size on transit backend without restart. GH-12418
* storage/postgres: Update postgres library (github.com/lib/pq) to properly remove terminated TLS connections from the connection pool. GH-12413
* storage/raft (enterprise): Ensure that raft autosnapshot backoff retry duration never hits 0s
* storage/raft: Detect incomplete raft snapshots in api.RaftSnapshot(), and thereby in vault operator raft snapshot save. GH-12388
* storage/raft: Fix regression in 1.9.0-rc1 that changed how time is represented in Raft logs; this prevented using a raft db created pre-1.9. GH-13165
* storage/raft: Support addr_type=public_v6 in auto-join GH-12366
* transform (enterprise): Enforce minimum cache size for Transform backend and reset cache size without a restart
* transform (enterprise): Fix an error where the decode response of an expired token is an empty result rather than an error.
* ui: Adds pagination to auth methods list view GH-13054
* ui: Fix bug where capabilities check on secret-delete-menu was encoding the forward slashes. GH-12550
* ui: Fix bug where edit role form on auth method is invalid by default GH-12646
* ui: Fixed api explorer routing bug GH-12354
* ui: Fixed text overflow in flash messages GH-12357
* ui: Fixes issue with the number of PGP Key inputs not matching the key shares number in the initialization form on change GH-13038
* ui: Fixes metrics page when read on counter config not allowed GH-12348
* ui: Remove spinner after token renew GH-12887
* ui: Removes ability to tune token_type for token auth methods GH-12904
* ui: Show day of month instead of day of year in the expiration warning dialog GH-11984
* ui: fix issue where on MaskedInput on auth methods if tab it would clear the value. GH-12409
* ui: fix missing navbar items on login to namespace GH-12478
* ui: update bar chart when model changes GH-12622
* ui: updating database TTL picker help text. GH-12212

## Previous Releases
For more information on previous releases, check out the changelog on GitHub.


This package has no dependencies.

Discussion for the Vault Package

Ground Rules:

  • This discussion is only about Vault and the Vault package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Vault, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus