Skip to content
Snippets Groups Projects
Commit 207804fa authored by Christophe de Vienne's avatar Christophe de Vienne
Browse files

Add version 3.3.2

parent f6c6c5e1
No related branches found
No related tags found
No related merge requests found
Pipeline #67511 passed
{
"xbus-api": "3.3",
"xbus": "3.3.0",
"go-xbus": "v3.3.1"
"xbus": "3.3.2",
"go-xbus": "v3.3.3"
}
......@@ -896,3 +896,5 @@
xbus.io/go-xbus/v3 v3.3.0/go.mod h1:7peOPZ7Z9iXm6ilJOH8BohQz7imB96eGMS1oz5cunuk=
xbus.io/go-xbus/v3 v3.3.1 h1:kAKxTyhu8643IppHivYUUrEgPLYCqirIGvqk/0uh+68=
xbus.io/go-xbus/v3 v3.3.1/go.mod h1:7peOPZ7Z9iXm6ilJOH8BohQz7imB96eGMS1oz5cunuk=
xbus.io/go-xbus/v3 v3.3.3 h1:7GQQMLYJbQSjR4viRpkTgwEtFlhLZDnri/KG5zxeKnY=
xbus.io/go-xbus/v3 v3.3.3/go.mod h1:7peOPZ7Z9iXm6ilJOH8BohQz7imB96eGMS1oz5cunuk=
......@@ -2,6 +2,54 @@
History
=======
3.3.2 (2023-10-06)
------------------
3.3.2-rc.3
''''''''''
- envelope cache: Fix a memory leak.
3.3.2-rc.2
''''''''''
- envelope-storage-ng: Fix receiving a null fragment followed by a complete
fragment.
3.3.2-rc.1 (2023-09-20)
'''''''''''''''''''''''
- debug info: add 'pprof' for retrieving all runtime/pprof profiles
- envelope purge: improved performance by
- indexing ``route.envelope_id``
- adjust batch size
- parallelize more
- director: fix memory leaks
- update go-xbus, fixing a memory leak
3.3.1 (2023-07-11)
------------------
- api: implement 'Actor.Create'. The API existed already but was never
implemented.
- director: Max delay between attempts and delay increase factor can now be
changed in a Actor config with the following entries:
- ``xbus.director.delay.max``: a duration. Accepted units are 'ms', 's', 'm', 'h'
- ``xbus.director.delay.increase-factor``: a increase factor. Can be expressed
as a percentage as in "50%", or a floating point number as in "0.5".
- Fix: Canceling a process now properly unshedule jobs that are waiting for a
new attempt after a TooBusy error.
3.3.0 (2022-12-16)
------------------
......
......@@ -20,6 +20,16 @@
Versions
========
3.3.3 (2023-09-22)
------------------
- EnvelopePurge: report the total envelope count in addition to the purged count
3.3.2 (2023-09-20)
------------------
- api/json: fix a memory leak
3.3.1 (2022-12-16)
------------------
......
3.3.2 (2023-07-11)
==================
This new patch of the 3.3.x series fixes memory leaks.
Changes
-------
This release
- fixes several memory leaks
- fix a bug in the new envelope storage.
- improve performances of the envelope purge.
Documentation
-------------
Documentation is online:
https://docs.xbus.io/
Downloads
---------
Source and binaries are available on our download area:
- https://dl.xbus.io/xbus/src/xbus-3.3.2-src.tar.xz
version "personal":
- https://dl.xbus.io/xbus/personal/xbus-3.3.2-linux_amd64.tar.xz
- https://dl.xbus.io/xbus/personal/xbus-3.3.2-windows_amd64.tar.xz
- https://dl.xbus.io/xbus/personal/xbus-3.3.2-darwin_amd64.tar.xz
version "enterprise":
- https://dl.xbus.io/xbus/enterprise/xbus-3.3.2-enterprise-linux_amd64.tar.xz
- https://dl.xbus.io/xbus/enterprise/xbus-3.3.2-enterprise-windows_amd64.tar.xz
- https://dl.xbus.io/xbus/enterprise/xbus-3.3.2-enterprise-darwin_amd64.tar.xz
version "lts":
- https://dl.xbus.io/xbus/lts/xbus-3.3.2-lts-linux_amd64.tar.xz
- https://dl.xbus.io/xbus/lts/xbus-3.3.2-lts-windows_amd64.tar.xz
- https://dl.xbus.io/xbus/lts/xbus-3.3.2-lts-darwin_amd64.tar.xz
Docker images
-------------
Get the docker images:
version "personal":
- orus/xbusd:3.3.2
- orus/xbusctl:3.3.2
- orus/xbus-client:3.3.2
- orus/xbus-http:3.3.2
- orus/xbus-fullenv:3.3.2
version "enterprise":
- quay.orus.io/xbus-enterprise/xbusd:3.3.2-enterprise
- quay.orus.io/xbus-enterprise/xbusctl:3.3.2-enterprise
- quay.orus.io/xbus-enterprise/xbus-client:3.3.2-enterprise
- quay.orus.io/xbus-enterprise/xbus-http:3.3.2-enterprise
- quay.orus.io/xbus-enterprise/xbus-fullenv:3.3.2-enterprise
version "LTS":
- quay.orus.io/xbus-lts/xbusd:3.3.2-lts
- quay.orus.io/xbus-lts/xbusctl:3.3.2-lts
- quay.orus.io/xbus-lts/xbus-client:3.3.2-lts
- quay.orus.io/xbus-lts/xbus-http:3.3.2-lts
- quay.orus.io/xbus-lts/xbus-fullenv:3.3.2-lts
......@@ -4,6 +4,7 @@
=============
.. toctree::
3.3.2
3.3.1
3.3.0
3.3.0-rc.6
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment