Skip to content

Commit

Permalink
Bump minimum supported stack version to 7.17
Browse files Browse the repository at this point in the history
  • Loading branch information
girodav committed Nov 27, 2023
1 parent 40d447a commit 1f62369
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/en/aws-elastic-serverless-forwarder.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

The Elastic Serverless Forwarder is an Amazon Web Services ({aws}) Lambda function that ships logs from your {aws} environment to Elastic.

The Elastic Serverless Forwarder works with {stack} 7.16 and later.
The Elastic Serverless Forwarder works with {stack} 7.17 and later.

IMPORTANT: Using Elastic Serverless Forwarder may result in additional charges. To learn
how to minimize additional charges, refer to <<preventing-unexpected-costs>>.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
elastic-apm==6.19.0
boto3==1.29.7
ecs_logging==2.1.0
elasticsearch==7.16.3
elasticsearch==7.17.9
PyYAML==6.0.1
aws_lambda_typing==2.18.0
ujson==5.8.0
Expand Down
2 changes: 1 addition & 1 deletion tests/handlers/aws/test_integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def setUpClass(cls) -> None:

lsc = LocalStackContainer(image="localstack/localstack:1.4.0")
lsc.with_env("EAGER_SERVICE_LOADING", "1")
lsc.with_services("kinesis", "logs", "s3", "sqs", "secretsmanager")
lsc.with_services("kinesis", "logs", "s3", "sqs", "secretsmanager", "ec2")
cls.localstack = lsc.start()

session = boto3.Session(region_name=_AWS_REGION)
Expand Down
2 changes: 1 addition & 1 deletion tests/testcontainers/es.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ElasticsearchContainer(DockerContainer): # type: ignore
"""

_DEFAULT_IMAGE = "docker.elastic.co/elasticsearch/elasticsearch"
_DEFAULT_VERSION = "7.16.3"
_DEFAULT_VERSION = "7.17.9"
_DEFAULT_PORT = 9200
_DEFAULT_USERNAME = DEFAULT_USERNAME
_DEFAULT_PASSWORD = DEFAULT_PASSWORD
Expand Down
2 changes: 1 addition & 1 deletion tests/testcontainers/logstash.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class LogstashContainer(DockerContainer): # type: ignore
"""

_DEFAULT_IMAGE = "docker.elastic.co/logstash/logstash"
_DEFAULT_VERSION = "7.16.0"
_DEFAULT_VERSION = "7.17.0"
_DEFAULT_PORT = 5044
_DEFAULT_API_PORT = 9600
_DEFAULT_USERNAME = "USERNAME"
Expand Down

0 comments on commit 1f62369

Please sign in to comment.