Skip to content

Commit 1c09b47

Browse files
committed
Merge branch 'release/v0.12.13'
2 parents 0a45328 + c5f5d66 commit 1c09b47

File tree

13 files changed

+42
-34
lines changed

13 files changed

+42
-34
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [[0.12.13]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.13) - 2024-10-23
10+
### Fixed
11+
- [639](https://github.com/thoth-pub/thoth/issues/639) - Make new locations canonical by default
12+
13+
### Changed
14+
- [628](https://github.com/thoth-pub/thoth/pull/628) - Upgrade rust to `1.82.0` in production and development `Dockerfile`
15+
916
## [[0.12.12]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.12) - 2024-10-15
1017
### Fixed
1118
- [636](https://github.com/thoth-pub/thoth/issues/636) - OpenAPI documentation was displaying the public URL of the export API with an extra protocol

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" }
1616
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"]
1717

1818
[dependencies]
19-
thoth-api = { version = "=0.12.12", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "=0.12.12", path = "thoth-api-server" }
21-
thoth-app-server = { version = "=0.12.12", path = "thoth-app-server" }
22-
thoth-errors = { version = "=0.12.12", path = "thoth-errors" }
23-
thoth-export-server = { version = "=0.12.12", path = "thoth-export-server" }
19+
thoth-api = { version = "=0.12.13", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "=0.12.13", path = "thoth-api-server" }
21+
thoth-app-server = { version = "=0.12.13", path = "thoth-app-server" }
22+
thoth-errors = { version = "=0.12.13", path = "thoth-errors" }
23+
thoth-export-server = { version = "=0.12.13", path = "thoth-export-server" }
2424
clap = { version = "4.5.16", features = ["cargo", "env"] }
2525
dialoguer = { version = "0.11.0", features = ["password"] }
2626
dotenv = "0.15.0"

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG MUSL_IMAGE=clux/muslrust:1.81.0-stable
1+
ARG MUSL_IMAGE=clux/muslrust:1.82.0-stable
22

33
FROM ${MUSL_IMAGE} as build
44

Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUST_VERSION=1.81.0
1+
ARG RUST_VERSION=1.82.0
22

33
FROM rust:${RUST_VERSION}
44

thoth-api-server/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api-server"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth"
99
readme = "README.md"
1010

1111
[dependencies]
12-
thoth-api = { version = "=0.12.12", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "=0.12.12", path = "../thoth-errors" }
12+
thoth-api = { version = "=0.12.13", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "=0.12.13", path = "../thoth-errors" }
1414
actix-web = "4.9"
1515
actix-cors = "0.7.0"
1616
actix-identity = "0.7.1"

thoth-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
1616
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web", "jsonwebtoken"]
1717

1818
[dependencies]
19-
thoth-errors = { version = "=0.12.12", path = "../thoth-errors" }
19+
thoth-errors = { version = "=0.12.13", path = "../thoth-errors" }
2020
actix-web = { version = "4.8", optional = true }
2121
argon2rs = "0.2.5"
2222
isbn2 = "0.4.0"

thoth-app-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app-server"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"

thoth-app/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -36,8 +36,8 @@ uuid = { version = "1.10.0", features = ["serde", "v4"] }
3636
# `getrandom` is a dependency of `uuid`, we need to explicitly import and include the `js` feature to enable wasm
3737
# https://docs.rs/getrandom/latest/getrandom/#webassembly-support
3838
getrandom = { version = "0.2", features = ["js"] }
39-
thoth-api = { version = "=0.12.12", path = "../thoth-api" }
40-
thoth-errors = { version = "=0.12.12", path = "../thoth-errors" }
39+
thoth-api = { version = "=0.12.13", path = "../thoth-api" }
40+
thoth-errors = { version = "=0.12.13", path = "../thoth-errors" }
4141

4242
[build-dependencies]
4343
dotenv = "0.15.0"

thoth-app/src/component/locations_form.rs

+1
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ impl Component for LocationsFormComponent {
134134
}
135135
} else {
136136
self.location = Default::default();
137+
self.location.canonical = true;
137138
self.location.location_platform = LocationPlatform::Other;
138139
}
139140
true

thoth-client/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-client"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -10,8 +10,8 @@ readme = "README.md"
1010
build = "build.rs"
1111

1212
[dependencies]
13-
thoth-api = {version = "=0.12.12", path = "../thoth-api" }
14-
thoth-errors = {version = "=0.12.12", path = "../thoth-errors" }
13+
thoth-api = {version = "=0.12.13", path = "../thoth-api" }
14+
thoth-errors = {version = "=0.12.13", path = "../thoth-errors" }
1515
graphql_client = "0.14.0"
1616
chrono = { version = "0.4.38", features = ["serde"] }
1717
reqwest = { version = "0.12", features = ["json"] }
@@ -22,4 +22,4 @@ serde_json = "1.0"
2222
uuid = { version = "1.10.0", features = ["serde"] }
2323

2424
[build-dependencies]
25-
thoth-api = { version = "=0.12.12", path = "../thoth-api", features = ["backend"] }
25+
thoth-api = { version = "=0.12.13", path = "../thoth-api", features = ["backend"] }

thoth-errors/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-errors"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"

thoth-export-server/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-export-server"
3-
version = "0.12.12"
3+
version = "0.12.13"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -10,9 +10,9 @@ readme = "README.md"
1010
build = "build.rs"
1111

1212
[dependencies]
13-
thoth-api = { version = "=0.12.12", path = "../thoth-api" }
14-
thoth-errors = { version = "=0.12.12", path = "../thoth-errors" }
15-
thoth-client = { version = "=0.12.12", path = "../thoth-client" }
13+
thoth-api = { version = "=0.12.13", path = "../thoth-api" }
14+
thoth-errors = { version = "=0.12.13", path = "../thoth-errors" }
15+
thoth-client = { version = "=0.12.13", path = "../thoth-client" }
1616
actix-web = "4.9"
1717
actix-cors = "0.7.0"
1818
cc_license = "0.1.0"

0 commit comments

Comments
 (0)