@@ -7,14 +7,36 @@ and this project adheres to [Python PEP 440 Versioning](https://www.python.org/d
7
7
## [ Unreleased]
8
8
### Nothing yet
9
9
10
- ## [ 0.19.0 ] - 2022-03-22
10
+ ## [ 0.19.1 ] - 2022-06-30
11
11
12
12
### Note, while this is a normal 0.x release, it also acts as the v1.0 release candidate.
13
13
That means, if no glaring bugs or issues are found in this release after two weeks, this version will be re-released as
14
14
PySHACL v1.0.
15
15
16
16
### In this release:
17
17
18
+ ### Fixed
19
+ - CLI Output Table formatting crashed when report graph did not contain a resultMessage
20
+ - Fixes #145
21
+ - Executing advanced-mode triples rules can sometimes skip the graph clone step, and incorrectly emits new triples directly into the input data-graph
22
+ - Discovered when investigating #148
23
+
24
+ ### Changed
25
+ - Executing advanced triples rules no longer incorrectly emits new triples directly into the input data-graph
26
+ - This _ may_ been seen as a breaking change, if your workflow relied on this incorrect behaviour.
27
+ - If you _ really_ the rules engine to emit new triples into your input data graph, use the ` inplace ` validator option.
28
+ - Updated built-in ` schema.ttl ` file to newer version that doesn't have UTF-8 encoding issues
29
+
30
+ ### Added
31
+ - Official Dockerfile is now included in the repository
32
+ - Thanks @KonradHoeffner ; Fixes #135
33
+ - Published to dockerhub at [ ashleysommer/pyshacl] ( https://hub.docker.com/repository/docker/ashleysommer/pyshacl )
34
+ - ` docker pull docker.io/ashleysommer/pyshacl:latest `
35
+
36
+ ## [ 0.19.0] - 2022-03-22
37
+
38
+ ### In this release:
39
+
18
40
### Fixed
19
41
- Fixed a long-standing oversight where ShapeLoadErrors and ConstraintLoadErrors were not reported correctly when running PySHACL in CLI mode.
20
42
- Sorry about that. Thanks lots of people for reporting this over the last year. I wish I fixed it sooner.
@@ -24,7 +46,7 @@ PySHACL v1.0.
24
46
- Fixes #132 , Thanks @Zezombye
25
47
- Fixed an issue where ` sh:pattern ` could not be applied to a Literal that was not an ` xsd:string ` or URI.
26
48
- Fixes #133 , Thanks @nicholascar
27
- - Fixed the outdated/incorrect reported when a PropertyShape's ` sh:path ` value gets an unknown path type.
49
+ - Fixed the outdated/incorrect error reported when a PropertyShape's ` sh:path ` value gets an unknown path type.
28
50
- Fixes #129 , Thanks @edmondchuc
29
51
30
52
### Added
@@ -927,7 +949,8 @@ just leaves the files open. Now it is up to the command-line client to close the
927
949
928
950
- Initial version, limited functionality
929
951
930
- [ Unreleased ] : https://github.com/RDFLib/pySHACL/compare/v0.19.0...HEAD
952
+ [ Unreleased ] : https://github.com/RDFLib/pySHACL/compare/v0.19.1...HEAD
953
+ [ 0.19.1 ] : https://github.com/RDFLib/pySHACL/compare/v0.19.0...v0.19.1
931
954
[ 0.19.0 ] : https://github.com/RDFLib/pySHACL/compare/v0.18.1...v0.19.0
932
955
[ 0.18.1 ] : https://github.com/RDFLib/pySHACL/compare/v0.18.0...v0.18.1
933
956
[ 0.18.0 ] : https://github.com/RDFLib/pySHACL/compare/v0.17.3...v0.18.0
0 commit comments