Skip to content

Release v1.4.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 01 Dec 19:48
· 4 commits to main since this release
v1.4.2
bd232ef

Added

  • Add QueueSubscriber Option for JetstreamToKafka. Thanks to @aonurdemir for the contribution (#89)
connect: [
  {
      type: "JetStreamToKafka",
      id: "Telemetry",
      subject: "my-subscription.>",
      durablename: "bridge-consumer",
      queuename: "bridge-consumer"
      stream: my-stream
      startatsequence: 0
  }
]
  • Add SASL TLS option to always use tls (#96)
connect: [
  {
      sasl: {
        "user": "kafka-admin",
        "password": "kafka-secret",
        "mechanism": "scram-sha-512",
	"tls": true
      }
  }
]

Full Changelog: v1.4.1...v1.4.2