-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
333 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" } | |
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"] | ||
|
||
[dependencies] | ||
thoth-api = { version = "0.11.6", path = "thoth-api", features = ["backend"] } | ||
thoth-api-server = { version = "0.11.6", path = "thoth-api-server" } | ||
thoth-app-server = { version = "0.11.6", path = "thoth-app-server" } | ||
thoth-errors = { version = "0.11.6", path = "thoth-errors" } | ||
thoth-export-server = { version = "0.11.6", path = "thoth-export-server" } | ||
thoth-api = { version = "0.11.7", path = "thoth-api", features = ["backend"] } | ||
thoth-api-server = { version = "0.11.7", path = "thoth-api-server" } | ||
thoth-app-server = { version = "0.11.7", path = "thoth-app-server" } | ||
thoth-errors = { version = "0.11.7", path = "thoth-errors" } | ||
thoth-export-server = { version = "0.11.7", path = "thoth-export-server" } | ||
clap = { version = "4.4.2", features = ["cargo", "env"] } | ||
dialoguer = { version = "0.10.4", features = ["password"] } | ||
dotenv = "0.15.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-api-server" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -9,12 +9,12 @@ repository = "https://github.com/thoth-pub/thoth" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
thoth-api = { version = "0.11.6", path = "../thoth-api", features = ["backend"] } | ||
thoth-errors = { version = "0.11.6", path = "../thoth-errors" } | ||
thoth-api = { version = "0.11.7", path = "../thoth-api", features = ["backend"] } | ||
thoth-errors = { version = "0.11.7", path = "../thoth-errors" } | ||
actix-web = "4.4.0" | ||
actix-cors = "0.6.4" | ||
actix-identity = "0.5.2" | ||
actix-session = { version = "0.7.2", features = ["cookie-session"] } | ||
actix-identity = "0.6.0" | ||
actix-session = { version = "0.8.0", features = ["cookie-session"] } | ||
env_logger = "0.10.0" | ||
juniper = "0.15.11" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-api" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" } | |
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web"] | ||
|
||
[dependencies] | ||
thoth-errors = { version = "0.11.6", path = "../thoth-errors" } | ||
thoth-errors = { version = "0.11.7", path = "../thoth-errors" } | ||
actix-web = { version = "4.4.0", optional = true } | ||
argon2rs = "0.2.5" | ||
isbn2 = "0.4.0" | ||
chrono = { version = "0.4.30", features = ["serde"] } | ||
chrono = { version = "0.4.31", features = ["serde"] } | ||
diesel = { version = "2.1.1", features = ["postgres", "uuid", "chrono", "r2d2", "64-column-tables", "serde_json"], optional = true } | ||
diesel-derive-enum = { version = "2.1.0", features = ["postgres"], optional = true } | ||
diesel-derive-newtype = "2.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ALTER TABLE work DROP CONSTRAINT work_doi_check; | ||
ALTER TABLE work ADD CONSTRAINT work_doi_check | ||
CHECK (doi ~ '^https:\/\/doi\.org\/10\.\d{4,9}\/[-._\;\(\)\[\]\/:a-zA-Z0-9]+$'); | ||
|
||
ALTER TABLE reference DROP CONSTRAINT reference_doi_check; | ||
ALTER TABLE reference ADD CONSTRAINT reference_doi_check | ||
CHECK (doi ~ '^https:\/\/doi\.org\/10\.\d{4,9}\/[-._\;\(\)\[\]\/:a-zA-Z0-9]+$'); | ||
|
||
ALTER TABLE institution DROP CONSTRAINT institution_institution_doi_check; | ||
ALTER TABLE institution ADD CONSTRAINT institution_institution_doi_check | ||
CHECK (institution_doi ~ '^https:\/\/doi\.org\/10\.\d{4,9}\/[-._\;\(\)\[\]\/:a-zA-Z0-9]+$'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ALTER TABLE work DROP CONSTRAINT work_doi_check; | ||
ALTER TABLE work ADD CONSTRAINT work_doi_check | ||
CHECK (doi ~ '^https:\/\/doi\.org\/10\.\d{4,9}\/[-._\;\(\)\[\]<>\/:a-zA-Z0-9]+$'); | ||
|
||
ALTER TABLE reference DROP CONSTRAINT reference_doi_check; | ||
ALTER TABLE reference ADD CONSTRAINT reference_doi_check | ||
CHECK (doi ~ '^https:\/\/doi\.org\/10\.\d{4,9}\/[-._\;\(\)\[\]<>\/:a-zA-Z0-9]+$'); | ||
|
||
ALTER TABLE institution DROP CONSTRAINT institution_institution_doi_check; | ||
ALTER TABLE institution ADD CONSTRAINT institution_institution_doi_check | ||
CHECK (institution_doi ~ '^https:\/\/doi\.org\/10\.\d{4,9}\/[-._\;\(\)\[\]<>\/:a-zA-Z0-9]+$'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-app-server" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-app" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -20,7 +20,7 @@ wasm-pack = "0.12.1" | |
|
||
[dependencies] | ||
anyhow = "1.0.32" | ||
chrono = { version = "0.4.30", features = ["serde"] } | ||
chrono = { version = "0.4.31", features = ["serde"] } | ||
gloo-storage = "0.2.1" | ||
gloo-timers = "0.2.4" | ||
log = "0.4.20" | ||
|
@@ -41,5 +41,5 @@ uuid = { version = "0.8.2", features = ["serde", "v4"] } | |
# `getrandom` is a dependency of `uuid`, we need to explicitly import and include the `js` feature to enable wasm | ||
# https://docs.rs/getrandom/latest/getrandom/#webassembly-support | ||
getrandom = { version = "0.2", features = ["js"] } | ||
thoth-api = { version = "0.11.6", path = "../thoth-api" } | ||
thoth-errors = { version = "0.11.6", path = "../thoth-errors" } | ||
thoth-api = { version = "0.11.7", path = "../thoth-api" } | ||
thoth-errors = { version = "0.11.7", path = "../thoth-errors" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,11 @@ impl Component for AboutComponent { | |
<li>{ "Toby Steiner (COO)" }</li> | ||
<li>{ "Javier Arias (CTO)" }</li> | ||
<li>{ "Ross Higman (Software Engineer)" }</li> | ||
<li>{ "Hannah Hillen (Metadata & Publisher Outreach Specialist)" }</li> | ||
</ul> | ||
<p class="title is-5">{ "Consultants" }</p> | ||
<ul> | ||
<li>{ "Amanda Ramalho (Thoth Representative, Latin America)" }</li> | ||
</ul> | ||
<p>{ "Support us through the " }<a href={ "https://www.openbookcollective.org/packages/20/info/" }>{ "Open Book Collective" }</a>{ "." }</p> | ||
<p>{ "Contact us at " }<a href={ "mailto:[email protected]" }>{ "[email protected]" }</a>{ "." }</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-client" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -9,10 +9,10 @@ repository = "https://github.com/thoth-pub/thoth" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
thoth-api = {version = "0.11.6", path = "../thoth-api" } | ||
thoth-errors = {version = "0.11.6", path = "../thoth-errors" } | ||
thoth-api = {version = "0.11.7", path = "../thoth-api" } | ||
thoth-errors = {version = "0.11.7", path = "../thoth-errors" } | ||
graphql_client = "0.13.0" | ||
chrono = { version = "0.4.30", features = ["serde"] } | ||
chrono = { version = "0.4.31", features = ["serde"] } | ||
reqwest = { version = "0.11", features = ["json"] } | ||
reqwest-middleware = "0.2.3" | ||
reqwest-retry = "0.2.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-errors" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -21,7 +21,7 @@ actix-web = "4.4.0" | |
diesel = "2.1.1" | ||
csv = "1.2.2" | ||
juniper = "0.15.11" | ||
marc = { version = "3.1.0", features = ["xml"] } | ||
marc = { version = "3.1.1", features = ["xml"] } | ||
phf = { version = "0.11", features = ["macros"] } | ||
reqwest-middleware = "0.2.3" | ||
xml-rs = "0.8.17" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-export-server" | ||
version = "0.11.6" | ||
version = "0.11.7" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
@@ -9,19 +9,19 @@ repository = "https://github.com/thoth-pub/thoth" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
thoth-api = { version = "0.11.6", path = "../thoth-api" } | ||
thoth-errors = { version = "0.11.6", path = "../thoth-errors" } | ||
thoth-client = { version = "0.11.6", path = "../thoth-client" } | ||
thoth-api = { version = "0.11.7", path = "../thoth-api" } | ||
thoth-errors = { version = "0.11.7", path = "../thoth-errors" } | ||
thoth-client = { version = "0.11.7", path = "../thoth-client" } | ||
actix-web = "4.4.0" | ||
actix-cors = "0.6.4" | ||
cc_license = "0.1.0" | ||
chrono = { version = "0.4.30", features = ["serde"] } | ||
chrono = { version = "0.4.31", features = ["serde"] } | ||
csv = "1.2.2" | ||
env_logger = "0.10.0" | ||
futures = "0.3.28" | ||
lazy_static = "1.4.0" | ||
log = "0.4.20" | ||
marc = { version = "3.1.0", features = ["xml"] } | ||
marc = { version = "3.1.1", features = ["xml"] } | ||
paperclip = { version = "0.8.1", features = ["actix-base", "actix4", "uuid0", "v2"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
|
Oops, something went wrong.