Skip to content

Commit 87f429a

Browse files
authored
fix: fixing CVE-2025-53643
fix: fixing CVE-2025-53643
2 parents a8a23b3 + 839cbd9 commit 87f429a

File tree

6 files changed

+2302
-1889
lines changed

6 files changed

+2302
-1889
lines changed

.github/workflows/pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
python-version: ["3.11"]
10-
poetry-version: ["1.4"]
10+
poetry-version: ["1.8.3"]
1111
os: [ubuntu-22.04]
1212
runs-on: ${{ matrix.os }}
1313
steps:

poetry.lock

Lines changed: 2287 additions & 1877 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "aws-log-ingestion"
3-
version = "2.9.5"
3+
version = "2.9.9"
44
description = ""
55
authors = ["New Relic <serverless@newrelic.com>"]
66
license = "Apache 2.0"
77
package-mode= false
88

99
[tool.poetry.dependencies]
1010
python = "^3.11"
11-
aiohttp = "^3.10.11"
11+
aiohttp = "^3.13.2"
1212

1313
[tool.poetry.group.dev.dependencies]
1414
aws-sam-cli = "^1.118.0"

src/function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class EntryType(Enum):
119119
r"(?P<request_id>[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})"
120120
)
121121

122-
LOGGING_LAMBDA_VERSION = "2.9.5"
122+
LOGGING_LAMBDA_VERSION = "2.9.9"
123123
LOGGING_PLUGIN_METADATA = {"type": "lambda", "version": LOGGING_LAMBDA_VERSION}
124124

125125

src/requirements.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
aiohttp==3.10.11 ; python_version >= "3.11" and python_version < "4.0"
2-
aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "4.0"
3-
attrs==23.2.0 ; python_version >= "3.11" and python_version < "4.0"
4-
frozenlist==1.4.1 ; python_version >= "3.11" and python_version < "4.0"
5-
idna==3.7 ; python_version >= "3.11" and python_version < "4.0"
6-
multidict==6.0.5 ; python_version >= "3.11" and python_version < "4.0"
7-
yarl>=1.12.0,<2.0 ; python_version >= "3.11" and python_version < "4.0"
1+
aiohappyeyeballs==2.6.1 ; python_version >= "3.11" and python_version < "4.0"
2+
aiohttp==3.13.2 ; python_version >= "3.11" and python_version < "4.0"
3+
aiosignal==1.4.0 ; python_version >= "3.11" and python_version < "4.0"
4+
attrs==25.4.0 ; python_version >= "3.11" and python_version < "4.0"
5+
frozenlist==1.8.0 ; python_version >= "3.11" and python_version < "4.0"
6+
idna==3.11 ; python_version >= "3.11" and python_version < "4.0"
7+
multidict==6.7.0 ; python_version >= "3.11" and python_version < "4.0"
8+
propcache==0.4.1 ; python_version >= "3.11" and python_version < "4.0"
9+
typing-extensions==4.15.0 ; python_version >= "3.11" and python_version < "3.13"
10+
yarl==1.22.0 ; python_version >= "3.11" and python_version < "4.0"

template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Metadata:
6262
LicenseUrl: LICENSE
6363
ReadmeUrl: README.md
6464
HomePageUrl: https://github.com/newrelic/aws-log-ingestion
65-
SemanticVersion: 2.9.5
65+
SemanticVersion: 2.9.9
6666
SourceCodeUrl: https://github.com/newrelic/aws-log-ingestion
6767

6868
Resources:

0 commit comments

Comments
 (0)