Package: rabbitmq-server / 4.0.5-8

Metadata

Package Version Patches format
rabbitmq-server 4.0.5-8 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
lets use python3 not python binary.patch | (download)

deps/amqp10_common/codegen.py | 2 1 + 1 - 0 !
deps/rabbit_common/codegen.py | 2 1 + 1 - 0 !
deps/rabbitmq_auth_backend_http/examples/rabbitmq_auth_backend_django/manage.py | 2 1 + 1 - 0 !
deps/rabbitmq_auth_backend_http/examples/rabbitmq_auth_backend_django/start.sh | 4 2 + 2 - 0 !
deps/rabbitmq_consistent_hash_exchange/examples/python/example1.py | 2 1 + 1 - 0 !
deps/rabbitmq_consistent_hash_exchange/examples/python/example2.py | 2 1 + 1 - 0 !
deps/rabbitmq_consistent_hash_exchange/examples/python/example3.py | 2 1 + 1 - 0 !
7 files changed, 8 insertions(+), 8 deletions(-)

 using /usr/bin/python3, not just python
rabbitmq dist.mk.patch | (download)

deps/rabbit_common/mk/rabbitmq-dist.mk | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 make 4.3 compatibility change
elixir 1.18 compat.patch | (download)

deps/json/LICENSE | 2 1 + 1 - 0 !
deps/json/README.md | 16 8 + 8 - 0 !
deps/json/lib/json.ex | 38 19 + 19 - 0 !
deps/json/lib/json/decoder.ex | 36 18 + 18 - 0 !
deps/json/lib/json/encoder.ex | 26 13 + 13 - 0 !
deps/json/lib/json/encoder/default_implementations.ex | 64 32 + 32 - 0 !
deps/json/lib/json/encoder/errors.ex | 18 9 + 9 - 0 !
deps/json/lib/json/encoder/helpers.ex | 6 3 + 3 - 0 !
deps/json/lib/json/logger.ex | 4 2 + 2 - 0 !
deps/json/lib/json/parser.ex | 44 22 + 22 - 0 !
deps/json/lib/json/parser/array.ex | 22 11 + 11 - 0 !
deps/json/lib/json/parser/number.ex | 24 12 + 12 - 0 !
deps/json/lib/json/parser/object.ex | 20 10 + 10 - 0 !
deps/json/lib/json/parser/string.ex | 28 14 + 14 - 0 !
deps/json/lib/json/parser/unicode.ex | 10 5 + 5 - 0 !
deps/json/mix.exs | 6 3 + 3 - 0 !
deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/export_definitions_command.ex | 2 1 + 1 - 0 !
deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/list_user_limits_command.ex | 4 2 + 2 - 0 !
deps/rabbitmq_cli/lib/rabbitmq/cli/ctl/commands/list_vhost_limits_command.ex | 4 2 + 2 - 0 !
deps/rabbitmq_cli/lib/rabbitmq/cli/formatters/json.ex | 2 1 + 1 - 0 !
deps/rabbitmq_cli/lib/rabbitmq/cli/formatters/json_stream.ex | 2 1 + 1 - 0 !
deps/rabbitmq_cli/lib/rabbitmqctl.ex | 6 3 + 3 - 0 !
22 files changed, 192 insertions(+), 192 deletions(-)

 elixir 1.18 compatibility patch
 The json dependency included in RMQ conflicts with the JSON
 module provided by Elixir >= 1.18.
 .
 Rename the json module internally so that it does not conflict
 with the same module name used in Elixir.