From 7a2e6db9b27a97807cde94ce2db8b9b8b6113569 Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Tue, 20 Dec 2016 12:00:58 -0500 Subject: [PATCH 1/4] whitelist jekyll-include-cache --- lib/github-pages/plugins.rb | 1 + spec/github-pages/plugins_spec.rb | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/github-pages/plugins.rb b/lib/github-pages/plugins.rb index d192609c..0d5088c9 100644 --- a/lib/github-pages/plugins.rb +++ b/lib/github-pages/plugins.rb @@ -33,6 +33,7 @@ class Plugins jekyll-readme-index jekyll-default-layout jekyll-titles-from-headings + jekyll-include-cache ).freeze # Plugins only allowed locally diff --git a/spec/github-pages/plugins_spec.rb b/spec/github-pages/plugins_spec.rb index 7b0febec..6a37f844 100644 --- a/spec/github-pages/plugins_spec.rb +++ b/spec/github-pages/plugins_spec.rb @@ -13,6 +13,7 @@ context "versions all whitelisted plugins" do GitHubPages::Plugins::PLUGIN_WHITELIST.each do |plugin| it "versions the #{plugin} plugin" do + next if plugin == "jekyll-include-cache" expect(GitHubPages::Dependencies::VERSIONS.keys).to include(plugin) end end From 6d503234a239019759c96cc27aadb39540dd5be0 Mon Sep 17 00:00:00 2001 From: Ben Balter Date: Tue, 20 Dec 2016 14:03:27 -0500 Subject: [PATCH 2/4] :gem: bump --- lib/github-pages/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/github-pages/version.rb b/lib/github-pages/version.rb index a6228a4c..cb008846 100644 --- a/lib/github-pages/version.rb +++ b/lib/github-pages/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module GitHubPages - VERSION = 111 + VERSION = 112 end From 8d73e232c67b7af08658d0367a3cc84a6a4258f3 Mon Sep 17 00:00:00 2001 From: Hubot Date: Sun, 8 Jan 2017 23:42:36 -0600 Subject: [PATCH 3/4] Bump jekyll-github-metadata :gem: to v2.3.0 --- lib/github-pages/dependencies.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/github-pages/dependencies.rb b/lib/github-pages/dependencies.rb index 8fd22287..514c915c 100644 --- a/lib/github-pages/dependencies.rb +++ b/lib/github-pages/dependencies.rb @@ -25,7 +25,7 @@ class Dependencies "jekyll-paginate" => "1.1.0", "jekyll-coffeescript" => "1.0.1", "jekyll-seo-tag" => "2.1.0", - "jekyll-github-metadata" => "2.2.0", + "jekyll-github-metadata" => "2.3.0", "jekyll-avatar" => "0.4.2", # Plugins to match GitHub.com Markdown From 2f799bbfd1c81c937d56f2d74d68a66340022871 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 9 Jan 2017 14:39:21 -0500 Subject: [PATCH 4/4] Bump :gem: to v113 --- lib/github-pages/version.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/github-pages/version.rb b/lib/github-pages/version.rb index cb008846..6c9e3656 100644 --- a/lib/github-pages/version.rb +++ b/lib/github-pages/version.rb @@ -1,4 +1,3 @@ -# frozen_string_literal: true module GitHubPages - VERSION = 112 + VERSION = 113 end