Skip to content

Commit

Permalink
Merge pull request #116 from nr-dsharma/NR-279411_vuln_fix_2
Browse files Browse the repository at this point in the history
version bump for vulnerabilities fixes
  • Loading branch information
danybmx authored Jun 18, 2024
2 parents afa94b0 + d04c162 commit e0f511a
Show file tree
Hide file tree
Showing 6 changed files with 225 additions and 247 deletions.
455 changes: 216 additions & 239 deletions poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
[tool.poetry]
name = "aws-log-ingestion"
version = "2.9.2"
version = "2.9.3"
description = ""
authors = ["New Relic <[email protected]>"]
license = "Apache 2.0"

[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.9.2"
aiohttp = "^3.9.5"

[tool.poetry.group.dev.dependencies]
aws-sam-cli = "^1.105.0"
black = "^23.3.0"
aws-sam-cli = "^1.118.0"
black = "^24.3.0"
boto3 = "^1.19.2"
coverage = "^6.0.2"
flake8 = "^4.0.1"
mock = "^4.0.3"
pytest = "^6.2.5"
pytest = "^7.2.0"
pytest-asyncio = "^0.16.0"
pyyaml = "!=5.4.1, !=5.4.0" # pyyaml is broken with cython 3

Expand Down
2 changes: 1 addition & 1 deletion src/function.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class EntryType(Enum):
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})"
)

LOGGING_LAMBDA_VERSION = "2.9.2"
LOGGING_LAMBDA_VERSION = "2.9.3"
LOGGING_PLUGIN_METADATA = {"type": "lambda", "version": LOGGING_LAMBDA_VERSION}


Expand Down
2 changes: 1 addition & 1 deletion src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
aiohttp==3.9.3 ; python_version >= "3.11" and python_version < "4.0"
aiohttp==3.9.5 ; python_version >= "3.11" and python_version < "4.0"
aiosignal==1.3.1 ; python_version >= "3.11" and python_version < "4.0"
attrs==23.2.0 ; python_version >= "3.11" and python_version < "4.0"
frozenlist==1.4.1 ; python_version >= "3.11" and python_version < "4.0"
Expand Down
2 changes: 1 addition & 1 deletion template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Metadata:
LicenseUrl: LICENSE
ReadmeUrl: README.md
HomePageUrl: https://github.com/newrelic/aws-log-ingestion
SemanticVersion: 2.9.2
SemanticVersion: 2.9.3
SourceCodeUrl: https://github.com/newrelic/aws-log-ingestion

Resources:
Expand Down
1 change: 1 addition & 0 deletions test/build-encoded-file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Build a properly encoded payload to test log ingestion without needing to invoke
the lambda.
"""

import json
import sys
import gzip
Expand Down

0 comments on commit e0f511a

Please sign in to comment.