Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 1.62 KB

CHANGELOG.md

File metadata and controls

20 lines (18 loc) · 1.62 KB

3.0.6

  • Fixes (#84) Client:Get(remoteId) causing delays

3.0.4 (Luau-only release)

  • Fixes type issues (#82) - Namespace, OnEvent, OnFunction

3.0.3

3.0.2

  • Fixes namespaced remotes not being generated correctly at runtime (#67)

3.0.1 (Luau-only release)

  • Fixed a bug with the Luau version of Net where it would sync incorrectly and crash Rojo.

3.0.0

  • Added ExperienceBroadcastEvent - For broadcasting events between servers in your experience. This can be used for global things like cross-server chats, server browsers and announcements.
  • [BREAKING] The second argument of Definitions.Create is now a configuration object, rather than the global middleware. Global middleware can be set by the ServerGlobalMiddleware property of the configuration.
  • [BREAKING] The old API in Net.Server and Net.Client was removed - only the classes remain now. It is recommended you use the definitions API as direct class access is considered unsafe.
  • Server definitions now use Get as well, Create is deprecated.
  • Remotes are automatically created on the server (This is configurable in the definitions configuration)
  • Get calls on the client yield for the remote (This is also configurable in the definitions configuration, if you want the old behaviour)
  • Improved connection behaviour with server events.