Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hashicorp/vault
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.8.2
Choose a base ref
...
head repository: hashicorp/vault
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.8.3
Choose a head ref
  • 17 commits
  • 63 files changed
  • 13 contributors

Commits on Aug 26, 2021

  1. changelog++

    mladlow authored Aug 26, 2021
    Configuration menu
    Copy the full SHA
    cba3164 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2021

  1. Configuration menu
    Copy the full SHA
    60ea8ea View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2021

  1. Backport 1.8.x: UI: Show day of month instead of day of year in the e…

    …xpiration warning dialog (#11984) (#12488)
    
    * Show day of month instead of day of year in expiration warning dialog
    
    * Adding changelog
    
    Co-authored-by: Robert Balent <robert@balent.ca>
    hashishaw and balent authored Sep 3, 2021
    Configuration menu
    Copy the full SHA
    8a34527 View commit details
    Browse the repository at this point in the history
  2. UI: Fix missing nav links on namespace login (#12478) (#12489)

    * Override loading behavior which breaks query params passed to API calls
    
    * Only show loading state if transition is not queryparams only
    
    * Add changelog
    
    * Skip loader if testing
    hashishaw authored Sep 3, 2021
    Configuration menu
    Copy the full SHA
    899c405 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2021

  1. Configuration menu
    Copy the full SHA
    d26fbf1 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2021

  1. Backport 1.8: vault-agent: copy values retrieved from bolt (#12534) (#…

    …12539)
    
    Byte slices returned from Bolt are only valid during a transaction, so
    this makes a copy.
    
    Co-authored-by: Tom Proctor <tomhjp@users.noreply.github.com>
    tvoran and tomhjp authored Sep 13, 2021
    Configuration menu
    Copy the full SHA
    e99970b View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2021

  1. Bug fix: allow forward slash in paths for delete menu (#12550) (#12552)

    * fix bug and add test coverage
    
    * changelog
    Monkeychip authored Sep 14, 2021
    Configuration menu
    Copy the full SHA
    bca408c View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2021

  1. Allow signing self issued certs with a different public key algorithm. (

    #12514) (#12548)
    
    * WIP: Unset the certificate's SignatureAlgorithm to allown cross-signing of different key types
    
    * Allow signing self issued certs with a different public key algorithm
    
    * Remove cruft
    
    * Remove stale import
    
    * changelog
    
    * eliminate errwrap
    
    * Add a test to cover the lack of opt-in flag
    
    * Better comment
    
    Co-authored-by: catsby <clint@ctshryock.com>
    
    Co-authored-by: catsby <clint@ctshryock.com>
    sgmiller and catsby authored Sep 15, 2021
    Configuration menu
    Copy the full SHA
    efcd68f View commit details
    Browse the repository at this point in the history
  2. Enforce minimum cache size for transit backend (#12418) (#12551)

    * Enforce Minimum cache size for transit backend
    
    * enfore minimum cache size and log a warning during backend construction
    
    * Update documentation for transit backend cache configuration
    
    * Added changelog
    
    * Addressed review feedback and added unit test
    
    * Modify code in pathCacheConfigWrite to make use of the updated cache size
    
    * Updated code to refresh cache size on transit backend without restart
    
    * Update code to acquire read and write locks appropriately
    divyapola5 authored Sep 15, 2021
    Configuration menu
    Copy the full SHA
    5cc3349 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2021

  1. Configuration menu
    Copy the full SHA
    ee83ef7 View commit details
    Browse the repository at this point in the history
  2. dep: update vault-plugin-secrets-openldap to v0.5.2 (#12599)

    * dep: update vault-plugin-secrets-openldap to v0.5.2
    
    * add changelog entry
    calvn authored Sep 21, 2021
    Configuration menu
    Copy the full SHA
    b0a3fec View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2021

  1. Port: Premature Rotation For autorotate (#12563) (#12606)

    * port of ldap fix for early cred rotation
    
    * some more porting
    
    * another couple lines to port
    
    * final commits before report
    
    * remove deadlock
    
    * needs testing
    
    * updates
    
    * Sync with OpenLDAP PR
    
    * Update the update error handling for items not found in the queue
    
    * WIP unit tests
    * Need to configure DB mount correctly, with db type mockv5
    * Need to find a way to inject errors into that mock db
    
    * throw error on role creation failure
    
    * do not swallow error on role creation
    
    * comment out wip tests and add in a test for disallowed role
    
    * Use newly generated password in WAL
    
    Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>
    
    * return err on popFromRotationQueueByKey error; cleanup on setStaticAccount
    
    * test: fix TestPlugin_lifecycle
    
    * Uncomment and fix unit tests
    * Use mock database plugin to inject errors
    * Tidy test code to rely less on code internals where possible
    * Some stronger test assertions
    
    * Undo logging updates
    
    * Add changelog
    
    * Remove ticker and background threads from WAL tests
    
    * Keep pre-existing API behaviour of allowing update static role to act as a create
    
    * Switch test back to update operation
    
    * Revert my revert, and fix some test bugs
    
    * Fix TestBackend_StaticRole_LockRegression
    
    * clean up defer on TestPlugin_lifecycle
    
    * unwrap reqs on cleanup
    
    * setStaticAccount: don't hold a write lock
    
    * TestStoredWALsCorrectlyProcessed: set replication state to unknown
    
    Co-authored-by: Tom Proctor <tomhjp@users.noreply.github.com>
    Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>
    Co-authored-by: Calvin Leung Huang <1883212+calvn@users.noreply.github.com>
    
    Co-authored-by: Hridoy Roy <roy@hashicorp.com>
    Co-authored-by: Tom Proctor <tomhjp@users.noreply.github.com>
    Co-authored-by: Michael Golowka <72365+pcman312@users.noreply.github.com>
    4 people authored Sep 22, 2021
    Configuration menu
    Copy the full SHA
    bf52bf3 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2021

  1. test: pin docker image on postgres to 13.4-buster (#12636) (#12642)

    * test: pin docker image on postgres to 13.4-buster
    
    * test: update all tests that uses postgres image to use 13.4-buster
    
    Co-authored-by: Calvin Leung Huang <1883212+calvn@users.noreply.github.com>
    tomhjp and calvn authored Sep 27, 2021
    Configuration menu
    Copy the full SHA
    0fd0699 View commit details
    Browse the repository at this point in the history
  2. core: set namespace within GeneratePasswordFromPolicy (#12635) (#12649)

    * core: set namespace from the sysview's mount entry on GeneratePasswordFromPolicy
    
    * test: update TestDynamicSystemView to be ns-aware, update tests
    
    * add changelog entry
    calvn authored Sep 27, 2021
    Configuration menu
    Copy the full SHA
    2d8e2d3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    193e27e View commit details
    Browse the repository at this point in the history
  4. SDK bump for 1.8.3 (#12656)

    mladlow authored Sep 27, 2021
    Configuration menu
    Copy the full SHA
    c3a48b1 View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2021

  1. Add missing read unlock calls in transit backend code (#12652) (#12662)

    * Add missing read unlock calls in transit backend code
    
    * Correct formatting in changelog entry
    divyapola5 authored Sep 28, 2021
    Configuration menu
    Copy the full SHA
    73e85c3 View commit details
    Browse the repository at this point in the history
Loading