prosody 0.1.3-aarch64-linux → 0.2.1-aarch64-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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +24 -0
- data/README.md +14 -1
- data/lib/prosody/3.2/prosody.so +0 -0
- data/lib/prosody/3.3/prosody.so +0 -0
- data/lib/prosody/3.4/prosody.so +0 -0
- data/lib/prosody/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f67b6abff5c96fc568a34609fde3beb11063390581e66a926a8fc1609800ede
|
|
4
|
+
data.tar.gz: e0fb8b67b5456c70a3633dc6a73e9f978a3185a6d20fbbbc50f74d7165cfdce3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8237aece450fb91b8601753bba03d644f7b653847f275d6d747a5a93bae7b38d64b834dfcccdf12037367b2f9f720cceb8bb154271076897999673323a6a45e8
|
|
7
|
+
data.tar.gz: ccbdb0a1ceb436ebaebf126d6fd8e5993cf633aecc85e6c4af1afade1b9c29abdd836803fe9ddf222c65df62b89302d3b3870383551ac00c0397add5438b93f5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.1](https://github.com/prosody-events/prosody-rb/compare/prosody/v0.2.0...prosody/v0.2.1) (2026-05-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ci:** define ERROR_COMMITMENT_MINIMUM for Windows cross-compile ([#22](https://github.com/prosody-events/prosody-rb/issues/22)) ([870d821](https://github.com/prosody-events/prosody-rb/commit/870d82132868b376ae9f1e80181de80ff3859dc3))
|
|
9
|
+
|
|
10
|
+
## [0.2.0](https://github.com/prosody-events/prosody-rb/compare/prosody/v0.1.3...prosody/v0.2.0) (2026-05-11)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **deps:** upgrade prosody to 0.3.0 ([#20](https://github.com/prosody-events/prosody-rb/issues/20)) ([4c7a7f0](https://github.com/prosody-events/prosody-rb/commit/4c7a7f020ce537696073f22f649b05b48b8b513a))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **deps:** upgrade prosody to 0.2.1 ([#17](https://github.com/prosody-events/prosody-rb/issues/17)) ([24300d0](https://github.com/prosody-events/prosody-rb/commit/24300d08d0f5046b4d7fccf4f8fdf32cc05e2a71))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Performance Improvements
|
|
24
|
+
|
|
25
|
+
* **deps:** migrate from jemalloc to mimalloc v3 ([#19](https://github.com/prosody-events/prosody-rb/issues/19)) ([02aa0dd](https://github.com/prosody-events/prosody-rb/commit/02aa0dd6baeabc1a5531c98e4cd09e401f8debf4))
|
|
26
|
+
|
|
3
27
|
## [0.1.3](https://github.com/prosody-events/prosody-rb/compare/prosody/v0.1.2...prosody/v0.1.3) (2026-04-21)
|
|
4
28
|
|
|
5
29
|
|
data/README.md
CHANGED
|
@@ -335,7 +335,20 @@ PROSODY_STALL_THRESHOLD=15s # Default stall detection threshold
|
|
|
335
335
|
4. Setting the threshold too low might cause false positives, while setting it too high could delay detection of actual
|
|
336
336
|
issues.
|
|
337
337
|
5. The probe server is only active when consuming messages (not for producer-only usage).
|
|
338
|
-
|
|
338
|
+
> [!NOTE]
|
|
339
|
+
> **Rails users:** Because prosody-rb is built on the async gem, handlers run on fibers rather than threads. Rails defaults ActiveSupport's isolation level to `:thread`, which causes ActiveRecord connections to be shared across fibers and produces errors like:
|
|
340
|
+
>
|
|
341
|
+
> ```
|
|
342
|
+
> ActiveRecord::StatementInvalid: Mysql2::Error: This connection is in use by: #<Fiber
|
|
343
|
+
> ```
|
|
344
|
+
>
|
|
345
|
+
> Set the isolation level to `:fiber` in `config/application.rb`:
|
|
346
|
+
>
|
|
347
|
+
> ```ruby
|
|
348
|
+
> config.active_support.isolation_level = :fiber
|
|
349
|
+
> ```
|
|
350
|
+
|
|
351
|
+
### Client Stall State
|
|
339
352
|
You can monitor the stall state programmatically using the client's methods:
|
|
340
353
|
|
|
341
354
|
```ruby
|
data/lib/prosody/3.2/prosody.so
CHANGED
|
Binary file
|
data/lib/prosody/3.3/prosody.so
CHANGED
|
Binary file
|
data/lib/prosody/3.4/prosody.so
CHANGED
|
Binary file
|
data/lib/prosody/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: prosody
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- Joshua Griffith
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: async
|