Skip to content

Commit

Permalink
Updates for v0.22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleysommer committed Apr 27, 2023
1 parent f823d93 commit e7bf8d3
Show file tree
Hide file tree
Showing 6 changed files with 668 additions and 648 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Python PEP 440 Versioning](https://www.python.org/d

## [Unreleased]

## [0.22.2] - 2023-04-27

### In this release:

### Fixed
- Inoculating the datagraph using an extra ontology graph now copies over any missing namespace prefixes from the ontology graph to the datagraph.
- This is to match old ontology-graph-mixin behaviour that had this side-effect.
- Added a test to ensure this behaviour is not broken again.
- Stringifying nodes in `QualifiedValueShape` default message was using wrong stringification operation.

## [0.22.1] - 2023-04-26

### In this release:
Expand All @@ -16,6 +26,9 @@ and this project adheres to [Python PEP 440 Versioning](https://www.python.org/d
- Avoid hitting the recursion limit when stringifying a blank node, when OWL inferencing has inserted owl:sameAs the same blank node as is being serialized.
- Avoid hitting the recursion limit when cloning a graph with a blank node, when OWL inferencing has inserted owl:sameAs the same blank node as is being cloned.

### Added
- Added a default message for `QualifiedValueShape` constraint component. It never had one before.

### Changed
- Lots more debug messaging. Debugging is now _much_ more verbose.
- This gives more insight into how PySHACL runs, what it is doing, and how long each step takes.
Expand Down Expand Up @@ -1020,7 +1033,8 @@ just leaves the files open. Now it is up to the command-line client to close the

- Initial version, limited functionality

[Unreleased]: https://github.com/RDFLib/pySHACL/compare/v0.22.1...HEAD
[Unreleased]: https://github.com/RDFLib/pySHACL/compare/v0.22.2...HEAD
[0.22.2]: https://github.com/RDFLib/pySHACL/compare/v0.22.1...v0.22.2
[0.22.1]: https://github.com/RDFLib/pySHACL/compare/v0.22.0...v0.22.1
[0.22.0]: https://github.com/RDFLib/pySHACL/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/RDFLib/pySHACL/compare/v0.20.0...v0.21.0
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors:
given-names: "Nicholas"
orcid: "http://orcid.org/0000-0002-8742-7730"
title: "pySHACL"
version: 0.22.1
version: 0.22.2
doi: 10.5281/zenodo.4750840
license: Apache-2.0
date-released: 2022-01-13
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /home/pyshacl
RUN addgroup -g 1000 -S pyshacl &&\
adduser --disabled-password --gecos "" --home "$(pwd)" --ingroup "pyshacl" --no-create-home --uid 1000 pyshacl
WORKDIR /app
LABEL org.opencontainers.image.version="0.22.1"
LABEL org.opencontainers.image.version="0.22.2"
COPY . .
RUN chown -R pyshacl:pyshacl /home/pyshacl /app && chmod -R 775 /home/pyshacl /app
USER pyshacl
Expand Down
Loading

0 comments on commit e7bf8d3

Please sign in to comment.