Moleculer v0.14.6 Release Notes

Release Date: 2020-04-11 // about 4 years ago
  • ๐Ÿ†• New NewRelic zipkin tracing exporter

    Thanks for @jalerg, there is a NewRelic tracing exporter. PR #713

    // moleculer.config.js
    {
        tracing: {
            enabled: true,
            events: true,
            exporter: [
                {
                    type: 'NewRelic',
                    options: {
                        // NewRelic Insert Key
                        insertKey: process.env.NEW_RELIC_INSERT_KEY,
                        // Sending time interval in seconds.
                        interval: 5,
                        // Additional payload options.
                        payloadOptions: {
                            // Set `debug` property in payload.
                            debug: false,
                            // Set `shared` property in payload.
                            shared: false,
                        },
                        // Default tags. They will be added into all span tags.
                        defaultTags: null,
                    },
                },
            ],
        },    
    }
    

    Other changes

    • ๐Ÿ›  fix stream chunking issue. PR #712
    • ๐Ÿ›  fix INFO packet sending issue after reconnecting
    • safely handling disconnected state for transporters (heartbeat queuing issue). PR #715
    • ๐Ÿ›  fix orhpan response issue in case of streaming with disabled balancer. #709
    • โšก๏ธ update dependencies, audit fix