Skip to content

Bump oxigraph from 0.4.9 to 0.5.2 in /rust/case2geojson#129

Merged
ajnelson-nist merged 2 commits into
mainfrom
dependabot/cargo/rust/case2geojson/oxigraph-0.5.2
Nov 19, 2025
Merged

Bump oxigraph from 0.4.9 to 0.5.2 in /rust/case2geojson#129
ajnelson-nist merged 2 commits into
mainfrom
dependabot/cargo/rust/case2geojson/oxigraph-0.5.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Nov 19, 2025

Copy link
Copy Markdown
Contributor

Bumps oxigraph from 0.4.9 to 0.5.2.

Release notes

Sourced from oxigraph's releases.

v0.5.2

  • SPARQL: fixes evaluation of RDF 1.2 annotation syntax (e.g. SELECT * WHERE { ?s ?p ?o {| ?p2 ?o |}).
  • Bump RocksDB to 10.7.5 (requires a C++ 20 compiler).
  • Built Linux Python wheels now require Glibc 2.28.

v0.5.1

  • spareval: Add QueryEvaluator.prepare method that allows to prepare a query then execute it. Injecting variable bindings and customizing the query dataset is possible on the prepared query. FROM and FROM NAMED clauses are taken into account by this API, opposite to the older QueryEvaluator.execute method.
  • spargebra: Addstandard-unicode-escaping feature that unescape \u and \U sequences everywhere in the query, following to the SPARQL specification.
  • CLI: oxigraph load now has a --non-atomic option to load data in a non-atomic way. Allows compaction to happen in the background during loading.
  • NTriples/Turtle: fixes parsing of language tags with numbers like es-419.
  • SPARQL: fixes evaluation of SELECT * FROM NAMED <ex:> WHERE { GRAPH ?g {} }: all named graphs of the underlying store returned and not only ex:.
  • SPARQL: make parsing fail on duplicated variable names in VALUES like VALUES (?a ?a) {}.

v0.5.0

This release is dedicated to the memory of Gregg Kellogg, author of multiple specifications implemented by Oxigraph and great inspiration.

Major changes:

  • Support for current W3C working drafts RDF 1.2 and SPARQL 1.2, hidden behind the rdf-12 or sparql-12 features. This replace the rdf-star feature. RDF 1.2 includes triple terms using a slightly different syntax as RDF-star. Support is disabled by default in the oxigraph crate but enabled by default in the Python and JS bindings and the CLI.
  • oxigraph: the Store.start_transaction method that returns a new Transaction object. transactions can be committed with the commit method or rolled back by just dropping the Transaction object. Similarly, BulkLoader has a commit method to save the bulk loaded data. The Store::query method is now deprecated in favor of the SparqlEvaluator API

Read the changelog for all changes in this release.

v0.5.0-beta.5

  • SPARQL query evaluation: adds a CancellationToken to easily cancel a running SPARQL query and use it in the new --timeout-s option of the CLI query command to set a timeout for the query.
  • Adds split_file_for_parallel_parsing method to enable easier NTriples and NQuads parallel parsing from a file. Make use of it in a bulk loader parallel_load_from_file method that is also used by the CLI load command and the Python bulk_load function.
  • The bulk loader Rust API has now a commit method that must be called to save the loaded data

v0.5.0-beta.4

  • oxigraph: Transaction has now stronger lifetime bounds to ensure operations on a transactions are not running longer than the transaction itself. It also affects types like QuadIter or GraphNameIter that now carry a lifetime.
  • spareval: expose QueryEvaluator::evaluate_expression to evaluate expressions

v0.5.0-beta.3

Adds a lifetime to QueryResults and allows QueryableDataset to be bounded by a lifetime

v0.5.0-beta.2

  • Rust: Introduce SparqlEvaluator fluent API to customize more easily SPARQL operations and prepare them. The Store.query and Store.update methods are deprecated.
  • SPARQL: add support for xsd:gYear, xsd:gMonth, xsd:gDay, xsd:gMonthDay and xsd:gYearMonth cast functions.
  • Adds support of custom aggregate functions to the Rust and Python API.

v0.5.0-beta.1

  • RDF-star support is now dropped in favor of RDF 1.2. The rdf-star feature is not available anymore but triple terms are supported using rdf-12. RDF 1.2 does not support triple terms in the subject position anymore.

... (truncated)

Changelog

Sourced from oxigraph's changelog.

[0.5.2] - 2025-10-25

Changed

  • SPARQL: fixes evaluation of RDF 1.2 annotation syntax (e.g. SELECT * WHERE { ?s ?p ?o {| ?p2 ?o |}).
  • Bump RocksDB to 10.7.5 (requires a C++ 20 compiler).
  • Built Linux Python wheels now require Glibc 2.28.

[0.5.1] - 2025-10-11

Added

  • spargebra: standard-unicode-escaping feature that unescape \u and \U sequences everywhere in the query, following to the SPARQL specification.
  • spareval: QueryEvaluator.prepare method that allows to prepare a query then execute it. Injecting variable bindings and customizing the query dataset is possible on the prepared query. FROM and FROM NAMED clauses are taken into account by this API, opposite to the older QueryEvaluator.execute method.
  • spareval: QueryEvaluator.prepare_delete_insert that allows evaluating easily SPARQL UPDATE DELETE/INSERT operations.
  • CLI: oxigraph load now has a --non-atomic option to load data in a non-atomic way. Allows compaction to happen in the background during loading.

Changed

  • NTriples/Turtle: fixes parsing of language tags with numbers like es-419.
  • SPARQL: fixes evaluation of SELECT * FROM NAMED <ex:> WHERE { GRAPH ?g {} }: all named graphs of the underlying store returned and not only ex:.
  • SPARQL: make parsing fail on duplicated variable names in VALUES like VALUES (?a ?a) {}.
  • spareval: QueryEvaluator.execute and QueryEvaluator.explain are deprecated. Please use QueryEvaluator.prepare instead.
  • bulk loader: avoid duplicated each file. It reduces the storage footprint by half in some cases.
  • bulk loader: improve cleanup on failure and avoid some cases where files where left on disk.

[0.5.0] - 2025-09-13

This release is dedicated to the memory of Gregg Kellogg, author of multiple specifications implemented by Oxigraph and great inspiration.

Changed

  • SPARQL: support double negation !! when SPARQL 1.2 is enabled.
  • SPARQL: allow triple terms in the subject position in more places.
  • spargeo: change API to drop dependency on spareval and `oxigraph.

[0.5.0-beta.5] - 2025-09-07

Added

  • spareval: a CancellationToken to easily cancel a running SPARQL query.
  • CLI: --timeout-s option to the query command to set a timeout for the query.
  • oxttl and oxrdfio: split_file_for_parallel_parsing method to enable easier NTriples and NQuads parallel parsing from a file.
  • oxigraph: parallel_load_from_file and parallel_load_from_slice methods to load RDF data from a file or a slice in parallel.

Changed

  • JSON-LD: fixes parsing of aliased @type
  • oxigraph: bulk_loader method now takes a mut reference and there is a new commit method that is required to save the loaded data.
  • CLI and Python bindings: bulk loading data from a file and a buffer (in Python) is now done in parallel.
  • Bump rand to 0.9 and getrandom to 0.3.

... (truncated)

Commits
  • ebdcd00 Releases v0.5.2
  • 24c9d33 SPARQL: fixes parsing of annotation syntax
  • 76f58f9 spargebra: flatten EXTEND into SELECT when printing back to SPARQL
  • 8b57273 Releases v0.5.1
  • 941cc89 doc_auto_cfg -> doc_cfg
  • 917dfc4 SPARQL: feature for standard-compliant parsing of \u escape sequences
  • 164a3bb SPARQL: properly use the named graph list if the queried dataset is overridden
  • 6eba05e spareval: add QueryEvaluator::prepare
  • 7a64712 spareval: add DELETE/INSERT
  • a598eb1 SPARQL: fail parsing on repeated variables in VALUES
  • 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)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Nov 19, 2025
@dependabot dependabot Bot force-pushed the dependabot/cargo/rust/case2geojson/oxigraph-0.5.2 branch from c3e052c to 6b79ae9 Compare November 19, 2025 21:07
Bumps [oxigraph](https://github.com/oxigraph/oxigraph) from 0.4.9 to 0.5.2.
- [Release notes](https://github.com/oxigraph/oxigraph/releases)
- [Changelog](https://github.com/oxigraph/oxigraph/blob/main/CHANGELOG.md)
- [Commits](oxigraph/oxigraph@v0.4.9...v0.5.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/cargo/rust/case2geojson/oxigraph-0.5.2 branch from 6b79ae9 to c0dff13 Compare November 19, 2025 21:11
@ajnelson-nist ajnelson-nist self-assigned this Nov 19, 2025
References:
* oxigraph/oxigraph#1509

Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
@ajnelson-nist ajnelson-nist merged commit 305ce67 into main Nov 19, 2025
16 checks passed
@ajnelson-nist ajnelson-nist deleted the dependabot/cargo/rust/case2geojson/oxigraph-0.5.2 branch November 19, 2025 22:37
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.

1 participant