File tree Expand file tree Collapse file tree 8 files changed +17
-22
lines changed
Expand file tree Collapse file tree 8 files changed +17
-22
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ from sys import argv
66
77Name = "PDF Generator"
88Vendor = "rapid7"
9- Version = "1.0.7 "
9+ Version = "1.0.8 "
1010Description = "The PDF Generator plugin creates a PDF from user provided data"
1111
1212
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -16,8 +16,7 @@ class Output:
1616
1717
1818class 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
4442class 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 )
Original file line number Diff line number Diff line change @@ -8,11 +8,9 @@ class Input:
88
99
1010class 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 )
Original file line number Diff line number Diff line change @@ -4,13 +4,14 @@ products: [insightconnect]
44name : pdf_generator
55title : PDF Generator
66description : The PDF Generator plugin creates a PDF from user provided data
7- version : 1.0.7
7+ version : 1.0.8
88connection_version : 1
99supported_versions : ["Pillow 12.1.1"]
1010vendor : rapid7
1111key_features :
1212 - Generate a PDF
1313version_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"
Original file line number Diff line number Diff line change 33# See: https://pip.pypa.io/en/stable/user_guide/#requirements-files
44fpdf2 == 2.8.7
55Pillow == 12.1.1
6- fonttools == 4.61 .1
6+ fonttools == 4.62 .1
Original file line number Diff line number Diff line change 11# GENERATED BY INSIGHT-PLUGIN - DO NOT EDIT
22from setuptools import setup , find_packages
33
4-
54setup (
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 = "" ,
You can’t perform that action at this time.
0 commit comments