Skip to content

Commit 0f6b93d

Browse files
authored
Merge branch 'main' into fix-linter-ruff
2 parents 3f42ea0 + ca8d47b commit 0f6b93d

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/build-ci-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Generate Docker Metadata (Tags and Labels)
4646
id: meta
47-
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # 5.7.0
47+
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # 5.8.0
4848
with:
4949
images: ghcr.io/${{ github.repository }}-ci
5050
flavor: |
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: Login to GitHub Container Registry
6161
if: github.event_name != 'pull_request'
62-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # 3.4.0
62+
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # 3.5.0
6363
with:
6464
registry: ghcr.io
6565
username: ${{ github.repository_owner }}

.github/workflows/trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ jobs:
6161

6262
- name: Upload Trivy scan results to GitHub Security tab
6363
if: ${{ github.event_name == 'schedule' }}
64-
uses: github/codeql-action/upload-sarif@4e828ff8d448a8a6e532957b1811f387a63867e8 # 3.29.4
64+
uses: github/codeql-action/upload-sarif@51f77329afa6477de8c49fc9c7046c15b9a4e79d # 3.29.5
6565
with:
6666
sarif_file: "trivy-results.sarif"

newrelic/hooks/datastore_redis.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,12 @@
439439
"wait",
440440
"waitaof",
441441
"xack",
442+
"xackdel",
442443
"xadd",
443444
"xautoclaim",
444445
"xclaim",
445446
"xdel",
447+
"xdelex",
446448
"xgroup_create",
447449
"xgroup_createconsumer",
448450
"xgroup_del_consumer",

tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ envlist =
9090
python-adapter_uvicorn-{py37,py38,py39,py310,py311,py312,py313}-uvicornlatest,
9191
python-adapter_uvicorn-py38-uvicorn014,
9292
python-adapter_waitress-{py37,py38,py39,py310,py311,py312,py313}-waitresslatest,
93-
python-adapter_waitress-{py37,py38,py39,py310}-waitress02,
94-
python-adapter_waitress-{py37,py38,py39}-waitress010404,
9593
python-agent_features-{py37,py38,py39,py310,py311,py312,py313}-{with,without}_extensions,
9694
python-agent_features-pypy310-without_extensions,
9795
python-agent_streaming-{py37,py38,py39,py310,py311,py312,py313}-protobuf06-{with,without}_extensions,
@@ -184,12 +182,14 @@ envlist =
184182
[testenv]
185183
deps =
186184
# Base Dependencies
187-
{py38,py39,py310,py311,py312,py313,pypy310}: pytest==8.3.2
185+
{py39,py310,py311,py312,py313,pypy310}: pytest==8.4.1
186+
py38: pytest==8.3.5
188187
py37: pytest==7.4.4
189188
iniconfig
190189
coverage
191-
WebTest==3.0.0
190+
{py39,py310,py311,py312,py313,pypy310}: WebTest==3.0.6
192191
py313: legacy-cgi==2.6.1 # cgi was removed from the stdlib in 3.13, and is required for WebTest
192+
{py37,py38}: WebTest==3.0.1
193193

194194
# Test Suite Dependencies
195195
adapter_asgiref-asgireflatest: asgiref
@@ -220,7 +220,6 @@ deps =
220220
adapter_uvicorn-uvicornlatest: uvicorn
221221
adapter_uvicorn: typing-extensions
222222
adapter_waitress: WSGIProxy2
223-
adapter_waitress-waitress02: waitress<2.1
224223
adapter_waitress-waitresslatest: waitress
225224
agent_features: beautifulsoup4
226225
agent_features: protobuf

0 commit comments

Comments
 (0)