95e6723aa9
* default max page size for config * Add changelog * update test int to *int * add testing defaults * update default to -1, i.e. dont paginate * update test * Add error message for invalid search * Make 0 the default * cleanup * Add to known issues doc * Update website/content/docs/upgrading/upgrade-to-1.13.x.mdx * Update website/content/docs/upgrading/upgrade-to-1.11.x.mdx Co-authored-by: Jason O'Donnell <2160810+jasonodonnell@users.noreply.github.com> * Update website/content/docs/upgrading/upgrade-to-1.13.x.mdx Co-authored-by: Jason O'Donnell <2160810+jasonodonnell@users.noreply.github.com> * Update website/content/docs/upgrading/upgrade-to-1.12.x.mdx Co-authored-by: Jason O'Donnell <2160810+jasonodonnell@users.noreply.github.com> * Add workaround to docs * Update changelog/20453.txt Co-authored-by: Austin Gebauer <34121980+austingebauer@users.noreply.github.com> --------- Co-authored-by: Jason O'Donnell <2160810+jasonodonnell@users.noreply.github.com> Co-authored-by: Austin Gebauer <34121980+austingebauer@users.noreply.github.com>
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: Upgrading to Vault 1.11.x - Guides
|
|
description: |-
|
|
This page contains the list of deprecations and important or breaking changes
|
|
for Vault 1.11.x. Please read it carefully.
|
|
---
|
|
|
|
# Overview
|
|
|
|
This page contains the list of deprecations and important or breaking changes
|
|
for Vault 1.11.x compared to 1.10. Please read it carefully.
|
|
|
|
## Elasticsearch Database Secrets Engine
|
|
|
|
The Elaticsearch Database Secrets Engine now uses the new `/_security` base API
|
|
path instead of `/_xpack/security` when managing Elasticsearch. If users are on
|
|
an Elasticsearch version prior to 6, they will need to switch back to the old
|
|
API path by setting the [bool config option](/vault/api-docs/secret/databases/elasticdb#use_old_xpack)
|
|
`use_old_xpack=true`.
|
|
|
|
## Changes
|
|
|
|
@include 'pgx-params.mdx'
|
|
|
|
## Known Issues
|
|
|
|
@include 'raft-retry-join-failure.mdx'
|
|
|
|
@include 'tokenization-rotation-persistence.mdx'
|
|
|
|
### LDAP Pagination Issue
|
|
|
|
There was a regression introduced in 1.11.10 relating to LDAP maximum page sizes, resulting in
|
|
an error `no LDAP groups found in groupDN [...] only policies from locally-defined groups available`. The issue
|
|
occurs when upgrading Vault with an instance that has an existing LDAP Auth configuration.
|
|
|
|
As a workaround, disable paged searching using the following:
|
|
```shell-session
|
|
vault write auth/ldap/config max_page_size=-1
|
|
```
|
|
|
|
#### Impacted Versions
|
|
|
|
Affects Vault 1.11.10.
|