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.1 #84

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 20, 2024

Bumps oxigraph from 0.3.22 to 0.4.1.

Release notes

Sourced from oxigraph's releases.

v0.4.1

  • New: HTTP server: return SPARQL service description on GET requests.
  • JS: add default_graph and named_graphs query options to set the default and named graphs.
  • SPARQL: fixes REGEX function evaluation when the regex is not a literal constant
  • SPARQL: small fixes related to SERVICE optimizations
  • Parsers: minor fixes for bugs found when fuzzing the parsers

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.

... (truncated)

Changelog

Sourced from oxigraph's changelog.

[0.4.1] - 2024-10-13

Added

  • JS: add default_graph and named_graphs query options to set the default and named graphs.
  • HTTP server: return SPARQL service description on GET requests.

Changed

  • NTriples/NQuads error recovery: do not consider the predicate as a possible subject if the subject is invalid.
  • Turtle: prevent line jump in single quoted string (but not in unchecked/lenient mode).
  • Turtle: forbid invalid \u+123 escape sequences.
  • RDF/XML: only ignore possible literal values composed of whitespaces if an other object value is present.
  • SPARQL: fixes regex function evaluation when the regex is not set to a literal.
  • SPARQL: ignore errors in joins if the other side of the join returns no results (the output would be no results anyway if the errors are fixed).
  • SPARQL: make ASK return true if the inner query is returning a valid tuple even if the inner query is also returning errors (fixing these errors would not change the ASK output).
  • SPARQL optimizer: do not attempt to optimize SERVICE (keep them, do not push filter in them...). This was leading to a lot of subtle behavior changes.
  • oxRDF parser: allow spaces between literal value and langtag/datatype, unicode escapes in URIs.

[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.

... (truncated)

Commits
  • 9502c66 Releases v0.4.1
  • 737c7be SPARQL optimizer: allow discarding errors
  • d3df26e SPARQL: Refine some empty special cases
  • bae8d3e Fuzzer: do not fuzz unbound service
  • 86a3dba SPARQL eval: adds some early returns if one side of a join is empty
  • 7be0422 Do not push filters in SERVICE
  • f157742 Turtle: do not allow \u+233 escape sequences
  • c9bb424 Fixes Tokio doc tests
  • 011e832 SPARQL: discard errors on one side of the join if the other is empty
  • 6e6352a SPARQL XML results: do not panic on a trailing text follow up
  • 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.1.
- [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.1)

---
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 Oct 20, 2024
Copy link
Author

dependabot bot commented on behalf of github Nov 24, 2024

Superseded by #88.

@dependabot dependabot bot closed this Nov 24, 2024
@dependabot dependabot bot deleted the dependabot/cargo/oxigraph-0.4.1 branch November 24, 2024 09:56
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