File tree Expand file tree Collapse file tree 11 files changed +40
-24
lines changed Expand file tree Collapse file tree 11 files changed +40
-24
lines changed Original file line number Diff line number Diff line change 21
21
- name : Install Stable Toolchain
22
22
uses : dtolnay/rust-toolchain@stable
23
23
with :
24
- toolchain : 1.81 .0
24
+ toolchain : 1.83 .0
25
25
components : rustfmt
26
26
- name : Cache Rust
27
27
uses : Swatinem/rust-cache@v2
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ license = "MIT OR Apache-2.0"
17
17
documentation = " https://docs.rs/poem/"
18
18
homepage = " https://github.com/poem-web/poem"
19
19
repository = " https://github.com/poem-web/poem"
20
- rust-version = " 1.81 "
20
+ rust-version = " 1.83 "
21
21
22
22
[workspace .dependencies ]
23
23
poem = { path = " poem" , version = " 3.1.0" , default-features = false }
Original file line number Diff line number Diff line change 9
9
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
10
10
alt="Unsafe Rust forbidden" />
11
11
</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+" />
15
15
</a >
16
16
<a href =" https://discord.gg/qWWNxwasb7 " >
17
17
<img src="https://img.shields.io/discord/932986985604333638.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2" />
Original file line number Diff line number Diff line change 20
20
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
21
21
alt="Unsafe Rust forbidden" />
22
22
</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+" />
26
26
</a >
27
27
</div >
28
28
@@ -63,7 +63,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in
63
63
64
64
## MSRV
65
65
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 ` .
67
67
68
68
## Contributing
69
69
Original file line number Diff line number Diff line change 20
20
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
21
21
alt="Unsafe Rust forbidden" />
22
22
</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+" />
26
26
</a >
27
27
</div >
28
28
@@ -49,7 +49,7 @@ This crate uses `#![forbid(unsafe_code)]` to ensure everything is implemented in
49
49
50
50
## MSRV
51
51
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 ` .
53
53
54
54
## Contributing
55
55
Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
16
#[ 5.1.5] 2025-01-04
8
17
9
18
- Add description to Union descriminator object schema [ #921 ] ( https://github.com/poem-web/poem/pull/921 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " poem-openapi"
3
- version = " 5.1.5 "
3
+ version = " 5.1.6 "
4
4
authors.workspace = true
5
5
edition.workspace = true
6
6
license.workspace = true
Original file line number Diff line number Diff line change 21
21
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
22
22
alt="Unsafe Rust forbidden" />
23
23
</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+" />
27
27
</a >
28
28
<a href =" https://discord.gg/qWWNxwasb7 " >
29
29
<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.
51
51
To avoid compiling unused dependencies, Poem gates certain features, some of which are disabled by default:
52
52
53
53
| Feature | Description |
54
- | ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
54
+ | -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
55
55
| chrono | Integrate with the [ ` chrono ` crate] ( https://crates.io/crates/chrono ) . |
56
56
| time | Integrate with the [ ` time ` crate] ( https://crates.io/crates/time ) . |
57
57
| humantime | Integrate with the [ ` humantime ` crate] ( https://crates.io/crates/humantime ) |
@@ -132,7 +132,7 @@ hello, sunli!
132
132
133
133
## MSRV
134
134
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 ` .
136
136
137
137
## Contributing
138
138
Original file line number Diff line number Diff line change @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
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
+
7
14
# [ 3.1.6] 2025-01-04
8
15
9
16
- fix: update otel semconv as well [ #916 ] ( https://github.com/poem-web/poem/pull/916 )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " poem"
3
- version = " 3.1.6 "
3
+ version = " 3.1.7 "
4
4
authors.workspace = true
5
5
edition.workspace = true
6
6
license.workspace = true
Original file line number Diff line number Diff line change 20
20
<img src="https://img.shields.io/badge/unsafe-forbidden-success.svg?style=flat-square"
21
21
alt="Unsafe Rust forbidden" />
22
22
</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+" />
26
26
</a >
27
27
<a href =" https://discord.gg/qWWNxwasb7 " >
28
28
<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].
108
108
109
109
## MSRV
110
110
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 ` .
112
112
113
113
## Contributing
114
114
You can’t perform that action at this time.
0 commit comments