Skip to content

Commit

Permalink
release: functions_framework 0.7.0 (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma committed Sep 25, 2020
1 parent eba07a0 commit 7256859
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

### v0.7.0 / 2020-09-25

* Now requires Ruby 2.5 or later.
* BREAKING CHANGE: Renamed "context" hash to "globals" and made it read-only for normal functions.
* BREAKING CHANGE: Server config is no longer passed to startup blocks.
* ADDED: Provided a "logger" convenience method in the context object.
* ADDED: Globals can be set from startup blocks, which is useful for initializing shared resources.
* ADDED: Support for testing startup tasks in the Testing module.
* ADDED: Support for controlling logging in the Testing module.
* FIXED: Fixed crash introduced in 0.6.0 when a block didn't declare an expected argument.
* FIXED: Better support for running concurrent tests.
* DOCS: Expanded documentation on initialization, execution context, and shared resources.
* DEPRECATED: The functions-framework executable is deprecated. Use functions-framework-ruby instead.

### v0.6.0 / 2020-09-17

* ADDED: You can use the --version flag to print the framework version
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
```ruby
# Gemfile
source "https://rubygems.org"
gem "functions_framework", "~> 0.5"
gem "functions_framework", "~> 0.7"
```

Create a file called `app.rb` and include the following code. This defines a
Expand Down
2 changes: 1 addition & 1 deletion lib/functions_framework/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ module FunctionsFramework
# Version of the Ruby Functions Framework
# @return [String]
#
VERSION = "0.6.0".freeze
VERSION = "0.7.0".freeze
end

0 comments on commit 7256859

Please sign in to comment.