Skip to content

Commit efae229

Browse files
committed
Release actix-prerender v0.2.1
1 parent 669d8eb commit efae229

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

CHANGELOG.md

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

8+
## 0.2.1 (2022-03-02)
9+
10+
### New Features
11+
12+
- <csr-id-669d8eb3109438437cdf2c9450d62c8121863ad3/> added special handling to `cf-visitor` and `X-Forwarded-Proto`
13+
.. and tests
14+
- <csr-id-47c258c8c8f8daafff11b847595a6ba89dbc9552/> added `forward_headers` on builder. defaults to false
15+
16+
### Commit Statistics
17+
18+
<csr-read-only-do-not-edit/>
19+
20+
- 2 commits contributed to the release.
21+
- 2 commits where understood as [conventional](https://www.conventionalcommits.org).
22+
- 0 issues like '(#ID)' where seen in commit messages
23+
24+
### Commit Details
25+
26+
<csr-read-only-do-not-edit/>
27+
28+
<details><summary>view details</summary>
29+
30+
* **Uncategorized**
31+
- added special handling to `cf-visitor` and `X-Forwarded-Proto` ([`669d8eb`](https://github.comgit//saskenuba/actix-prerender/commit/669d8eb3109438437cdf2c9450d62c8121863ad3))
32+
- added `forward_headers` on builder. defaults to false ([`47c258c`](https://github.comgit//saskenuba/actix-prerender/commit/47c258c8c8f8daafff11b847595a6ba89dbc9552))
33+
</details>
34+
835
## v0.2.0 (2022-03-02)
936

1037
### New Features
1138

1239
- <csr-id-06d36fe6d779584d110214236697f62f6043ad67/> rustfmt file
13-
1440
- <csr-id-e885d20622751c17db4ef08c56a858fd5501857e/> first commit
1541

16-
1742
### Bug Fixes
1843

1944
- <csr-id-cdb519c2f7a48f056ac4f77a95c0ea0b776980ce/> removed "prerender" token from builder if using custom URL
20-
2145
- <csr-id-215a29197af06325c3a96cd0b07d89f6e8edfa9d/> repo updated, changed changelog
22-
2346
- <csr-id-6882c0705a33b23b1a889560f911fea88d95708e/> now working properly by changing BoxBody -> EitherBody
2447

25-
2648
### Commit Statistics
2749

2850
<csr-read-only-do-not-edit/>
2951

30-
- 10 commits contributed to the release over the course of 1 calendar day.
52+
- 11 commits contributed to the release over the course of 1 calendar day.
3153
- 9 commits where understood as [conventional](https://www.conventionalcommits.org).
3254
- 0 issues like '(#ID)' where seen in commit messages
3355

@@ -38,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3860
<details><summary>view details</summary>
3961

4062
* **Uncategorized**
63+
- Release actix-prerender v0.2.0 ([`6850a8c`](https://github.comgit//saskenuba/actix-prerender/commit/6850a8c73f4d18d3d41fe13d380c5b43c9b38ca4))
4164
- removed "prerender" token from builder if using custom URL ([`cdb519c`](https://github.comgit//saskenuba/actix-prerender/commit/cdb519c2f7a48f056ac4f77a95c0ea0b776980ce))
4265
- repo updated, changed changelog ([`215a291`](https://github.comgit//saskenuba/actix-prerender/commit/215a29197af06325c3a96cd0b07d89f6e8edfa9d))
4366
- Release actix-prerender v0.1.0 ([`deb3d1c`](https://github.comgit//saskenuba/actix-prerender/commit/deb3d1ceb8c368542b7e699a4fda43043046da2e))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-prerender"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
authors = ["Martin Mariano <contato@martinmariano.com>"]
66
description = "Actix middleware that sends requests to Prerender.io or a custom Prerender service URL."

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
#![forbid(unsafe_code)]
2929
#![deny(nonstandard_style)]
30-
#![allow(clippy::must_use_candidate, clippy::missing_panics_doc)]
30+
#![allow(clippy::must_use_candidate, clippy::missing_panics_doc, clippy::missing_errors_doc)]
3131
#![warn(future_incompatible, missing_debug_implementations)]
3232
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
3333
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]

0 commit comments

Comments
 (0)