Skip to content

update default opensearch version from 2.17 to 2.19 to align with AWS current version #943

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cache-dependency-path: package.json
- uses: ankane/setup-opensearch@v1
with:
opensearch-version: 2.17
opensearch-version: 2.19
- name: Upgrade npm
run: npm install -g npm@10
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Compression is enabled by default, can be disabled by setting
`ENABLE_RESPONSE_COMPRESSION` to `false`. If using post-hooks, you must update
to hooks to handle compression or disable compression.
- Update to default to OpenSearch 2.19

### Added

Expand Down
2 changes: 1 addition & 1 deletion compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
opensearch:
image: opensearchproject/opensearch:2.17.1
image: opensearchproject/opensearch:2.19.2
ports:
- "127.0.0.1:9200:9200"
- "127.0.0.1:9300:9300"
Expand Down
2 changes: 1 addition & 1 deletion serverless.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ resources:
InstanceCount: 1
DedicatedMasterEnabled: false
ZoneAwarenessEnabled: false
EngineVersion: OpenSearch_2.17
EngineVersion: OpenSearch_2.19
DomainEndpointOptions:
EnforceHTTPS: true
NodeToNodeEncryptionOptions:
Expand Down