Skip to content

Commit 36e7437

Browse files
committed
Merge branch 'release/v0.11.8'
2 parents 9e3e4bd + 70e189c commit 36e7437

16 files changed

Lines changed: 61 additions & 67 deletions

File tree

.github/workflows/build_test_and_check.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
- uses: actions/checkout@v3
3636
- uses: actions/setup-node@v3
3737
with:
38-
node-version: '18.17.1'
38+
node-version: '18.18.2'
3939
- uses: actions-rs/toolchain@v1
4040
with:
4141
toolchain: stable
4242
- uses: jetli/wasm-pack-action@v0.3.0
4343
with:
4444
version: 'v0.12.1'
4545
- name: Install rollup
46-
run: sudo npm install -g rollup@3.28.1
46+
run: sudo npm install -g rollup@4.1.4
4747
- name: Compile WASM
4848
run: wasm-pack build thoth-app/ --target web --release
4949
- name: Pack APP
@@ -59,15 +59,15 @@ jobs:
5959
- uses: actions/checkout@v3
6060
- uses: actions/setup-node@v3
6161
with:
62-
node-version: '18.17.1'
62+
node-version: '18.18.2'
6363
- uses: actions-rs/toolchain@v1
6464
with:
6565
toolchain: stable
6666
- uses: jetli/wasm-pack-action@v0.3.0
6767
with:
6868
version: 'v0.12.1'
6969
- name: Install rollup
70-
run: sudo npm install -g rollup@3.28.1
70+
run: sudo npm install -g rollup@4.1.4
7171
- name: Compile WASM
7272
run: wasm-pack build thoth-app/ --target web --release
7373
- name: Pack APP
@@ -88,15 +88,15 @@ jobs:
8888
- uses: actions/checkout@v3
8989
- uses: actions/setup-node@v3
9090
with:
91-
node-version: '18.17.1'
91+
node-version: '18.18.2'
9292
- uses: actions-rs/toolchain@v1
9393
with:
9494
toolchain: stable
9595
- uses: jetli/wasm-pack-action@v0.3.0
9696
with:
9797
version: 'v0.12.1'
9898
- name: Install rollup
99-
run: sudo npm install -g rollup@3.28.1
99+
run: sudo npm install -g rollup@4.1.4
100100
- name: Compile WASM
101101
run: wasm-pack build thoth-app/ --target web --release
102102
- name: Pack APP

.github/workflows/run_migrations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
- uses: actions/checkout@v3
4444
- uses: actions/setup-node@v3
4545
with:
46-
node-version: '18.17.1'
46+
node-version: '18.18.2'
4747
- uses: actions-rs/toolchain@v1
4848
with:
4949
toolchain: stable
5050
- uses: jetli/wasm-pack-action@v0.3.0
5151
with:
5252
version: 'v0.12.1'
5353
- name: Install rollup
54-
run: sudo npm install -g rollup@3.28.1
54+
run: sudo npm install -g rollup@4.1.4
5555
- name: Compile WASM
5656
run: wasm-pack build thoth-app/ --target web --release
5757
- name: Pack APP

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [[0.11.8]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.8) - 2023-10-31
10+
### Changed
11+
- Upgrade rust to `1.73.0` in production and development `Dockerfile`
12+
- Upgrade build dependencies (npm `v10.2.0`, node `v18.18.2`, n `v9.2.0` and rollup `v4.1.4`) in production and development `Dockerfile`
13+
- [519](https://github.com/thoth-pub/thoth/issues/519) - Update ProQuest Ebrary (Ebook Central) ONIX output pricing
14+
915
## [[0.11.7]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.7) - 2023-10-02
1016
### Changed
1117
- Improve MARC records with recommendations

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth"
3-
version = "0.11.7"
3+
version = "0.11.8"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
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.11.7", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "0.11.7", path = "thoth-api-server" }
21-
thoth-app-server = { version = "0.11.7", path = "thoth-app-server" }
22-
thoth-errors = { version = "0.11.7", path = "thoth-errors" }
23-
thoth-export-server = { version = "0.11.7", path = "thoth-export-server" }
19+
thoth-api = { version = "0.11.8", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "0.11.8", path = "thoth-api-server" }
21+
thoth-app-server = { version = "0.11.8", path = "thoth-app-server" }
22+
thoth-errors = { version = "0.11.8", path = "thoth-errors" }
23+
thoth-export-server = { version = "0.11.8", path = "thoth-export-server" }
2424
clap = { version = "4.4.2", features = ["cargo", "env"] }
2525
dialoguer = { version = "0.10.4", features = ["password"] }
2626
dotenv = "0.15.0"

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
ARG RUST_IMAGE=rust:1.72.0
2-
ARG MUSL_IMAGE=clux/muslrust:1.72.0
1+
ARG RUST_IMAGE=rust:1.73.0
2+
ARG MUSL_IMAGE=clux/muslrust:1.73.0
33

44
FROM ${RUST_IMAGE} as wasm
55

6-
ENV NPM_VERSION=9.8.1
7-
ENV N_VERSION=9.1.0
8-
ENV NODE_VERSION=18.17.1
9-
ENV ROLLUP_VERSION=3.28.1
6+
ENV NPM_VERSION=10.2.0
7+
ENV N_VERSION=9.2.0
8+
ENV NODE_VERSION=18.18.2
9+
ENV ROLLUP_VERSION=4.1.4
1010
ENV WASM_PACK_VERSION=0.12.1
1111

1212
ARG THOTH_GRAPHQL_API=https://api.thoth.pub

Dockerfile.dev

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
ARG RUST_VERSION=1.72.0
1+
ARG RUST_VERSION=1.73.0
22

33
FROM rust:${RUST_VERSION}
44

5-
ENV NPM_VERSION=9.8.1
6-
ENV N_VERSION=9.1.0
7-
ENV NODE_VERSION=18.17.1
8-
ENV ROLLUP_VERSION=3.28.1
5+
ENV NPM_VERSION=10.2.0
6+
ENV N_VERSION=9.2.0
7+
ENV NODE_VERSION=18.18.2
8+
ENV ROLLUP_VERSION=4.1.4
99
ENV WASM_PACK_VERSION=0.12.1
1010

1111
ARG THOTH_GRAPHQL_API=http://localhost:8000

thoth-api-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api-server"
3-
version = "0.11.7"
3+
version = "0.11.8"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
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.11.7", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "0.11.7", path = "../thoth-errors" }
12+
thoth-api = { version = "0.11.8", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "0.11.8", path = "../thoth-errors" }
1414
actix-web = "4.4.0"
1515
actix-cors = "0.6.4"
1616
actix-identity = "0.6.0"

thoth-api/Cargo.toml

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

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

thoth-app-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app-server"
3-
version = "0.11.7"
3+
version = "0.11.8"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)