Skip to content

Releases: adonisjs/transmit

Do not send "false" if stream is not store in the same instance

17 May 19:18
Compare
Choose a tag to compare
  • fix: do not send "false" if stream is not store in the same instance (4820ae9)

Full Changelog: v1.0.0...v1.0.1

Stable release

24 Apr 11:31
68f41f2
Compare
Choose a tag to compare

Nothing change since last version

Move from @rlanz/bus to @boringnode/bus

11 Apr 17:03
Compare
Choose a tag to compare
  • refactor: migrate from @rlanz/bus to @boringnode/bus (ab4ef45)

Full Changelog: v0.6.0...v0.7.0

Allow more customization on route handler

10 Apr 16:39
Compare
Choose a tag to compare

Breaking

Removing the option routeHandlerDomain in favor of routeHandlerModifier.

Features

You can now use the routeHandlerModifier option in the config file to pass a callback that will be executed for each routes created by Transmit's provider.

For example, if you would like your route to be registered on the example.com domain you can do the following:

defineConfig({
  transport: null,
  routeHandlerModifier: (route) => route.domain('example.com'),
}),

Commits

  • refactor(provider): allow more customization (c41c3ee)

Full Changelog: v0.5.2...v0.6.0

Allow to register custom domain for handlers

10 Apr 16:22
Compare
Choose a tag to compare

You can now add a custom domain from the config/transmit.ts file using the routeHandlerDomain key.
This domain will be used when registering the 3 route handlers Transmit needs.

Commits

  • chore: migrate to release-it (bf4ee4c)
  • fix(provider): allow to register custom domain for handlers (291abf8)
  • ci: update ga workflows (711992c)

Full Changelog: v0.5.1...v0.5.2

Update dependencies

27 Mar 20:51
Compare
Choose a tag to compare

Send subscription and unsubscription to the bus

26 Mar 21:29
Compare
Choose a tag to compare

Clear the interval when shutting down

16 Mar 18:49
Compare
Choose a tag to compare

Publish the whole build folder

13 Mar 13:11
f36c533
Compare
Choose a tag to compare

Move away from the root the redis transport export

08 Mar 20:54
Compare
Choose a tag to compare
  • fix: remove redis export from root (4451758)

Full Changelog: v0.4.0...v0.4.1