Releases v0.3.3

pull/216/head v0.3.3
Tpt 2 years ago
parent ed5004a70d
commit c7c82c06db
  1. 14
      CHANGELOG.md
  2. 16
      Cargo.lock
  3. 4
      js/Cargo.toml
  4. 8
      lib/Cargo.toml
  5. 2
      lib/sparesults/Cargo.toml
  6. 2
      lib/spargebra/Cargo.toml
  7. 2
      oxrocksdb-sys/Cargo.toml
  8. 4
      python/Cargo.toml
  9. 6
      server/Cargo.toml
  10. 4
      testsuite/Cargo.toml

@ -1,3 +1,17 @@
## [0.3.3] - 2022-06-12
### Added
- `QueryResults::with_http_redirection_limit` that allows to set a limit on the number of HTTP redirection followed (`0` by default).
### Changed
- Fixes a bug in SPARQL parser that was always enabling the `SILENT` option of the `SERVICE` operator.
- Allows unknown keys in the objects present in the SPARQL JSON query results. It allows to parse e.g. Virtuoso query results.
- Allows `"typed-literal"` as an alias of `"literal"` in SPARQL JSON query results.
- Improves the HTTP client error reporting: no silent failures on 4XX and 5XX responses.
- Upgrades RocksDB to 7.3.1.
- Upgrades quick-xml to 0.23.
## [0.3.2] - 2022-04-24
### Changed

16
Cargo.lock generated

@ -769,7 +769,7 @@ dependencies = [
[[package]]
name = "oxigraph"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"criterion",
"digest",
@ -802,7 +802,7 @@ dependencies = [
[[package]]
name = "oxigraph_js"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"console_error_panic_hook",
"js-sys",
@ -813,7 +813,7 @@ dependencies = [
[[package]]
name = "oxigraph_server"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"clap 3.1.18",
"flate2",
@ -827,7 +827,7 @@ dependencies = [
[[package]]
name = "oxigraph_testsuite"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"anyhow",
"clap 3.1.18",
@ -861,7 +861,7 @@ dependencies = [
[[package]]
name = "oxrocksdb-sys"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"bindgen",
"cc",
@ -1058,7 +1058,7 @@ dependencies = [
[[package]]
name = "pyoxigraph"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"oxigraph",
"pyo3",
@ -1416,7 +1416,7 @@ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "sparesults"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"json-event-parser",
"oxrdf",
@ -1425,7 +1425,7 @@ dependencies = [
[[package]]
name = "spargebra"
version = "0.2.0"
version = "0.2.1"
dependencies = [
"oxilangtag",
"oxiri",

@ -1,6 +1,6 @@
[package]
name = "oxigraph_js"
version = "0.3.2"
version = "0.3.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -14,7 +14,7 @@ crate-type = ["cdylib"]
name = "oxigraph"
[dependencies]
oxigraph = { version = "0.3.2", path="../lib" }
oxigraph = { version = "0.3.3", path="../lib" }
wasm-bindgen = "0.2"
js-sys = "0.3"
console_error_panic_hook = "0.1"

@ -1,6 +1,6 @@
[package]
name = "oxigraph"
version = "0.3.2"
version = "0.3.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -38,12 +38,12 @@ siphasher = "0.3"
lazy_static = "1"
sysinfo = "0.23"
oxrdf = { version = "0.1.0", path="oxrdf", features = ["rdf-star"] }
spargebra = { version = "0.2.0", path="spargebra", features = ["rdf-star"] }
sparesults = { version = "0.1.0", path="sparesults", features = ["rdf-star"] }
spargebra = { version = "0.2.1", path="spargebra", features = ["rdf-star"] }
sparesults = { version = "0.1.1", path="sparesults", features = ["rdf-star"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libc = "0.2"
oxrocksdb-sys = { version = "0.3.2", path="../oxrocksdb-sys" }
oxrocksdb-sys = { version = "0.3.3", path="../oxrocksdb-sys" }
oxhttp = { version = "0.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]

@ -1,6 +1,6 @@
[package]
name = "sparesults"
version = "0.1.0"
version = "0.1.1"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"

@ -1,6 +1,6 @@
[package]
name = "spargebra"
version = "0.2.0"
version = "0.2.1"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"

@ -1,6 +1,6 @@
[package]
name = "oxrocksdb-sys"
version = "0.3.2"
version = "0.3.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "GPL-2.0 OR Apache-2.0"
repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys"

@ -1,6 +1,6 @@
[package]
name = "pyoxigraph"
version = "0.3.2"
version = "0.3.3"
authors = ["Tpt"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -16,5 +16,5 @@ name = "pyoxigraph"
doctest = false
[dependencies]
oxigraph = { version = "0.3.2", path="../lib", features = ["http_client"] }
oxigraph = { version = "0.3.3", path="../lib", features = ["http_client"] }
pyo3 = { version = "0.16", features = ["extension-module", "abi3-py37"] }

@ -1,6 +1,6 @@
[package]
name = "oxigraph_server"
version = "0.3.2"
version = "0.3.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -14,8 +14,8 @@ edition = "2021"
[dependencies]
oxhttp = { version = "0.1", features = ["rayon"] }
clap = { version = "3", features = ["derive"] }
oxigraph = { version = "0.3.2", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.0", path = "../lib/sparesults", features = ["rdf-star"] }
oxigraph = { version = "0.3.3", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.1", path = "../lib/sparesults", features = ["rdf-star"] }
rand = "0.8"
url = "2"
oxiri = "0.2"

@ -1,6 +1,6 @@
[package]
name = "oxigraph_testsuite"
version = "0.3.2"
version = "0.3.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
@ -15,7 +15,7 @@ publish = false
anyhow = "1"
clap = { version = "3", features = ["derive"] }
time = { version = "0.3", features = ["formatting"] }
oxigraph = { version = "0.3.2", path="../lib" }
oxigraph = { version = "0.3.3", path="../lib" }
text-diff = "0.4"
[dev-dependencies]

Loading…
Cancel
Save