Skip to content

Commit 2dffa36

Browse files
committed
Merge branch 'release/v0.11.3'
2 parents 5737c46 + 7014046 commit 2dffa36

22 files changed

Lines changed: 146 additions & 96 deletions

File tree

.github/workflows/build_test_and_check.yml

Lines changed: 9 additions & 9 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.16.0'
38+
node-version: '18.17.1'
3939
- uses: actions-rs/toolchain@v1
4040
with:
4141
toolchain: stable
4242
- uses: jetli/wasm-pack-action@v0.3.0
4343
with:
44-
version: 'v0.12.0'
44+
version: 'v0.12.1'
4545
- name: Install rollup
46-
run: sudo npm install -g rollup@3.23.1
46+
run: sudo npm install -g rollup@3.28.1
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.16.0'
62+
node-version: '18.17.1'
6363
- uses: actions-rs/toolchain@v1
6464
with:
6565
toolchain: stable
6666
- uses: jetli/wasm-pack-action@v0.3.0
6767
with:
68-
version: 'v0.11.1'
68+
version: 'v0.12.1'
6969
- name: Install rollup
70-
run: sudo npm install -g rollup@3.23.1
70+
run: sudo npm install -g rollup@3.28.1
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.16.0'
91+
node-version: '18.17.1'
9292
- uses: actions-rs/toolchain@v1
9393
with:
9494
toolchain: stable
9595
- uses: jetli/wasm-pack-action@v0.3.0
9696
with:
97-
version: 'v0.11.1'
97+
version: 'v0.12.1'
9898
- name: Install rollup
99-
run: sudo npm install -g rollup@3.23.1
99+
run: sudo npm install -g rollup@3.28.1
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: 3 additions & 3 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.16.0'
46+
node-version: '18.17.1'
4747
- uses: actions-rs/toolchain@v1
4848
with:
4949
toolchain: stable
5050
- uses: jetli/wasm-pack-action@v0.3.0
5151
with:
52-
version: 'v0.12.0'
52+
version: 'v0.12.1'
5353
- name: Install rollup
54-
run: sudo npm install -g rollup@3.23.1
54+
run: sudo npm install -g rollup@3.28.1
5555
- name: Compile WASM
5656
run: wasm-pack build thoth-app/ --target web --release
5757
- name: Pack APP

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [[0.11.3]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.3) - 2023-08-28
10+
### Fixed
11+
- [500](https://github.com/thoth-pub/thoth/issues/500) - Update ORCID regex
12+
13+
### Security
14+
- Upgrade `openssl` to v0.10.56
15+
- Upgrade `reqwest` to v0.11.20
16+
- Upgrade `chrono` to v0.4.26
17+
18+
### Changed
19+
- Upgrade rust to `1.72.0` in production and development `Dockerfile`
20+
- Upgrade build dependencies (npm `v9.8.1`, node `v18.17.1`, n `v9.1.0`, and rollup `v3.28.1`) in production and development `Dockerfile`
21+
- Upgrade `wasm-pack` to [v0.12.1](https://github.com/rustwasm/wasm-pack/releases/tag/v0.12.1)
22+
23+
### Added
24+
- Link to privacy policy in navbar
25+
926
## [[0.11.2]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.2) - 2023-06-19
1027
### Changed
1128
- Upgrade `wasm-pack` to [v0.12.0](https://github.com/rustwasm/wasm-pack/releases/tag/v0.12.0)

Cargo.lock

Lines changed: 48 additions & 32 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.2"
3+
version = "0.11.3"
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.2", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "0.11.2", path = "thoth-api-server" }
21-
thoth-app-server = { version = "0.11.2", path = "thoth-app-server" }
22-
thoth-errors = { version = "0.11.2", path = "thoth-errors" }
23-
thoth-export-server = { version = "0.11.2", path = "thoth-export-server" }
19+
thoth-api = { version = "0.11.3", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "0.11.3", path = "thoth-api-server" }
21+
thoth-app-server = { version = "0.11.3", path = "thoth-app-server" }
22+
thoth-errors = { version = "0.11.3", path = "thoth-errors" }
23+
thoth-export-server = { version = "0.11.3", path = "thoth-export-server" }
2424
clap = "2.34.0"
2525
dialoguer = "0.7.1"
2626
dotenv = "0.15.0"

Dockerfile

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

44
FROM ${RUST_IMAGE} as wasm
55

6-
ENV NPM_VERSION=9.6.7
7-
ENV N_VERSION=9.0.1
8-
ENV NODE_VERSION=18.16.0
9-
ENV ROLLUP_VERSION=3.23.1
10-
ENV WASM_PACK_VERSION=0.12.0
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
10+
ENV WASM_PACK_VERSION=0.12.1
1111

1212
ARG THOTH_GRAPHQL_API=https://api.thoth.pub
1313
ARG THOTH_EXPORT_API=https://export.thoth.pub

0 commit comments

Comments
 (0)