newrelic-lambda-cli 0.9.15__py2.py3-none-any.whl → 0.9.17__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -133,7 +133,10 @@ def create_log_subscription(input, function_name):
133
133
  "Found log subscription for '%s', verifying configuration" % function_name
134
134
  )
135
135
  newrelic_filter = newrelic_filters[0]
136
- if newrelic_filter["filterPattern"] != input.filter_pattern:
136
+ if (
137
+ newrelic_filter["filterPattern"] != input.filter_pattern
138
+ or newrelic_filter["destinationArn"] != destination_arn
139
+ ):
137
140
  return _remove_subscription_filter(
138
141
  input.session, function_name, newrelic_filter["filterName"]
139
142
  ) and _create_subscription_filter(
@@ -189,7 +192,10 @@ def create_otel_log_subscription(input, function_name):
189
192
  "Found log subscription for '%s', verifying configuration" % function_name
190
193
  )
191
194
  newrelic_filter = newrelic_filters[0]
192
- if newrelic_filter["filterPattern"] != input.filter_pattern:
195
+ if (
196
+ newrelic_filter["filterPattern"] != input.filter_pattern
197
+ or newrelic_filter["destinationArn"] != destination_arn
198
+ ):
193
199
  return _remove_subscription_filter(
194
200
  input.session, function_name, newrelic_filter["filterName"]
195
201
  ) and _create_subscription_filter(
@@ -44,6 +44,10 @@ RUNTIME_CONFIG = {
44
44
  "Handler": "newrelic-lambda-wrapper.handler",
45
45
  "LambdaExtension": True,
46
46
  },
47
+ "nodejs24.x": {
48
+ "Handler": "newrelic-lambda-wrapper.handler",
49
+ "LambdaExtension": True,
50
+ },
47
51
  "provided": {"LambdaExtension": True},
48
52
  "provided.al2": {"LambdaExtension": True},
49
53
  "provided.al2023": {"LambdaExtension": True},
@@ -75,6 +79,10 @@ RUNTIME_CONFIG = {
75
79
  "Handler": "newrelic_lambda_wrapper.handler",
76
80
  "LambdaExtension": True,
77
81
  },
82
+ "python3.14": {
83
+ "Handler": "newrelic_lambda_wrapper.handler",
84
+ "LambdaExtension": True,
85
+ },
78
86
  "ruby3.2": {
79
87
  "Handler": "newrelic_lambda_wrapper.handler",
80
88
  "LambdaExtension": True,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: newrelic-lambda-cli
3
- Version: 0.9.15
3
+ Version: 0.9.17
4
4
  Summary: A CLI to install the New Relic AWS Lambda integration and layers.
5
5
  Home-page: https://github.com/newrelic/newrelic-lambda-cli
6
6
  Author: New Relic
@@ -64,8 +64,8 @@ A CLI to install the New Relic AWS Lambda integration and layers.
64
64
 
65
65
  | Runtime | Versions |
66
66
  |-------------|------------------------|
67
- | Python | `python3.8`, `python3.9`, `python3.10`, `python3.11`, `python3.12`, `python3.13` |
68
- | Node.js | `nodejs16.x`, `nodejs18.x`, `nodejs20.x`, `nodejs22.x` |
67
+ | Python | `python3.8`, `python3.9`, `python3.10`, `python3.11`, `python3.12`, `python3.13`, `python3.14` |
68
+ | Node.js | `nodejs16.x`, `nodejs18.x`, `nodejs20.x`, `nodejs22.x`, `nodejs24.x` |
69
69
  | .NET | `dotnet6`, `dotnet8` |
70
70
  | Java | `java8.al2`, `java11`, `java17`, `java21` |
71
71
  | Provided | `provided.al2`, `provided.al2023` |
@@ -7,9 +7,9 @@ newrelic_lambda_cli/integrations.py,sha256=r0gxfEqVHTGu3xbr4dOCDwm0-Yhoz3KntfeQR
7
7
  newrelic_lambda_cli/layers.py,sha256=BL7XPMw8zal0UL5nrgDJMknfnhwSkp_LKVkBThWx_do,20673
8
8
  newrelic_lambda_cli/otel_ingestions.py,sha256=vi1Mlfc9nRvRWV7STwK7fDXZGozG8ufKohmpHcaWGic,9250
9
9
  newrelic_lambda_cli/permissions.py,sha256=H7v5IMpKaJIWC4Dff2YcTis4BKAAFIJr9IHWUj1LnF4,9093
10
- newrelic_lambda_cli/subscriptions.py,sha256=-BYkltqiDLdmhUB_Ot4w-5vvrKcQC6aHcTBLl1mlUlI,9564
10
+ newrelic_lambda_cli/subscriptions.py,sha256=MFGUPvyZlc7x85VTrwsGROE8s3lWs3LkKWGV_Euw4wA,9748
11
11
  newrelic_lambda_cli/types.py,sha256=MC22Gw5u97qcpjLrmExST_2uXSH7qceDEmdMziOslh4,3815
12
- newrelic_lambda_cli/utils.py,sha256=_XU5tFx9SxEzvp_brFFQtspBz_qoUZ2H_HDxhB_Qr1U,5902
12
+ newrelic_lambda_cli/utils.py,sha256=ai_MRf6LH8-qWY18NawZBI670FWqA1fpkI1Eae4L91M,6130
13
13
  newrelic_lambda_cli/cli/__init__.py,sha256=vY8EdoHeI5r8DY_zELWMb2hCkm_p6oae6JYPweOq1d4,655
14
14
  newrelic_lambda_cli/cli/apm.py,sha256=gISzrUQ7a_QqOmReRGaTdpW1INIpAjPauBbqNt1vuNM,3510
15
15
  newrelic_lambda_cli/cli/decorators.py,sha256=a3agkVfy8omkUSL4aKblwSX95xtxYOGASULDYcJDPHk,1786
@@ -21,9 +21,9 @@ newrelic_lambda_cli/cli/subscriptions.py,sha256=bUupv5iv3mUkC8t31nnI3BahoKxDnUJ8
21
21
  newrelic_lambda_cli/templates/import-template.yaml,sha256=0r1yeoqpnqtEMggWomALkPG10NiANPWWBqz03rChch8,3771
22
22
  newrelic_lambda_cli/templates/license-key-secret.yaml,sha256=ZldQaLXsyF1K2I4X_AsLdH7kRmLkPUYI3talmhqQyHg,1849
23
23
  newrelic_lambda_cli/templates/nr-lambda-integration-role.yaml,sha256=s7T73B_k-mAwgzJrD2xn8YGUNgn2E1V7Exifrl81ViU,2874
24
- newrelic_lambda_cli-0.9.15.dist-info/licenses/LICENSE,sha256=uuxDzQm0yfq_tNZX0tQYzsZUVRIF0jm3dBLZUojSYzI,11345
25
- newrelic_lambda_cli-0.9.15.dist-info/METADATA,sha256=9Vv9rKLxLmmkFA3e_NaJROzu1oJ9lf_fquYcNLMIpXg,29411
26
- newrelic_lambda_cli-0.9.15.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
27
- newrelic_lambda_cli-0.9.15.dist-info/entry_points.txt,sha256=iks2k9Y4WNgIecsDzreIvMV9pGCjwwKTf33LKKvl2A8,65
28
- newrelic_lambda_cli-0.9.15.dist-info/top_level.txt,sha256=dxX2w58VgSUFiPD8C_lFuY-T2C1kjfeY0xi8iTh0r44,20
29
- newrelic_lambda_cli-0.9.15.dist-info/RECORD,,
24
+ newrelic_lambda_cli-0.9.17.dist-info/licenses/LICENSE,sha256=uuxDzQm0yfq_tNZX0tQYzsZUVRIF0jm3dBLZUojSYzI,11345
25
+ newrelic_lambda_cli-0.9.17.dist-info/METADATA,sha256=vOgB4ZiEBjiQwLGbXe5qiETDch022zF5DS31aTjnEcM,29439
26
+ newrelic_lambda_cli-0.9.17.dist-info/WHEEL,sha256=Mk1ST5gDzEO5il5kYREiBnzzM469m5sI8ESPl7TRhJY,110
27
+ newrelic_lambda_cli-0.9.17.dist-info/entry_points.txt,sha256=iks2k9Y4WNgIecsDzreIvMV9pGCjwwKTf33LKKvl2A8,65
28
+ newrelic_lambda_cli-0.9.17.dist-info/top_level.txt,sha256=dxX2w58VgSUFiPD8C_lFuY-T2C1kjfeY0xi8iTh0r44,20
29
+ newrelic_lambda_cli-0.9.17.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any