Skip to content

Commit ab58eba

Browse files
[SOAR-21012] Bumped requirements for pdf generator (#3834)
* Bumped requirements and plugin spec * insight refresh
1 parent 6cab8c8 commit ab58eba

File tree

8 files changed

+17
-22
lines changed

8 files changed

+17
-22
lines changed

plugins/pdf_generator/.CHECKSUM

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"spec": "4d0f6a1355a2031ada71f46b2b47ee64",
3-
"manifest": "bbad7e380b21d375826c75997593d4a2",
4-
"setup": "97a3ee47df4380639c6dfc33ac86bbbd",
2+
"spec": "703f5b078895906275a66bf6d18eb4b2",
3+
"manifest": "6de000aeb49a7e4f1a6a93e5201b57c6",
4+
"setup": "dedd9d2b7ecc8b8e4159969294e8ac67",
55
"schemas": [
66
{
77
"identifier": "generate_pdf/schema.py",
8-
"hash": "1f25d0ac9258e56bb93f35cfe41abbf9"
8+
"hash": "8abe08954429699de0bb10d17b310e9f"
99
},
1010
{
1111
"identifier": "connection/schema.py",
12-
"hash": "2a983a9b7aa5dd290ed28e0eb7e0c9c6"
12+
"hash": "bd524b567f9638ba1c6f7e0c9e45ff2e"
1313
}
1414
]
1515
}

plugins/pdf_generator/bin/icon_pdf_generator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ from sys import argv
66

77
Name = "PDF Generator"
88
Vendor = "rapid7"
9-
Version = "1.0.7"
9+
Version = "1.0.8"
1010
Description = "The PDF Generator plugin creates a PDF from user provided data"
1111

1212

plugins/pdf_generator/help.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ Example output:
7373

7474
# Version History
7575

76+
* 1.0.8 - Updated dependencies
7677
* 1.0.7 - Updated dependencies | Updated SDK to the latest version (6.4.3)
7778
* 1.0.6 - Bumping requirements.txt | SDK Bump
7879
* 1.0.5 - Pin additional version dependency

plugins/pdf_generator/icon_pdf_generator/actions/generate_pdf/schema.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ class Output:
1616

1717

1818
class GeneratePdfInput(insightconnect_plugin_runtime.Input):
19-
schema = json.loads(
20-
r"""
19+
schema = json.loads(r"""
2120
{
2221
"type": "object",
2322
"title": "Variables",
@@ -34,16 +33,14 @@ class GeneratePdfInput(insightconnect_plugin_runtime.Input):
3433
],
3534
"definitions": {}
3635
}
37-
"""
38-
)
36+
""")
3937

4038
def __init__(self):
4139
super(self.__class__, self).__init__(self.schema)
4240

4341

4442
class GeneratePdfOutput(insightconnect_plugin_runtime.Output):
45-
schema = json.loads(
46-
r"""
43+
schema = json.loads(r"""
4744
{
4845
"type": "object",
4946
"title": "Variables",
@@ -62,8 +59,7 @@ class GeneratePdfOutput(insightconnect_plugin_runtime.Output):
6259
],
6360
"definitions": {}
6461
}
65-
"""
66-
)
62+
""")
6763

6864
def __init__(self):
6965
super(self.__class__, self).__init__(self.schema)

plugins/pdf_generator/icon_pdf_generator/connection/schema.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ class Input:
88

99

1010
class ConnectionSchema(insightconnect_plugin_runtime.Input):
11-
schema = json.loads(
12-
r"""
11+
schema = json.loads(r"""
1312
{}
14-
"""
15-
)
13+
""")
1614

1715
def __init__(self):
1816
super(self.__class__, self).__init__(self.schema)

plugins/pdf_generator/plugin.spec.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ products: [insightconnect]
44
name: pdf_generator
55
title: PDF Generator
66
description: The PDF Generator plugin creates a PDF from user provided data
7-
version: 1.0.7
7+
version: 1.0.8
88
connection_version: 1
99
supported_versions: ["Pillow 12.1.1"]
1010
vendor: rapid7
1111
key_features:
1212
- Generate a PDF
1313
version_history:
14+
- "1.0.8 - Updated dependencies"
1415
- "1.0.7 - Updated dependencies | Updated SDK to the latest version (6.4.3)"
1516
- "1.0.6 - Bumping requirements.txt | SDK Bump"
1617
- "1.0.5 - Pin additional version dependency"

plugins/pdf_generator/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# See: https://pip.pypa.io/en/stable/user_guide/#requirements-files
44
fpdf2==2.8.7
55
Pillow==12.1.1
6-
fonttools==4.61.1
6+
fonttools==4.62.1

plugins/pdf_generator/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# GENERATED BY INSIGHT-PLUGIN - DO NOT EDIT
22
from setuptools import setup, find_packages
33

4-
54
setup(
65
name="pdf_generator-rapid7-plugin",
7-
version="1.0.7",
6+
version="1.0.8",
87
description="The PDF Generator plugin creates a PDF from user provided data",
98
author="rapid7",
109
author_email="",

0 commit comments

Comments
 (0)