Skip to content

@powersync/[email protected]

Choose a tag to compare

@github-actions github-actions released this 13 May 14:07
· 164 commits to main since this release
4940204

Minor Changes

  • 9dc4e01: Improve authentication error messages and logs

  • 94f657d: Add additional log metadata to sync requests.

  • d154682: [MongoDB] Add support for plain "mongodb://" URIs for replica sets (multiple hostnames).

  • a602fb2: Support WebSocket requests to be encoded as JSON, which will enable more SDKs to use WebSockets as a transport protocol when receiving sync lines.

  • ca0a566: - Added typecasting to !env YAML custom tag function. YAML config environment variable substitution now supports casting string environment variables to number and boolean types.

    replication:
      connections: []
    
    storage:
      type: mongodb
    
    api:
      parameters:
        max_buckets_per_connection: !env PS_MAX_BUCKETS::number
    
    healthcheck:
      probes:
        use_http: !env PS_MONGO_HEALTHCHECK::boolean
    • Added the ability to customize healthcheck probe exposure in the configuration. Backwards compatibility is maintained if no healthcheck->probes config is provided.
    healthcheck:
      probes:
        # Health status can be accessed by reading files (previously always enabled)
        use_filesystem: true
        # Health status can be accessed via HTTP requests (previously enabled for API and UNIFIED service modes)
        use_http: true

Patch Changes