Skip to content
This repository has been archived by the owner on May 15, 2019. It is now read-only.

Releases: googlearchive/cloud-functions-emulator

1.0.0-alpha.17

05 May 05:49
Compare
Choose a tag to compare
1.0.0-alpha.17 Pre-release
Pre-release
1.0.0-alpha.17 - 04 May 2017
Breaking changes
  • #92 - Switch to host and bindHost options, by @kpruden
    • Fixes #91 (Support connecting to an emulator behind a NAT)
Backwards compatible changes
  • #89 - Refactor how the logs work, by @laurenlong
    • Added a --tail option to functions start. If true, functions start
      will not exit right away. Instead the Emulator's logs will be streamed to
      the terminal. Pressing Ctrl+C would stop the Emulator.
Bug fixes
  • #90 - JSON payload not being parsed correctly on Windows Shell
  • #97 - Improve --stage-bucket support
Other
  • Upgraded dependencies

1.0.0-alpha.16

13 Apr 23:38
c3b3cac
Compare
Choose a tag to compare
1.0.0-alpha.16 Pre-release
Pre-release
1.0.0-alpha.16 - 13 April 2017
Backwards compatible changes
  • #73 - Warn user when local version of Node is greater than 6.9.
  • When calling Controller#start programmatically, you can now pass an options object to configure the child process, and you'll receive the handle to the child process when the promise resolves.
  • Add a getOperation method to the clients
  • Added more debug logging
  • #84 - Support for testing a database trigger
Bug fixes
  • Function timeouts now work
  • Fixed gRPC client request deadlines
  • Hopefully fixed the following (they're hard to reproduce):
    • #76 - Progress bar for deploying functions?
    • #77 - Emulator fails to start
    • #80 - NotFoundError

1.0.0-alpha.15

11 Mar 01:59
c50851e
Compare
Choose a tag to compare
1.0.0-alpha.15 Pre-release
Pre-release
1.0.0-alpha.15 - 10 March 2017
Bug fixes
  • #71 - "status" option produces bad 'HTTP Trigger' path

1.0.0-alpha.14

11 Mar 01:59
9515d26
Compare
Choose a tag to compare
1.0.0-alpha.14 Pre-release
Pre-release
1.0.0-alpha.14 - 08 March 2017
Bug fixes
  • Fixes undefined method error when trying to invoke functions that don't exist.

1.0.0-alpha.13

08 Mar 18:41
6d9f229
Compare
Choose a tag to compare
1.0.0-alpha.13 Pre-release
Pre-release
1.0.0-alpha.13 - 08 March 2017
Breaking changes
  • #69 - Move --debug and --inspect into their own commands. Debugging has changed, please see Debugging-functions for details.

1.0.0-alpha.12

11 Mar 02:00
639e394
Compare
Choose a tag to compare
1.0.0-alpha.12 Pre-release
Pre-release
1.0.0-alpha.12 - 06 March 2017
Bug fixes
  • #64 - Can start Emulator with mismatching versions

1.0.0-alpha.11

06 Mar 09:32
2c6f8e4
Compare
Choose a tag to compare
1.0.0-alpha.11 Pre-release
Pre-release
1.0.0-alpha.11 - 06 March 2017
Breaking changes
  • Some options have been removed from commands where they weren't needed
Other
  • Cleaned up of the CLI help text

1.0.0-alpha.10

11 Mar 02:00
b098e66
Compare
Choose a tag to compare
1.0.0-alpha.10 Pre-release
Pre-release
1.0.0-alpha.10 - 05 March 2017
Backwards compatible changes
  • Export all Emulator classes

1.0.0-alpha.9

05 Mar 20:27
ca6f6d5
Compare
Choose a tag to compare
1.0.0-alpha.9 Pre-release
Pre-release
1.0.0-alpha.9 - 05 March 2017
Breaking changes
  • #62 - Add support for live-reloading of functions. Function workings will now automatically shutdown when they detect changes to the function's code. A new worker will be started the next time the function is called.

1.0.0-alpha.8

05 Mar 18:32
07a8b78
Compare
Choose a tag to compare
1.0.0-alpha.8 Pre-release
Pre-release
1.0.0-alpha.8 - 05 March 2017
Bug fixes
  • #48 - Deploying an already deployed function should update the existing function, not fail