Skip to content

Commit c1dffbc

Browse files
committed
poem 3.1.7
poem-openapi 5.1.6
1 parent 992ef86 commit c1dffbc

File tree

11 files changed

+40
-24
lines changed

11 files changed

+40
-24
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Stable Toolchain
2222
uses: dtolnay/rust-toolchain@stable
2323
with:
24-
toolchain: 1.81.0
24+
toolchain: 1.83.0
2525
components: rustfmt
2626
- name: Cache Rust
2727
uses: Swatinem/rust-cache@v2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ license = "MIT OR Apache-2.0"
1717
documentation = "https://docs.rs/poem/"
1818
homepage = "https://github.com/poem-web/poem"
1919
repository = "https://github.com/poem-web/poem"
20-
rust-version = "1.81"
20+
rust-version = "1.83"
2121

2222
[workspace.dependencies]
2323
poem = { path = "poem", version = "3.1.0", default-features = false }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
1010
alt="Unsafe Rust forbidden" />
1111
</a>
12-
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.81.0.html">
13-
<img src="https://img.shields.io/badge/rustc-1.81.0+-ab6000.svg"
14-
alt="rustc 1.81.0+" />
12+
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.83.0.html">
13+
<img src="https://img.shields.io/badge/rustc-1.83.0+-ab6000.svg"
14+
alt="rustc 1.83.0+" />
1515
</a>
1616
<a href="https://discord.gg/qWWNxwasb7">
1717
<img src="https://img.shields.io/discord/932986985604333638.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2" />

poem-grpc/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
2121
alt="Unsafe Rust forbidden" />
2222
</a>
23-
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.81.0.html">
24-
<img src="https://img.shields.io/badge/rustc-1.81.0+-ab6000.svg"
25-
alt="rustc 1.81.0+" />
23+
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.83.0.html">
24+
<img src="https://img.shields.io/badge/rustc-1.83.0+-ab6000.svg"
25+
alt="rustc 1.83.0+" />
2626
</a>
2727
</div>
2828

@@ -63,7 +63,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in
6363

6464
## MSRV
6565

66-
The minimum supported Rust version for this crate is `1.81.0`.
66+
The minimum supported Rust version for this crate is `1.83.0`.
6767

6868
## Contributing
6969

poem-lambda/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
2121
alt="Unsafe Rust forbidden" />
2222
</a>
23-
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.81.0.html">
24-
<img src="https://img.shields.io/badge/rustc-1.81.0+-ab6000.svg"
25-
alt="rustc 1.81.0+" />
23+
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.83.0.html">
24+
<img src="https://img.shields.io/badge/rustc-1.83.0+-ab6000.svg"
25+
alt="rustc 1.83.0+" />
2626
</a>
2727
</div>
2828

@@ -49,7 +49,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in
4949

5050
## MSRV
5151

52-
The minimum supported Rust version for this crate is `1.81.0`.
52+
The minimum supported Rust version for this crate is `1.83.0`.
5353

5454
## Contributing
5555

poem-openapi/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
#[5.1.6] 2025-02-21
8+
9+
- Allows passing the style of a parameter in the openapi spec. [#940](https://github.com/poem-web/poem/pull/940)
10+
- Add support for Stoplight Elements [#954](https://github.com/poem-web/poem/pull/954)
11+
- Correct server object reference URL anchor [#957](https://github.com/poem-web/poem/pull/957)
12+
- feat(openapi): reflect fallback security scheme in spec [#958](https://github.com/poem-web/poem/pull/958)
13+
- Fix missing condition for Stoplight Elements UI [#972](https://github.com/poem-web/poem/pull/972)
14+
- Update MSRV to `1.83.0`
15+
716
#[5.1.5] 2025-01-04
817

918
- Add description to Union descriminator object schema [#921](https://github.com/poem-web/poem/pull/921)

poem-openapi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poem-openapi"
3-
version = "5.1.5"
3+
version = "5.1.6"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

poem-openapi/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
2222
alt="Unsafe Rust forbidden" />
2323
</a>
24-
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.81.0.html">
25-
<img src="https://img.shields.io/badge/rustc-1.81.0+-ab6000.svg"
26-
alt="rustc 1.81.0+" />
24+
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.83.0.html">
25+
<img src="https://img.shields.io/badge/rustc-1.83.0+-ab6000.svg"
26+
alt="rustc 1.83.0+" />
2727
</a>
2828
<a href="https://discord.gg/qWWNxwasb7">
2929
<img src="https://img.shields.io/discord/932986985604333638.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2" />
@@ -51,7 +51,7 @@ important business implementations.
5151
To avoid compiling unused dependencies, Poem gates certain features, some of which are disabled by default:
5252

5353
| Feature | Description |
54-
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
54+
|--------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
5555
| chrono | Integrate with the [`chrono` crate](https://crates.io/crates/chrono). |
5656
| time | Integrate with the [`time` crate](https://crates.io/crates/time). |
5757
| humantime | Integrate with the [`humantime` crate](https://crates.io/crates/humantime) |
@@ -132,7 +132,7 @@ hello, sunli!
132132

133133
## MSRV
134134

135-
The minimum supported Rust version for this crate is `1.81.0`.
135+
The minimum supported Rust version for this crate is `1.83.0`.
136136

137137
## Contributing
138138

poem/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
# [3.1.7] 2024-02-21
8+
9+
- fix(poem): Handle richer libcsrf error [#953](https://github.com/poem-web/poem/pull/953)
10+
- chore: bump redis to 0.28 [#981](https://github.com/poem-web/poem/pull/981/files)
11+
- fix: update OpenTelemetry to v0.28 [#977](https://github.com/poem-web/poem/pull/977)
12+
- - Update MSRV to `1.83.0`
13+
714
# [3.1.6] 2025-01-04
815

916
- fix: update otel semconv as well [#916](https://github.com/poem-web/poem/pull/916)

poem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poem"
3-
version = "3.1.6"
3+
version = "3.1.7"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

poem/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
2121
alt="Unsafe Rust forbidden" />
2222
</a>
23-
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.81.0.html">
24-
<img src="https://img.shields.io/badge/rustc-1.81.0+-ab6000.svg"
25-
alt="rustc 1.81.0+" />
23+
<a href="https://blog.rust-lang.org/2023/11/16/Rust-1.83.0.html">
24+
<img src="https://img.shields.io/badge/rustc-1.83.0+-ab6000.svg"
25+
alt="rustc 1.83.0+" />
2626
</a>
2727
<a href="https://discord.gg/qWWNxwasb7">
2828
<img src="https://img.shields.io/discord/932986985604333638.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2" />
@@ -108,7 +108,7 @@ More examples can be found [here][examples].
108108

109109
## MSRV
110110

111-
The minimum supported Rust version for this crate is `1.81.0`.
111+
The minimum supported Rust version for this crate is `1.83.0`.
112112

113113
## Contributing
114114

0 commit comments

Comments
 (0)