Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump rabbitmq-client from 4.6.0 to 5.0.2 #135

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 27, 2025

Bumps rabbitmq-client from 4.6.0 to 5.0.2.

Changelog

Sourced from rabbitmq-client's changelog.

v5.0.2

Bug Fixes

  • fix channel setup race

v5.0.1

Bug Fixes

  • 38c61f5 lazy channel should not get perma-stuck

v5.0.0

BREAKING CHANGES:

6766969 drop support for node 16

Node 16 hit end-of-life on 2023-09-11. Typescript compiler target has been updated accordingly.

8000e78 rm publisher.publish()

This method was just an alias for send() and has been deprecated for quite a while. To migrate just find & replace.

3bbfc87 consumer reply forces exchange=""

See discussion in cody-greene/node-rabbitmq-client#42

The reply function provided to consumer handlers now forces the exchange argument to an empty string.

If you want to publish to a different exchange, then use a dedicated publisher. This is already the default behavior so unless you're using reply(msg, {exchange: 'whatever'}) you don't have to change anything.

const pub = rabbit.createPublisher()
const sub = rabbit.createConsumer({queue: 'myqueue'}, async (msg, reply) => {
reply('my response') // GOOD
reply('my response', {exchange: 'other'}) // BAD
await pub.send({exchange: 'other'}, 'my response') // GOOD
})

Features

  • a866874 (#58) connection.onConnect() Returns a promise which is resolved when the connection is established
Commits
  • c44a4b4 fix: multiple sends should all wait for channel to be set up (#67)
  • 9f3c6ab fix: lazy channel should not get perma-stuck (#64)
  • 1b137de prepare 5.0
  • 18432ae fix: increase event listeners on the socket
  • 8000e78 BREAKING: rm publisher.publish()
  • a866874 feat: connection.onConnect() (#58)
  • 3bbfc87 BREAKING: consumer reply forces exchange=""
  • 6766969 BREAKING: drop support for node 16
  • 45af6b9 upgrade ts & eslint
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [rabbitmq-client](https://github.com/cody-greene/node-rabbitmq-client) from 4.6.0 to 5.0.2.
- [Changelog](https://github.com/cody-greene/node-rabbitmq-client/blob/master/CHANGELOG.md)
- [Commits](cody-greene/node-rabbitmq-client@v4.6.0...v5.0.2)

---
updated-dependencies:
- dependency-name: rabbitmq-client
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants