From 9e35f59de6b48a839cbfa73d481212096ce0ac3b Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Wed, 6 Feb 2019 10:24:25 -0800 Subject: [PATCH] Upgrade Jekyll to 2.8.5 to fix URL bugs We upgraded Jekyll to 2.6.3 (a minor version upgrade from 2.4.3) to fix a security vulnerability, but the entire 2.6.x line has a bug with how URLs are handled in the built-in web server. (Fixed here: https://github.com/jekyll/jekyll/issues/6459 and https://github.com/jekyll/jekyll/issues/6475, originally introduced in the fix to https://github.com/jekyll/jekyll/issues/6222#issuecomment-338384344). Anyway, 2.8.5 includes a fix and generates an identical `_site` directory on disk, so should be all good. --- Gemfile | 2 +- Gemfile.lock | 22 ++++++++++++++++------ 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Gemfile b/Gemfile index bb4db4c..c35155f 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,7 @@ ruby '~> 2.3' # # This will help ensure the proper Jekyll version is running. # Happy Jekylling! -gem "jekyll", "3.6.3" +gem "jekyll", "3.8.5" # This is the default theme for new Jekyll sites. You may change this to anything you like. gem "minima", "~> 2.0" diff --git a/Gemfile.lock b/Gemfile.lock index f9310ca..f69e63e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,18 +4,28 @@ GEM addressable (2.6.0) public_suffix (>= 2.0.2, < 4.0) colorator (1.1.0) + concurrent-ruby (1.1.4) + em-websocket (0.5.1) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0.6.0) + eventmachine (1.2.7) ffi (1.10.0) forwardable-extended (2.6.0) - jekyll (3.6.3) + http_parser.rb (0.6.0) + i18n (0.9.5) + concurrent-ruby (~> 1.0) + jekyll (3.8.5) addressable (~> 2.4) colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 0.7) jekyll-sass-converter (~> 1.0) - jekyll-watch (~> 1.1) + jekyll-watch (~> 2.0) kramdown (~> 1.14) liquid (~> 4.0) mercenary (~> 0.3.3) pathutil (~> 0.9) - rouge (>= 1.7, < 3) + rouge (>= 1.7, < 4) safe_yaml (~> 1.0) jekyll-feed (0.9.2) jekyll (~> 3.3) @@ -23,7 +33,7 @@ GEM jekyll (~> 3.3) jekyll-sass-converter (1.5.2) sass (~> 3.4) - jekyll-watch (1.5.1) + jekyll-watch (2.1.2) listen (~> 3.0) kramdown (1.17.0) liquid (4.0.1) @@ -47,7 +57,7 @@ GEM rb-fsevent (0.10.3) rb-inotify (0.10.0) ffi (~> 1.0) - rouge (2.2.1) + rouge (3.3.0) ruby_dep (1.5.0) safe_yaml (1.0.4) sass (3.7.3) @@ -60,7 +70,7 @@ PLATFORMS ruby DEPENDENCIES - jekyll (= 3.6.3) + jekyll (= 3.8.5) jekyll-feed (~> 0.6) jekyll-redirect-from minima (~> 2.0)