Adapt to upstream hooks API change. Fixes #1658

v3-stable
Thomas Reynolds 2015-11-11 13:14:31 -08:00
parent e86110f506
commit 78fb92d497
3 changed files with 14 additions and 7 deletions

View File

@ -1,6 +1,13 @@
master
===
3.4.1
===
* Adapt to upstream hooks API change, fixing `after_render` hook bugs. (#1658)
* Add a bunch of requires to help Windows users.
* Refator Data Loader to prevent middleman from crashing due to invalid data file. (#1633)
3.4.0
===

View File

@ -296,10 +296,10 @@ module Middleman
# Allow hooks to manipulate the template before render
self.class.callbacks_for_hook(:before_render).each do |callback|
# Uber::Options::Value doesn't respond to call
newbody = if callback.respond_to?(:call)
callback.call(body, path, locs, template_class)
newbody = if callback.is_a? ::Uber::Options::Value
callback.call(self, body, path, locs, template_class)
elsif callback.respond_to?(:evaluate)
callback.evaluate(self, body, path, locs, template_class)
callback.call(body, path, locs, template_class)
end
body = newbody if newbody # Allow the callback to return nil to skip it
end
@ -315,10 +315,10 @@ module Middleman
# Allow hooks to manipulate the result after render
self.class.callbacks_for_hook(:after_render).each do |callback|
# Uber::Options::Value doesn't respond to call
newcontent = if callback.respond_to?(:call)
callback.call(content, path, locs, template_class)
newcontent = if callback.is_a? ::Uber::Options::Value
callback.call(self, content, path, locs, template_class)
elsif callback.respond_to?(:evaluate)
callback.evaluate(self, content, path, locs, template_class)
callback.call(content, path, locs, template_class)
end
content = newcontent if newcontent # Allow the callback to return nil to skip it
end

View File

@ -1,5 +1,5 @@
module Middleman
# Current Version
# @return [String]
VERSION = '3.4.0' unless const_defined?(:VERSION)
VERSION = '3.4.1' unless const_defined?(:VERSION)
end