Skip to content

Commit 062cf6d

Browse files
committed
v1.3.12: Detect cached null bytes
1 parent e7c509b commit 062cf6d

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.3.12] - 2023-08-26
8+
9+
### Fixed
10+
11+
- If we find a `\0` byte in cached data, try looking it up again. Also, report an error if the Smarty API ever returns a `\0` byte.
12+
713
## [1.3.11] - 2023-08-20
814

915
### Security

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geocode-csv"
3-
version = "1.3.11"
3+
version = "1.3.12"
44
authors = ["Eric Kidd <git@randomhacks.net>"]
55
edition = "2018"
66

deny.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ ignore = [
1313
#"RUSTSEC-2020-0159",
1414
# Also `localtime_r`.
1515
"RUSTSEC-2020-0071",
16+
# Exponential CPU usage in `webpki` could be used in a denial of service
17+
# attack, but (1) we only connect to a few trusted SaaS hosts, and (2) the
18+
# worst case scenario is that we run too slowly.
19+
"RUSTSEC-2023-0052",
20+
# Ditto, but in `rustls-webpki`.
21+
"RUSTSEC-2023-0053",
1622
]
1723

1824
[licenses]

0 commit comments

Comments
 (0)