maxmind-db-rust 0.3.0-x86_64-linux → 0.4.0-x86_64-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a96d9fc813a0f748b38ac9cb59d063863176f5f0981917675a3cc0b292ba16ca
|
|
4
|
+
data.tar.gz: 7dfbeab46f5323f4fc3a6c55331d047a2b2138fe7c2e84a2bfe81b2832589bcc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aeb73ff6afb0872cb895c2af4a876ad89df58b6f8222b083921afd88c0dd6bc26d17558e06ebac45a18201100cf4c47ca78c0cd4ef4cd6a31aaaa52f72756cd5
|
|
7
|
+
data.tar.gz: 1eb7d959c5ca910c61a72f03a4f024119f692c2da2c1078486c6da8a3aa3e8b9a06475fb99f2b398a2f89f4e7a719723059782687c62466570a4fe81b8ad1c26
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.0] - 2026-04-25
|
|
9
|
+
|
|
10
|
+
### Performance
|
|
11
|
+
|
|
12
|
+
- Restored lookup performance with a generic bounded cache of frozen Ruby strings reused across decoded keys and scalar values.
|
|
13
|
+
- Removed hardcoded interned string tables in favor of the generic string cache.
|
|
14
|
+
- Simplified decoding so lookups and iteration use the same `maxminddb` decode path again.
|
|
15
|
+
- Reduced repeated cache-root lookup overhead with a thread-local `OnceCell` for the Ruby-owned string cache roots.
|
|
16
|
+
- Borrowed decoded map keys directly during deserialization to avoid `Cow` overhead in the hot decode path.
|
|
17
|
+
- Upgraded `maxminddb` crate to 0.28.0, which includes several performance
|
|
18
|
+
improvements.
|
|
19
|
+
|
|
8
20
|
## [0.3.0] - 2026-02-22
|
|
9
21
|
|
|
10
22
|
### Changed
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: maxmind-db-rust
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: x86_64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Gregory Oschwald
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|