Skip to content

Commit e0f511a

Browse files
authored
Merge pull request #116 from nr-dsharma/NR-279411_vuln_fix_2
version bump for vulnerabilities fixes
2 parents afa94b0 + d04c162 commit e0f511a

6 files changed

+225
-247
lines changed

poetry.lock

+216-239
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[tool.poetry]
22
name = "aws-log-ingestion"
3-
version = "2.9.2"
3+
version = "2.9.3"
44
description = ""
55
authors = ["New Relic <[email protected]>"]
66
license = "Apache 2.0"
77

88
[tool.poetry.dependencies]
99
python = "^3.11"
10-
aiohttp = "^3.9.2"
10+
aiohttp = "^3.9.5"
1111

1212
[tool.poetry.group.dev.dependencies]
13-
aws-sam-cli = "^1.105.0"
14-
black = "^23.3.0"
13+
aws-sam-cli = "^1.118.0"
14+
black = "^24.3.0"
1515
boto3 = "^1.19.2"
1616
coverage = "^6.0.2"
1717
flake8 = "^4.0.1"
1818
mock = "^4.0.3"
19-
pytest = "^6.2.5"
19+
pytest = "^7.2.0"
2020
pytest-asyncio = "^0.16.0"
2121
pyyaml = "!=5.4.1, !=5.4.0" # pyyaml is broken with cython 3
2222

src/function.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class EntryType(Enum):
118118
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})"
119119
)
120120

121-
LOGGING_LAMBDA_VERSION = "2.9.2"
121+
LOGGING_LAMBDA_VERSION = "2.9.3"
122122
LOGGING_PLUGIN_METADATA = {"type": "lambda", "version": LOGGING_LAMBDA_VERSION}
123123

124124

src/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
aiohttp==3.9.3 ; python_version >= "3.11" and python_version < "4.0"
1+
aiohttp==3.9.5 ; python_version >= "3.11" and python_version < "4.0"
22
aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "4.0"
33
attrs==23.2.0 ; python_version >= "3.11" and python_version < "4.0"
44
frozenlist==1.4.1 ; python_version >= "3.11" and python_version < "4.0"

template.yaml

+1-1
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.2
65+
SemanticVersion: 2.9.3
6666
SourceCodeUrl: https://github.com/newrelic/aws-log-ingestion
6767

6868
Resources:

test/build-encoded-file.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
Build a properly encoded payload to test log ingestion without needing to invoke
33
the lambda.
44
"""
5+
56
import json
67
import sys
78
import gzip

0 commit comments

Comments
 (0)