mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Prep v5
This commit is contained in:
parent
6b88e315aa
commit
59ab46863e
2 changed files with 51 additions and 47 deletions
36
CHANGELOG.md
36
CHANGELOG.md
|
@ -1,43 +1,30 @@
|
|||
# master
|
||||
|
||||
# 5.0.0.rc.1
|
||||
|
||||
- Support NO_COLOR: https://no-color.org
|
||||
- Add `--bail` to fail a build upon the first error and show the error messages. (#2246)
|
||||
- Update activesupport to 5.x and padrino to 0.14.x
|
||||
- Only SassC from now on.
|
||||
- Add `--dry-run` to run a build, but skip outputting to disk.
|
||||
- Incremental builds: `--track-dependencies` and `--only-changed` flags (#2220)
|
||||
- Remove Rack support in favor of `resource.filters << proc { |oldbody| newbody }`
|
||||
- `manipulate_resource_list_container!` as a faster, less functional approach.
|
||||
|
||||
# 4.3.0.rc.4
|
||||
|
||||
- i18n was accidentally duplicating requests for extension-based template (file.es.html)
|
||||
- Make sass cache configurable with either `SASS_CACHE_LOCATION` env variable or `sass_cache_location` Middleman config variable. (#2213)
|
||||
|
||||
# 4.3.0.rc.3
|
||||
|
||||
- Fix Internal Server Error from `__middleman` meta page in dev. (#2187)
|
||||
- Reduce mutex hits in parallel build (#2107)
|
||||
- Docker-ized CLI
|
||||
|
||||
# 4.3.0.rc.2
|
||||
|
||||
- Add Errno::ENETUNREACH to exception list in BasicNetworkResolver (#2195)
|
||||
- Update Rubocop and apply new lint rules
|
||||
- Do not create unnecessary array in IgnoreDescriptor (#2183)
|
||||
- Fix reload of watched sources with destination_dir (#2190)
|
||||
- Fix localization and recursion issues of Traversal::parent. (#2188)
|
||||
- Use EnhancedHash for partial locals (#2169)
|
||||
|
||||
# 4.3.0.rc.1
|
||||
|
||||
- Test against Ruby 2.5 (#2166)
|
||||
- Update Rubocop and Yard (#2161)
|
||||
- Discover template in local directory if applicable (#2157)
|
||||
- Better error message when init fails to clone git repo (#2159)
|
||||
- Allow bundle path to be specified in init command (#2154)
|
||||
- Add ExtensionManager#active? to check if extension is active (#2156)
|
||||
- Resolve Haml 5 warnings (#2149)
|
||||
- Clear lazy map after resolving Tilt templates (#2132)
|
||||
- Fix ignore of I18n files (#2143)
|
||||
- Fix redirect destination lookup (#2140)
|
||||
|
@ -51,8 +38,25 @@
|
|||
- Add support for locale suffixes to link_to (#2065)
|
||||
- Allow absolute :data_dir paths. Addresses #2042
|
||||
|
||||
# 4.2.2
|
||||
# 4.3.4
|
||||
|
||||
- Fix `ignore` of files controlled by i18n. #2039 #2143
|
||||
|
||||
# 4.3.3
|
||||
|
||||
- Add `--bail` to fail a build upon the first error and show the error messages. (#2246)
|
||||
|
||||
# 4.3.2
|
||||
|
||||
- Resolve Haml 5 warnings (#2149)
|
||||
|
||||
# 4.3.1
|
||||
|
||||
- Fix sassc imports of gem files that expect old sass to be present.
|
||||
|
||||
# 4.3.0
|
||||
|
||||
- Only SassC from now on.
|
||||
- Fix regression (all the way back to v3) for Integer/Date keys in YAML. #2238
|
||||
- Fix API to allow rack server according to docs (middleman/middlemanapp.com#794)
|
||||
- Require i18n ~> 0.8.0 to handle 0.7.0 security issue.
|
||||
|
|
62
Gemfile.lock
62
Gemfile.lock
|
@ -35,26 +35,26 @@ PATH
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
activesupport (5.2.2)
|
||||
activesupport (5.2.3)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
i18n (>= 0.7, < 2)
|
||||
minitest (~> 5.1)
|
||||
tzinfo (~> 1.1)
|
||||
addressable (2.5.2)
|
||||
addressable (2.6.0)
|
||||
public_suffix (>= 2.0.2, < 4.0)
|
||||
aruba (0.14.7)
|
||||
childprocess (>= 0.6.3, < 0.10.0)
|
||||
aruba (0.14.9)
|
||||
childprocess (>= 0.6.3, < 1.1.0)
|
||||
contracts (~> 0.9)
|
||||
cucumber (>= 1.3.19)
|
||||
ffi (~> 1.9)
|
||||
rspec-expectations (>= 2.99)
|
||||
thor (~> 0.19)
|
||||
ast (2.4.0)
|
||||
backports (3.11.4)
|
||||
backports (3.15.0)
|
||||
binding_of_caller (0.8.0)
|
||||
debug_inspector (>= 0.0.1)
|
||||
builder (3.2.3)
|
||||
byebug (10.0.2)
|
||||
byebug (11.0.1)
|
||||
capybara (2.5.0)
|
||||
mime-types (>= 1.16)
|
||||
nokogiri (>= 1.3.3)
|
||||
|
@ -66,14 +66,14 @@ GEM
|
|||
celluloid-io (0.16.2)
|
||||
celluloid (>= 0.16.0)
|
||||
nio4r (>= 1.1.0)
|
||||
childprocess (0.9.0)
|
||||
ffi (~> 1.0, >= 1.0.11)
|
||||
childprocess (1.0.1)
|
||||
rake (< 13.0)
|
||||
coderay (1.1.2)
|
||||
coffee-script (2.4.1)
|
||||
coffee-script-source
|
||||
execjs
|
||||
coffee-script-source (1.12.2)
|
||||
concurrent-ruby (1.1.4)
|
||||
concurrent-ruby (1.1.5)
|
||||
contracts (0.16.0)
|
||||
cucumber (3.1.2)
|
||||
builder (>= 2.1.2)
|
||||
|
@ -94,28 +94,28 @@ GEM
|
|||
debug_inspector (0.0.3)
|
||||
diff-lcs (1.3)
|
||||
docile (1.3.1)
|
||||
dotenv (2.6.0)
|
||||
dotenv (2.7.2)
|
||||
erubis (2.7.0)
|
||||
execjs (2.7.0)
|
||||
fastimage (2.1.5)
|
||||
ffi (1.9.25)
|
||||
ffi (1.11.1)
|
||||
gherkin (5.1.0)
|
||||
haml (5.0.4)
|
||||
haml (5.1.0)
|
||||
temple (>= 0.8.0)
|
||||
tilt
|
||||
hamster (3.0.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
hashie (3.6.0)
|
||||
hitimes (1.3.0)
|
||||
hitimes (1.3.1)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
interception (0.5)
|
||||
jaro_winkler (1.5.2)
|
||||
json (2.1.0)
|
||||
json (2.2.0)
|
||||
kramdown (1.17.0)
|
||||
lazy_priority_queue (0.1.1)
|
||||
libv8 (6.7.288.46.1)
|
||||
liquid (4.0.1)
|
||||
libv8 (7.3.492.27.1)
|
||||
liquid (4.0.3)
|
||||
listen (3.1.5)
|
||||
rb-fsevent (~> 0.9, >= 0.9.4)
|
||||
rb-inotify (~> 0.9, >= 0.9.7)
|
||||
|
@ -124,25 +124,25 @@ GEM
|
|||
method_source (0.9.2)
|
||||
mime-types (3.2.2)
|
||||
mime-types-data (~> 3.2015)
|
||||
mime-types-data (3.2018.0812)
|
||||
mime-types-data (3.2019.0331)
|
||||
mini_portile2 (2.4.0)
|
||||
mini_racer (0.2.4)
|
||||
libv8 (>= 6.3)
|
||||
mini_racer (0.2.6)
|
||||
libv8 (>= 6.9.411)
|
||||
minitest (5.11.3)
|
||||
multi_json (1.13.1)
|
||||
multi_test (0.1.2)
|
||||
mustermann (1.0.3)
|
||||
nio4r (2.3.1)
|
||||
nokogiri (1.10.1)
|
||||
nokogiri (1.10.3)
|
||||
mini_portile2 (~> 2.4.0)
|
||||
oj (3.7.6)
|
||||
oj (3.7.12)
|
||||
padrino-helpers (0.14.4)
|
||||
i18n (~> 0.6, >= 0.6.7)
|
||||
padrino-support (= 0.14.4)
|
||||
tilt (>= 1.4.1, < 3)
|
||||
padrino-support (0.14.4)
|
||||
parallel (1.12.1)
|
||||
parser (2.5.3.0)
|
||||
parallel (1.17.0)
|
||||
parser (2.6.3.0)
|
||||
ast (~> 2.4.0)
|
||||
powerpack (0.1.2)
|
||||
pry (0.12.2)
|
||||
|
@ -155,7 +155,7 @@ GEM
|
|||
binding_of_caller (>= 0.7)
|
||||
pry (>= 0.9.11)
|
||||
public_suffix (3.0.3)
|
||||
rack (2.0.6)
|
||||
rack (2.0.7)
|
||||
rack-protection (2.0.5)
|
||||
rack
|
||||
rack-test (1.1.0)
|
||||
|
@ -166,16 +166,16 @@ GEM
|
|||
rb-inotify (0.10.0)
|
||||
ffi (~> 1.0)
|
||||
redcarpet (3.4.0)
|
||||
rgl (0.5.3)
|
||||
rgl (0.5.4)
|
||||
lazy_priority_queue (~> 0.1.0)
|
||||
stream (~> 0.5.0)
|
||||
stream (~> 0.5.2)
|
||||
rspec (3.8.0)
|
||||
rspec-core (~> 3.8.0)
|
||||
rspec-expectations (~> 3.8.0)
|
||||
rspec-mocks (~> 3.8.0)
|
||||
rspec-core (3.8.0)
|
||||
rspec-support (~> 3.8.0)
|
||||
rspec-expectations (3.8.2)
|
||||
rspec-expectations (3.8.3)
|
||||
diff-lcs (>= 1.2.0, < 2.0)
|
||||
rspec-support (~> 3.8.0)
|
||||
rspec-mocks (3.8.0)
|
||||
|
@ -196,8 +196,8 @@ GEM
|
|||
celluloid (= 0.16.0)
|
||||
celluloid-io (= 0.16.2)
|
||||
timers (~> 4.0.1)
|
||||
sassc (2.0.0)
|
||||
ffi (~> 1.9.6)
|
||||
sassc (2.0.1)
|
||||
ffi (~> 1.9)
|
||||
rake
|
||||
servolux (0.13.0)
|
||||
simplecov (0.16.1)
|
||||
|
@ -218,7 +218,7 @@ GEM
|
|||
execjs
|
||||
stylus-source
|
||||
stylus-source (0.54.5)
|
||||
temple (0.8.0)
|
||||
temple (0.8.1)
|
||||
thor (0.20.3)
|
||||
thread_safe (0.3.6)
|
||||
tilt (2.0.9)
|
||||
|
@ -231,7 +231,7 @@ GEM
|
|||
unicode-display_width (1.4.1)
|
||||
xpath (2.1.0)
|
||||
nokogiri (~> 1.3)
|
||||
yard (0.9.16)
|
||||
yard (0.9.19)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
|
Loading…
Add table
Reference in a new issue