prosody 0.5.0 → 0.5.1
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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/Cargo.lock +3 -5
- data/Cargo.toml +2 -1
- data/lib/prosody/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c19c30d17efd4507beb32278585c05188db05bb0b375c563edf29d24de76cff4
|
|
4
|
+
data.tar.gz: 38d1dc9257ac999358813eefcb9995b62da528ca98d0052c59fde8c70893c3f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fddcd444897b7b3ef656d701395d921a47057489ea7e0cd63180fad07e4df5bc94b55386d4b6cc314e4f32653aa85401675d42ced8e3dc7810c3562bf2d97f5e
|
|
7
|
+
data.tar.gz: 9068019d952021ce16d10c3eb9c0000f97de3071f922c20ed59a1fccbb93ed20eddc015f7792f076e537cb0dd689dd0e742a29afb3a09da7bc88da4ac3c10ed4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.1](https://github.com/prosody-events/prosody-rb/compare/prosody/v0.5.0...prosody/v0.5.1) (2026-08-20)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* update mimalloc for thread lifecycle safety ([#48](https://github.com/prosody-events/prosody-rb/issues/48)) ([7b08b16](https://github.com/prosody-events/prosody-rb/commit/7b08b1640331450bbde457321142c0785cbf8eed))
|
|
9
|
+
|
|
3
10
|
## [0.5.0](https://github.com/prosody-events/prosody-rb/compare/prosody/v0.4.0...prosody/v0.5.0) (2026-08-19)
|
|
4
11
|
|
|
5
12
|
|
data/Cargo.lock
CHANGED
|
@@ -1432,8 +1432,7 @@ dependencies = [
|
|
|
1432
1432
|
[[package]]
|
|
1433
1433
|
name = "libmimalloc-sys"
|
|
1434
1434
|
version = "0.1.49"
|
|
1435
|
-
source = "
|
|
1436
|
-
checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
|
|
1435
|
+
source = "git+https://github.com/xonatius/mimalloc_rust.git?rev=6d4c41bb10c6d9da1d1b6f07b38c4cc051667f11#6d4c41bb10c6d9da1d1b6f07b38c4cc051667f11"
|
|
1437
1436
|
dependencies = [
|
|
1438
1437
|
"cc",
|
|
1439
1438
|
]
|
|
@@ -1579,8 +1578,7 @@ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
|
1579
1578
|
[[package]]
|
|
1580
1579
|
name = "mimalloc"
|
|
1581
1580
|
version = "0.1.52"
|
|
1582
|
-
source = "
|
|
1583
|
-
checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
|
|
1581
|
+
source = "git+https://github.com/xonatius/mimalloc_rust.git?rev=6d4c41bb10c6d9da1d1b6f07b38c4cc051667f11#6d4c41bb10c6d9da1d1b6f07b38c4cc051667f11"
|
|
1584
1582
|
dependencies = [
|
|
1585
1583
|
"libmimalloc-sys",
|
|
1586
1584
|
]
|
|
@@ -3045,7 +3043,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3045
3043
|
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
3046
3044
|
dependencies = [
|
|
3047
3045
|
"fastrand",
|
|
3048
|
-
"getrandom 0.4
|
|
3046
|
+
"getrandom 0.3.4",
|
|
3049
3047
|
"once_cell",
|
|
3050
3048
|
"rustix",
|
|
3051
3049
|
"windows-sys",
|
data/Cargo.toml
CHANGED
|
@@ -13,7 +13,8 @@ crossbeam-channel = "0.5"
|
|
|
13
13
|
educe = "0.7"
|
|
14
14
|
futures = "0.3"
|
|
15
15
|
magnus = { version = "0.8", default-features = false }
|
|
16
|
-
|
|
16
|
+
# TODO: Use a crates.io release after it includes the fix for https://github.com/microsoft/mimalloc/issues/1287.
|
|
17
|
+
mimalloc = { git = "https://github.com/xonatius/mimalloc_rust.git", rev = "6d4c41bb10c6d9da1d1b6f07b38c4cc051667f11" }
|
|
17
18
|
opentelemetry = "0.32"
|
|
18
19
|
prosody = { version = "0.6.0", features = ["libz-static"] }
|
|
19
20
|
rb-sys = "0.9"
|
data/lib/prosody/version.rb
CHANGED