Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

v2.5.0-alpha.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@rustatian rustatian released this 20 Sep 07:55
· 110 commits to master since this release
79bd08f

💔 BC:

  • 🔨 Some drivers now use a new config key to handle local configuration. Involved plugins and drivers:
  • plugins: broadcast, kv
  • drivers: memory, redis, memcached, boltdb.

ATTENTION!!!, this is the configuration BC release, please, update your configuration:

Old style:

broadcast:
    default:
        driver: memory
        interval: 1

New style:

broadcast:
    default:
        driver: memory
        config: {} <--------------- NEW
kv:
    memory-rr:
        driver: memory
        config: <--------------- NEW
            interval: 1

kv:
    memcached-rr:
        driver: memcached
        config: <--------------- NEW
            addr:
                - "127.0.0.1:11211"

broadcast:
  default:
    driver: redis
    config: <------------------ NEW
      addrs:
        - "127.0.0.1:6379"

👀 New:

  • ✏️ [BETA] GRPC plugin updated to v2.
  • ✏️ Roadrunner-plugins repository. This is the new home for the roadrunner plugins with documentation, configuration samples, and common problems. Feel free to read new docs for the plugins: docs

🩹 Fixes:

  • 🐛 Fix: local and global configuration parsing

📦 Packages:

  • 📦 Roadrunner v2.5.0
  • 📦 Roadrunner-plugins v2.5.0
  • 📦 Roadrunner-temporal v1.0.10