Skip to content

Commit 7ec86bb

Browse files
merge changes from main
2 parents 7281936 + bdbfa69 commit 7ec86bb

2 files changed

Lines changed: 24 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,39 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/)
66

7-
87
## Unreleased
98

109
### Changed
1110

12-
- Update template and dependencies
11+
- update template and dependencies
12+
13+
## [5.3.1]
14+
15+
### Fixed
16+
17+
- close input ports since they are not used
18+
19+
## [5.3.0]
20+
21+
### Changed
22+
23+
- update template and dependencies
24+
- ensure python 3.13 compatability
25+
- python 3.13 now required
26+
27+
## [5.2.0] 2025-07-03
28+
29+
### Changed
30+
31+
- upgrade cmem-plugin-base to v4.12.1
1332

33+
## [5.1.2] 2025-02-21
1434

1535
### Changed
1636

1737
- Parameters "Data" graph URI" and "SHACL shapes graph URI" marked as "required"
1838
- Do not disable SSL verification for requests
1939
- New icon
20-
- Allow urn URIs for graph parameters
2140

2241
## [5.1.0] 2024-12-03
2342

cmem_plugin_pyshacl/plugin_pyshacl.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
get_graphs_list,
2323
)
2424
from cmem_plugin_base.dataintegration.plugins import WorkflowPlugin
25+
from cmem_plugin_base.dataintegration.ports import FixedNumberOfInputs
2526
from cmem_plugin_base.dataintegration.types import (
2627
BoolParameterType,
2728
IntParameterType,
@@ -353,6 +354,7 @@ def __init__( # noqa: PLR0913
353354
self.remove_thesaurus_graph_type = remove_thesaurus_graph_type
354355
self.remove_shape_catalog_graph_type = remove_shape_catalog_graph_type
355356
self.max_validation_depth = max_validation_depth
357+
self.input_ports = FixedNumberOfInputs([])
356358

357359
def add_prov(self, validation_graph: Graph, utctime: str) -> Graph:
358360
"""Add provenance data"""

0 commit comments

Comments
 (0)