All Versions
99
Latest Version
Avg Release Cycle
17 days
Latest Release
-

Changelog History
Page 3

  • v5.1.1 Changes

    May 11, 2020

    ๐Ÿ›  Fix

    โœ… Disabling telemetry for tests

    ๐Ÿ›  Fixing critical bug with client sdk version tracking

  • v5.1.0 Changes

    May 11, 2020

    Feat

    โž• Adding telemetry. The server code is also in the rep (under telemetry-server).

    ๐Ÿš€ This uses a random uuid as your deploymentId, which is pretty much the only way I can avoid having thousands of records in the database from one machine restarting / ci process.

    If possible please use a different ID for production environments!

  • v5.0.16 Changes

    April 30, 2020

    Feat

    • โž• Add two new plugins:

      • heap-snapshot This allows deepstream to save its heap space for analysis by v8 tools
      plugins:
        heap-snapshot:
          name: 'heap-snapshot'
          options:
            interval: 60000
            outputDir: file(../heap-snapshots)
      
      • aws This is a general plugin for all AWS services, currently allows us to sync the heap-snapshot directory to S3 which is useful when running via docker. The functionality however is generic, so you could have a plugin that outputs other useful data. You can also very simply add more services (or more of the same ones). This just makes it easier for us to maintain the plugin.
      plugins:
        aws:
          name: aws
          options:
            accessKeyId: ${AWS_ACCESS_KEY}
            secretAccessKey: ${AWS_SECRET_ACCESS_KEY}
            services:
              - type: s3-sync
                options:
                  syncInterval: 60000
                  syncDir: file(../heap-snapshots)
                  bucketName: ${SYNC_BUCKET_NAME}
                  bucketRegion: ${AWS_DEFAULT_REGION}
      
    • SocketData is passed to monitoring service in order to allow for fined grain monitoring.

    ๐Ÿ›  Fix

    • uws service accepts options requests and enforces CORS params
  • v5.0.15 Changes

    April 24, 2020

    ๐Ÿ›  Fix

    • ๐Ÿ‘ Allowing valve file to be passed in via nodeJS config (@jaime-ez)

    Misc

    • โšก๏ธ Updating uws dependency
  • v5.0.14 Changes

    April 19, 2020

    Misc

    • โž• Adding a log line for MQTT incoming connections for clarity
  • v5.0.13 Changes

    April 16, 2020

    ๐Ÿ›  Fix

    • ๐Ÿ›  Fixing issue where record updates via clusters didn't always get sent correctly to subscribers

    Misc

    • โšก๏ธ Updating dependencies
  • v5.0.12 Changes

    March 06, 2020

    ๐Ÿ›  Fix

    • ๐Ÿ›  Fixing issue where sending messages between multiple protocols can break. Verbose logging will be removed in the next release.
  • v5.0.11 Changes

    March 05, 2020

    ๐Ÿ›  Fix

    • โž• adding debug logs for listening, and allowing to subscribers to listen to self
  • v5.0.10 Changes

    March 05, 2020

    ๐Ÿ›  Fix

    • ๐Ÿ›  Fixing log level output as debug logs are being ignored
  • v5.0.9 Changes

    February 21, 2020

    Misc

    • Attempt to fix npm publishing issue due to travis bug