Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump oxigraph from 0.3.22 to 0.4.0 #81

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 29, 2024

Bumps oxigraph from 0.3.22 to 0.4.0.

Release notes

Sourced from oxigraph's releases.

v0.4.0

Major changes:

  • oxigraph_server package has been renamed to oxigraph-cli and the binary to oxigraph
  • new Turtle, TriG, N3, NTriples, NQuads and RDF/XML parsers compatible with Tokio in the oxttl, oxrdfxml and oxrdfio crates
  • new SPARQL optimizer in the sparopt crate (still very basic)
  • new in-memory storage backend that does not require RocksDB and is much faster

Lots of small bug fix and minor improvements listed in the CHANGELOG

v0.4.0-rc.2

  • Rust: Big renaming in parsers and serializers to get an hopefully nicer API (see details in changelog).
  • SPARQL: fixes evaluation of GRAPH ?g { ?s !(...) ?o } property paths with ?g and ?s unbound and ?o bound.
  • NTriples/NQuads: properly mandate that lines must contain at most a single triple/quad.

v0.4.0-rc.1

CLI: new --union-default-graph option to the serve and query commands to use by default the union of all graphs as the default graph in SPARQL queries.

v0.4.0-alpha.8

  • Removes the storage "secondary" mode. It was quite buggy, especially with RocksDB 9. If you need it, please reach out.
  • Adds parallel parsers for N-Triples, N-Quads and Turtle.
  • Makes the IRI parser follow FRC 3987 more closely.
  • Python: support for custom SPARQL functions.
  • CLI: man pages and shell autocompletion files are now automatically generated on build.
  • SPARQL: avoids to return duplicated triples in CONSTRUCT response (the deduplication is only partial, some duplicates may still be returned).

More details in the CHANGELOG

v0.4.0-alpha.7

  • Default in memory storage is now a brand new implementation based on hash sets and linked list. See description in the wiki. It provides proper transaction rollbacks and allows concurrent reads while a write transaction is happening. It is now used when a Store is created without an underlying storage directory.
  • SPARQL: DESCRIBE now implements Concise Bounded Description.
  • JS: The load, dump, query and update method second argument is now an object with options (base IRI, unchecked mode for parsing...).

v0.4.0-alpha.6

Fixes compatibility with OxIRI 0.2.3

v0.4.0-alpha.5

  • Python: Added Dataset class
  • Rust: Dataset::canonicalize and Graph::canonicalize takes for input a CanonicalizationAlgorithm to set which algorithm to use.
  • Upgrades RocksDB to 9.0.0
  • JS: Drops NodeJS 12-16 and older web browsers (Edge before Chromium...) support.

v0.4.0-alpha.4

  • async query results parser
  • optional (but enabled by default rocksdb dependency

v0.4.0-alpha.3

Allows to set prefixes during serialization (Turtle, TriG and RDF/XML). oxigraph convert preserves prefixes.

... (truncated)

Changelog

Sourced from oxigraph's changelog.

[0.4.0] - 2024-09-22

Changed

  • SPARQL: fixes evaluation of GRAPH ?g { ?s <p1>/<p2> ?o } property paths with ?g and ?s unbound and ?o bound.

[0.4.0-rc.2] - 2024-09-15

Added

  • Rust: Triple::from_str and Quad::from_str.

Changed

  • SPARQL: fixes evaluation of GRAPH ?g { ?s !(...) ?o } property paths with ?g and ?s unbound and ?o bound.
  • NTriples/NQuads: properly mandate that lines must contain at most a single triple/quad.
  • Turtle-like formats: do not allow the empty blank node identifier.
  • Rust: Big renaming in parsers and serializers to get an hopefully nicer API:
    • Use Parser suffix instead of Reader for parsers.
    • Use Writer suffix instead of Serializer for serializers.
    • Rename FromRead to Reader, FromTokioAsyncRead to TokioAsyncReader, FromSlice to Slice, ToWrite to Writer and ToTokioAsyncWrite to TokioAsyncWriter.
    • Rename read_next to parse_next.
    • Rename from_read to for_reader, to_write to for_writer, from_tokio_async_read to for_tokio_async_reader, to_tokio_async_write to for_tokio_async_writer, from_slice to for_slice.
  • CLI: Allows to set default-graph-uri query argument even if the --union-default-graph CLI option is set.

[0.4.0-rc.1] - 2024-08-25

Added

  • CLI: union-default-graph option to the serve and query commands to use by default the union of all graphs as the default graph in SPARQL queries.

Changed

  • RocksDB build: link with the atomic library on armv5te and riscv64gc
  • CLI build: do not generate man pages for help commands.

[0.4.0-alpha.8] - 2024-08-22

Added

  • oxttl, oxrdfxml, sparesults and oxrdfio: new parse_slice method to parse a byte slice directly.
  • oxttl N-Triples, N-Quads and Turtle: new split_slice_for_parallel_parsing method that splits a slice into chunks that can be parsed in parallel.
  • Python: support for custom SPARQL functions.
  • CLI: man pages and shell autocompletion files are now automatically generated on build.

Removed

  • The storage "secondary" mode. It was quite buggy, especially with RocksDB 9. If you need it, please reach out.

Changed

  • Upgrades Rust MSV to 1.75.
  • Bumps RocksDB to 9.5.2.
  • IRI: ipvFuture are now allowed and some characters are now disallowed in some places to follow RFC 3987.
  • sparesults: parse_ and serialize_ functions now take the parser/serializer by value but the parsers and serializers are now Clone.

... (truncated)

Commits
  • e378f01 Releases v0.4.0
  • 0550200 Fuzzer: fuzz CONSTRUCT, DESCRIBE and ASK queries
  • e884653 Fixes property path evaluation
  • ee3d704 Upgrades dependencies, including rocksdb to 9.6.1
  • 1401263 Big parser and serializer rename
  • 9ff3169 Adds Triple::from_str and Quad::from_str
  • d5a85da NTriples and NQuads: properly parse line jumps
  • b22d889 oxrdf parser: do not end blank nodes on '_'
  • e8f96d5 Fixes property path evaluation
  • dfde663 Improves documentation
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [oxigraph](https://github.com/oxigraph/oxigraph) from 0.3.22 to 0.4.0.
- [Release notes](https://github.com/oxigraph/oxigraph/releases)
- [Changelog](https://github.com/oxigraph/oxigraph/blob/main/CHANGELOG.md)
- [Commits](oxigraph/oxigraph@v0.3.22...v0.4.0)

---
updated-dependencies:
- dependency-name: oxigraph
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 29, 2024
Copy link
Author

dependabot bot commented on behalf of github Oct 20, 2024

Superseded by #84.

@dependabot dependabot bot closed this Oct 20, 2024
@dependabot dependabot bot deleted the dependabot/cargo/oxigraph-0.4.0 branch October 20, 2024 09:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants