jekyll-docs 3.6.0 → 3.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/jekyll.rb +195 -0
- data/lib/jekyll/cleaner.rb +110 -0
- data/lib/jekyll/collection.rb +230 -0
- data/lib/jekyll/command.rb +78 -0
- data/lib/jekyll/commands/build.rb +102 -0
- data/lib/jekyll/commands/clean.rb +43 -0
- data/lib/jekyll/commands/doctor.rb +153 -0
- data/lib/jekyll/commands/help.rb +34 -0
- data/lib/jekyll/commands/new.rb +156 -0
- data/lib/jekyll/commands/new_theme.rb +40 -0
- data/lib/jekyll/commands/serve.rb +245 -0
- data/lib/jekyll/commands/serve/servlet.rb +62 -0
- data/lib/jekyll/configuration.rb +410 -0
- data/lib/jekyll/converter.rb +54 -0
- data/lib/jekyll/converters/identity.rb +23 -0
- data/lib/jekyll/converters/markdown.rb +104 -0
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +123 -0
- data/lib/jekyll/converters/markdown/rdiscount_parser.rb +35 -0
- data/lib/jekyll/converters/markdown/redcarpet_parser.rb +108 -0
- data/lib/jekyll/converters/smartypants.rb +36 -0
- data/lib/jekyll/convertible.rb +251 -0
- data/lib/jekyll/deprecator.rb +52 -0
- data/lib/jekyll/document.rb +507 -0
- data/lib/jekyll/drops/collection_drop.rb +22 -0
- data/lib/jekyll/drops/document_drop.rb +69 -0
- data/lib/jekyll/drops/drop.rb +214 -0
- data/lib/jekyll/drops/excerpt_drop.rb +15 -0
- data/lib/jekyll/drops/jekyll_drop.rb +33 -0
- data/lib/jekyll/drops/site_drop.rb +47 -0
- data/lib/jekyll/drops/static_file_drop.rb +13 -0
- data/lib/jekyll/drops/unified_payload_drop.rb +25 -0
- data/lib/jekyll/drops/url_drop.rb +88 -0
- data/lib/jekyll/entry_filter.rb +123 -0
- data/lib/jekyll/errors.rb +20 -0
- data/lib/jekyll/excerpt.rb +126 -0
- data/lib/jekyll/external.rb +74 -0
- data/lib/jekyll/filters.rb +430 -0
- data/lib/jekyll/filters/grouping_filters.rb +65 -0
- data/lib/jekyll/filters/url_filters.rb +60 -0
- data/lib/jekyll/frontmatter_defaults.rb +197 -0
- data/lib/jekyll/generator.rb +5 -0
- data/lib/jekyll/hooks.rb +104 -0
- data/lib/jekyll/layout.rb +62 -0
- data/lib/jekyll/liquid_extensions.rb +24 -0
- data/lib/jekyll/liquid_renderer.rb +49 -0
- data/lib/jekyll/liquid_renderer/file.rb +56 -0
- data/lib/jekyll/liquid_renderer/table.rb +96 -0
- data/lib/jekyll/log_adapter.rb +147 -0
- data/lib/jekyll/mime.types +825 -0
- data/lib/jekyll/page.rb +187 -0
- data/lib/jekyll/plugin.rb +98 -0
- data/lib/jekyll/plugin_manager.rb +113 -0
- data/lib/jekyll/publisher.rb +23 -0
- data/lib/jekyll/reader.rb +134 -0
- data/lib/jekyll/readers/collection_reader.rb +22 -0
- data/lib/jekyll/readers/data_reader.rb +77 -0
- data/lib/jekyll/readers/layout_reader.rb +71 -0
- data/lib/jekyll/readers/page_reader.rb +25 -0
- data/lib/jekyll/readers/post_reader.rb +72 -0
- data/lib/jekyll/readers/static_file_reader.rb +25 -0
- data/lib/jekyll/readers/theme_assets_reader.rb +49 -0
- data/lib/jekyll/regenerator.rb +201 -0
- data/lib/jekyll/related_posts.rb +52 -0
- data/lib/jekyll/renderer.rb +269 -0
- data/lib/jekyll/site.rb +471 -0
- data/lib/jekyll/static_file.rb +162 -0
- data/lib/jekyll/stevenson.rb +61 -0
- data/lib/jekyll/tags/highlight.rb +141 -0
- data/lib/jekyll/tags/include.rb +215 -0
- data/lib/jekyll/tags/link.rb +37 -0
- data/lib/jekyll/tags/post_url.rb +103 -0
- data/lib/jekyll/theme.rb +68 -0
- data/lib/jekyll/theme_builder.rb +119 -0
- data/lib/jekyll/url.rb +161 -0
- data/lib/jekyll/utils.rb +337 -0
- data/lib/jekyll/utils/ansi.rb +59 -0
- data/lib/jekyll/utils/exec.rb +27 -0
- data/lib/jekyll/utils/platforms.rb +82 -0
- data/lib/jekyll/utils/rouge.rb +21 -0
- data/lib/jekyll/utils/win_tz.rb +75 -0
- data/lib/jekyll/version.rb +5 -0
- data/lib/site_template/404.html +24 -0
- data/lib/site_template/_config.yml +43 -0
- data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +25 -0
- data/lib/site_template/about.md +18 -0
- data/lib/site_template/index.md +6 -0
- data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -0
- data/lib/theme_template/Gemfile +4 -0
- data/lib/theme_template/LICENSE.txt.erb +21 -0
- data/lib/theme_template/README.md.erb +52 -0
- data/lib/theme_template/_layouts/default.html +1 -0
- data/lib/theme_template/_layouts/page.html +5 -0
- data/lib/theme_template/_layouts/post.html +5 -0
- data/lib/theme_template/example/_config.yml.erb +1 -0
- data/lib/theme_template/example/_post.md +12 -0
- data/lib/theme_template/example/index.html +14 -0
- data/lib/theme_template/example/style.scss +7 -0
- data/lib/theme_template/gitignore.erb +5 -0
- data/lib/theme_template/theme.gemspec.erb +19 -0
- metadata +103 -156
- data/lib/jekyll-docs.rb +0 -31
- data/site/404.html +0 -153
- data/site/CNAME +0 -1
- data/site/community/index.html +0 -299
- data/site/conduct/index.html +0 -10
- data/site/css/screen.css +0 -1
- data/site/docs/assets/index.html +0 -724
- data/site/docs/code_of_conduct/index.html +0 -730
- data/site/docs/collections/index.html +0 -1097
- data/site/docs/conduct/index.html +0 -744
- data/site/docs/configuration/index.html +0 -1403
- data/site/docs/continuous-integration/buddyworks/index.html +0 -726
- data/site/docs/continuous-integration/circleci/index.html +0 -757
- data/site/docs/continuous-integration/index.html +0 -681
- data/site/docs/continuous-integration/travis-ci/index.html +0 -891
- data/site/docs/contributing/index.html +0 -863
- data/site/docs/datafiles/index.html +0 -780
- data/site/docs/deployment-methods/index.html +0 -875
- data/site/docs/drafts/index.html +0 -636
- data/site/docs/extras/index.html +0 -689
- data/site/docs/frontmatter/index.html +0 -807
- data/site/docs/github-pages/index.html +0 -819
- data/site/docs/history/index.html +0 -3955
- data/site/docs/home/index.html +0 -644
- data/site/docs/includes/index.html +0 -800
- data/site/docs/index.html +0 -10
- data/site/docs/installation/index.html +0 -732
- data/site/docs/maintaining/affinity-team-captain/index.html +0 -706
- data/site/docs/maintaining/avoiding-burnout/index.html +0 -709
- data/site/docs/maintaining/becoming-a-maintainer/index.html +0 -717
- data/site/docs/maintaining/index.html +0 -713
- data/site/docs/maintaining/merging-a-pull-request/index.html +0 -747
- data/site/docs/maintaining/reviewing-a-pull-request/index.html +0 -725
- data/site/docs/maintaining/special-labels/index.html +0 -705
- data/site/docs/maintaining/triaging-an-issue/index.html +0 -735
- data/site/docs/migrations/index.html +0 -647
- data/site/docs/pages/index.html +0 -695
- data/site/docs/pagination/index.html +0 -870
- data/site/docs/permalinks/index.html +0 -1027
- data/site/docs/plugins/index.html +0 -1800
- data/site/docs/posts/index.html +0 -858
- data/site/docs/quickstart/index.html +0 -650
- data/site/docs/resources/index.html +0 -769
- data/site/docs/sites/index.html +0 -702
- data/site/docs/static-files/index.html +0 -720
- data/site/docs/structure/index.html +0 -822
- data/site/docs/templates/index.html +0 -1208
- data/site/docs/themes/index.html +0 -935
- data/site/docs/troubleshooting/index.html +0 -893
- data/site/docs/upgrading/0-to-2/index.html +0 -826
- data/site/docs/upgrading/2-to-3/index.html +0 -824
- data/site/docs/upgrading/index.html +0 -693
- data/site/docs/usage/index.html +0 -705
- data/site/docs/variables/index.html +0 -1048
- data/site/docs/windows/index.html +0 -799
- data/site/favicon.ico +0 -0
- data/site/feed.xml +0 -372
- data/site/fonts/FontAwesome.eot +0 -0
- data/site/fonts/FontAwesome.svg +0 -12
- data/site/fonts/FontAwesome.ttf +0 -0
- data/site/fonts/FontAwesome.woff +0 -0
- data/site/github.html +0 -10
- data/site/help/index.html +0 -244
- data/site/icomoon-selection.json +0 -96
- data/site/img/article-footer.png +0 -0
- data/site/img/footer-arrow.png +0 -0
- data/site/img/footer-logo.png +0 -0
- data/site/img/jekyll-sticker.jpg +0 -0
- data/site/img/jekylllayoutconcept.png +0 -0
- data/site/img/logo-2x.png +0 -0
- data/site/img/logo-rss.png +0 -0
- data/site/img/octojekyll.png +0 -0
- data/site/index.html +0 -267
- data/site/issues.html +0 -10
- data/site/js/html5shiv.min.js +0 -4
- data/site/js/respond.min.js +0 -5
- data/site/latest_version.txt +0 -1
- data/site/news/2013/05/05/jekyll-1-0-0-released/index.html +0 -570
- data/site/news/2013/05/08/jekyll-1-0-1-released/index.html +0 -570
- data/site/news/2013/05/12/jekyll-1-0-2-released/index.html +0 -571
- data/site/news/2013/06/07/jekyll-1-0-3-released/index.html +0 -568
- data/site/news/2013/07/14/jekyll-1-1-0-released/index.html +0 -570
- data/site/news/2013/07/24/jekyll-1-1-1-released/index.html +0 -569
- data/site/news/2013/07/25/jekyll-1-0-4-released/index.html +0 -565
- data/site/news/2013/07/25/jekyll-1-1-2-released/index.html +0 -565
- data/site/news/2013/09/06/jekyll-1-2-0-released/index.html +0 -572
- data/site/news/2013/09/14/jekyll-1-2-1-released/index.html +0 -566
- data/site/news/2013/10/28/jekyll-1-3-0-rc1-released/index.html +0 -564
- data/site/news/2013/11/04/jekyll-1-3-0-released/index.html +0 -599
- data/site/news/2013/11/26/jekyll-1-3-1-released/index.html +0 -568
- data/site/news/2013/12/07/jekyll-1-4-0-released/index.html +0 -583
- data/site/news/2013/12/09/jekyll-1-4-1-released/index.html +0 -565
- data/site/news/2013/12/16/jekyll-1-4-2-released/index.html +0 -564
- data/site/news/2014/01/13/jekyll-1-4-3-released/index.html +0 -573
- data/site/news/2014/03/24/jekyll-1-5-0-released/index.html +0 -564
- data/site/news/2014/03/27/jekyll-1-5-1-released/index.html +0 -569
- data/site/news/2014/05/06/jekyll-turns-2-0-0/index.html +0 -585
- data/site/news/2014/05/08/jekyll-2-0-3-released/index.html +0 -565
- data/site/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/index.html +0 -567
- data/site/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/index.html +0 -582
- data/site/news/2014/07/01/jekyll-2-1-1-released/index.html +0 -579
- data/site/news/2014/07/29/jekyll-2-2-0-released/index.html +0 -568
- data/site/news/2014/08/10/jekyll-2-3-0-released/index.html +0 -588
- data/site/news/2014/09/09/jekyll-2-4-0-released/index.html +0 -574
- data/site/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/index.html +0 -597
- data/site/news/2014/11/09/jekyll-2-5-1-released/index.html +0 -575
- data/site/news/2014/11/12/jekyll-2-5-2-released/index.html +0 -565
- data/site/news/2014/12/17/alfredxing-welcome-to-jekyll-core/index.html +0 -572
- data/site/news/2014/12/22/jekyll-2-5-3-released/index.html +0 -567
- data/site/news/2015/01/20/jekyll-meet-and-greet/index.html +0 -568
- data/site/news/2015/01/24/jekyll-3-0-0-beta1-released/index.html +0 -588
- data/site/news/2015/02/26/introducing-jekyll-talk/index.html +0 -563
- data/site/news/2015/10/26/jekyll-3-0-released/index.html +0 -592
- data/site/news/2015/11/17/jekyll-3-0-1-released/index.html +0 -576
- data/site/news/2016/01/20/jekyll-3-0-2-released/index.html +0 -566
- data/site/news/2016/01/24/jekyll-3-1-0-released/index.html +0 -599
- data/site/news/2016/01/28/jekyll-3-1-1-released/index.html +0 -583
- data/site/news/2016/02/08/jekyll-3-0-3-released/index.html +0 -578
- data/site/news/2016/02/19/jekyll-3-1-2-released/index.html +0 -569
- data/site/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/index.html +0 -565
- data/site/news/2016/04/19/jekyll-3-0-4-released/index.html +0 -571
- data/site/news/2016/04/19/jekyll-3-1-3-released/index.html +0 -566
- data/site/news/2016/04/26/jekyll-3-0-5-released/index.html +0 -572
- data/site/news/2016/05/18/jekyll-3-1-4-released/index.html +0 -576
- data/site/news/2016/05/18/jekyll-3-1-5-released/index.html +0 -564
- data/site/news/2016/05/19/jekyll-3-1-6-released/index.html +0 -566
- data/site/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/index.html +0 -567
- data/site/news/2016/07/26/jekyll-3-2-0-released/index.html +0 -676
- data/site/news/2016/08/02/jekyll-3-2-1-released/index.html +0 -571
- data/site/news/2016/08/24/jekyll-admin-initial-release/index.html +0 -566
- data/site/news/2016/10/06/jekyll-3-3-is-here/index.html +0 -645
- data/site/news/2016/11/14/jekyll-3-3-1-released/index.html +0 -569
- data/site/news/2017/01/18/jekyll-3-4-0-released/index.html +0 -592
- data/site/news/2017/03/02/jekyll-3-4-1-released/index.html +0 -649
- data/site/news/2017/03/09/jekyll-3-4-2-released/index.html +0 -598
- data/site/news/2017/03/21/jekyll-3-4-3-released/index.html +0 -594
- data/site/news/2017/06/15/jekyll-3-5-0-released/index.html +0 -589
- data/site/news/2017/07/17/jekyll-3-5-1-released/index.html +0 -569
- data/site/news/2017/08/12/jekyll-3-5-2-released/index.html +0 -573
- data/site/news/2017/09/21/jekyll-3-6-0-released/index.html +0 -565
- data/site/news/index.html +0 -3609
- data/site/news/releases/index.html +0 -3344
- data/site/philosophy.html +0 -46
- data/site/readme.md +0 -23
- data/site/robots.txt +0 -1
- data/site/sitemap.xml +0 -485
- data/site/tutorials/convert-site-to-jekyll/index.html +0 -793
- data/site/tutorials/custom-404-page/index.html +0 -358
- data/site/tutorials/home/index.html +0 -323
- data/site/tutorials/index.html +0 -10
- data/site/tutorials/navigation/index.html +0 -872
- data/site/tutorials/orderofinterpretation/index.html +0 -441
@@ -1,3344 +0,0 @@
|
|
1
|
-
<!DOCTYPE HTML>
|
2
|
-
<html lang="en-US">
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<meta charset="UTF-8">
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
7
|
-
<meta name="generator" content="Jekyll v3.6.0">
|
8
|
-
<link type="application/atom+xml" rel="alternate" href="https://jekyllrb.com/feed.xml" title="Jekyll • Simple, blog-aware, static sites">
|
9
|
-
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="https://github.com/jekyll/jekyll/commits/master.atom">
|
10
|
-
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
|
11
|
-
<link rel="stylesheet" href="/css/screen.css">
|
12
|
-
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
13
|
-
<!-- Begin Jekyll SEO tag v2.3.0 -->
|
14
|
-
<title>Releases | Jekyll • Simple, blog-aware, static sites</title>
|
15
|
-
<meta property="og:title" content="Releases">
|
16
|
-
<meta name="author" content="all">
|
17
|
-
<meta property="og:locale" content="en_US">
|
18
|
-
<meta name="description" content="Transform your plain text into static websites and blogs">
|
19
|
-
<meta property="og:description" content="Transform your plain text into static websites and blogs">
|
20
|
-
<link rel="canonical" href="https://jekyllrb.com/news/releases/">
|
21
|
-
<meta property="og:url" content="https://jekyllrb.com/news/releases/">
|
22
|
-
<meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
|
23
|
-
<meta name="twitter:card" content="summary">
|
24
|
-
<meta name="twitter:site" content="@jekyllrb">
|
25
|
-
<meta name="twitter:creator" content="@all">
|
26
|
-
<meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
|
27
|
-
<script type="application/ld+json">
|
28
|
-
{"name":null,"description":"Transform your plain text into static websites and blogs","url":"https://jekyllrb.com/news/releases/","headline":"Releases","dateModified":null,"datePublished":null,"sameAs":null,"@type":"WebPage","author":{"@type":"Person","name":"all"},"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"},"name":"all"},"mainEntityOfPage":null,"@context":"http://schema.org"}</script>
|
29
|
-
<!-- End Jekyll SEO tag -->
|
30
|
-
|
31
|
-
<!--[if lt IE 9]>
|
32
|
-
<script src="/js/html5shiv.min.js"></script>
|
33
|
-
<script src="/js/respond.min.js"></script>
|
34
|
-
<![endif]-->
|
35
|
-
</head>
|
36
|
-
|
37
|
-
|
38
|
-
<body class="wrap">
|
39
|
-
<header>
|
40
|
-
<nav class="mobile-nav show-on-mobiles">
|
41
|
-
<ul>
|
42
|
-
<li class="">
|
43
|
-
<a href="/">Home</a>
|
44
|
-
</li>
|
45
|
-
<li class="">
|
46
|
-
<a href="/docs/home/">Docs</a>
|
47
|
-
</li>
|
48
|
-
<li class="current">
|
49
|
-
<a href="/news/">News</a>
|
50
|
-
</li>
|
51
|
-
<li class="">
|
52
|
-
<a href="/community/">Community</a>
|
53
|
-
</li>
|
54
|
-
<li class="">
|
55
|
-
<a href="/help/">Help</a>
|
56
|
-
</li>
|
57
|
-
<li>
|
58
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
59
|
-
</li>
|
60
|
-
</ul>
|
61
|
-
|
62
|
-
</nav>
|
63
|
-
<div class="grid">
|
64
|
-
<div class="unit one-third center-on-mobiles">
|
65
|
-
<h1>
|
66
|
-
<a href="/">
|
67
|
-
<span class="sr-only">Jekyll</span>
|
68
|
-
<img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo">
|
69
|
-
</a>
|
70
|
-
</h1>
|
71
|
-
</div>
|
72
|
-
<nav class="main-nav unit two-thirds hide-on-mobiles">
|
73
|
-
<ul>
|
74
|
-
<li class="">
|
75
|
-
<a href="/">Home</a>
|
76
|
-
</li>
|
77
|
-
<li class="">
|
78
|
-
<a href="/docs/home/">Docs</a>
|
79
|
-
</li>
|
80
|
-
<li class="current">
|
81
|
-
<a href="/news/">News</a>
|
82
|
-
</li>
|
83
|
-
<li class="">
|
84
|
-
<a href="/community/">Community</a>
|
85
|
-
</li>
|
86
|
-
<li class="">
|
87
|
-
<a href="/help/">Help</a>
|
88
|
-
</li>
|
89
|
-
<li>
|
90
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
91
|
-
</li>
|
92
|
-
</ul>
|
93
|
-
|
94
|
-
</nav>
|
95
|
-
</div>
|
96
|
-
</header>
|
97
|
-
|
98
|
-
|
99
|
-
<section class="news">
|
100
|
-
<div class="grid">
|
101
|
-
|
102
|
-
<div class="docs-nav-mobile unit whole show-on-mobiles">
|
103
|
-
<select onchange="if (this.value) window.location.href=this.value">
|
104
|
-
<option value="">Navigate the blog…</option>
|
105
|
-
<option value="/news/">Home</option>
|
106
|
-
<optgroup label="v1.x">
|
107
|
-
|
108
|
-
<option value="/news/2017/09/21/jekyll-3-6-0-released/">Jekyll turns 3.6!</option>
|
109
|
-
|
110
|
-
<option value="/news/2017/08/12/jekyll-3-5-2-released/">Jekyll 3.5.2 Released</option>
|
111
|
-
|
112
|
-
<option value="/news/2017/07/17/jekyll-3-5-1-released/">Jekyll 3.5.1 Released</option>
|
113
|
-
|
114
|
-
<option value="/news/2017/06/15/jekyll-3-5-0-released/">Jekyll turns 3.5, oh my!</option>
|
115
|
-
|
116
|
-
<option value="/news/2017/03/21/jekyll-3-4-3-released/">Jekyll 3.4.3 Released</option>
|
117
|
-
|
118
|
-
<option value="/news/2017/03/09/jekyll-3-4-2-released/">Jekyll 3.4.2 Released</option>
|
119
|
-
|
120
|
-
<option value="/news/2017/03/02/jekyll-3-4-1-released/">Jekyll 3.4.1, or "Unintended Consequences"</option>
|
121
|
-
|
122
|
-
<option value="/news/2017/01/18/jekyll-3-4-0-released/">Jekyll turns 3.4.0</option>
|
123
|
-
|
124
|
-
<option value="/news/2016/11/14/jekyll-3-3-1-released/">Jekyll 3.3.1 Released</option>
|
125
|
-
|
126
|
-
<option value="/news/2016/10/06/jekyll-3-3-is-here/">Jekyll 3.3 is here with better theme support, new URL filters, and tons more</option>
|
127
|
-
|
128
|
-
<option value="/news/2016/08/24/jekyll-admin-initial-release/">Jekyll Admin Initial Release</option>
|
129
|
-
|
130
|
-
<option value="/news/2016/08/02/jekyll-3-2-1-released/">Jekyll 3.2.1 Released with Fix for Windows</option>
|
131
|
-
|
132
|
-
<option value="/news/2016/07/26/jekyll-3-2-0-released/">Jekyll turns 3.2</option>
|
133
|
-
|
134
|
-
<option value="/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/">Jekyll's Google Summer of Code Project: The CMS You Always Wanted</option>
|
135
|
-
|
136
|
-
<option value="/news/2016/05/19/jekyll-3-1-6-released/">Jekyll 3.1.6 Released</option>
|
137
|
-
|
138
|
-
<option value="/news/2016/05/18/jekyll-3-1-5-released/">Jekyll 3.1.5 Released</option>
|
139
|
-
|
140
|
-
<option value="/news/2016/05/18/jekyll-3-1-4-released/">Jekyll 3.1.4 "Stability Sam" Released</option>
|
141
|
-
|
142
|
-
<option value="/news/2016/04/26/jekyll-3-0-5-released/">Jekyll 3.0.5 Released</option>
|
143
|
-
|
144
|
-
<option value="/news/2016/04/19/jekyll-3-1-3-released/">Jekyll 3.1.3 Released</option>
|
145
|
-
|
146
|
-
<option value="/news/2016/04/19/jekyll-3-0-4-released/">Jekyll 3.0.4 Released</option>
|
147
|
-
|
148
|
-
<option value="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">Making it easier to contribute to Jekyll</option>
|
149
|
-
|
150
|
-
<option value="/news/2016/02/19/jekyll-3-1-2-released/">Jekyll 3.1.2 Released!</option>
|
151
|
-
|
152
|
-
<option value="/news/2016/02/08/jekyll-3-0-3-released/">Jekyll 3.0.3 Released</option>
|
153
|
-
|
154
|
-
<option value="/news/2016/01/28/jekyll-3-1-1-released/">Jekyll 3.1.1 Released</option>
|
155
|
-
|
156
|
-
<option value="/news/2016/01/24/jekyll-3-1-0-released/">Jekyll 3.1.0 Released</option>
|
157
|
-
|
158
|
-
<option value="/news/2016/01/20/jekyll-3-0-2-released/">Jekyll 3.0.2 Released</option>
|
159
|
-
|
160
|
-
<option value="/news/2015/11/17/jekyll-3-0-1-released/">Jekyll 3.0.1 Released</option>
|
161
|
-
|
162
|
-
<option value="/news/2015/10/26/jekyll-3-0-released/">Jekyll 3.0 Released</option>
|
163
|
-
|
164
|
-
<option value="/news/2015/02/26/introducing-jekyll-talk/">Join the Discussion at Jekyll Talk</option>
|
165
|
-
|
166
|
-
<option value="/news/2015/01/24/jekyll-3-0-0-beta1-released/">Jekyll 3.0.0.beta1 Released</option>
|
167
|
-
|
168
|
-
<option value="/news/2015/01/20/jekyll-meet-and-greet/">Jekyll Meet & Greet at GitHub HQ</option>
|
169
|
-
|
170
|
-
<option value="/news/2014/12/22/jekyll-2-5-3-released/">Jekyll Release for the Holidays! v2.5.3 Out</option>
|
171
|
-
|
172
|
-
<option value="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">Alfred Xing has joined the Jekyll core team</option>
|
173
|
-
|
174
|
-
<option value="/news/2014/11/12/jekyll-2-5-2-released/">Jekyll 2.5.2 Released</option>
|
175
|
-
|
176
|
-
<option value="/news/2014/11/09/jekyll-2-5-1-released/">Jekyll 2.5.1 Released</option>
|
177
|
-
|
178
|
-
<option value="/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/">Jekyll's Mid-Life Crisis (Or, Jekyll turns 2.5.0)</option>
|
179
|
-
|
180
|
-
<option value="/news/2014/09/09/jekyll-2-4-0-released/">A Wild Jekyll 2.4.0 Appeared!</option>
|
181
|
-
|
182
|
-
<option value="/news/2014/08/10/jekyll-2-3-0-released/">Jekyll 2.3.0 Released</option>
|
183
|
-
|
184
|
-
<option value="/news/2014/07/29/jekyll-2-2-0-released/">Jekyll 2.2.0 Released</option>
|
185
|
-
|
186
|
-
<option value="/news/2014/07/01/jekyll-2-1-1-released/">Jekyll 2.1.1 Released</option>
|
187
|
-
|
188
|
-
<option value="/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/">Jekyll Turns 21! Err... I mean 2.1.0.</option>
|
189
|
-
|
190
|
-
<option value="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">Pick Up your $1 Jekyll Sticker</option>
|
191
|
-
|
192
|
-
<option value="/news/2014/05/08/jekyll-2-0-3-released/">Jekyll 2.0.3 Released</option>
|
193
|
-
|
194
|
-
<option value="/news/2014/05/06/jekyll-turns-2-0-0/">Jekyll turns 2.0.0</option>
|
195
|
-
|
196
|
-
<option value="/news/2014/03/27/jekyll-1-5-1-released/">Jekyll 1.5.1 Released</option>
|
197
|
-
|
198
|
-
<option value="/news/2014/03/24/jekyll-1-5-0-released/">Jekyll 1.5.0 Released</option>
|
199
|
-
|
200
|
-
<option value="/news/2014/01/13/jekyll-1-4-3-released/">Jekyll 1.4.3 Released</option>
|
201
|
-
|
202
|
-
<option value="/news/2013/12/16/jekyll-1-4-2-released/">Jekyll 1.4.2 Released</option>
|
203
|
-
|
204
|
-
<option value="/news/2013/12/09/jekyll-1-4-1-released/">Jekyll 1.4.1 Released</option>
|
205
|
-
|
206
|
-
<option value="/news/2013/12/07/jekyll-1-4-0-released/">Jekyll 1.4.0 Released</option>
|
207
|
-
|
208
|
-
<option value="/news/2013/11/26/jekyll-1-3-1-released/">Jekyll 1.3.1 Released</option>
|
209
|
-
|
210
|
-
<option value="/news/2013/11/04/jekyll-1-3-0-released/">Jekyll 1.3.0 Released</option>
|
211
|
-
|
212
|
-
<option value="/news/2013/10/28/jekyll-1-3-0-rc1-released/">Jekyll 1.3.0.rc1 Released</option>
|
213
|
-
|
214
|
-
<option value="/news/2013/09/14/jekyll-1-2-1-released/">Jekyll 1.2.1 Released</option>
|
215
|
-
|
216
|
-
<option value="/news/2013/09/06/jekyll-1-2-0-released/">Jekyll 1.2.0 Released</option>
|
217
|
-
|
218
|
-
<option value="/news/2013/07/25/jekyll-1-1-2-released/">Jekyll 1.1.2 Released</option>
|
219
|
-
|
220
|
-
<option value="/news/2013/07/25/jekyll-1-0-4-released/">Jekyll 1.0.4 Released</option>
|
221
|
-
|
222
|
-
<option value="/news/2013/07/24/jekyll-1-1-1-released/">Jekyll 1.1.1 Released</option>
|
223
|
-
|
224
|
-
<option value="/news/2013/07/14/jekyll-1-1-0-released/">Jekyll 1.1.0 Released</option>
|
225
|
-
|
226
|
-
<option value="/news/2013/06/07/jekyll-1-0-3-released/">Jekyll 1.0.3 Released</option>
|
227
|
-
|
228
|
-
<option value="/news/2013/05/12/jekyll-1-0-2-released/">Jekyll 1.0.2 Released</option>
|
229
|
-
|
230
|
-
<option value="/news/2013/05/08/jekyll-1-0-1-released/">Jekyll 1.0.1 Released</option>
|
231
|
-
|
232
|
-
<option value="/news/2013/05/05/jekyll-1-0-0-released/">Jekyll 1.0.0 Released</option>
|
233
|
-
|
234
|
-
</optgroup>
|
235
|
-
</select>
|
236
|
-
</div>
|
237
|
-
|
238
|
-
|
239
|
-
<div class="unit four-fifths">
|
240
|
-
|
241
|
-
<article>
|
242
|
-
<h2>
|
243
|
-
<a href="/news/2017/09/21/jekyll-3-6-0-released/">
|
244
|
-
Jekyll turns 3.6!
|
245
|
-
</a>
|
246
|
-
</h2>
|
247
|
-
<span class="post-category">
|
248
|
-
<span class="label">
|
249
|
-
release
|
250
|
-
</span>
|
251
|
-
</span>
|
252
|
-
<div class="post-meta">
|
253
|
-
<span class="post-date">
|
254
|
-
21 Sep 2017
|
255
|
-
</span>
|
256
|
-
<a href="https://github.com/parkr" class="post-author">
|
257
|
-
|
258
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
259
|
-
parkr
|
260
|
-
</a>
|
261
|
-
</div>
|
262
|
-
<div class="post-content">
|
263
|
-
<p>Another much-anticipated release of Jekyll. This release comes with it Rouge 2 support, but note you can continue to use Rouge 1 if you’d prefer. We also now require Ruby 2.1.0 as 2.0.x is no longer supported by the Ruby team.</p>
|
264
|
-
|
265
|
-
<p>Otherwise, it’s a massive bug-fix release! A few bugs were found and squashed with our <code class="highlighter-rouge">Drop</code> implementation. We’re using the Schwartzian transform to speed up our custom sorting (thanks, Perl community!). We now protect against images that are named like posts and we generally worked on guarding our code to enforce requirements, instead of assuming the input was as expected.</p>
|
266
|
-
|
267
|
-
<p>Please let us know if you find any bugs! You can see <a href="/docs/history/#v3-6-0">the full history here</a>.</p>
|
268
|
-
|
269
|
-
<p>Many thanks to our contributors who helped make this release possible: Aleksander Kuś, André Jaenisch, Antonio Argote, ashmaroli, Ben Balter, Bogdan, Bradley Meck, David Zhang, Florian Thomas, Frank Taillandier, Jordon Bedwell, Joshua Byrd, Kyle Zhao, lymaconsulting, Maciej Bembenista, Matt Sturgeon, Natanael Arndt, Ohad Schneider, Pat Hawks, Pedro Lamas, and Sid Verma.</p>
|
270
|
-
|
271
|
-
<p>As always, Happy Jekylling!</p>
|
272
|
-
|
273
|
-
</div>
|
274
|
-
</article>
|
275
|
-
|
276
|
-
|
277
|
-
<article>
|
278
|
-
<h2>
|
279
|
-
<a href="/news/2017/08/12/jekyll-3-5-2-released/">
|
280
|
-
Jekyll 3.5.2 Released
|
281
|
-
</a>
|
282
|
-
</h2>
|
283
|
-
<span class="post-category">
|
284
|
-
<span class="label">
|
285
|
-
release
|
286
|
-
</span>
|
287
|
-
</span>
|
288
|
-
<div class="post-meta">
|
289
|
-
<span class="post-date">
|
290
|
-
12 Aug 2017
|
291
|
-
</span>
|
292
|
-
<a href="https://github.com/parkr" class="post-author">
|
293
|
-
|
294
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
295
|
-
parkr
|
296
|
-
</a>
|
297
|
-
</div>
|
298
|
-
<div class="post-content">
|
299
|
-
<p>3.5.2 is out with 6 great bug fixes, most notably one which should dramatically speed up generation of your site! In testing #6266, jekyllrb.com generation when from 18 seconds down to 8! Here is the full line-up of fixes:</p>
|
300
|
-
|
301
|
-
<ul>
|
302
|
-
<li>Backport #6266 for v3.5.x: Memoize the return value of <code class="highlighter-rouge">Document#url</code> (#6301)</li>
|
303
|
-
<li>Backport #6247 for v3.5.x: kramdown: symbolize keys in-place (#6303)</li>
|
304
|
-
<li>Backport #6281 for v3.5.x: Fix <code class="highlighter-rouge">Drop#key?</code> so it can handle a nil argument (#6288)</li>
|
305
|
-
<li>Backport #6280 for v3.5.x: Guard against type error in <code class="highlighter-rouge">absolute_url</code> (#6287)</li>
|
306
|
-
<li>Backport #6273 for v3.5.x: delegate <code class="highlighter-rouge">StaticFile#to_json</code> to <code class="highlighter-rouge">StaticFile#to_liquid</code> (#6302)</li>
|
307
|
-
<li>Backport #6226 for v3.5.x: <code class="highlighter-rouge">Reader#read_directories</code>: guard against an entry not being a directory (#6304</li>
|
308
|
-
</ul>
|
309
|
-
|
310
|
-
<p>A <a href="/docs/history/#v3-5-2">full history</a> is available for your perusal. As always, please file bugs if you encounter them! Opening a pull request with a failing test for your expected behaviour is the easiest way for us to address the issue since we have a reproducible example to test again. Short of that, please fill out our issue template to the best of your ability and we’ll try to get to it quickly!</p>
|
311
|
-
|
312
|
-
<p>Many thanks to our contributors without whom this release could not be
|
313
|
-
possible: Ben Balter & Kyle Zhao.</p>
|
314
|
-
|
315
|
-
<p>Happy Jekylling!</p>
|
316
|
-
|
317
|
-
</div>
|
318
|
-
</article>
|
319
|
-
|
320
|
-
|
321
|
-
<article>
|
322
|
-
<h2>
|
323
|
-
<a href="/news/2017/07/17/jekyll-3-5-1-released/">
|
324
|
-
Jekyll 3.5.1 Released
|
325
|
-
</a>
|
326
|
-
</h2>
|
327
|
-
<span class="post-category">
|
328
|
-
<span class="label">
|
329
|
-
release
|
330
|
-
</span>
|
331
|
-
</span>
|
332
|
-
<div class="post-meta">
|
333
|
-
<span class="post-date">
|
334
|
-
17 Jul 2017
|
335
|
-
</span>
|
336
|
-
<a href="https://github.com/parkr" class="post-author">
|
337
|
-
|
338
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
339
|
-
parkr
|
340
|
-
</a>
|
341
|
-
</div>
|
342
|
-
<div class="post-content">
|
343
|
-
<p>We’ve released a few bugfixes in the form of v3.5.1 today:</p>
|
344
|
-
|
345
|
-
<ul>
|
346
|
-
<li>Some plugins stopped functioning properly due to a NoMethodError for <code class="highlighter-rouge">registers</code> on NilClass. That’s been fixed.</li>
|
347
|
-
<li>A bug in <code class="highlighter-rouge">relative_url</code> when <code class="highlighter-rouge">baseurl</code> is <code class="highlighter-rouge">nil</code> caused URL’s to come out wrong. Squashed.</li>
|
348
|
-
<li>Static files’ liquid representations should now have all the keys you were expecting when serialized into JSON.</li>
|
349
|
-
</ul>
|
350
|
-
|
351
|
-
<p>We apologize for the breakages! We’re working diligently to improve how we test our plugins with Jekyll core to prevent breakages in the future.</p>
|
352
|
-
|
353
|
-
<p>More details in <a href="/docs/history/#v3-5-1">the history</a>. Many thanks to all the contributors to Jekyll v3.5.1: Adam Voss, ashmaroli, Ben Balter, Coby Chapple, Doug Beney, Fadhil, Florian Thomas, Frank Taillandier, James, jaybe, Joshua Byrd, Kevin Plattret, & Robert Jäschke.</p>
|
354
|
-
|
355
|
-
<p>Happy Jekylling!</p>
|
356
|
-
|
357
|
-
</div>
|
358
|
-
</article>
|
359
|
-
|
360
|
-
|
361
|
-
<article>
|
362
|
-
<h2>
|
363
|
-
<a href="/news/2017/06/15/jekyll-3-5-0-released/">
|
364
|
-
Jekyll turns 3.5, oh my!
|
365
|
-
</a>
|
366
|
-
</h2>
|
367
|
-
<span class="post-category">
|
368
|
-
<span class="label">
|
369
|
-
release
|
370
|
-
</span>
|
371
|
-
</span>
|
372
|
-
<div class="post-meta">
|
373
|
-
<span class="post-date">
|
374
|
-
15 Jun 2017
|
375
|
-
</span>
|
376
|
-
<a href="https://github.com/parkr" class="post-author">
|
377
|
-
|
378
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
379
|
-
parkr
|
380
|
-
</a>
|
381
|
-
</div>
|
382
|
-
<div class="post-content">
|
383
|
-
<p>Good news! Nearly 400 commits later, Jekyll 3.5.0 has been released into
|
384
|
-
the wild. Some new shiny things you might want to test out:</p>
|
385
|
-
|
386
|
-
<ul>
|
387
|
-
<li>Jekyll now uses Liquid 4, the latest! It comes with whitespace control, new filters <code class="highlighter-rouge">concat</code> and <code class="highlighter-rouge">compact</code>, loop performance improvements and <a href="https://github.com/Shopify/liquid/blob/master/History.md#400--2016-12-14--branch-4-0-stable">many fixes</a>
|
388
|
-
</li>
|
389
|
-
<li>Themes can specify runtime dependencies (in their gemspecs) and we’ll require those. This makes it easier for theme writers to use plugins.</li>
|
390
|
-
<li>Speaking of themes, we’ll properly handle the discrepancy between a convertible file in the local site and a static file in the theme. Overriding a file locally now doesn’t matter if it’s convertible or static.</li>
|
391
|
-
<li>Pages, posts, and other documents can now access layout variables via <code class="highlighter-rouge">{{ layout }}</code>.</li>
|
392
|
-
<li>The <code class="highlighter-rouge">gems</code> key in the <code class="highlighter-rouge">_config.yml</code> is now <code class="highlighter-rouge">plugins</code>. This is backwards-compatible, as Jekyll will gracefully upgrade <code class="highlighter-rouge">gems</code> to <code class="highlighter-rouge">plugins</code> if you use the former.</li>
|
393
|
-
<li>Filters like <code class="highlighter-rouge">sort</code> now allow you to sort based on a subvalue, e.g. <code class="highlighter-rouge">{% assign sorted = site.posts | sort: "image.alt_text" %}</code>.</li>
|
394
|
-
<li>You can now create tab-separated data files.</li>
|
395
|
-
<li>Using <code class="highlighter-rouge">layout: none</code> will now produce a file with no layout. Equivalent to <code class="highlighter-rouge">layout: null</code>, with the exception that <code class="highlighter-rouge">none</code> is a truthy value and won’t be overwritten by front matter defaults.</li>
|
396
|
-
<li>No more pesky errors if your URL contains a colon (sorry about those!)</li>
|
397
|
-
<li>We now automatically exclude the <code class="highlighter-rouge">Gemfile</code> from the site manifest when compiling your site. No more <code class="highlighter-rouge">_site/Gemfile</code>!</li>
|
398
|
-
<li>We fixed a bug where abbreviated post dates were ignored, e.g. <code class="highlighter-rouge">_posts/2016-4-4-april-fourth.md</code>.</li>
|
399
|
-
</ul>
|
400
|
-
|
401
|
-
<p>And <a href="/docs/history/">so much more!</a></p>
|
402
|
-
|
403
|
-
<p>There was a huge amount of effort put into this release by our maintainers,
|
404
|
-
especially <a href="https://github.com/pathawks" class="user-mention">@pathawks</a>, <a href="https://github.com/DirtyF" class="user-mention">@DirtyF</a>, and <a href="https://github.com/pup" class="user-mention">@pup</a>. Huge thanks to them for ushering
|
405
|
-
this release along and keeping the contributions flowing! Jekyll wouldn’t
|
406
|
-
work without the tireless dedication of our team captains & maintainers.
|
407
|
-
Thank you, all!</p>
|
408
|
-
|
409
|
-
<p>A huge thanks as well to our contributors to this release: Adam Hollett, Aleksander Kuś, Alfred Myers, Anatoliy Yastreb, Antonio Argote, Ashton Hellwig, Ashwin Maroli, Ben Balter, BlueberryFoxtrot, Brent Yi, Chris Finazzo, Christoph Päper, Christopher League, Chun Fei Lung, Colin, David Zhang, Eric Leong, Finn Ellis, Florian Thomas, Frank Taillandier, Hendrik Schneider, Henry Kobin, Ivan Storck, Jakub Klímek, Jan Pobořil, Jeff Puckett, Jonathan Hooper, Kaligule, Kevin Funk, Krzysztof Szafranek, Liu Cheng, Lukasz Brodowski, Marc Bruins, Marcelo Canina, Martin Desrumaux, Mer, Nate, Oreonax, Parker Moore, Pat Hawks, Pedro Lamas, Phil Nash, Ricardo N Feliciano, Ricky Han, Roger Sheen, Ryan Lue, Ryan Streur, Shane Neuville, Sven Meyer, Tom Johnson, William Entriken, Yury V. Zaytsev, Zarino Zappia, dyang, jekylltools, sean delaney, zenHeart</p>
|
410
|
-
|
411
|
-
<p>Please file any bugs with detailed replication instructions if you find any
|
412
|
-
bugs. Better yet, submit a patch if you find the bug in the code and know
|
413
|
-
how to fix it! <img class="emoji" title=":heart:" alt=":heart:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/2764.png" height="20" width="20" align="absmiddle"></p>
|
414
|
-
|
415
|
-
<p>Happy Jekylling! <img class="emoji" title=":tada:" alt=":tada:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f389.png" height="20" width="20" align="absmiddle"></p>
|
416
|
-
|
417
|
-
</div>
|
418
|
-
</article>
|
419
|
-
|
420
|
-
|
421
|
-
<article>
|
422
|
-
<h2>
|
423
|
-
<a href="/news/2017/03/21/jekyll-3-4-3-released/">
|
424
|
-
Jekyll 3.4.3 Released
|
425
|
-
</a>
|
426
|
-
</h2>
|
427
|
-
<span class="post-category">
|
428
|
-
<span class="label">
|
429
|
-
release
|
430
|
-
</span>
|
431
|
-
</span>
|
432
|
-
<div class="post-meta">
|
433
|
-
<span class="post-date">
|
434
|
-
21 Mar 2017
|
435
|
-
</span>
|
436
|
-
<a href="https://github.com/pathawks" class="post-author">
|
437
|
-
|
438
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/pathawks?v=3&s=24" alt="pathawks" srcset="https://avatars3.githubusercontent.com/pathawks?v=3&s=24 1x, https://avatars3.githubusercontent.com/pathawks?v=3&s=48 2x, https://avatars3.githubusercontent.com/pathawks?v=3&s=72 3x, https://avatars3.githubusercontent.com/pathawks?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
439
|
-
pathawks
|
440
|
-
</a>
|
441
|
-
</div>
|
442
|
-
<div class="post-content">
|
443
|
-
<p>Another one-PR patch update as we continue our quest to destroy all bugs. A
|
444
|
-
fairly technical debriefing follows, but the TLDR is that we have updated the
|
445
|
-
<code class="highlighter-rouge">uri_escape</code> filter to more closely follow the pre-v3.4.0 behavior.</p>
|
446
|
-
|
447
|
-
<p>In <a href="/news/2017/01/18/jekyll-3-4-0-released/">v3.4.0</a>, we
|
448
|
-
moved away from using the deprecated
|
449
|
-
<a href="https://ruby-doc.org/stdlib-2.3.0/libdoc/uri/rdoc/URI/Escape.html#method-i-encode"><code class="highlighter-rouge">URI.escape</code></a>
|
450
|
-
in favor of
|
451
|
-
<a href="http://www.rubydoc.info/gems/addressable/Addressable/URI#encode-class_method"><code class="highlighter-rouge">Addressable::URI.encode</code></a>.
|
452
|
-
This is what powers our <a href="https://jekyllrb.com/docs/templates/"><code class="highlighter-rouge">uri_escape</code>
|
453
|
-
filter</a>.</p>
|
454
|
-
|
455
|
-
<p>While this transition was mostly a smooth one, the two methods are not
|
456
|
-
identical. While <code class="highlighter-rouge">URI.escape</code> was happy to escape any string,
|
457
|
-
<code class="highlighter-rouge">Addressable::URI.encode</code> first turns the string into an <code class="highlighter-rouge">Addressable::URI</code>
|
458
|
-
object, and will then escape each component of that object. In most cases, this
|
459
|
-
difference was insignificant, but there were a few cases where this caused some
|
460
|
-
unintended regressions when encoding colons.</p>
|
461
|
-
|
462
|
-
<p>While <strong>Addressable</strong> can understand that something like <code class="highlighter-rouge">"/example :page"</code> is a
|
463
|
-
relative URI, without the slash it cannot figure out how to turn
|
464
|
-
<code class="highlighter-rouge">"example :page"</code> into an <code class="highlighter-rouge">Addressable::URI</code> object. <code class="highlighter-rouge">URI.escape</code> had no such
|
465
|
-
objection. This lead to the following Liquid code working fine in Jekyll 3.3.x
|
466
|
-
but breaking in 3.4.0:</p>
|
467
|
-
|
468
|
-
<div class="language-liquid highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">{{</span><span class="w"> </span><span class="s2">"example :page"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">uri_escape</span><span class="w"> </span><span class="p">}}</span>
|
469
|
-
</code></pre></div></div>
|
470
|
-
|
471
|
-
<p>This was not an intended consequence of switching to <strong>Addressable</strong>.</p>
|
472
|
-
|
473
|
-
<p>Fortunately, the solution was not complicated. <strong>Addressable</strong> has a method
|
474
|
-
<a href="http://www.rubydoc.info/gems/addressable/Addressable/URI#normalize_component-class_method"><code class="highlighter-rouge">Addressable::URI.normalize_component</code></a>
|
475
|
-
which will simply escape the characters in a string, much like <code class="highlighter-rouge">URI.escape</code>.</p>
|
476
|
-
|
477
|
-
<p>Thanks to <a href="https://github.com/cameronmcefee" class="user-mention">@cameronmcefee</a> and <a href="https://github.com/FriesFlorian" class="user-mention">@FriesFlorian</a> for reporting
|
478
|
-
<a href="https://github.com/jekyll/jekyll/issues/5954">this issue</a>.</p>
|
479
|
-
|
480
|
-
<p>Happy Jekylling!</p>
|
481
|
-
|
482
|
-
</div>
|
483
|
-
</article>
|
484
|
-
|
485
|
-
|
486
|
-
<article>
|
487
|
-
<h2>
|
488
|
-
<a href="/news/2017/03/09/jekyll-3-4-2-released/">
|
489
|
-
Jekyll 3.4.2 Released
|
490
|
-
</a>
|
491
|
-
</h2>
|
492
|
-
<span class="post-category">
|
493
|
-
<span class="label">
|
494
|
-
release
|
495
|
-
</span>
|
496
|
-
</span>
|
497
|
-
<div class="post-meta">
|
498
|
-
<span class="post-date">
|
499
|
-
09 Mar 2017
|
500
|
-
</span>
|
501
|
-
<a href="https://github.com/parkr" class="post-author">
|
502
|
-
|
503
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
504
|
-
parkr
|
505
|
-
</a>
|
506
|
-
</div>
|
507
|
-
<div class="post-content">
|
508
|
-
<p>Another one-PR patch update, though without the same <a href="/news/2017/03/02/jekyll-3-4-1-released/">lessons as for the
|
509
|
-
previous release</a>.</p>
|
510
|
-
|
511
|
-
<p>This release includes a beneficial change for a number of plugins:
|
512
|
-
<strong>static files now respect front matter defaults</strong>.</p>
|
513
|
-
|
514
|
-
<p>You might be asking yourself: “why would static files, files that are
|
515
|
-
static files explicitly because they <em>don’t</em> have YAML front matter, want
|
516
|
-
to respect YAML front matter?” That’s a great question. Let me illustrate
|
517
|
-
with an example.</p>
|
518
|
-
|
519
|
-
<p>Let’s look at <code class="highlighter-rouge">jekyll-sitemap</code>. This plugin generates a list of documents,
|
520
|
-
pages, and static files, and some metadata for them in an XML file for a
|
521
|
-
Google/Yahoo/Bing/DuckDuckGo crawler to consume. If you don’t want a given
|
522
|
-
file in this list, you set <code class="highlighter-rouge">sitemap: false</code> in the YAML front matter. But
|
523
|
-
what about static files, which don’t have YAML front matter? Before this
|
524
|
-
release, they could not be excluded because they had no properties in YAML
|
525
|
-
other than <a href="https://github.com/jekyll/jekyll/blob/v3.4.1/lib/jekyll/static_file.rb#L98-L106">the ones we explicitly assigned</a>.
|
526
|
-
So if you had a PDF you didn’t want to be in your sitemap, you couldn’t use
|
527
|
-
<code class="highlighter-rouge">jekyll-sitemap</code>.</p>
|
528
|
-
|
529
|
-
<p>With this release, you can now set <a href="/docs/configuration/#front-matter-defaults">front matter
|
530
|
-
defaults</a> for static files:</p>
|
531
|
-
|
532
|
-
<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="na">defaults</span><span class="pi">:</span>
|
533
|
-
<span class="pi">-</span>
|
534
|
-
<span class="na">scope</span><span class="pi">:</span>
|
535
|
-
<span class="na">path</span><span class="pi">:</span> <span class="s2">"</span><span class="s">pdfs/"</span>
|
536
|
-
<span class="na">values</span><span class="pi">:</span>
|
537
|
-
<span class="na">sitemap</span><span class="pi">:</span> <span class="no">false</span>
|
538
|
-
</code></pre></div></div>
|
539
|
-
|
540
|
-
<p>Now, for every file in the Liquid <code class="highlighter-rouge">site.static_files</code> loop which is in the
|
541
|
-
folder <code class="highlighter-rouge">pdfs/</code>, you’ll see <code class="highlighter-rouge">sitemap</code> equal to <code class="highlighter-rouge">false</code>.</p>
|
542
|
-
|
543
|
-
<p>Many thanks to <a href="https://github.com/benbalter" class="user-mention">@benbalter</a> for coming up with the solution and ensuring
|
544
|
-
sitemaps everywhere are filled with just the right content.</p>
|
545
|
-
|
546
|
-
<p>As always, if you notice any bugs, please search the issues and file one if
|
547
|
-
you can’t find another related to your issue.</p>
|
548
|
-
|
549
|
-
<p>Happy Jekylling!</p>
|
550
|
-
|
551
|
-
</div>
|
552
|
-
</article>
|
553
|
-
|
554
|
-
|
555
|
-
<article>
|
556
|
-
<h2>
|
557
|
-
<a href="/news/2017/03/02/jekyll-3-4-1-released/">
|
558
|
-
Jekyll 3.4.1, or "Unintended Consequences"
|
559
|
-
</a>
|
560
|
-
</h2>
|
561
|
-
<span class="post-category">
|
562
|
-
<span class="label">
|
563
|
-
release
|
564
|
-
</span>
|
565
|
-
</span>
|
566
|
-
<div class="post-meta">
|
567
|
-
<span class="post-date">
|
568
|
-
02 Mar 2017
|
569
|
-
</span>
|
570
|
-
<a href="https://github.com/parkr" class="post-author">
|
571
|
-
|
572
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
573
|
-
parkr
|
574
|
-
</a>
|
575
|
-
</div>
|
576
|
-
<div class="post-content">
|
577
|
-
<p>Conformity is a confounding thing.</p>
|
578
|
-
|
579
|
-
<p>We write tests to ensure that a piece of functionality that works today
|
580
|
-
will work tomorrow, as further modifications are made to the codebase. This
|
581
|
-
is a principle of modern software development: every change must have a
|
582
|
-
test to guard against regressions to the functionality implemented by that
|
583
|
-
change.</p>
|
584
|
-
|
585
|
-
<p>And yet, occasionally, our very best efforts to test functionality will be
|
586
|
-
thwarted. This is because of how our code produces unintended
|
587
|
-
functionality, which naturally goes untested.</p>
|
588
|
-
|
589
|
-
<p>In our documentation, we tell users to name their posts with the following
|
590
|
-
format:</p>
|
591
|
-
|
592
|
-
<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>YYYY-MM-DD-title.extension
|
593
|
-
</code></pre></div></div>
|
594
|
-
|
595
|
-
<p>That format specifies exactly four numbers for the year, e.g. 2017, two
|
596
|
-
letters for the month, e.g. 03, and two letters for the day, e.g. 02. To
|
597
|
-
match this, we had the following regular expression:</p>
|
598
|
-
|
599
|
-
<div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="sr">%r!^(?:.+/)*(</span><span class="se">\d</span><span class="sr">+-</span><span class="se">\d</span><span class="sr">+-</span><span class="se">\d</span><span class="sr">+)-(.*)(</span><span class="se">\.</span><span class="sr">[^.]+)$!</span>
|
600
|
-
</code></pre></div></div>
|
601
|
-
|
602
|
-
<p>You might already see the punchline. While our documentation specifies the
|
603
|
-
exact number of numbers that is required for each section of the date, our
|
604
|
-
regular expression does not enforce this precision. What happens if a user
|
605
|
-
doesn’t conform to our documentation?</p>
|
606
|
-
|
607
|
-
<p>We recently <a href="https://github.com/jekyll/jekyll/issues/5603">received a bug report</a>
|
608
|
-
that detailed how the following file was considered a post:</p>
|
609
|
-
|
610
|
-
<div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>84093135-42842323-42000001-b890-136270f7e5f1.md
|
611
|
-
</code></pre></div></div>
|
612
|
-
|
613
|
-
<p>Of course! It matches the above regular expression, but doesn’t satisfy
|
614
|
-
other requirements about those numbers being a valid date (unless you’re
|
615
|
-
living in a world that has 43 million months, and 42 million (and one)
|
616
|
-
days). So, we <a href="https://github.com/jekyll/jekyll/pull/5609">modified the regular expression to match our
|
617
|
-
documentation</a>:</p>
|
618
|
-
|
619
|
-
<div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="sr">%r!^(?:.+/)*(</span><span class="se">\d</span><span class="sr">{4}-</span><span class="se">\d</span><span class="sr">{2}-</span><span class="se">\d</span><span class="sr">{2})-(.*)(</span><span class="se">\.</span><span class="sr">[^.]+)$!</span>
|
620
|
-
</code></pre></div></div>
|
621
|
-
|
622
|
-
<p>Our tests all passed and we were properly excluding this crazy date with 43
|
623
|
-
million months and days. This change shipped in Jekyll v3.4.0 and all was
|
624
|
-
well.</p>
|
625
|
-
|
626
|
-
<p>Well, not so much.</p>
|
627
|
-
|
628
|
-
<p>A very common way to specify the month of February is <code class="highlighter-rouge">2</code>. This is true for
|
629
|
-
all single-digit months and days of the month. Notice anything about our
|
630
|
-
first regular expression versus our second? The second regular expression
|
631
|
-
imposes a <strong>minimum</strong>, as well as maximum, number of digits. This change
|
632
|
-
made Jekyll ignore dates with single-digit days and months.</p>
|
633
|
-
|
634
|
-
<p>The first eight years of Jekyll’s existence had allowed single-digit days
|
635
|
-
and months due to an imprecise regular expression. For some people, their
|
636
|
-
entire blog was missing, and there were no errors that told them why.</p>
|
637
|
-
|
638
|
-
<p>After receiving a few bug reports, it became clear what had happened.
|
639
|
-
Unintended functionality of the last eight years had been broken. Thus,
|
640
|
-
v3.4.0 was broken for a non-negligible number of sites. With a test site
|
641
|
-
in-hand from <a href="https://github.com/andrewbanchich" class="user-mention">@andrewbanchich</a>, I tracked it down to this regular expression
|
642
|
-
and <a href="https://github.com/jekyll/jekyll/pull/5920">reintroduced</a> a proper
|
643
|
-
minimum number of digits for each segment:</p>
|
644
|
-
|
645
|
-
<div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="sr">%r!^(?:.+/)*(</span><span class="se">\d</span><span class="sr">{2,4}-</span><span class="se">\d</span><span class="sr">{1,2}-</span><span class="se">\d</span><span class="sr">{1,2})-(.*)(</span><span class="se">\.</span><span class="sr">[^.]+)$!</span>
|
646
|
-
</code></pre></div></div>
|
647
|
-
|
648
|
-
<p>And, I wrote a test.</p>
|
649
|
-
|
650
|
-
<p>This change was quickly backported to v3.4.0 and here we are: releasing
|
651
|
-
v3.4.1. It will fix the problem for all users who were using single-digit
|
652
|
-
months and days.</p>
|
653
|
-
|
654
|
-
<p>With this, I encourage all of you to look at your code for <em>unintended</em>
|
655
|
-
functionality and make a judgement call: if it’s allowed, <em>should it be</em>?
|
656
|
-
If it should be allowed, make it <em>intended</em> functionality and test it! I
|
657
|
-
know I’ll be looking at my code with much greater scrutiny going forward,
|
658
|
-
looking for unintended consequences.</p>
|
659
|
-
|
660
|
-
<p>Many thanks to our Jekyll affinity team captains who helped out, including
|
661
|
-
<a href="https://github.com/pathawks" class="user-mention">@pathawks</a>, <a href="https://github.com/pnn" class="user-mention">@pnn</a>, and <a href="https://github.com/DirtyF" class="user-mention">@DirtyF</a>. Thanks, too, to <a href="https://github.com/ashmaroli" class="user-mention">@ashmaroli</a> for reviewing my
|
662
|
-
change with an eye for consistency and precision. This was certainly a team
|
663
|
-
effort.</p>
|
664
|
-
|
665
|
-
<p>We hope Jekyll v3.4.1 brings your variable-digit dates back to their
|
666
|
-
previous glory. We certainly won’t let that unintended functionality be
|
667
|
-
unintended any longer.</p>
|
668
|
-
|
669
|
-
<p>As always, Happy Jekylling!</p>
|
670
|
-
|
671
|
-
</div>
|
672
|
-
</article>
|
673
|
-
|
674
|
-
|
675
|
-
<article>
|
676
|
-
<h2>
|
677
|
-
<a href="/news/2017/01/18/jekyll-3-4-0-released/">
|
678
|
-
Jekyll turns 3.4.0
|
679
|
-
</a>
|
680
|
-
</h2>
|
681
|
-
<span class="post-category">
|
682
|
-
<span class="label">
|
683
|
-
release
|
684
|
-
</span>
|
685
|
-
</span>
|
686
|
-
<div class="post-meta">
|
687
|
-
<span class="post-date">
|
688
|
-
18 Jan 2017
|
689
|
-
</span>
|
690
|
-
<a href="https://github.com/parkr" class="post-author">
|
691
|
-
|
692
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
693
|
-
parkr
|
694
|
-
</a>
|
695
|
-
</div>
|
696
|
-
<div class="post-content">
|
697
|
-
<p>Hey there! We have a quick update of Jekyll for you to enjoy this January.
|
698
|
-
Packed full of bug fixes as usual, thanks to the tireless efforts of our
|
699
|
-
exceptional Jekyll community. Three changes to call out:</p>
|
700
|
-
|
701
|
-
<ol>
|
702
|
-
<li>If you’re a big fan of <a href="/docs/templates/#filters"><code class="highlighter-rouge">where_by_exp</code></a>, you’ll be an
|
703
|
-
even bigger fan of <a href="/docs/templates/#filters"><code class="highlighter-rouge">group_by_exp</code></a>.</li>
|
704
|
-
<li>Using a custom timezone in Jekyll on Windows? Yeah, sorry that hasn’t ever worked
|
705
|
-
properly. We made it possible to accurately <a href="https://jekyllrb.com/docs/windows/#timezone-management">set the timezone using IANA
|
706
|
-
timezone codes</a>.</li>
|
707
|
-
<li>Documentation has been improved, notably on themes, includes and permalinks.</li>
|
708
|
-
</ol>
|
709
|
-
|
710
|
-
<p>And <a href="/docs/history/#v3-4-0">lots and lots more!</a></p>
|
711
|
-
|
712
|
-
<p>This update was made possible by the dedicated efforts of our excellent
|
713
|
-
contributors: Ajay Karwal, Alexey Rogachev, Ashwin Maroli,
|
714
|
-
BlueberryFoxtrot, Chase, Chayoung You, Dean Attali, Dmitrii Evdokimov, Don
|
715
|
-
Denton, Eldritch Cheese, Fabrice Laporte, Florian Thomas, Frank
|
716
|
-
Taillandier, Hugo, Ivan Dmitrievsky, Joel Meyer-Hamme, Josh Habdas, Kenton
|
717
|
-
Hansen, Kevin Wojniak, Kurt Anderson, Longwelwind, Max Chadwick, Nicolas
|
718
|
-
Hoizey, Nursen, Parker Moore, Pat Hawks, Purplecarrot, Ricardo N Feliciano,
|
719
|
-
Rob Crocombe, Roger Ogden, Skylar Challand, Thiago Arrais, Tim Banks, Tom
|
720
|
-
Johnson, Tunghsiao Liu, XhmikosR, Zlatan Vasović, alexmalik, brainscript,
|
721
|
-
kimbaudi, muratayusuke, penny, and yoostk.</p>
|
722
|
-
|
723
|
-
<p>As always, if you encounter bugs, please do <a href="https://github.com/jekyll/jekyll/issues">search the issues</a>
|
724
|
-
and <a href="https://github.com/jekyll/jekyll/issues/new">file an issue</a> if you aren’t able to
|
725
|
-
find a resolution. We also have <a href="https://talk.jekyllrb.com">our Jekyll Talk
|
726
|
-
forum</a> for those of you with general questions
|
727
|
-
about how to accomplish certain tasks with Jekyll.</p>
|
728
|
-
|
729
|
-
<p>We have some exciting updates in store for v3.5, and we’re hard at work on
|
730
|
-
those already.</p>
|
731
|
-
|
732
|
-
<p>Happy Jekylling!</p>
|
733
|
-
|
734
|
-
</div>
|
735
|
-
</article>
|
736
|
-
|
737
|
-
|
738
|
-
<article>
|
739
|
-
<h2>
|
740
|
-
<a href="/news/2016/11/14/jekyll-3-3-1-released/">
|
741
|
-
Jekyll 3.3.1 Released
|
742
|
-
</a>
|
743
|
-
</h2>
|
744
|
-
<span class="post-category">
|
745
|
-
<span class="label">
|
746
|
-
release
|
747
|
-
</span>
|
748
|
-
</span>
|
749
|
-
<div class="post-meta">
|
750
|
-
<span class="post-date">
|
751
|
-
14 Nov 2016
|
752
|
-
</span>
|
753
|
-
<a href="https://github.com/parkr" class="post-author">
|
754
|
-
|
755
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
756
|
-
parkr
|
757
|
-
</a>
|
758
|
-
</div>
|
759
|
-
<div class="post-content">
|
760
|
-
<p>Hello! We have a bugfix release of Jekyll hot off the presses for you. Key
|
761
|
-
fixes to call out:</p>
|
762
|
-
|
763
|
-
<ol>
|
764
|
-
<li>Only warn about auto-regeneration issues on Windows instead of disabling</li>
|
765
|
-
<li>Exclude very specific <code class="highlighter-rouge">vendor/</code> subdirectories instead of all of <code class="highlighter-rouge">vendor/</code>
|
766
|
-
</li>
|
767
|
-
<li>Allow permalink templates to have plaintext underscores</li>
|
768
|
-
</ol>
|
769
|
-
|
770
|
-
<p>..and lots more! Check out the <a href="/docs/history/#v3-3-1">full history for more</a>.</p>
|
771
|
-
|
772
|
-
<p>Happy Jekylling!</p>
|
773
|
-
|
774
|
-
</div>
|
775
|
-
</article>
|
776
|
-
|
777
|
-
|
778
|
-
<article>
|
779
|
-
<h2>
|
780
|
-
<a href="/news/2016/10/06/jekyll-3-3-is-here/">
|
781
|
-
Jekyll 3.3 is here with better theme support, new URL filters, and tons more
|
782
|
-
</a>
|
783
|
-
</h2>
|
784
|
-
<span class="post-category">
|
785
|
-
<span class="label">
|
786
|
-
release
|
787
|
-
</span>
|
788
|
-
</span>
|
789
|
-
<div class="post-meta">
|
790
|
-
<span class="post-date">
|
791
|
-
06 Oct 2016
|
792
|
-
</span>
|
793
|
-
<a href="https://github.com/parkr" class="post-author">
|
794
|
-
|
795
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
796
|
-
parkr
|
797
|
-
</a>
|
798
|
-
</div>
|
799
|
-
<div class="post-content">
|
800
|
-
<p>There are tons of great new quality-of-life features you can use in 3.3.
|
801
|
-
Three key things you might want to try:</p>
|
802
|
-
|
803
|
-
<h3 id="1-themes-can-now-ship-static--dynamic-assets-in-an-assets-directory">1. Themes can now ship static & dynamic assets in an <code class="highlighter-rouge">/assets</code> directory</h3>
|
804
|
-
|
805
|
-
<p>In Jekyll 3.2, we shipped the ability to use a theme that was packaged as a
|
806
|
-
<a href="http://guides.rubygems.org/">gem</a>. 3.2 included support for includes,
|
807
|
-
layouts, and sass partials. In 3.3, we’re adding assets to that list.</p>
|
808
|
-
|
809
|
-
<p>In an effort to make theme management a bit easier, any files you put into
|
810
|
-
<code class="highlighter-rouge">/assets</code> in your theme will be read in as though they were part of the
|
811
|
-
user’s site. This means you can ship SCSS and CoffeeScript, images and
|
812
|
-
webfonts, and so on – anything you’d consider a part of the
|
813
|
-
<em>presentation</em>. Same rules apply here as in a Jekyll site: if it has YAML
|
814
|
-
front matter, it will be converted and rendered. No YAML front matter, and
|
815
|
-
it will simply be copied over like a static asset.</p>
|
816
|
-
|
817
|
-
<p>Note that if a user has a file of the same path, the theme content will not
|
818
|
-
be included in the site, i.e. a user’s <code class="highlighter-rouge">/assets/main.scss</code> will be read and
|
819
|
-
processed if present instead of a theme’s <code class="highlighter-rouge">/assets/main.scss</code>.</p>
|
820
|
-
|
821
|
-
<p>See our <a href="/docs/themes/#assets">documentation on the subject</a>
|
822
|
-
for more info.</p>
|
823
|
-
|
824
|
-
<h3 id="2-relative_url-and-absolute_url-filters">2. <code class="highlighter-rouge">relative_url</code> and <code class="highlighter-rouge">absolute_url</code> filters</h3>
|
825
|
-
|
826
|
-
<p>Want a clean way to prepend the <code class="highlighter-rouge">baseurl</code> or <code class="highlighter-rouge">url</code> in your config? These
|
827
|
-
new filters have you covered. When working locally, if you set your
|
828
|
-
<code class="highlighter-rouge">baseurl</code> to match your deployment environment, say <code class="highlighter-rouge">baseurl: "/myproject"</code>,
|
829
|
-
then <code class="highlighter-rouge">relative_url</code> will ensure that this baseurl is prepended to anything
|
830
|
-
you pass it:</p>
|
831
|
-
|
832
|
-
<figure class="highlight"><pre><code class="language-liquid" data-lang="liquid"><span class="p">{{</span><span class="w"> </span><span class="s2">"/docs/assets/"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">relative_url</span><span class="w"> </span><span class="p">}}</span> => /myproject/docs/assets</code></pre></figure>
|
833
|
-
|
834
|
-
<p>By default, <code class="highlighter-rouge">baseurl</code> is set to <code class="highlighter-rouge">""</code> and therefore yields (never set to
|
835
|
-
<code class="highlighter-rouge">"/"</code>):</p>
|
836
|
-
|
837
|
-
<figure class="highlight"><pre><code class="language-liquid" data-lang="liquid"><span class="p">{{</span><span class="w"> </span><span class="s2">"/docs/assets/"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">relative_url</span><span class="w"> </span><span class="p">}}</span> => /docs/assets</code></pre></figure>
|
838
|
-
|
839
|
-
<p>A result of <code class="highlighter-rouge">relative_url</code> will safely always produce a URL which is
|
840
|
-
relative to the domain root. A similar principle applies to <code class="highlighter-rouge">absolute_url</code>.
|
841
|
-
It prepends your <code class="highlighter-rouge">baseurl</code> and <code class="highlighter-rouge">url</code> values, making absolute URLs all the
|
842
|
-
easier to make:</p>
|
843
|
-
|
844
|
-
<figure class="highlight"><pre><code class="language-liquid" data-lang="liquid"><span class="p">{{</span><span class="w"> </span><span class="s2">"/docs/assets/"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">absolute_url</span><span class="w"> </span><span class="p">}}</span> => https://jekyllrb.com/myproject/docs/assets</code></pre></figure>
|
845
|
-
|
846
|
-
<h3 id="3-siteurl-is-set-by-the-development-server">3. <code class="highlighter-rouge">site.url</code> is set by the development server</h3>
|
847
|
-
|
848
|
-
<p>When you run <code class="highlighter-rouge">jekyll serve</code> locally, it starts a web server, usually at
|
849
|
-
<code class="highlighter-rouge">http://localhost:4000</code>, that you use to preview your site during
|
850
|
-
development. If you are using the new <code class="highlighter-rouge">absolute_url</code> filter, or using
|
851
|
-
<code class="highlighter-rouge">site.url</code> anywhere, you have probably had to create a development config
|
852
|
-
which resets the <code class="highlighter-rouge">url</code> value to point to <code class="highlighter-rouge">http://localhost:4000</code>.</p>
|
853
|
-
|
854
|
-
<p>No longer! When you run <code class="highlighter-rouge">jekyll serve</code>, Jekyll will build your site with
|
855
|
-
the value of the <code class="highlighter-rouge">host</code>, <code class="highlighter-rouge">port</code>, and SSL-related options. This defaults to
|
856
|
-
<code class="highlighter-rouge">url: http://localhost:4000</code>. When you are developing locally, <code class="highlighter-rouge">site.url</code>
|
857
|
-
will yield <code class="highlighter-rouge">http://localhost:4000</code>.</p>
|
858
|
-
|
859
|
-
<p>This happens by default when running Jekyll locally. It will not be set if
|
860
|
-
you set <code class="highlighter-rouge">JEKYLL_ENV=production</code> and run <code class="highlighter-rouge">jekyll serve</code>. If <code class="highlighter-rouge">JEKYLL_ENV</code> is
|
861
|
-
any value except <code class="highlighter-rouge">development</code> (its default value), Jekyll will not
|
862
|
-
overwrite the value of <code class="highlighter-rouge">url</code> in your config. And again, this only applies
|
863
|
-
to serving, not to building.</p>
|
864
|
-
|
865
|
-
<h2 id="a-lot-more">A <em>lot</em> more!</h2>
|
866
|
-
|
867
|
-
<p>There are dozens of bug fixes and minor improvements to make your Jekyll
|
868
|
-
experience better than ever. With every Jekyll release, we strive to bring
|
869
|
-
greater stability and reliability to your everyday development workflow.</p>
|
870
|
-
|
871
|
-
<p>As always, thanks to our many contributors who contributed countless hours
|
872
|
-
of their free time to making this release happen:</p>
|
873
|
-
|
874
|
-
<p>Anatoliy Yastreb, Anthony Gaudino, Antonio, Ashwin Maroli, Ben Balter,
|
875
|
-
Charles Horn, Chris Finazzo, Daniel Chapman, David Zhang, Eduardo
|
876
|
-
Bouças, Edward Thomson, Eloy Espinaco, Florian Thomas, Frank Taillandier,
|
877
|
-
Gerardo, Heng Kwokfu, Heng, K. (Stephen), Jeff Kolesky, Jonathan Thornton,
|
878
|
-
Jordon Bedwell, Jussi Kinnula, Júnior Messias, Kyle O’Brien, Manmeet Gill,
|
879
|
-
Mark H. Wilkinson, Marko Locher, Mertcan GÖKGÖZ, Michal Švácha, Mike
|
880
|
-
Kasberg, Nadjib Amar, Nicolas Hoizey, Nicolas Porcel, Parker Moore, Pat
|
881
|
-
Hawks, Patrick Marsceill, Stephen Checkoway, Stuart Kent, XhmikosR, Zlatan
|
882
|
-
Vasović, mertkahyaoglu, shingo-nakanishi, and vohedge.</p>
|
883
|
-
|
884
|
-
<p><a href="/docs/history/#v3-3-0">Full release notes</a> are available
|
885
|
-
for your perusal. If you notice any issues, please don’t hesitate to file a
|
886
|
-
bug report.</p>
|
887
|
-
|
888
|
-
<p>Happy Jekylling!</p>
|
889
|
-
|
890
|
-
</div>
|
891
|
-
</article>
|
892
|
-
|
893
|
-
|
894
|
-
<article>
|
895
|
-
<h2>
|
896
|
-
<a href="/news/2016/08/02/jekyll-3-2-1-released/">
|
897
|
-
Jekyll 3.2.1 Released with Fix for Windows
|
898
|
-
</a>
|
899
|
-
</h2>
|
900
|
-
<span class="post-category">
|
901
|
-
<span class="label">
|
902
|
-
release
|
903
|
-
</span>
|
904
|
-
</span>
|
905
|
-
<div class="post-meta">
|
906
|
-
<span class="post-date">
|
907
|
-
02 Aug 2016
|
908
|
-
</span>
|
909
|
-
<a href="https://github.com/parkr" class="post-author">
|
910
|
-
|
911
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
912
|
-
parkr
|
913
|
-
</a>
|
914
|
-
</div>
|
915
|
-
<div class="post-content">
|
916
|
-
<p>Well, 3.2.0 has been a success, but with one fatal flaw: it doesn’t work on
|
917
|
-
Windows! Sorry, Windows users. Hot on the trail of 3.2.0, this release
|
918
|
-
should squash that <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle">. Sorry about that!</p>
|
919
|
-
|
920
|
-
<p>This release also fixes an issue when using <a href="/docs/themes/">gem-based themes</a>
|
921
|
-
where the theme was rejected if it existed behind a symlink. This is a
|
922
|
-
common setup for the various ruby version managers, and for Ruby installed
|
923
|
-
via Homebrew. Props to <a href="https://github.com/benbalter" class="user-mention">@benbalter</a> for fixing that up.</p>
|
924
|
-
|
925
|
-
<p>Thanks to the contributors for this release: Adam Petrie, Ben Balter,
|
926
|
-
Daniel Chapman, DirtyF, Gary Ewan Park, Jordon Bedwell, and Parker Moore.</p>
|
927
|
-
|
928
|
-
<p>As always, you can see our full changelog on <a href="/docs/history/">the History page</a>.</p>
|
929
|
-
|
930
|
-
<p>Happy Jekylling!</p>
|
931
|
-
|
932
|
-
</div>
|
933
|
-
</article>
|
934
|
-
|
935
|
-
|
936
|
-
<article>
|
937
|
-
<h2>
|
938
|
-
<a href="/news/2016/07/26/jekyll-3-2-0-released/">
|
939
|
-
Jekyll turns 3.2
|
940
|
-
</a>
|
941
|
-
</h2>
|
942
|
-
<span class="post-category">
|
943
|
-
<span class="label">
|
944
|
-
release
|
945
|
-
</span>
|
946
|
-
</span>
|
947
|
-
<div class="post-meta">
|
948
|
-
<span class="post-date">
|
949
|
-
26 Jul 2016
|
950
|
-
</span>
|
951
|
-
<a href="https://github.com/parkr" class="post-author">
|
952
|
-
|
953
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
954
|
-
parkr
|
955
|
-
</a>
|
956
|
-
</div>
|
957
|
-
<div class="post-content">
|
958
|
-
<p>Happy Day! Jekyll v3.2.0 is out, and packed full of goodies.</p>
|
959
|
-
|
960
|
-
<p>Our flagship feature for this release has been <strong>themes</strong>. <em>Themes?!</em>, you
|
961
|
-
say? Yes, proper, versionable, releasable, first-class themes. We’re pretty
|
962
|
-
stoked about it and we hope you like building and using them. For now, it
|
963
|
-
only supports layouts, includes, and sass, but we have plans to include
|
964
|
-
static assets like images and CSS/JS in a future release. <a href="/docs/themes/">Read more about
|
965
|
-
it in the docs.</a> Our site template generated by <code class="highlighter-rouge">jekyll new</code>
|
966
|
-
now dogfoods this feature, using the <a href="https://github.com/jekyll/minima">minima</a> theme.</p>
|
967
|
-
|
968
|
-
<p>Some other notable changes:</p>
|
969
|
-
|
970
|
-
<ul>
|
971
|
-
<li>Symlinks are allowed as long as they target a file in the site source</li>
|
972
|
-
<li>Explicit support for Ruby 2.0.x was dropped</li>
|
973
|
-
<li>Added an <code class="highlighter-rouge">:after_init</code> Hook</li>
|
974
|
-
<li>Added a <code class="highlighter-rouge">where_exp</code> filter to provide more powerful filtering</li>
|
975
|
-
<li>Added a <code class="highlighter-rouge">link</code> liquid tag which can be used to generate URLs for any
|
976
|
-
post or document based on its path relative to the site source</li>
|
977
|
-
<li>… and lots more!</li>
|
978
|
-
</ul>
|
979
|
-
|
980
|
-
<p>As always, there is <a href="/docs/history/#v3-2-0">a full list of changes</a> for
|
981
|
-
your perusal.</p>
|
982
|
-
|
983
|
-
<p>Every release is made possible by the countless hours of hard work that our
|
984
|
-
fellow community members put into sending patches, filing thoughtful
|
985
|
-
patches, and so on. These release took the work of over 80 people:</p>
|
986
|
-
|
987
|
-
<ul>
|
988
|
-
<li>Aaron Sky</li>
|
989
|
-
<li>Adam Hollett</li>
|
990
|
-
<li>ajhit406</li>
|
991
|
-
<li>Aki</li>
|
992
|
-
<li>Alex Hanselka</li>
|
993
|
-
<li>Alex Hoyau</li>
|
994
|
-
<li>Alex Ivkin</li>
|
995
|
-
<li>Alex Kitchens</li>
|
996
|
-
<li>Alex Plescan</li>
|
997
|
-
<li>Alex Wood</li>
|
998
|
-
<li>Anatoliy Yastreb</li>
|
999
|
-
<li>Andrew Artajos</li>
|
1000
|
-
<li>Andrew Munsell</li>
|
1001
|
-
<li>AndrewCz</li>
|
1002
|
-
<li>Ankush Menat</li>
|
1003
|
-
<li>Anthony Smith</li>
|
1004
|
-
<li>Ben Balter</li>
|
1005
|
-
<li>Brian Jones</li>
|
1006
|
-
<li>Brint O’Hearn</li>
|
1007
|
-
<li>Chayoung You</li>
|
1008
|
-
<li>Chris Wells</li>
|
1009
|
-
<li>chrisfinazzo</li>
|
1010
|
-
<li>Clark Winkelmann</li>
|
1011
|
-
<li>Dan Allen</li>
|
1012
|
-
<li>David Von Lehman</li>
|
1013
|
-
<li>David Zhang</li>
|
1014
|
-
<li>Derek Gottlieb</li>
|
1015
|
-
<li>Enes Gönültaş</li>
|
1016
|
-
<li>EricH</li>
|
1017
|
-
<li>Erick Sasse</li>
|
1018
|
-
<li>Eugênio Cabral</li>
|
1019
|
-
<li>Florian Thomas</li>
|
1020
|
-
<li>Frank Taillandier</li>
|
1021
|
-
<li>Henry Goodman</li>
|
1022
|
-
<li>Henry Wright</li>
|
1023
|
-
<li>Hugo Duksis</li>
|
1024
|
-
<li>Hugo Giraudel</li>
|
1025
|
-
<li>Jack Reed</li>
|
1026
|
-
<li>Jamie Bilinski</li>
|
1027
|
-
<li>Jeff Kolesky</li>
|
1028
|
-
<li>Jens Willmer</li>
|
1029
|
-
<li>Jordon Bedwell</li>
|
1030
|
-
<li>Josh Waller</li>
|
1031
|
-
<li>Joshua Barnett</li>
|
1032
|
-
<li>Keegan Mullaney</li>
|
1033
|
-
<li>Kevin Miller</li>
|
1034
|
-
<li>Krzysztof Jurewicz</li>
|
1035
|
-
<li>Loren Rogers</li>
|
1036
|
-
<li>Marcos Brito</li>
|
1037
|
-
<li>Marcus Stollsteimer</li>
|
1038
|
-
<li>Matt Rogers</li>
|
1039
|
-
<li>Michaël Guitton</li>
|
1040
|
-
<li>Mike Linksvayer</li>
|
1041
|
-
<li>Mike Neumegen</li>
|
1042
|
-
<li>Nathan Hazout</li>
|
1043
|
-
<li>Nick</li>
|
1044
|
-
<li>No</li>
|
1045
|
-
<li>nscyclone</li>
|
1046
|
-
<li>Parker Moore</li>
|
1047
|
-
<li>Pat Hawks</li>
|
1048
|
-
<li>Pierre Fenoll</li>
|
1049
|
-
<li>Praveen Kumar</li>
|
1050
|
-
<li>Rares Vernica</li>
|
1051
|
-
<li>Saleem Rashid</li>
|
1052
|
-
<li>Sam Dutton</li>
|
1053
|
-
<li>Shengbin Meng</li>
|
1054
|
-
<li>Shinn Kondo</li>
|
1055
|
-
<li>Shinnosuke Kondo</li>
|
1056
|
-
<li>skim</li>
|
1057
|
-
<li>Sondre Nilsen</li>
|
1058
|
-
<li>Spencer A. Bywater</li>
|
1059
|
-
<li>Stephen Checkoway</li>
|
1060
|
-
<li>Suriyaa Kudo</li>
|
1061
|
-
<li>surrim</li>
|
1062
|
-
<li>TheLucasMoore</li>
|
1063
|
-
<li>Thomas Wood</li>
|
1064
|
-
<li>Tim Wisniewski</li>
|
1065
|
-
<li>Tom Fejfar</li>
|
1066
|
-
<li>Tony Garnock-Jones</li>
|
1067
|
-
<li>Vincent Wochnik</li>
|
1068
|
-
<li>XhmikosR</li>
|
1069
|
-
<li>Yanis Vieilly</li>
|
1070
|
-
<li>Yordis Prieto</li>
|
1071
|
-
<li>Zack Spencer</li>
|
1072
|
-
</ul>
|
1073
|
-
|
1074
|
-
<p>We are so grateful to all of you for helping to put together a terrific
|
1075
|
-
release. Thank you!</p>
|
1076
|
-
|
1077
|
-
<p>Happy Jekylling!</p>
|
1078
|
-
|
1079
|
-
</div>
|
1080
|
-
</article>
|
1081
|
-
|
1082
|
-
|
1083
|
-
<article>
|
1084
|
-
<h2>
|
1085
|
-
<a href="/news/2016/05/19/jekyll-3-1-6-released/">
|
1086
|
-
Jekyll 3.1.6 Released
|
1087
|
-
</a>
|
1088
|
-
</h2>
|
1089
|
-
<span class="post-category">
|
1090
|
-
<span class="label">
|
1091
|
-
release
|
1092
|
-
</span>
|
1093
|
-
</span>
|
1094
|
-
<div class="post-meta">
|
1095
|
-
<span class="post-date">
|
1096
|
-
19 May 2016
|
1097
|
-
</span>
|
1098
|
-
<a href="https://github.com/parkr" class="post-author">
|
1099
|
-
|
1100
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1101
|
-
parkr
|
1102
|
-
</a>
|
1103
|
-
</div>
|
1104
|
-
<div class="post-content">
|
1105
|
-
<p>Upon releasing 3.1.5 and kicking the tires, we noticed a glaring bug: our
|
1106
|
-
beloved <code class="highlighter-rouge">jsonify</code> filter doesn’t work! With that, our work was cut out for
|
1107
|
-
us and we decided a 3.1.6 was necessary. This release restores sanity to
|
1108
|
-
our object-to-JSON generation in Liquid and we hope you enjoy.</p>
|
1109
|
-
|
1110
|
-
<p>For the gory details, see <a href="https://github.com/jekyll/jekyll/pull/4914">the pull
|
1111
|
-
request</a> or <a href="/docs/history/#v3-1-6">the
|
1112
|
-
changelog</a>.</p>
|
1113
|
-
|
1114
|
-
<p>Happy Jekylling!</p>
|
1115
|
-
|
1116
|
-
</div>
|
1117
|
-
</article>
|
1118
|
-
|
1119
|
-
|
1120
|
-
<article>
|
1121
|
-
<h2>
|
1122
|
-
<a href="/news/2016/05/18/jekyll-3-1-5-released/">
|
1123
|
-
Jekyll 3.1.5 Released
|
1124
|
-
</a>
|
1125
|
-
</h2>
|
1126
|
-
<span class="post-category">
|
1127
|
-
<span class="label">
|
1128
|
-
release
|
1129
|
-
</span>
|
1130
|
-
</span>
|
1131
|
-
<div class="post-meta">
|
1132
|
-
<span class="post-date">
|
1133
|
-
18 May 2016
|
1134
|
-
</span>
|
1135
|
-
<a href="https://github.com/parkr" class="post-author">
|
1136
|
-
|
1137
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1138
|
-
parkr
|
1139
|
-
</a>
|
1140
|
-
</div>
|
1141
|
-
<div class="post-content">
|
1142
|
-
<p>There’s always at least one bug, right? :)</p>
|
1143
|
-
|
1144
|
-
<p>Hot on the trails of <a href="/news/2016/05/18/jekyll-3-1-4-released/">v3.1.4</a>, we
|
1145
|
-
bring you v3.1.5! It fixes one bug around requiring the <code class="highlighter-rouge">ExcerptDrop</code>,
|
1146
|
-
which only affects Linux. For the gory details, see <a href="https://github.com/jekyll/jekyll/pull/4912">the pull
|
1147
|
-
request for the fix</a>.</p>
|
1148
|
-
|
1149
|
-
<p>Happy Jekylling!</p>
|
1150
|
-
|
1151
|
-
</div>
|
1152
|
-
</article>
|
1153
|
-
|
1154
|
-
|
1155
|
-
<article>
|
1156
|
-
<h2>
|
1157
|
-
<a href="/news/2016/05/18/jekyll-3-1-4-released/">
|
1158
|
-
Jekyll 3.1.4 "Stability Sam" Released
|
1159
|
-
</a>
|
1160
|
-
</h2>
|
1161
|
-
<span class="post-category">
|
1162
|
-
<span class="label">
|
1163
|
-
release
|
1164
|
-
</span>
|
1165
|
-
</span>
|
1166
|
-
<div class="post-meta">
|
1167
|
-
<span class="post-date">
|
1168
|
-
18 May 2016
|
1169
|
-
</span>
|
1170
|
-
<a href="https://github.com/parkr" class="post-author">
|
1171
|
-
|
1172
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1173
|
-
parkr
|
1174
|
-
</a>
|
1175
|
-
</div>
|
1176
|
-
<div class="post-content">
|
1177
|
-
<p>Hey Jekyllites!</p>
|
1178
|
-
|
1179
|
-
<p>Today, we released v3.1.4 in an effort to bring more stability to the v3.1.x series. This bugfix release consists of:</p>
|
1180
|
-
|
1181
|
-
<ul>
|
1182
|
-
<li>A fix for <code class="highlighter-rouge">layout</code> in Liquid where values would carry over from one document to the next</li>
|
1183
|
-
<li>A fix for <code class="highlighter-rouge">layout</code> in Liquid where a parent layout (e.g. <code class="highlighter-rouge">default</code> or <code class="highlighter-rouge">base</code>) would overwrite the metadata of the child layout (e.g. <code class="highlighter-rouge">post</code> or <code class="highlighter-rouge">special</code>).</li>
|
1184
|
-
<li>A fix where <code class="highlighter-rouge">page.excerpt</code> referencing its excerpt would cause an infinite loop of recursive horror.</li>
|
1185
|
-
<li>We added <code class="highlighter-rouge">Configuration.from</code> and the great permalink fix from <a href="/news/2016/04/19/jekyll-3-0-4-released/">v3.0.4</a> to the v3.1.x series</li>
|
1186
|
-
<li>
|
1187
|
-
<code class="highlighter-rouge">site.collections</code> in Liquid is now sorted alphabetically by label, so <code class="highlighter-rouge">docs</code> shows up before <code class="highlighter-rouge">posts</code> reliably.</li>
|
1188
|
-
</ul>
|
1189
|
-
|
1190
|
-
<p>The fixes for <code class="highlighter-rouge">layout</code> may not be seamless for everyone, but we believe they will be the “right thing to do” going forward.</p>
|
1191
|
-
|
1192
|
-
<p>We are alwawys striving to make Jekyll more straight-forward to use. Please do open an issue if you believe an aspect of Jekyll’s user experience isn’t up to par.</p>
|
1193
|
-
|
1194
|
-
<p>For a full history of our changes, <a href="/docs/history/#v3-1-4">see the changelog</a>.</p>
|
1195
|
-
|
1196
|
-
<p>As always, Happy Jekylling!</p>
|
1197
|
-
|
1198
|
-
</div>
|
1199
|
-
</article>
|
1200
|
-
|
1201
|
-
|
1202
|
-
<article>
|
1203
|
-
<h2>
|
1204
|
-
<a href="/news/2016/04/26/jekyll-3-0-5-released/">
|
1205
|
-
Jekyll 3.0.5 Released
|
1206
|
-
</a>
|
1207
|
-
</h2>
|
1208
|
-
<span class="post-category">
|
1209
|
-
<span class="label">
|
1210
|
-
release
|
1211
|
-
</span>
|
1212
|
-
</span>
|
1213
|
-
<div class="post-meta">
|
1214
|
-
<span class="post-date">
|
1215
|
-
26 Apr 2016
|
1216
|
-
</span>
|
1217
|
-
<a href="https://github.com/parkr" class="post-author">
|
1218
|
-
|
1219
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1220
|
-
parkr
|
1221
|
-
</a>
|
1222
|
-
</div>
|
1223
|
-
<div class="post-content">
|
1224
|
-
<p>This version fixes a bug affecting only v3.0.4 where autoregeneration was
|
1225
|
-
<em>always</em> disabled when running Jekyll locally. This feature is a huge
|
1226
|
-
reason why Jekyll (or any static site generator, for that matter) is a joy
|
1227
|
-
to use. Sorry for the regression!</p>
|
1228
|
-
|
1229
|
-
<p>If you’re using GitHub Pages, <a href="https://github.com/github/pages-gem/pull/285">you can follow the progress of the upgrade
|
1230
|
-
on the github/pages-gem repo</a>.</p>
|
1231
|
-
|
1232
|
-
<p>As always, our <a href="/docs/history/#v3-0-5">history doc</a> has links to the pull
|
1233
|
-
requests and issues associated with the release for your perusal.</p>
|
1234
|
-
|
1235
|
-
<p>We’re looking forward to the upcoming release of v3.2 which <a href="https://github.com/jekyll/jekyll/blob/master/History.markdown#head">has some
|
1236
|
-
excellent goodies</a>
|
1237
|
-
we think you’ll love.</p>
|
1238
|
-
|
1239
|
-
<p>Happy Jekylling!</p>
|
1240
|
-
|
1241
|
-
</div>
|
1242
|
-
</article>
|
1243
|
-
|
1244
|
-
|
1245
|
-
<article>
|
1246
|
-
<h2>
|
1247
|
-
<a href="/news/2016/04/19/jekyll-3-1-3-released/">
|
1248
|
-
Jekyll 3.1.3 Released
|
1249
|
-
</a>
|
1250
|
-
</h2>
|
1251
|
-
<span class="post-category">
|
1252
|
-
<span class="label">
|
1253
|
-
release
|
1254
|
-
</span>
|
1255
|
-
</span>
|
1256
|
-
<div class="post-meta">
|
1257
|
-
<span class="post-date">
|
1258
|
-
19 Apr 2016
|
1259
|
-
</span>
|
1260
|
-
<a href="https://github.com/parkr" class="post-author">
|
1261
|
-
|
1262
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1263
|
-
parkr
|
1264
|
-
</a>
|
1265
|
-
</div>
|
1266
|
-
<div class="post-content">
|
1267
|
-
<p>v3.1.3 is a patch release which fixes the follow two issues:</p>
|
1268
|
-
|
1269
|
-
<ul>
|
1270
|
-
<li>Front matter defaults may not have worked for collection documents and posts due to a problem where they were looked up by their URL rather than their path relative to the site source</li>
|
1271
|
-
<li>Running <code class="highlighter-rouge">jekyll serve</code> with SSL enabled was broken due to a bad configuration.</li>
|
1272
|
-
</ul>
|
1273
|
-
|
1274
|
-
<p>Both of these issues have been resolved. For more information, check out <a href="/docs/history/#v3-1-3">the full history</a>.</p>
|
1275
|
-
|
1276
|
-
<p>Happy Jekylling!</p>
|
1277
|
-
|
1278
|
-
</div>
|
1279
|
-
</article>
|
1280
|
-
|
1281
|
-
|
1282
|
-
<article>
|
1283
|
-
<h2>
|
1284
|
-
<a href="/news/2016/04/19/jekyll-3-0-4-released/">
|
1285
|
-
Jekyll 3.0.4 Released
|
1286
|
-
</a>
|
1287
|
-
</h2>
|
1288
|
-
<span class="post-category">
|
1289
|
-
<span class="label">
|
1290
|
-
release
|
1291
|
-
</span>
|
1292
|
-
</span>
|
1293
|
-
<div class="post-meta">
|
1294
|
-
<span class="post-date">
|
1295
|
-
19 Apr 2016
|
1296
|
-
</span>
|
1297
|
-
<a href="https://github.com/parkr" class="post-author">
|
1298
|
-
|
1299
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1300
|
-
parkr
|
1301
|
-
</a>
|
1302
|
-
</div>
|
1303
|
-
<div class="post-content">
|
1304
|
-
<p>v3.0.4 is a patch release which fixes the follow two issues:</p>
|
1305
|
-
|
1306
|
-
<ul>
|
1307
|
-
<li>Front matter defaults may not have worked for collection documents and posts due to a problem where they were looked up by their URL rather than their path relative to the site source</li>
|
1308
|
-
<li>Configuration for the posts permalink might be borked when a user specified a value for <code class="highlighter-rouge">collections.posts.permalink</code> directly. This forced the use of <code class="highlighter-rouge">permalink</code> at the top level, which also affected pages. To configure a permalink <em>just for posts</em>, you can do so with:</li>
|
1309
|
-
</ul>
|
1310
|
-
|
1311
|
-
<figure class="highlight"><pre><code class="language-yaml" data-lang="yaml"><span class="na">collections</span><span class="pi">:</span>
|
1312
|
-
<span class="na">posts</span><span class="pi">:</span>
|
1313
|
-
<span class="na">output</span><span class="pi">:</span> <span class="no">true</span>
|
1314
|
-
<span class="na">permalink</span><span class="pi">:</span> <span class="s">/blog/:year/:title/</span></code></pre></figure>
|
1315
|
-
|
1316
|
-
<p>Both of these issues have been resolved. For more information, check out <a href="/docs/history/#v3-0-4">the full history</a>.</p>
|
1317
|
-
|
1318
|
-
<p>Happy Jekylling!</p>
|
1319
|
-
|
1320
|
-
</div>
|
1321
|
-
</article>
|
1322
|
-
|
1323
|
-
|
1324
|
-
<article>
|
1325
|
-
<h2>
|
1326
|
-
<a href="/news/2016/02/19/jekyll-3-1-2-released/">
|
1327
|
-
Jekyll 3.1.2 Released!
|
1328
|
-
</a>
|
1329
|
-
</h2>
|
1330
|
-
<span class="post-category">
|
1331
|
-
<span class="label">
|
1332
|
-
release
|
1333
|
-
</span>
|
1334
|
-
</span>
|
1335
|
-
<div class="post-meta">
|
1336
|
-
<span class="post-date">
|
1337
|
-
19 Feb 2016
|
1338
|
-
</span>
|
1339
|
-
<a href="https://github.com/parkr" class="post-author">
|
1340
|
-
|
1341
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1342
|
-
parkr
|
1343
|
-
</a>
|
1344
|
-
</div>
|
1345
|
-
<div class="post-content">
|
1346
|
-
<p>Happy Friday from sunny California! Today, we’re excited to announce the release of Jekyll v3.1.2, which comes with some crucial bug fixes:</p>
|
1347
|
-
|
1348
|
-
<ul>
|
1349
|
-
<li>If a syntax error is encountered by Liquid, it will now print the line number.</li>
|
1350
|
-
<li>A nasty war between symbols and strings in our configuration hash caused kramdown syntax highlighting to break. That has been resolved; you stand victorious!</li>
|
1351
|
-
<li>A tilde at the beginning of a filename will no longer crash Jekyll.</li>
|
1352
|
-
<li>The <code class="highlighter-rouge">titleize</code> filter mistakenly dropped words that were already capitalized. Fixed!</li>
|
1353
|
-
<li>Permalinks which end in a slash will now always output as a folder with an <code class="highlighter-rouge">index.html</code> inside.</li>
|
1354
|
-
</ul>
|
1355
|
-
|
1356
|
-
<p>Nitty-gritty details, like always, are available in the <a href="/docs/history/">history</a>.</p>
|
1357
|
-
|
1358
|
-
<p>Thanks to those who contributed to this release: Alfred Xing, atomicules, bojanland, Brenton Horne, Carlos Garcés, Cash Costello, Chris, chrisfinazzo, Daniel Schildt, Dean Attali, Florian Thomas, Jordon Bedwell, Juuso Mikkonen, Katya Demidova, lonnen, Manabu Sakai, Michael Lee, Michael Lyons, Mitesh Shah, Nicolas Hoizey, Parker Moore, Pat Hawks, Prayag Verma, Robert Martin, Suriyaa Kudo, and toshi.</p>
|
1359
|
-
|
1360
|
-
</div>
|
1361
|
-
</article>
|
1362
|
-
|
1363
|
-
|
1364
|
-
<article>
|
1365
|
-
<h2>
|
1366
|
-
<a href="/news/2016/02/08/jekyll-3-0-3-released/">
|
1367
|
-
Jekyll 3.0.3 Released
|
1368
|
-
</a>
|
1369
|
-
</h2>
|
1370
|
-
<span class="post-category">
|
1371
|
-
<span class="label">
|
1372
|
-
release
|
1373
|
-
</span>
|
1374
|
-
</span>
|
1375
|
-
<div class="post-meta">
|
1376
|
-
<span class="post-date">
|
1377
|
-
08 Feb 2016
|
1378
|
-
</span>
|
1379
|
-
<a href="https://github.com/parkr" class="post-author">
|
1380
|
-
|
1381
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1382
|
-
parkr
|
1383
|
-
</a>
|
1384
|
-
</div>
|
1385
|
-
<div class="post-content">
|
1386
|
-
<p><a href="https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0">GitHub Pages upgraded to Jekyll 3.0.2</a> last week. With a testbed of
|
1387
|
-
over a million sites, this really put Jekyll 3 through the wringer. This
|
1388
|
-
release addresses a handful of bugs that were surfaced as a result. The
|
1389
|
-
fixes:</p>
|
1390
|
-
|
1391
|
-
<ul>
|
1392
|
-
<li>Fix problem where outputting to a folder would have two extensions</li>
|
1393
|
-
<li>Handle tildes (<code class="highlighter-rouge">~</code>) in filenames properly</li>
|
1394
|
-
<li>Fix issue when comparing documents without dates</li>
|
1395
|
-
<li>Include line numbers in liquid error output</li>
|
1396
|
-
</ul>
|
1397
|
-
|
1398
|
-
<p>Read more on the <a href="/docs/history/#v3-0-3">changelog</a> with links to the
|
1399
|
-
related patches.</p>
|
1400
|
-
|
1401
|
-
<p>Please keep <a href="https://github.com/jekyll/jekyll/issues">submitting bugs</a> as you find them! Please do take a look
|
1402
|
-
<a href="/help/">in our various help resources</a> before filing a bug and use <a href="https://talk.jekyllrb.com/">our
|
1403
|
-
forum</a> for asking questions and getting help on a specific problem
|
1404
|
-
you’re having.</p>
|
1405
|
-
|
1406
|
-
<p>Happy Jekylling!</p>
|
1407
|
-
|
1408
|
-
|
1409
|
-
</div>
|
1410
|
-
</article>
|
1411
|
-
|
1412
|
-
|
1413
|
-
<article>
|
1414
|
-
<h2>
|
1415
|
-
<a href="/news/2016/01/28/jekyll-3-1-1-released/">
|
1416
|
-
Jekyll 3.1.1 Released
|
1417
|
-
</a>
|
1418
|
-
</h2>
|
1419
|
-
<span class="post-category">
|
1420
|
-
<span class="label">
|
1421
|
-
release
|
1422
|
-
</span>
|
1423
|
-
</span>
|
1424
|
-
<div class="post-meta">
|
1425
|
-
<span class="post-date">
|
1426
|
-
28 Jan 2016
|
1427
|
-
</span>
|
1428
|
-
<a href="https://github.com/parkr" class="post-author">
|
1429
|
-
|
1430
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1431
|
-
parkr
|
1432
|
-
</a>
|
1433
|
-
</div>
|
1434
|
-
<div class="post-content">
|
1435
|
-
<p>This release squashes a few bugs <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle"> <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle"> <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle"> noticed by a few
|
1436
|
-
wonderful Jekyll users:</p>
|
1437
|
-
|
1438
|
-
<ul>
|
1439
|
-
<li>If your <code class="highlighter-rouge">permalink</code> ended with a <code class="highlighter-rouge">/</code>, your URL didn’t have any extension,
|
1440
|
-
even if you wanted one</li>
|
1441
|
-
<li>We now strip the BOM by default per Ruby’s <code class="highlighter-rouge">IO.open</code>.</li>
|
1442
|
-
<li>
|
1443
|
-
<code class="highlighter-rouge">page.dir</code> will not always end in a slash.</li>
|
1444
|
-
</ul>
|
1445
|
-
|
1446
|
-
<p>We also updated our <a href="/docs/conduct/">Code of Conduct</a> to the latest version of
|
1447
|
-
the Contributor Covenant. The update includes language to ensure that the
|
1448
|
-
reporter of the incident remains confidential to non-maintainers and that
|
1449
|
-
all complaints will result in an appropriate response. I care deeply about
|
1450
|
-
Jekyll’s community and will do everything in my power to ensure it is a
|
1451
|
-
welcoming community. Feel free to reach out to me directly if you feel
|
1452
|
-
there is a way we can improve the community for everyone! If you’re
|
1453
|
-
interested in more details, <a href="https://github.com/ContributorCovenant/contributor_covenant/blob/v1_4/diffs/1_3_vs_1_4.patch">there is a diff for
|
1454
|
-
that</a>.</p>
|
1455
|
-
|
1456
|
-
<p>See links to the PR’s on <a href="/docs/history/#v3-1-1">the history page</a>.</p>
|
1457
|
-
|
1458
|
-
<p>Thanks to Jordon Bedwell, chrisfinazzo, Kroum Tzanev, David Celis, and
|
1459
|
-
Alfred Xing for their commits on this latest release! <img class="emoji" title=":sparkles:" alt=":sparkles:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/2728.png" height="20" width="20" align="absmiddle"></p>
|
1460
|
-
|
1461
|
-
<p>Happy Jekylling!</p>
|
1462
|
-
|
1463
|
-
</div>
|
1464
|
-
</article>
|
1465
|
-
|
1466
|
-
|
1467
|
-
<article>
|
1468
|
-
<h2>
|
1469
|
-
<a href="/news/2016/01/24/jekyll-3-1-0-released/">
|
1470
|
-
Jekyll 3.1.0 Released
|
1471
|
-
</a>
|
1472
|
-
</h2>
|
1473
|
-
<span class="post-category">
|
1474
|
-
<span class="label">
|
1475
|
-
release
|
1476
|
-
</span>
|
1477
|
-
</span>
|
1478
|
-
<div class="post-meta">
|
1479
|
-
<span class="post-date">
|
1480
|
-
24 Jan 2016
|
1481
|
-
</span>
|
1482
|
-
<a href="https://github.com/parkr" class="post-author">
|
1483
|
-
|
1484
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1485
|
-
parkr
|
1486
|
-
</a>
|
1487
|
-
</div>
|
1488
|
-
<div class="post-content">
|
1489
|
-
<p>Happy weekend! To make your weekend all the better, we have just released
|
1490
|
-
v3.1.0 of Jekyll.</p>
|
1491
|
-
|
1492
|
-
<p>There are <em>lots</em> of great performance improvements, including a huge one
|
1493
|
-
which is to use Liquid drops instead of hashes. Much of the slowness in
|
1494
|
-
Jekyll is due to Jekyll making lots of objects it doesn’t need to make.
|
1495
|
-
By making these objects only as they’re needed, we can speed up Jekyll
|
1496
|
-
considerably!</p>
|
1497
|
-
|
1498
|
-
<p>Some other highlights:</p>
|
1499
|
-
|
1500
|
-
<ul>
|
1501
|
-
<li>Fix: <code class="highlighter-rouge">permalink</code>s with non-HTML extensions will not be honored</li>
|
1502
|
-
<li>Fix: <code class="highlighter-rouge">jekyll clean</code> now accepts build flags like <code class="highlighter-rouge">--source</code>.</li>
|
1503
|
-
<li>Enhancement: <code class="highlighter-rouge">include</code> tags can now accept multiple liquid variables</li>
|
1504
|
-
<li>Feature: adds new <code class="highlighter-rouge">sample</code> liquid tag which gets random element from an array</li>
|
1505
|
-
<li>Fix: Jekyll will read in files with YAML front matter that has extraneous
|
1506
|
-
spaces after the first line</li>
|
1507
|
-
<li>Enhancement: extract the <code class="highlighter-rouge">title</code> attribute from the filename for
|
1508
|
-
collection items without a date</li>
|
1509
|
-
<li>Fix: gracefully handle empty configuration files</li>
|
1510
|
-
</ul>
|
1511
|
-
|
1512
|
-
<p>… and <a href="/docs/history/#v3-1-0">a whole bunch more</a>!</p>
|
1513
|
-
|
1514
|
-
<p>Please <a href="https://github.com/jekyll/jekyll/issues/new?title=Jekyll+3.1.0+Issue:">file a bug</a>
|
1515
|
-
if you encounter any issues! As always, <a href="https://talk.jekyllrb.com">Jekyll Talk</a>
|
1516
|
-
is the best place to get help if you’re encountering a problem.</p>
|
1517
|
-
|
1518
|
-
<p>Special thanks to all our amazing contributors who helped make v3.1.0 a
|
1519
|
-
possibility:</p>
|
1520
|
-
|
1521
|
-
<p>Alex J Best, Alexander Köplinger, Alfred Xing, Alistair Calder, Atul
|
1522
|
-
Bhosale, Ben Orenstein, Chi Trung Nguyen, Conor O’Callaghan, Craig P.
|
1523
|
-
Motlin, Dan K, David Burela, David Litvak Bruno, Decider UI, Ducksan Cho,
|
1524
|
-
Florian Thomas, James Wen, Jordon Bedwell, Joseph Wynn, Kakoma, Liam
|
1525
|
-
Bowers, Mike Neumegen, Nick Quaranto, Nielsen Ramon, Olivér Falvai, Pat
|
1526
|
-
Hawks, Paul Robert Lloyd, Pedro Euko, Peter Suschlik, Sam Volin, Samuel
|
1527
|
-
Wright, Sasha Friedenberg, Tim Cuthbertson, Vincent Wochnik, William
|
1528
|
-
Entriken, Zshawn Syed, chrisfinazzo, ducksan cho, leethomas,
|
1529
|
-
midnightSuyama, musoke, and rebornix</p>
|
1530
|
-
|
1531
|
-
<p>Happy Jekylling!</p>
|
1532
|
-
|
1533
|
-
</div>
|
1534
|
-
</article>
|
1535
|
-
|
1536
|
-
|
1537
|
-
<article>
|
1538
|
-
<h2>
|
1539
|
-
<a href="/news/2016/01/20/jekyll-3-0-2-released/">
|
1540
|
-
Jekyll 3.0.2 Released
|
1541
|
-
</a>
|
1542
|
-
</h2>
|
1543
|
-
<span class="post-category">
|
1544
|
-
<span class="label">
|
1545
|
-
release
|
1546
|
-
</span>
|
1547
|
-
</span>
|
1548
|
-
<div class="post-meta">
|
1549
|
-
<span class="post-date">
|
1550
|
-
20 Jan 2016
|
1551
|
-
</span>
|
1552
|
-
<a href="https://github.com/parkr" class="post-author">
|
1553
|
-
|
1554
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1555
|
-
parkr
|
1556
|
-
</a>
|
1557
|
-
</div>
|
1558
|
-
<div class="post-content">
|
1559
|
-
<p>A crucial bug was found in v3.0.1 which caused invalid post dates to go
|
1560
|
-
unnoticed in the build chain until the error that popped up was unhelpful.
|
1561
|
-
v3.0.2 <a href="https://github.com/jekyll/jekyll/issues/4375">throws errors as you’d expect</a>
|
1562
|
-
when there is a post like <code class="highlighter-rouge">_posts/2016-22-01-future.md</code> or a post has an
|
1563
|
-
invalid date like <code class="highlighter-rouge">date: "tuesday"</code> in their front matter.</p>
|
1564
|
-
|
1565
|
-
<p>This should make the experience of working with Jekyll just a little
|
1566
|
-
better.</p>
|
1567
|
-
|
1568
|
-
<p>Happy Jekylling!</p>
|
1569
|
-
|
1570
|
-
</div>
|
1571
|
-
</article>
|
1572
|
-
|
1573
|
-
|
1574
|
-
<article>
|
1575
|
-
<h2>
|
1576
|
-
<a href="/news/2015/11/17/jekyll-3-0-1-released/">
|
1577
|
-
Jekyll 3.0.1 Released
|
1578
|
-
</a>
|
1579
|
-
</h2>
|
1580
|
-
<span class="post-category">
|
1581
|
-
<span class="label">
|
1582
|
-
release
|
1583
|
-
</span>
|
1584
|
-
</span>
|
1585
|
-
<div class="post-meta">
|
1586
|
-
<span class="post-date">
|
1587
|
-
17 Nov 2015
|
1588
|
-
</span>
|
1589
|
-
<a href="https://github.com/parkr" class="post-author">
|
1590
|
-
|
1591
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1592
|
-
parkr
|
1593
|
-
</a>
|
1594
|
-
</div>
|
1595
|
-
<div class="post-content">
|
1596
|
-
<p>Hey, folks! Bunch of bug fixes here. Notables:</p>
|
1597
|
-
|
1598
|
-
<ul>
|
1599
|
-
<li>Only superdirectories of <code class="highlighter-rouge">_posts</code> will be categories.</li>
|
1600
|
-
<li>
|
1601
|
-
<code class="highlighter-rouge">:title</code> in permalink templates are now properly cased as before</li>
|
1602
|
-
<li>
|
1603
|
-
<code class="highlighter-rouge">.jekyll-metadata</code> being erroneously written when not using incremental build.</li>
|
1604
|
-
<li>Failure in liquid will now always fail the <code class="highlighter-rouge">jekyll</code> process.</li>
|
1605
|
-
<li>All hooks should now be properly registered & documented</li>
|
1606
|
-
</ul>
|
1607
|
-
|
1608
|
-
<p>And a bunch more changes which you can see over in the
|
1609
|
-
<a href="/docs/history">changelog</a>.</p>
|
1610
|
-
|
1611
|
-
<p>Thanks to the 17 developers who contributed code and documentation to this
|
1612
|
-
patch release: Alfred Xing, Christian Trosell, Jordan Thornquest, Jordon
|
1613
|
-
Bedwell, Larry Fox, Lawrence Murray, Lewis Cowles, Matt Rogers, Nicole
|
1614
|
-
White, Parker Moore, Paul Robert Lloyd, Sarah Kuehnle, Vincent Wochnik,
|
1615
|
-
Will Norris, XhmikosR, chrisfinazzo, and rebornix.</p>
|
1616
|
-
|
1617
|
-
</div>
|
1618
|
-
</article>
|
1619
|
-
|
1620
|
-
|
1621
|
-
<article>
|
1622
|
-
<h2>
|
1623
|
-
<a href="/news/2015/10/26/jekyll-3-0-released/">
|
1624
|
-
Jekyll 3.0 Released
|
1625
|
-
</a>
|
1626
|
-
</h2>
|
1627
|
-
<span class="post-category">
|
1628
|
-
<span class="label">
|
1629
|
-
release
|
1630
|
-
</span>
|
1631
|
-
</span>
|
1632
|
-
<div class="post-meta">
|
1633
|
-
<span class="post-date">
|
1634
|
-
26 Oct 2015
|
1635
|
-
</span>
|
1636
|
-
<a href="https://github.com/parkr" class="post-author">
|
1637
|
-
|
1638
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1639
|
-
parkr
|
1640
|
-
</a>
|
1641
|
-
</div>
|
1642
|
-
<div class="post-content">
|
1643
|
-
<p>The much-anticipated Jekyll 3.0 has been released! Key changes:</p>
|
1644
|
-
|
1645
|
-
<ul>
|
1646
|
-
<li>Incremental regeneration (experimental, enable with <code class="highlighter-rouge">--incremental</code>)</li>
|
1647
|
-
<li>Liquid profiler (add <code class="highlighter-rouge">--profile</code> to a build or serve)</li>
|
1648
|
-
<li>Hook plugin API (no more monkey-patching!)</li>
|
1649
|
-
<li>Dependencies reduced from 14 to 8, none contain C extensions. We’re hoping to reduce this even more in the future.</li>
|
1650
|
-
<li>Changed version support: no support for Ruby 1.9.3, added basic JRuby support. Better Windows support.</li>
|
1651
|
-
<li>Extension-less URLs</li>
|
1652
|
-
<li>
|
1653
|
-
<code class="highlighter-rouge">site.collections</code> is an array of collections, thus:
|
1654
|
-
<ul>
|
1655
|
-
<li>
|
1656
|
-
<code class="highlighter-rouge">collection[0]</code> becomes <code class="highlighter-rouge">collection.label</code>
|
1657
|
-
</li>
|
1658
|
-
<li>
|
1659
|
-
<code class="highlighter-rouge">collection[1]</code> becomes <code class="highlighter-rouge">collection</code>
|
1660
|
-
</li>
|
1661
|
-
</ul>
|
1662
|
-
</li>
|
1663
|
-
<li>Default highlighter is now Rouge instead of Pygments</li>
|
1664
|
-
<li>Lots of performance improvements</li>
|
1665
|
-
<li>… and lots more!</li>
|
1666
|
-
</ul>
|
1667
|
-
|
1668
|
-
<p>We also added a <a href="/docs/conduct/">Code of Conduct</a> to encourage a happier, nicer community where contributions and discussion is protected from negative behaviour.</p>
|
1669
|
-
|
1670
|
-
<p>A huge shout-out to the amazing Jekyll Core Team members Jordon Bedwell, Alfred Xing, and Matt Rogers for all their hard work in making Jekyll 3 the best release yet.</p>
|
1671
|
-
|
1672
|
-
<p>We also added <a href="https://talk.jekyllrb.com">Jekyll Talk</a>, managed solely by Jordon, which offers a modern forum experience for Jekyllers across the globe to talk and learn about Jekyll!</p>
|
1673
|
-
|
1674
|
-
<p>As always, check out the <a href="/docs/history/#v3-0-0">full history</a> for more details.</p>
|
1675
|
-
|
1676
|
-
<p>Our contributors are the core of what makes Jekyll great! Many thanks to the 132 contributors who made this release possible (in alphabetical order): AJ Acevedo, Adam Richeimer, Alan Scherger, Alfred Xing, Anatol Broder, Andrew Dunning, Anna Debenham, Anton, Arne Gockeln, Arthur Hammer, Arthur Neves, BRAVO, Ben Balter, Bernardo Dias, BigBlueHat, Brandon Mathis, Bruce Smith, Cai⚡️, Carlos Matallín, ChaYoung You, Christian Vuerings, Cory Simmons, David Herman, David Silva Smith, David Smith, David Wales, David Williamson, DigitalSparky, Dimitri König, Dominik, Eduardo Boucas, Eduardo Bouças, Eduardo Bouças, Erlend Sogge Heggen, Eugene Pirogov, Ezmyrelda Andrade, Fabian Rodriguez, Fabian Tamp, Fabio Niephaus, Falko Richter, Florian Weingarten, Fonso, Garen Torikian, Guillaume LARIVIERE, Günter Kits, I´m a robot, Jason Ly, Jedd Ahyoung, Jensen Kuras, Jesse Pinho, Jesse W, Jim Meyer, Joel Glovier, Johan Bové, Joop Aué, Jordan Thornquest, Jordon Bedwell, Joseph Anderson, Julien Bourdeau, Justin Weiss, Kamil Dziemianowicz, Kevin Locke, Kevin Ushey, Leonard, Lukas, Mads Ohm Larsen, Malo Skrylevo, Marcus Stollsteimer, Mark Phelps, Mark Tareshawty, Martijn den Hoedt, Martin Jorn Rogalla, Martin Rogalla, Matt Rogers, Matt Sheehan, Matthias Nuessler, Max, Max Beizer, Max White, Merlos, Michael Giuffrida, Michael Tu, Mike Bland, Mike Callan, MonsieurV, Nate Berkopec, Neil Faccly, Nic West, Nicholas Burlett, Nicolas Hoizey, Parker Moore, Pascal Borreli, Pat Hawks, Paul Rayner, Pedro Euko, Peter Robins, Philipp Rudloff, Philippe Loctaux, Rafael Picanço, Renaud Martinet, Robert Papp, Ryan Burnette, Ryan Tomayko, Seb, Seth Warburton, Shannon, Stephen Crosby, Stuart Kent, Suriyaa Kudo, Sylvester Keil, Tanguy Krotoff, Toddy69, Tom Johnson, Tony Eichelberger, Tunghsiao Liu, Veres Lajos, Vitaly Repin, Will Norris, William Entriken, XhmikosR, chrisfinazzo, eksperimental, hartmel, jaybe@jekyll, kaatt, nightsense, nitoyon, robschia, schneems, sonnym, takuti, and tasken.</p>
|
1677
|
-
|
1678
|
-
<p>Happy Jekylling!</p>
|
1679
|
-
|
1680
|
-
</div>
|
1681
|
-
</article>
|
1682
|
-
|
1683
|
-
|
1684
|
-
<article>
|
1685
|
-
<h2>
|
1686
|
-
<a href="/news/2015/01/24/jekyll-3-0-0-beta1-released/">
|
1687
|
-
Jekyll 3.0.0.beta1 Released
|
1688
|
-
</a>
|
1689
|
-
</h2>
|
1690
|
-
<span class="post-category">
|
1691
|
-
<span class="label">
|
1692
|
-
release
|
1693
|
-
</span>
|
1694
|
-
</span>
|
1695
|
-
<div class="post-meta">
|
1696
|
-
<span class="post-date">
|
1697
|
-
24 Jan 2015
|
1698
|
-
</span>
|
1699
|
-
<a href="https://github.com/parkr" class="post-author">
|
1700
|
-
|
1701
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1702
|
-
parkr
|
1703
|
-
</a>
|
1704
|
-
</div>
|
1705
|
-
<div class="post-content">
|
1706
|
-
<p>Hey!</p>
|
1707
|
-
|
1708
|
-
<p>Exciting news! First beta for Jekyll 3 is out. Check out the <a href="https://github.com/jekyll/jekyll/blob/v3.0.0.beta1/History.markdown#head">sizable
|
1709
|
-
changelog</a>
|
1710
|
-
to get a feel for what changes are afoot. Key features:</p>
|
1711
|
-
|
1712
|
-
<ol>
|
1713
|
-
<li>
|
1714
|
-
<strong>Speed.</strong> Jekyll now features incremental regeneration and greatly
|
1715
|
-
improved problematic code that caused slow-downs.</li>
|
1716
|
-
<li>Gobs of bugfixes and customization.</li>
|
1717
|
-
<li>Uniformity and sanity to Jekyll extensions of Liquid.</li>
|
1718
|
-
</ol>
|
1719
|
-
|
1720
|
-
<p>To install just run:</p>
|
1721
|
-
|
1722
|
-
<figure class="highlight"><pre><code class="language-shell" data-lang="shell"><span class="nv">$ </span>gem install jekyll <span class="nt">--pre</span></code></pre></figure>
|
1723
|
-
|
1724
|
-
<p>Future versions will include <a href="https://github.com/jekyll/jekyll/issues/3324">some awesome new
|
1725
|
-
features</a> that we haven’t
|
1726
|
-
built yet. If you see one you want to tackle, submit a PR & you’ll be
|
1727
|
-
featured in the Jekyll 3.0 release post as a contributor to that epic
|
1728
|
-
release.</p>
|
1729
|
-
|
1730
|
-
<p>Please file bugs as you encounter them, being sure to include your version
|
1731
|
-
of Ruby, the Jekyll version, and (if possible) a link to your site so we
|
1732
|
-
can reproduce.</p>
|
1733
|
-
|
1734
|
-
<p>If you think there’s room for improvement in the UX, also do let us know.
|
1735
|
-
We’re always looking to make Jekyll easier to use!</p>
|
1736
|
-
|
1737
|
-
<p>Happy Jekylling!</p>
|
1738
|
-
|
1739
|
-
</div>
|
1740
|
-
</article>
|
1741
|
-
|
1742
|
-
|
1743
|
-
<article>
|
1744
|
-
<h2>
|
1745
|
-
<a href="/news/2014/12/22/jekyll-2-5-3-released/">
|
1746
|
-
Jekyll Release for the Holidays! v2.5.3 Out
|
1747
|
-
</a>
|
1748
|
-
</h2>
|
1749
|
-
<span class="post-category">
|
1750
|
-
<span class="label">
|
1751
|
-
release
|
1752
|
-
</span>
|
1753
|
-
</span>
|
1754
|
-
<div class="post-meta">
|
1755
|
-
<span class="post-date">
|
1756
|
-
22 Dec 2014
|
1757
|
-
</span>
|
1758
|
-
<a href="https://github.com/parkr" class="post-author">
|
1759
|
-
|
1760
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1761
|
-
parkr
|
1762
|
-
</a>
|
1763
|
-
</div>
|
1764
|
-
<div class="post-content">
|
1765
|
-
<p>Happy Holidays, everyone.</p>
|
1766
|
-
|
1767
|
-
<p>Jekyll v2.5.3 is a quick patch release, containing some minor fixes. See the
|
1768
|
-
<a href="/docs/history/">full history</a> for more info. If you notice any problems,
|
1769
|
-
please <a href="https://github.com/jekyll/jekyll-help">let us know</a>.</p>
|
1770
|
-
|
1771
|
-
<p>This release also marks the start of Jekyll 3 development. I wrote about it
|
1772
|
-
over on my personal blog: <a href="https://byparker.com/blog/2014/jekyll-3-the-road-ahead/">Jekyll 3 — The Road Ahead</a>.
|
1773
|
-
Feel free to chime in over on GitHub.</p>
|
1774
|
-
|
1775
|
-
<p>Happy Jekylling!</p>
|
1776
|
-
|
1777
|
-
</div>
|
1778
|
-
</article>
|
1779
|
-
|
1780
|
-
|
1781
|
-
<article>
|
1782
|
-
<h2>
|
1783
|
-
<a href="/news/2014/11/12/jekyll-2-5-2-released/">
|
1784
|
-
Jekyll 2.5.2 Released
|
1785
|
-
</a>
|
1786
|
-
</h2>
|
1787
|
-
<span class="post-category">
|
1788
|
-
<span class="label">
|
1789
|
-
release
|
1790
|
-
</span>
|
1791
|
-
</span>
|
1792
|
-
<div class="post-meta">
|
1793
|
-
<span class="post-date">
|
1794
|
-
12 Nov 2014
|
1795
|
-
</span>
|
1796
|
-
<a href="https://github.com/parkr" class="post-author">
|
1797
|
-
|
1798
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1799
|
-
parkr
|
1800
|
-
</a>
|
1801
|
-
</div>
|
1802
|
-
<div class="post-content">
|
1803
|
-
<p>A very minor release, 2.5.2 fixes a bug with path sanitation that 2.5.1
|
1804
|
-
introduced. It also improves the <code class="highlighter-rouge">post_url</code> tag such that it checks the
|
1805
|
-
posts’ name (e.g. <code class="highlighter-rouge">2014-03-03-my-cool-post</code>) instead of a compiled time and
|
1806
|
-
name. This fixes issues where posts are created and the day changes based
|
1807
|
-
on timezone discrepancies.</p>
|
1808
|
-
|
1809
|
-
<p><a href="/docs/history/">Full history here.</a></p>
|
1810
|
-
|
1811
|
-
<p>Happy Jekylling!</p>
|
1812
|
-
|
1813
|
-
</div>
|
1814
|
-
</article>
|
1815
|
-
|
1816
|
-
|
1817
|
-
<article>
|
1818
|
-
<h2>
|
1819
|
-
<a href="/news/2014/11/09/jekyll-2-5-1-released/">
|
1820
|
-
Jekyll 2.5.1 Released
|
1821
|
-
</a>
|
1822
|
-
</h2>
|
1823
|
-
<span class="post-category">
|
1824
|
-
<span class="label">
|
1825
|
-
release
|
1826
|
-
</span>
|
1827
|
-
</span>
|
1828
|
-
<div class="post-meta">
|
1829
|
-
<span class="post-date">
|
1830
|
-
09 Nov 2014
|
1831
|
-
</span>
|
1832
|
-
<a href="https://github.com/parkr" class="post-author">
|
1833
|
-
|
1834
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1835
|
-
parkr
|
1836
|
-
</a>
|
1837
|
-
</div>
|
1838
|
-
<div class="post-content">
|
1839
|
-
<p>Hot on the heels of v2.5.0, this release brings relief to our Windows
|
1840
|
-
users. It includes a fix for a 2.5.0 path sanitation change that has been
|
1841
|
-
confirmed to work on Windows.</p>
|
1842
|
-
|
1843
|
-
<p>To our Windows users: while we don’t officially support Windows, we don’t
|
1844
|
-
wish to impede your normal use of Jekyll at all. Our lack of full support
|
1845
|
-
for Windows is due to our lack of a Windows machine for development testing
|
1846
|
-
(no one on the core team has a Windows machine upon which to test new
|
1847
|
-
release candidates), not due to any malice or willful oversight. If you
|
1848
|
-
come to us with an issue, we are more than happy to work through it with
|
1849
|
-
you to come to a solution that works for all platforms. Along those lines,
|
1850
|
-
we have created a <a href="https://github.com/jekyll/jekyll/issues/3069"><strong>Windows Test Force</strong></a> (WTF) which is a group of Jekyll
|
1851
|
-
users dedicated to making sure all future releases work on Windows <em>before</em>
|
1852
|
-
they’re released so we don’t have this issue again. A special thanks goes
|
1853
|
-
out to the initial WTF team members, XhmikosR, Julian Thilo, Pedro Rogério,
|
1854
|
-
and Alfred Xing.</p>
|
1855
|
-
|
1856
|
-
<p>Happy Jekylling!</p>
|
1857
|
-
|
1858
|
-
|
1859
|
-
</div>
|
1860
|
-
</article>
|
1861
|
-
|
1862
|
-
|
1863
|
-
<article>
|
1864
|
-
<h2>
|
1865
|
-
<a href="/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/">
|
1866
|
-
Jekyll's Mid-Life Crisis (Or, Jekyll turns 2.5.0)
|
1867
|
-
</a>
|
1868
|
-
</h2>
|
1869
|
-
<span class="post-category">
|
1870
|
-
<span class="label">
|
1871
|
-
release
|
1872
|
-
</span>
|
1873
|
-
</span>
|
1874
|
-
<div class="post-meta">
|
1875
|
-
<span class="post-date">
|
1876
|
-
05 Nov 2014
|
1877
|
-
</span>
|
1878
|
-
<a href="https://github.com/parkr" class="post-author">
|
1879
|
-
|
1880
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1881
|
-
parkr
|
1882
|
-
</a>
|
1883
|
-
</div>
|
1884
|
-
<div class="post-content">
|
1885
|
-
<p>A new day, a new release! Jekyll just turned 2.5.0 and has gained a lot of
|
1886
|
-
wisdom along the way. This 2.5.0 release also comes just a few weeks after
|
1887
|
-
Jekyll turned 6 years old! In fashion, we’re celebrating this huge
|
1888
|
-
milestone with a pretty big release. What’s changed in 2.5.0? Here are some
|
1889
|
-
highlights:</p>
|
1890
|
-
|
1891
|
-
<ul>
|
1892
|
-
<li>Require plugins in the <code class="highlighter-rouge">:jekyll_plugins</code> Gemfile group (turned off with an environment variable)</li>
|
1893
|
-
<li>YAML Front Matter permalinks can now contain placeholders like <code class="highlighter-rouge">:name</code>. Check out all the placeholders on the <a href="/docs/permalinks/">Permalinks docs page</a>.</li>
|
1894
|
-
<li>The <code class="highlighter-rouge">jsonify</code> filter now deep-converts arrays to liquid.</li>
|
1895
|
-
<li>Shorted <code class="highlighter-rouge">build</code> and <code class="highlighter-rouge">serve</code> commands with <code class="highlighter-rouge">b</code> and <code class="highlighter-rouge">s</code> aliases, respectively</li>
|
1896
|
-
<li>WEBrick will now list your directory if it can’t find an index file.</li>
|
1897
|
-
<li>Any enumerable can be used with the <code class="highlighter-rouge">where</code> filter.</li>
|
1898
|
-
<li>Performance optimizations thanks to <a href="https://github.com/tmm1" class="user-mention">@tmm1</a>’s <a href="https://github.com/tmm1/stackprof">stackprof</a>
|
1899
|
-
</li>
|
1900
|
-
<li>Fix for Rouge’s Redcarpet interface</li>
|
1901
|
-
<li>Security auditors will love this: path sanitation has now been centralized.</li>
|
1902
|
-
<li>Specify a log level with <code class="highlighter-rouge">JEKYLL_LOG_LEVEL</code>: debug, info, warn, or error.</li>
|
1903
|
-
</ul>
|
1904
|
-
|
1905
|
-
<p>…and a whole bunch of other fixes and enhancements you can read more
|
1906
|
-
about in <a href="/docs/history/">the changelog!</a></p>
|
1907
|
-
|
1908
|
-
<p>As always, if you run into issues, please <a href="https://github.com/jekyll/jekyll/issues">check the issues</a>
|
1909
|
-
and <a href="https://github.com/jekyll/jekyll/issues/new">create an issue if one doesn’t exist for the bug you encountered</a>.
|
1910
|
-
If you just need some help, the extraordinary <a href="https://github.com/jekyll/jekyll-help">jekyll help team is here for
|
1911
|
-
you!</a></p>
|
1912
|
-
|
1913
|
-
<p><em>When was the <a href="https://github.com/jekyll/jekyll/commit/d189e05d236769c1e5594af9db4d6eacb86fc16e">first commit to Jekyll</a>?
|
1914
|
-
All the way back on October 19, 2008. It features interesting historical
|
1915
|
-
tidbits, such as the old name for Jekyll was “autoblog”, and was first
|
1916
|
-
released via Rubyforge. What a difference 6 years has made!</em></p>
|
1917
|
-
|
1918
|
-
<p>Thanks to the following contributors for making this release possible:</p>
|
1919
|
-
|
1920
|
-
<p>Parker Moore, XhmikosR, Alfred Xing, Ruslan Korolev, Pat Hawks,
|
1921
|
-
chrisfinazzo, Mike Kruk, Tanguy Krotoff, Matt Hickford, Philipp Rudloff,
|
1922
|
-
Rob Murray, Sean Collins, Seth Warburton, Tom Thorogood, Vasily Vasinov,
|
1923
|
-
Veres Lajos, feivel, mitaa, nitoyon, snrbrnjna, tmthrgd, Bret Comnes,
|
1924
|
-
Charles Baynham, Christian Mayer, Dan Croak, Frederic Hemberger, Glauco
|
1925
|
-
Custódio, Igor Kapkov, and Kevin Ndung’u!</p>
|
1926
|
-
|
1927
|
-
</div>
|
1928
|
-
</article>
|
1929
|
-
|
1930
|
-
|
1931
|
-
<article>
|
1932
|
-
<h2>
|
1933
|
-
<a href="/news/2014/09/09/jekyll-2-4-0-released/">
|
1934
|
-
A Wild Jekyll 2.4.0 Appeared!
|
1935
|
-
</a>
|
1936
|
-
</h2>
|
1937
|
-
<span class="post-category">
|
1938
|
-
<span class="label">
|
1939
|
-
release
|
1940
|
-
</span>
|
1941
|
-
</span>
|
1942
|
-
<div class="post-meta">
|
1943
|
-
<span class="post-date">
|
1944
|
-
09 Sep 2014
|
1945
|
-
</span>
|
1946
|
-
<a href="https://github.com/parkr" class="post-author">
|
1947
|
-
|
1948
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1949
|
-
parkr
|
1950
|
-
</a>
|
1951
|
-
</div>
|
1952
|
-
<div class="post-content">
|
1953
|
-
<p>Well, lookie here! A new release of Jekyll! v2.4.0 contains lots of goodies, including some brilliant new additions:</p>
|
1954
|
-
|
1955
|
-
<ul>
|
1956
|
-
<li>A new <code class="highlighter-rouge">relative_include</code> Liquid tag (<a href="https://github.com/jekyll/jekyll/issues/2870">#2870</a>)</li>
|
1957
|
-
<li>Render Liquid in CoffeeScript files (<a href="https://github.com/jekyll/jekyll/issues/2830">#2830</a>)</li>
|
1958
|
-
<li>Add 4 new array Liquid filters: <code class="highlighter-rouge">push</code>, <code class="highlighter-rouge">pop</code>, <code class="highlighter-rouge">shift</code>, and <code class="highlighter-rouge">unshift</code> (<a href="https://github.com/jekyll/jekyll/pull/2895">#2895</a>)</li>
|
1959
|
-
<li>Auto-enable watch on ‘serve’ (<a href="https://github.com/jekyll/jekyll/issues/2858">#2858</a>). No more <code class="highlighter-rouge">-w</code>!</li>
|
1960
|
-
<li>Add <code class="highlighter-rouge">:title</code> and <code class="highlighter-rouge">:name</code> to collection URL template fillers (<a href="https://github.com/jekyll/jekyll/issues/2864">#2864</a> & <a href="https://github.com/jekyll/jekyll/issues/2799">#2799</a>)</li>
|
1961
|
-
<li>Add support for CSV files in the <code class="highlighter-rouge">_data</code> directory (<a href="https://github.com/jekyll/jekyll/issues/2761">#2761</a>)</li>
|
1962
|
-
<li>Add <code class="highlighter-rouge">inspect</code> liquid filter (<a href="https://github.com/jekyll/jekyll/issues/2867">#2867</a>)</li>
|
1963
|
-
<li>Add a <code class="highlighter-rouge">slugify</code> Liquid filter (<a href="https://github.com/jekyll/jekyll/issues/2880">#2880</a>)</li>
|
1964
|
-
</ul>
|
1965
|
-
|
1966
|
-
<p>Some other wunderbar bug fixes in there as well. Check out the <a href="/docs/history/">full changelog</a> for the whole scoop.</p>
|
1967
|
-
|
1968
|
-
<p>As always, many thanks to our amazing contributors who made this release possible: Chris Frederick, Garen Torikian, James Smith, Ruslan Korolev, Joel Glovier, Michael Kühnel, Minn Soe, Pat Hawks, Peter deHaan, Shu Uesugi, TJ, Zhuochun, Alfred Xing, nitoyon, Anatol Broder, Faruk AYDIN, Frederic Hemberger, and Gordon Gao. Thank you!!</p>
|
1969
|
-
|
1970
|
-
<p>Happy Jekylling!</p>
|
1971
|
-
|
1972
|
-
</div>
|
1973
|
-
</article>
|
1974
|
-
|
1975
|
-
|
1976
|
-
<article>
|
1977
|
-
<h2>
|
1978
|
-
<a href="/news/2014/08/10/jekyll-2-3-0-released/">
|
1979
|
-
Jekyll 2.3.0 Released
|
1980
|
-
</a>
|
1981
|
-
</h2>
|
1982
|
-
<span class="post-category">
|
1983
|
-
<span class="label">
|
1984
|
-
release
|
1985
|
-
</span>
|
1986
|
-
</span>
|
1987
|
-
<div class="post-meta">
|
1988
|
-
<span class="post-date">
|
1989
|
-
10 Aug 2014
|
1990
|
-
</span>
|
1991
|
-
<a href="https://github.com/parkr" class="post-author">
|
1992
|
-
|
1993
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
1994
|
-
parkr
|
1995
|
-
</a>
|
1996
|
-
</div>
|
1997
|
-
<div class="post-content">
|
1998
|
-
<p>This latest release of Jekyll includes a slew of enhancements and bug
|
1999
|
-
fixes. Some of the highlights:</p>
|
2000
|
-
|
2001
|
-
<ul>
|
2002
|
-
<li>Strange bug around spacing/indentation should be resolved. <a href="https://github.com/jekyll/jekyll/issues/2676">It was a
|
2003
|
-
curious bug indeed.</a>
|
2004
|
-
</li>
|
2005
|
-
<li>Pages, Posts, and Drafts can now be converted by multiple converters.</li>
|
2006
|
-
<li>Static files can now be safely included in collections. They’ll be placed
|
2007
|
-
in a <code class="highlighter-rouge">collection.files</code> array. <code class="highlighter-rouge">collection.docs</code> still holds exclusively
|
2008
|
-
content with YAML front matter.</li>
|
2009
|
-
<li>Sass files can once again be rendered by Liquid. However, neither Sass
|
2010
|
-
nor CoffeeScript can ever have a layout. Bonus: <code class="highlighter-rouge">scssify</code> and <code class="highlighter-rouge">sassify</code>
|
2011
|
-
Liquid filters.</li>
|
2012
|
-
<li>Partial variables allowed now in the path argument of <code class="highlighter-rouge">include</code> calls</li>
|
2013
|
-
<li>We added a <code class="highlighter-rouge">jekyll help</code> command. Pass it a subcommand to see more info
|
2014
|
-
about that subcommand. Or don’t, to see the help for <code class="highlighter-rouge">jekyll</code> itself.</li>
|
2015
|
-
<li>Lots of fixes to the site template we use for <code class="highlighter-rouge">jekyll new</code>, including
|
2016
|
-
converting the CSS into SCSS.</li>
|
2017
|
-
<li>The <code class="highlighter-rouge">jsonify</code> filter will now call <code class="highlighter-rouge">#to_liquid</code> for you</li>
|
2018
|
-
<li>Lots, lots more!</li>
|
2019
|
-
</ul>
|
2020
|
-
|
2021
|
-
<p>One change deserves special note. In <a href="https://github.com/jekyll/jekyll/issues/2633">#2633</a>, subfolders <em>inside</em> a
|
2022
|
-
<code class="highlighter-rouge">_posts</code> folder were processed and added as categories to the posts. It
|
2023
|
-
turns out, this behaviour was unwanted by a large number of individuals, as
|
2024
|
-
it is a handy way to organize posts. Ultimately, we decided to revert this
|
2025
|
-
change in <a href="https://github.com/jekyll/jekyll/issues/2705">#2705</a>, because it was a change in behaviour that was already
|
2026
|
-
well-established (at least since Jekyll v0.7.0), and was convenient.</p>
|
2027
|
-
|
2028
|
-
<p>For more excellent CHANGELOG reading material, check out the <a href="/docs/history/">History
|
2029
|
-
page</a>! Happy Jekylling!</p>
|
2030
|
-
|
2031
|
-
</div>
|
2032
|
-
</article>
|
2033
|
-
|
2034
|
-
|
2035
|
-
<article>
|
2036
|
-
<h2>
|
2037
|
-
<a href="/news/2014/07/29/jekyll-2-2-0-released/">
|
2038
|
-
Jekyll 2.2.0 Released
|
2039
|
-
</a>
|
2040
|
-
</h2>
|
2041
|
-
<span class="post-category">
|
2042
|
-
<span class="label">
|
2043
|
-
release
|
2044
|
-
</span>
|
2045
|
-
</span>
|
2046
|
-
<div class="post-meta">
|
2047
|
-
<span class="post-date">
|
2048
|
-
29 Jul 2014
|
2049
|
-
</span>
|
2050
|
-
<a href="https://github.com/parkr" class="post-author">
|
2051
|
-
|
2052
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2053
|
-
parkr
|
2054
|
-
</a>
|
2055
|
-
</div>
|
2056
|
-
<div class="post-content">
|
2057
|
-
<p>Jekyll 2.2.0 contains a few key updates:</p>
|
2058
|
-
|
2059
|
-
<ol>
|
2060
|
-
<li>A warning will now fire if you specify a layout in any of your pages or
|
2061
|
-
posts that doesn’t exist.</li>
|
2062
|
-
<li>Certain Pygments options are now whitelisted in safe mode</li>
|
2063
|
-
<li>Categories in a post’s path are now respected (i.e. folders in <code class="highlighter-rouge">_posts</code>
|
2064
|
-
will now work properly).</li>
|
2065
|
-
</ol>
|
2066
|
-
|
2067
|
-
<p>As always, a full list of the updates are on the
|
2068
|
-
<a href="/docs/history/#v2-2-0">history page</a>. Happy Jekylling!</p>
|
2069
|
-
|
2070
|
-
</div>
|
2071
|
-
</article>
|
2072
|
-
|
2073
|
-
|
2074
|
-
<article>
|
2075
|
-
<h2>
|
2076
|
-
<a href="/news/2014/07/01/jekyll-2-1-1-released/">
|
2077
|
-
Jekyll 2.1.1 Released
|
2078
|
-
</a>
|
2079
|
-
</h2>
|
2080
|
-
<span class="post-category">
|
2081
|
-
<span class="label">
|
2082
|
-
release
|
2083
|
-
</span>
|
2084
|
-
</span>
|
2085
|
-
<div class="post-meta">
|
2086
|
-
<span class="post-date">
|
2087
|
-
01 Jul 2014
|
2088
|
-
</span>
|
2089
|
-
<a href="https://github.com/parkr" class="post-author">
|
2090
|
-
|
2091
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2092
|
-
parkr
|
2093
|
-
</a>
|
2094
|
-
</div>
|
2095
|
-
<div class="post-content">
|
2096
|
-
<p>This is a minor release for Jekyll 2.1.0. It fixes a couple bugs and
|
2097
|
-
introduces fixes for a couple security-related issues.</p>
|
2098
|
-
|
2099
|
-
<p>It covers two security vulnerabilities:</p>
|
2100
|
-
|
2101
|
-
<ol>
|
2102
|
-
<li>One in the reading of data</li>
|
2103
|
-
<li>One in the <code class="highlighter-rouge">layouts</code> setting</li>
|
2104
|
-
</ol>
|
2105
|
-
|
2106
|
-
<p>They were identified in Jekyll 1.5.1 and has been confirmed as patched
|
2107
|
-
in this version and the version used by GitHub Pages. If you are in the
|
2108
|
-
business of building Jekyll sites, please ensure you upgrade to 2.1.1 as
|
2109
|
-
soon as possible.</p>
|
2110
|
-
|
2111
|
-
<p>For more, check out <a href="https://github.com/jekyll/jekyll/pull/2563"><code class="highlighter-rouge">jekyll/jekyll#2563</code></a>.</p>
|
2112
|
-
|
2113
|
-
<p>Additionally, the dependency on Maruku has been loosened and a bug was
|
2114
|
-
fixed with document URLs.</p>
|
2115
|
-
|
2116
|
-
<p>As always, check out the <a href="/docs/history/">full changelog</a> for more info!</p>
|
2117
|
-
|
2118
|
-
<p>Happy Jekylling!</p>
|
2119
|
-
|
2120
|
-
</div>
|
2121
|
-
</article>
|
2122
|
-
|
2123
|
-
|
2124
|
-
<article>
|
2125
|
-
<h2>
|
2126
|
-
<a href="/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/">
|
2127
|
-
Jekyll Turns 21! Err... I mean 2.1.0.
|
2128
|
-
</a>
|
2129
|
-
</h2>
|
2130
|
-
<span class="post-category">
|
2131
|
-
<span class="label">
|
2132
|
-
release
|
2133
|
-
</span>
|
2134
|
-
</span>
|
2135
|
-
<div class="post-meta">
|
2136
|
-
<span class="post-date">
|
2137
|
-
28 Jun 2014
|
2138
|
-
</span>
|
2139
|
-
<a href="https://github.com/parkr" class="post-author">
|
2140
|
-
|
2141
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2142
|
-
parkr
|
2143
|
-
</a>
|
2144
|
-
</div>
|
2145
|
-
<div class="post-content">
|
2146
|
-
<p>Jekyll’s finally <a href="https://en.wikipedia.org/wiki/Legal_drinking_age">legal to drink in the States</a>.
|
2147
|
-
And he’s done a lot of learning in the process! Here are some of the new
|
2148
|
-
things to look forward to:</p>
|
2149
|
-
|
2150
|
-
<ul>
|
2151
|
-
<li>Uses the latest Liquid version (2.6.1) (#2495)</li>
|
2152
|
-
<li>Set front matter defaults for collections (#2419)</li>
|
2153
|
-
<li>Set a collection-specific URL template (#2418)</li>
|
2154
|
-
<li>
|
2155
|
-
<code class="highlighter-rouge">pygments.rb</code> 0.6.0! (#2504)</li>
|
2156
|
-
<li>
|
2157
|
-
<code class="highlighter-rouge">.json</code> files in <code class="highlighter-rouge">_data</code> (#2369)</li>
|
2158
|
-
<li>Allow subdirectories in <code class="highlighter-rouge">_data</code> (#2395)</li>
|
2159
|
-
<li>Add support for <code class="highlighter-rouge">hl_lines</code> in <code class="highlighter-rouge">highlight</code> tag (#2532)</li>
|
2160
|
-
<li>Post categories now merge with directory, front matter, and defaults (#2373)</li>
|
2161
|
-
<li>New <code class="highlighter-rouge">--skip_initial_build</code> flag for <code class="highlighter-rouge">jekyll serve</code> (#2477)</li>
|
2162
|
-
<li>A bajilion bug fixes and site updates!</li>
|
2163
|
-
</ul>
|
2164
|
-
|
2165
|
-
<p>Let’s go party!</p>
|
2166
|
-
|
2167
|
-
<p><em>Check out the <a href="/docs/history/#v2-1-0">full changelog</a> for more.</em></p>
|
2168
|
-
|
2169
|
-
<p>Many thanks to these 37 contributors for the 2.1.0 release:</p>
|
2170
|
-
|
2171
|
-
<p>Alberto Grespan, Alessandro Lorenzi, Alex Medearis, Alfred Xing, Anatol Broder, Ben, Ben Balter, Bud Parr, Chezou, Denilson Figueiredo de Sá, Denilson Sá, Ivan Tse, Jens Nazarenus, Jesse Shawl, Jordon Bedwell, Josh Davis, János Rusiczki, Marc Ransome, Mathieu Bruyen, Matt Rogers, Parker Moore, Pat Hawks, Paul Henry, Peter Rhoades, Philipp Rudloff, Quinn Shanahan, Renaud Martinet, Rob Murray, Rodrigo Dumont, Simon Sarris, Terry, Terry Schmidt, Tomer Cohen, XhmikosR, Yihang Ho, jaybe@jekyll, and mikecole.</p>
|
2172
|
-
|
2173
|
-
</div>
|
2174
|
-
</article>
|
2175
|
-
|
2176
|
-
|
2177
|
-
<article>
|
2178
|
-
<h2>
|
2179
|
-
<a href="/news/2014/05/08/jekyll-2-0-3-released/">
|
2180
|
-
Jekyll 2.0.3 Released
|
2181
|
-
</a>
|
2182
|
-
</h2>
|
2183
|
-
<span class="post-category">
|
2184
|
-
<span class="label">
|
2185
|
-
release
|
2186
|
-
</span>
|
2187
|
-
</span>
|
2188
|
-
<div class="post-meta">
|
2189
|
-
<span class="post-date">
|
2190
|
-
08 May 2014
|
2191
|
-
</span>
|
2192
|
-
<a href="https://github.com/parkr" class="post-author">
|
2193
|
-
|
2194
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2195
|
-
parkr
|
2196
|
-
</a>
|
2197
|
-
</div>
|
2198
|
-
<div class="post-content">
|
2199
|
-
<p>Hey again! Just wanted to let you know we’ve released another version of Jekyll, jam-packed with bug fixes.</p>
|
2200
|
-
|
2201
|
-
<p>A huge “thank you” is in order for all the folks who have submitted bug reports over the last 2 days — your input is what allows this project to continue. It’s always a pain to deal with a MAJOR version bump release, but it’s been pretty smooth so far and you have all been nice about the flaws you’ve found in the tool. Keep filing those reports so we can continue to make Jekyll even better!</p>
|
2202
|
-
|
2203
|
-
<p>Thank you to the contributors that contributed code to 2.0.1, 2.0.2, and/or 2.0.3:</p>
|
2204
|
-
|
2205
|
-
<p>Parker Moore, Yi Zeng, Gabe Ortiz, Aaron Broder, Alberto Grespan, gpxl, David Briggs, Kevin Ingersoll, and Troy Swanson.</p>
|
2206
|
-
|
2207
|
-
<p>As always, check out the <a href="/docs/history/">changelog</a> for more info. Happy Jekylling!</p>
|
2208
|
-
|
2209
|
-
</div>
|
2210
|
-
</article>
|
2211
|
-
|
2212
|
-
|
2213
|
-
<article>
|
2214
|
-
<h2>
|
2215
|
-
<a href="/news/2014/05/06/jekyll-turns-2-0-0/">
|
2216
|
-
Jekyll turns 2.0.0
|
2217
|
-
</a>
|
2218
|
-
</h2>
|
2219
|
-
<span class="post-category">
|
2220
|
-
<span class="label">
|
2221
|
-
release
|
2222
|
-
</span>
|
2223
|
-
</span>
|
2224
|
-
<div class="post-meta">
|
2225
|
-
<span class="post-date">
|
2226
|
-
06 May 2014
|
2227
|
-
</span>
|
2228
|
-
<a href="https://github.com/parkr" class="post-author">
|
2229
|
-
|
2230
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2231
|
-
parkr
|
2232
|
-
</a>
|
2233
|
-
</div>
|
2234
|
-
<div class="post-content">
|
2235
|
-
<p>A year ago to the day, <a href="/news/2013/05/05/jekyll-1-0-0-released/">we released Jekyll 1.0.0</a>. One year later, we present to you the next major version: Jekyll 2.0.0.</p>
|
2236
|
-
|
2237
|
-
<p>Jam-packed with some <a href="/docs/history/">highly-requested features and bugfixes galore</a>, this is the best Jekyll yet. Some notable changes:</p>
|
2238
|
-
|
2239
|
-
<ol>
|
2240
|
-
<li>
|
2241
|
-
<a href="/docs/collections/">Collections</a> - Collections allow you to define an unlimited number of custom document types (beyond just posts and pages) for different types of content you may want to author in Jekyll such as API documentation or a cookbook!</li>
|
2242
|
-
<li>
|
2243
|
-
<a href="https://github.com/jekyll/jekyll/pull/2050#issuecomment-35938016">Brand new site template</a> (thanks <a href="https://github.com/jglovier">@jglovier</a>!) - Getting started with Jekyll just got a lot easier and a lot more beautiful. Just run <code class="highlighter-rouge">jekyll new <path></code> and you’re good to go.</li>
|
2244
|
-
<li>
|
2245
|
-
<a href="/docs/assets/">Native Sass & CoffeeScript support</a> - We love CSS and JavaScript as much as the next guy, but there will always be a special place in our hearts for Sass and CoffeeScript. We now offer native support for these file types — no more messing around with Rake or Grunt!</li>
|
2246
|
-
<li>
|
2247
|
-
<a href="/docs/configuration/#front-matter-defaults">YAML Front Matter defaults</a> - If you’ve set <code class="highlighter-rouge">layout: post</code> more than once in your life, you’ll love this new feature: set front matter defaults for a given directory or type.</li>
|
2248
|
-
<li>
|
2249
|
-
<a href="/docs/configuration/#custom-markdown-processors">Custom markdown processors</a> - Always wanted to use your favourite home-grown Markdown converter, but couldn’t with Jekyll? Now you can. Simply specify <code class="highlighter-rouge">markdown: MyConverterClass</code> and you’re on your way.</li>
|
2250
|
-
<li>
|
2251
|
-
<a href="/docs/templates/#filters">Addition of <code class="highlighter-rouge">where</code> and <code class="highlighter-rouge">group_by</code> Liquid filters</a> - Simplifying your Liquid templates one filter at a time. The <code class="highlighter-rouge">where</code> filter selects from an array all items within which have a given value for a property. The <code class="highlighter-rouge">group_by</code> filter groups all items in an array which have the same value for a given property.</li>
|
2252
|
-
<li>
|
2253
|
-
<a href="https://github.com/jekyll/jekyll/pull/1988">Switch from Maruku to Kramdown as default markdown converter</a> - Maruku is dead. We’ve replaced it with the converter which has the closest feature parity: Kramdown!</li>
|
2254
|
-
</ol>
|
2255
|
-
|
2256
|
-
<p>Check out our <a href="/docs/history/">changelog</a> for a complete list of all (200+) changes.</p>
|
2257
|
-
|
2258
|
-
<p>Many thanks to these 183 contributors for making Jekyll 2.0.0 happen:</p>
|
2259
|
-
|
2260
|
-
<p>Parker Moore, Matt Rogers, maul.esel, Anatol Broder, Zach Gersh, Joel Glovier, Ben Balter, XhmikosR, Coby Chapple, John Piasetzki, Aidan Feldman, Robin Dupret, Pascal Borreli, Troy Swanson, Erik Michaels-Ober, albertogg, Lucas Jenss, Matt Rogers & Persa Zula, Eric Mill, Shigeya Suzuki, Jens Nazarenus, ddavison, Pat Hawks, Rob Wierzbowski, MURAOKA Taro, Casey Lang, Fabian Rodriguez, Greg Karékinian, Zlatan Vasović, Christopher Nicotera, Dmitry Chestnykh, Ryan Morrissey, Jordon, John Hughes, akira yamada, Matt Swanson, Jashank Jeremy, Matthew Iversen, Meeka, liufengyun, Anand Narayan, nitoyon, Geoff Shannon, Benjamin J. Balter, Juan Ignacio Donoso, David Briggs, Benjamin Esham, Slava Pavlutin, Assaf Gelber, Josh Brown, Nick Fagerlund, Davide Ficano, pilosus, Anthony Smith, André Arko, Mikael Konutgan, Matthew Scharley, Dan Tao, scribu, Mort Yao, m, Stephen McDonald, Marcus Stollsteimer, Thomas Torsney-Weir, Jordon Bedwell, Tom Preston-Werner, Lincoln Mullen, Philip Poots, Ivan Tse, Christopher Giroir, Valery Tolstov, Wlodek Bzyl, Xavier Noria, Yi Zeng, Persa Zula, Phil Leggetter, Pirogov Evgenij, Rafael Revi, Rob McGuire-Dale, Rob Muhlestein, Robin Mehner, Roland Warmerdam, Rusty Geldmacher, Sam Rayner, Santeri Paavolainen, Sebastian Morr, Stephan Groß, Steven Spasbo, Tobias Brunner, Tuomas Kareinen, Tyler Margison, Uwe Dauernheim, Yihang Ho, Zach Leatherman, Zequez, andrew morton, andrewhavens, imathis, jannypie, jaybe@jekyll, kk_Ataka, markets, redwallhp, schneems, szymzet, thomasdao, tomsugden, wǒis神仙, 张君君, Noah Slater, Abhi Yerra, Adam Heckler, Ahmed Hazem, Aigars Dzerviniks, Aleksey V. Zapparov, Andreas Möller, Andy Lindeman, Arlen Cuss, Aziz Shamim, Ben Baker-Smith, Ben Hanzl, Ben Hildred, Brian Kim, Brice, Carol Nichols, Chezou, Chris Jones, Christian Grobmeier, Christoph Hochstrasser, Christoph Schiessl, Clint Shryock, Colin Dean, Corey Ward, Damian Lettie, Daniel Schauenberg, David Ensinger, David Paschich, David Sawyer, David Silva Smith, Donald Perry, Doug Johnston, Edward Ball, Eric Dobson, Erik Dungan, Florent Guilleux, Francis, Frederic ROS, GSI2013, Garen Torikian, George Anderson, Giuseppe Capizzi, Ishibashi Hideto, Jarrod Birch, Jeff Kolesky, Jens Bissinger, Jens Krause, John Firebaugh, John Papandriopoulos, Josh Branchaud, Katy DeCorah, Lachlan Holden, Mark Prins, Markus Roth, Martin Charles, Matt Iversen, Matt Sheehan, Matt Swensen, Matthias Vogelgesang, Michael Parker, Miha Rekar, Nathan Youngman, Nick Quaranto, Nick Quinlan, Nick Schonning, Nicolas Alpi, Nicolás Reynolds, Nikkau, 4ensicLog, Octavian Damiean, Olov Lassus, PatrickC8t, Paul Annesley, and Paul Oppenheim.</p>
|
2261
|
-
|
2262
|
-
<p>Happy developing!</p>
|
2263
|
-
|
2264
|
-
|
2265
|
-
</div>
|
2266
|
-
</article>
|
2267
|
-
|
2268
|
-
|
2269
|
-
<article>
|
2270
|
-
<h2>
|
2271
|
-
<a href="/news/2014/03/27/jekyll-1-5-1-released/">
|
2272
|
-
Jekyll 1.5.1 Released
|
2273
|
-
</a>
|
2274
|
-
</h2>
|
2275
|
-
<span class="post-category">
|
2276
|
-
<span class="label">
|
2277
|
-
release
|
2278
|
-
</span>
|
2279
|
-
</span>
|
2280
|
-
<div class="post-meta">
|
2281
|
-
<span class="post-date">
|
2282
|
-
27 Mar 2014
|
2283
|
-
</span>
|
2284
|
-
<a href="https://github.com/parkr" class="post-author">
|
2285
|
-
|
2286
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2287
|
-
parkr
|
2288
|
-
</a>
|
2289
|
-
</div>
|
2290
|
-
<div class="post-content">
|
2291
|
-
<p>The hawk-eyed <a href="https://github.com/gregose">@gregose</a> spotted a bug in our
|
2292
|
-
<code class="highlighter-rouge">Jekyll.sanitized_path</code> code:</p>
|
2293
|
-
|
2294
|
-
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="o">></span> <span class="n">sanitized_path</span><span class="p">(</span><span class="s2">"/tmp/foobar/jail"</span><span class="p">,</span> <span class="s2">"..c:/..c:/..c:/etc/passwd"</span><span class="p">)</span>
|
2295
|
-
<span class="o">=></span> <span class="s2">"/tmp/foobar/jail/../../../etc/passwd"</span></code></pre></figure>
|
2296
|
-
|
2297
|
-
<p>Well, we can’t have that! In 1.5.1, you’ll instead see:</p>
|
2298
|
-
|
2299
|
-
<figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="o">></span> <span class="n">sanitized_path</span><span class="p">(</span><span class="s2">"/tmp/foobar/jail"</span><span class="p">,</span> <span class="s2">"..c:/..c:/..c:/etc/passwd"</span><span class="p">)</span>
|
2300
|
-
<span class="o">=></span> <span class="s2">"/tmp/foobar/jail/..c:/..c:/..c:/etc/passwd"</span></code></pre></figure>
|
2301
|
-
|
2302
|
-
<p>Luckily not affecting 1.4.x, this fix will make 1.5.0 that much safer for
|
2303
|
-
the masses. Thanks, Greg!</p>
|
2304
|
-
|
2305
|
-
</div>
|
2306
|
-
</article>
|
2307
|
-
|
2308
|
-
|
2309
|
-
<article>
|
2310
|
-
<h2>
|
2311
|
-
<a href="/news/2014/03/24/jekyll-1-5-0-released/">
|
2312
|
-
Jekyll 1.5.0 Released
|
2313
|
-
</a>
|
2314
|
-
</h2>
|
2315
|
-
<span class="post-category">
|
2316
|
-
<span class="label">
|
2317
|
-
release
|
2318
|
-
</span>
|
2319
|
-
</span>
|
2320
|
-
<div class="post-meta">
|
2321
|
-
<span class="post-date">
|
2322
|
-
24 Mar 2014
|
2323
|
-
</span>
|
2324
|
-
<a href="https://github.com/parkr" class="post-author">
|
2325
|
-
|
2326
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2327
|
-
parkr
|
2328
|
-
</a>
|
2329
|
-
</div>
|
2330
|
-
<div class="post-content">
|
2331
|
-
<p>As work continues on Jekyll 2.0.0, we felt it was important to address two key
|
2332
|
-
issues of Jekyll 1.4.3, namely the <code class="highlighter-rouge">safe_yaml</code> dependency below 1.0 and the
|
2333
|
-
inability to use Jekyll 1.4.3 on Windows due to a <a href="https://github.com/jekyll/jekyll/issues/1948">fun issue with path sanitizing</a>.</p>
|
2334
|
-
|
2335
|
-
<p>For a full changelog, check out our <a href="/docs/history/#v1-5-0">history</a> page.</p>
|
2336
|
-
|
2337
|
-
<p>Now, back to work on 2.0.0!</p>
|
2338
|
-
|
2339
|
-
|
2340
|
-
</div>
|
2341
|
-
</article>
|
2342
|
-
|
2343
|
-
|
2344
|
-
<article>
|
2345
|
-
<h2>
|
2346
|
-
<a href="/news/2014/01/13/jekyll-1-4-3-released/">
|
2347
|
-
Jekyll 1.4.3 Released
|
2348
|
-
</a>
|
2349
|
-
</h2>
|
2350
|
-
<span class="post-category">
|
2351
|
-
<span class="label">
|
2352
|
-
release
|
2353
|
-
</span>
|
2354
|
-
</span>
|
2355
|
-
<div class="post-meta">
|
2356
|
-
<span class="post-date">
|
2357
|
-
13 Jan 2014
|
2358
|
-
</span>
|
2359
|
-
<a href="https://github.com/benbalter" class="post-author">
|
2360
|
-
|
2361
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/benbalter?v=3&s=24" alt="benbalter" srcset="https://avatars0.githubusercontent.com/benbalter?v=3&s=24 1x, https://avatars0.githubusercontent.com/benbalter?v=3&s=48 2x, https://avatars0.githubusercontent.com/benbalter?v=3&s=72 3x, https://avatars0.githubusercontent.com/benbalter?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2362
|
-
benbalter
|
2363
|
-
</a>
|
2364
|
-
</div>
|
2365
|
-
<div class="post-content">
|
2366
|
-
<p>Jekyll 1.4.3 contains two <strong>critical</strong> security fixes. If you run Jekyll locally
|
2367
|
-
and do not run Jekyll in “safe” mode (e.g. you do not build Jekyll sites on behalf
|
2368
|
-
of others), you are not affected and are not required to update at this time.
|
2369
|
-
(<a href="https://github.com/jekyll/jekyll/pull/1944">See pull request.</a>)</p>
|
2370
|
-
|
2371
|
-
<p>Versions of Jekyll prior to 1.4.3 and greater than 1.2.0 may allow malicious
|
2372
|
-
users to expose the content of files outside the source directory in the
|
2373
|
-
generated output via improper symlink sanitization, potentially resulting in an
|
2374
|
-
inadvertent information disclosure.</p>
|
2375
|
-
|
2376
|
-
<p>Versions of Jekyll prior to 1.4.3 may also allow malicious users to write
|
2377
|
-
arbitrary <code class="highlighter-rouge">.html</code> files outside of the destination folder via relative path
|
2378
|
-
traversal, potentially overwriting otherwise-trusted content with arbitrary HTML
|
2379
|
-
or Javascript depending on your server’s configuration.</p>
|
2380
|
-
|
2381
|
-
<p><em>Maintainer’s note: Many thanks to <a href="https://github.com/gregose" class="user-mention">@gregose</a> and <a href="https://github.com/charliesome" class="user-mention">@charliesome</a> for discovering
|
2382
|
-
these vulnerabilities, and to <a href="https://github.com/BenBalter" class="user-mention">@BenBalter</a> and <a href="https://github.com/alindeman" class="user-mention">@alindeman</a> for writing the patch.</em></p>
|
2383
|
-
|
2384
|
-
</div>
|
2385
|
-
</article>
|
2386
|
-
|
2387
|
-
|
2388
|
-
<article>
|
2389
|
-
<h2>
|
2390
|
-
<a href="/news/2013/12/16/jekyll-1-4-2-released/">
|
2391
|
-
Jekyll 1.4.2 Released
|
2392
|
-
</a>
|
2393
|
-
</h2>
|
2394
|
-
<span class="post-category">
|
2395
|
-
<span class="label">
|
2396
|
-
release
|
2397
|
-
</span>
|
2398
|
-
</span>
|
2399
|
-
<div class="post-meta">
|
2400
|
-
<span class="post-date">
|
2401
|
-
16 Dec 2013
|
2402
|
-
</span>
|
2403
|
-
<a href="https://github.com/parkr" class="post-author">
|
2404
|
-
|
2405
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2406
|
-
parkr
|
2407
|
-
</a>
|
2408
|
-
</div>
|
2409
|
-
<div class="post-content">
|
2410
|
-
<p>This release fixes <a href="https://github.com/jekyll/jekyll/pull/1830">a regression</a> where Maruku fenced code blocks were turned
|
2411
|
-
off, instead of the previous default to on. We’ve added a new default
|
2412
|
-
configuration to our <code class="highlighter-rouge">maruku</code> config key: <code class="highlighter-rouge">fenced_code_blocks</code> and set it to
|
2413
|
-
default to <code class="highlighter-rouge">true</code>.</p>
|
2414
|
-
|
2415
|
-
<p>If you do not wish to use Maruku fenced code blocks, you may turn this option
|
2416
|
-
off in your site’s configuration file.</p>
|
2417
|
-
|
2418
|
-
|
2419
|
-
</div>
|
2420
|
-
</article>
|
2421
|
-
|
2422
|
-
|
2423
|
-
<article>
|
2424
|
-
<h2>
|
2425
|
-
<a href="/news/2013/12/09/jekyll-1-4-1-released/">
|
2426
|
-
Jekyll 1.4.1 Released
|
2427
|
-
</a>
|
2428
|
-
</h2>
|
2429
|
-
<span class="post-category">
|
2430
|
-
<span class="label">
|
2431
|
-
release
|
2432
|
-
</span>
|
2433
|
-
</span>
|
2434
|
-
<div class="post-meta">
|
2435
|
-
<span class="post-date">
|
2436
|
-
09 Dec 2013
|
2437
|
-
</span>
|
2438
|
-
<a href="https://github.com/mattr-" class="post-author">
|
2439
|
-
|
2440
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2441
|
-
mattr-
|
2442
|
-
</a>
|
2443
|
-
</div>
|
2444
|
-
<div class="post-content">
|
2445
|
-
<p>Another quick turnover, anyone? A <a href="https://github.com/jekyll/jekyll/issues/1794">critical
|
2446
|
-
bug</a> in the reading of
|
2447
|
-
posts snuck itself into the 1.4.0 release.</p>
|
2448
|
-
|
2449
|
-
<p>To address this issue, we’re releasing v1.4.1 of Jekyll so that you can
|
2450
|
-
keep on writing without any problems.</p>
|
2451
|
-
|
2452
|
-
<p>As always, you can find the full list of fixes in this release in the
|
2453
|
-
<a href="/docs/history/">change log</a>!</p>
|
2454
|
-
|
2455
|
-
</div>
|
2456
|
-
</article>
|
2457
|
-
|
2458
|
-
|
2459
|
-
<article>
|
2460
|
-
<h2>
|
2461
|
-
<a href="/news/2013/12/07/jekyll-1-4-0-released/">
|
2462
|
-
Jekyll 1.4.0 Released
|
2463
|
-
</a>
|
2464
|
-
</h2>
|
2465
|
-
<span class="post-category">
|
2466
|
-
<span class="label">
|
2467
|
-
release
|
2468
|
-
</span>
|
2469
|
-
</span>
|
2470
|
-
<div class="post-meta">
|
2471
|
-
<span class="post-date">
|
2472
|
-
07 Dec 2013
|
2473
|
-
</span>
|
2474
|
-
<a href="https://github.com/mattr-" class="post-author">
|
2475
|
-
|
2476
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2477
|
-
mattr-
|
2478
|
-
</a>
|
2479
|
-
</div>
|
2480
|
-
<div class="post-content">
|
2481
|
-
<p>About a month after the release of Jekyll v1.3.0, we are releasing
|
2482
|
-
Jekyll v1.4.0. This release will be the last non-patch release to support Ruby
|
2483
|
-
1.8.7 and our next release will be Jekyll 2.0.0.</p>
|
2484
|
-
|
2485
|
-
<p>Here are a few things we think you’ll want to know about this release:</p>
|
2486
|
-
|
2487
|
-
<ul>
|
2488
|
-
<li>
|
2489
|
-
<p>TOML is now a supported markup language for config files.</p>
|
2490
|
-
</li>
|
2491
|
-
<li>
|
2492
|
-
<p>Maruku has been updated to 0.7.0 which provides some new features and
|
2493
|
-
a ton of bugfixes over the previous 0.6.x releases.</p>
|
2494
|
-
</li>
|
2495
|
-
<li>
|
2496
|
-
<p>Non-<code class="highlighter-rouge">gem</code> Plugins are now sorted alphabetically by filename before they’re
|
2497
|
-
processed, which can provide a rudimentary way to establish a load order for
|
2498
|
-
plugins.</p>
|
2499
|
-
</li>
|
2500
|
-
</ul>
|
2501
|
-
|
2502
|
-
<p>For a full run-down, visit our <a href="/docs/history/">change log</a>!</p>
|
2503
|
-
|
2504
|
-
<p>As always, Jekyll wouldn’t be possible without the contributions from
|
2505
|
-
others in the Jekyll community. We’d like to thank the following people
|
2506
|
-
for contributing to this release: Anatol Broder, David Sawyer, Greg
|
2507
|
-
Karékinian, Jordon Bedwell, Matthew Iversen, Persa Zula, and Yi Zeng.</p>
|
2508
|
-
|
2509
|
-
</div>
|
2510
|
-
</article>
|
2511
|
-
|
2512
|
-
|
2513
|
-
<article>
|
2514
|
-
<h2>
|
2515
|
-
<a href="/news/2013/11/26/jekyll-1-3-1-released/">
|
2516
|
-
Jekyll 1.3.1 Released
|
2517
|
-
</a>
|
2518
|
-
</h2>
|
2519
|
-
<span class="post-category">
|
2520
|
-
<span class="label">
|
2521
|
-
release
|
2522
|
-
</span>
|
2523
|
-
</span>
|
2524
|
-
<div class="post-meta">
|
2525
|
-
<span class="post-date">
|
2526
|
-
26 Nov 2013
|
2527
|
-
</span>
|
2528
|
-
<a href="https://github.com/mattr-" class="post-author">
|
2529
|
-
|
2530
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2531
|
-
mattr-
|
2532
|
-
</a>
|
2533
|
-
</div>
|
2534
|
-
<div class="post-content">
|
2535
|
-
<p>Just in time for the US holiday Thanksgiving, we’re releasing version
|
2536
|
-
1.3.1 of Jekyll to address some of the issues seen since the
|
2537
|
-
release of 1.3.0.</p>
|
2538
|
-
|
2539
|
-
<p>In addition to a couple of other smaller bug fixes, the biggest thing
|
2540
|
-
we’ve fixed is an issue with the <code class="highlighter-rouge">--watch</code> option with Ruby 1.8.7. For a
|
2541
|
-
full run-down, visit our <a href="/docs/history/">change log</a>!</p>
|
2542
|
-
|
2543
|
-
<p>Thanks to all the people who have contributed to this release! They are
|
2544
|
-
(in alphabetical order): Abhi Yerra, Anatol Broder, Andreas Möller, Greg
|
2545
|
-
Karékinian, Sam Rayner, Santeri Paavolainen, Shigeya Suzuki, Yihang Ho,
|
2546
|
-
albertogg, andrewhavens, maul.esel, and thomasdao</p>
|
2547
|
-
|
2548
|
-
</div>
|
2549
|
-
</article>
|
2550
|
-
|
2551
|
-
|
2552
|
-
<article>
|
2553
|
-
<h2>
|
2554
|
-
<a href="/news/2013/11/04/jekyll-1-3-0-released/">
|
2555
|
-
Jekyll 1.3.0 Released
|
2556
|
-
</a>
|
2557
|
-
</h2>
|
2558
|
-
<span class="post-category">
|
2559
|
-
<span class="label">
|
2560
|
-
release
|
2561
|
-
</span>
|
2562
|
-
</span>
|
2563
|
-
<div class="post-meta">
|
2564
|
-
<span class="post-date">
|
2565
|
-
04 Nov 2013
|
2566
|
-
</span>
|
2567
|
-
<a href="https://github.com/mattr-" class="post-author">
|
2568
|
-
|
2569
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2570
|
-
mattr-
|
2571
|
-
</a>
|
2572
|
-
</div>
|
2573
|
-
<div class="post-content">
|
2574
|
-
<p>It’s been about six weeks since v1.2.0 and the Jekyll team is happy to
|
2575
|
-
announce the arrival of v1.3.0. This is a <strong>huge</strong> release full of all
|
2576
|
-
sorts of new features, bug fixes, and other things that you’re sure to
|
2577
|
-
love.</p>
|
2578
|
-
|
2579
|
-
<p>Here are a few things we think you’ll want to know about this release:</p>
|
2580
|
-
|
2581
|
-
<ul>
|
2582
|
-
<li>
|
2583
|
-
<p>You can add <a href="/docs/datafiles/">arbitrary data</a> to the site by adding YAML files under a
|
2584
|
-
site’s <code class="highlighter-rouge">_data</code> directory. This will allow you to avoid
|
2585
|
-
repetition in your templates and to set site specific options without
|
2586
|
-
changing <code class="highlighter-rouge">_config.yml</code>.</p>
|
2587
|
-
</li>
|
2588
|
-
<li>
|
2589
|
-
<p>You can now run <code class="highlighter-rouge">jekyll serve --detach</code> to boot up a WEBrick server in the
|
2590
|
-
background. <strong>Note:</strong> you’ll need to run <code class="highlighter-rouge">kill [server_pid]</code> to shut
|
2591
|
-
the server down. When ran, you’ll get a process id that you can use in
|
2592
|
-
place of <code class="highlighter-rouge">[server_pid]</code></p>
|
2593
|
-
</li>
|
2594
|
-
<li>
|
2595
|
-
<p>You can now <strong>disable automatically-generated excerpts</strong> if you set
|
2596
|
-
<code class="highlighter-rouge">excerpt_separator</code> to <code class="highlighter-rouge">""</code>.</p>
|
2597
|
-
</li>
|
2598
|
-
<li>
|
2599
|
-
<p>If you’re moving pages and posts, you can now check for <strong>URL
|
2600
|
-
conflicts</strong> by running <code class="highlighter-rouge">jekyll doctor</code>.</p>
|
2601
|
-
</li>
|
2602
|
-
<li>
|
2603
|
-
<p>If you’re a fan of the drafts feature, you’ll be happy to know we’ve
|
2604
|
-
added <code class="highlighter-rouge">-D</code>, a shortened version of <code class="highlighter-rouge">--drafts</code>.</p>
|
2605
|
-
</li>
|
2606
|
-
<li>
|
2607
|
-
<p>Permalinks with special characters should now generate without errors.</p>
|
2608
|
-
</li>
|
2609
|
-
<li>
|
2610
|
-
<p>Expose the current Jekyll version as the <code class="highlighter-rouge">jekyll.version</code> Liquid
|
2611
|
-
variable.</p>
|
2612
|
-
</li>
|
2613
|
-
</ul>
|
2614
|
-
|
2615
|
-
<p>For a full run-down, visit our <a href="/docs/history/">change log</a>!</p>
|
2616
|
-
|
2617
|
-
|
2618
|
-
</div>
|
2619
|
-
</article>
|
2620
|
-
|
2621
|
-
|
2622
|
-
<article>
|
2623
|
-
<h2>
|
2624
|
-
<a href="/news/2013/10/28/jekyll-1-3-0-rc1-released/">
|
2625
|
-
Jekyll 1.3.0.rc1 Released
|
2626
|
-
</a>
|
2627
|
-
</h2>
|
2628
|
-
<span class="post-category">
|
2629
|
-
<span class="label">
|
2630
|
-
release
|
2631
|
-
</span>
|
2632
|
-
</span>
|
2633
|
-
<div class="post-meta">
|
2634
|
-
<span class="post-date">
|
2635
|
-
28 Oct 2013
|
2636
|
-
</span>
|
2637
|
-
<a href="https://github.com/mattr-" class="post-author">
|
2638
|
-
|
2639
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2640
|
-
mattr-
|
2641
|
-
</a>
|
2642
|
-
</div>
|
2643
|
-
<div class="post-content">
|
2644
|
-
<p>Jekyll 1.3.0 is going to be a big release! In order to make sure we
|
2645
|
-
didn’t screw anything up too badly, we’re making a release candidate
|
2646
|
-
available for any early adopters who want to give the latest and
|
2647
|
-
greatest code a spin without having to clone a repository from git.</p>
|
2648
|
-
|
2649
|
-
<p>Please take this prerelease for a spin and <a href="https://github.com/jekyll/jekyll/issues/new">let us
|
2650
|
-
know</a> if you run into any
|
2651
|
-
issues!</p>
|
2652
|
-
|
2653
|
-
</div>
|
2654
|
-
</article>
|
2655
|
-
|
2656
|
-
|
2657
|
-
<article>
|
2658
|
-
<h2>
|
2659
|
-
<a href="/news/2013/09/14/jekyll-1-2-1-released/">
|
2660
|
-
Jekyll 1.2.1 Released
|
2661
|
-
</a>
|
2662
|
-
</h2>
|
2663
|
-
<span class="post-category">
|
2664
|
-
<span class="label">
|
2665
|
-
release
|
2666
|
-
</span>
|
2667
|
-
</span>
|
2668
|
-
<div class="post-meta">
|
2669
|
-
<span class="post-date">
|
2670
|
-
14 Sep 2013
|
2671
|
-
</span>
|
2672
|
-
<a href="https://github.com/parkr" class="post-author">
|
2673
|
-
|
2674
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2675
|
-
parkr
|
2676
|
-
</a>
|
2677
|
-
</div>
|
2678
|
-
<div class="post-content">
|
2679
|
-
<p>Quick turnover, anyone? A <a href="https://github.com/jekyll/jekyll/pull/1525">recent incompatibility with Liquid
|
2680
|
-
v2.5.2</a> produced a nasty bug in
|
2681
|
-
which <code class="highlighter-rouge">include</code> tags were not rendered properly within <code class="highlighter-rouge">if</code> blocks.</p>
|
2682
|
-
|
2683
|
-
<p>This release also includes a better handling of detached servers (prints pid and
|
2684
|
-
the command for killing the process). <strong>Note</strong>: the <code class="highlighter-rouge">--detach</code> flag and
|
2685
|
-
<code class="highlighter-rouge">--watch</code> flags are presently incompatible in 1.2.x. Fix for that coming soon!</p>
|
2686
|
-
|
2687
|
-
<p>For a full list of the fixes in this release, check out <a href="/docs/history/">the change
|
2688
|
-
log</a>!</p>
|
2689
|
-
|
2690
|
-
</div>
|
2691
|
-
</article>
|
2692
|
-
|
2693
|
-
|
2694
|
-
<article>
|
2695
|
-
<h2>
|
2696
|
-
<a href="/news/2013/09/06/jekyll-1-2-0-released/">
|
2697
|
-
Jekyll 1.2.0 Released
|
2698
|
-
</a>
|
2699
|
-
</h2>
|
2700
|
-
<span class="post-category">
|
2701
|
-
<span class="label">
|
2702
|
-
release
|
2703
|
-
</span>
|
2704
|
-
</span>
|
2705
|
-
<div class="post-meta">
|
2706
|
-
<span class="post-date">
|
2707
|
-
06 Sep 2013
|
2708
|
-
</span>
|
2709
|
-
<a href="https://github.com/parkr" class="post-author">
|
2710
|
-
|
2711
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2712
|
-
parkr
|
2713
|
-
</a>
|
2714
|
-
</div>
|
2715
|
-
<div class="post-content">
|
2716
|
-
<p>After nearly a month and a half of hard work, the Jekyll team is happy to
|
2717
|
-
announce the release of v1.2.0. It’s chock full of bug fixes and some
|
2718
|
-
enhancements that we think you’ll love.</p>
|
2719
|
-
|
2720
|
-
<p>Here are a few things we think you’ll want to know about this release:</p>
|
2721
|
-
|
2722
|
-
<ul>
|
2723
|
-
<li>Run <code class="highlighter-rouge">jekyll serve --detach</code> to boot up a WEBrick server in the background. <strong>Note:</strong> you’ll need to run <code class="highlighter-rouge">kill [server_pid]</code> to shut the server down.</li>
|
2724
|
-
<li>You can now <strong>disable automatically-generated excerpts</strong> if you set <code class="highlighter-rouge">excerpt_separator</code> to <code class="highlighter-rouge">""</code>.</li>
|
2725
|
-
<li>If you’re moving around pages and post, you can now check for <strong>URL conflicts</strong> by running <code class="highlighter-rouge">jekyll doctor</code>.</li>
|
2726
|
-
<li>If you’re a fan of the drafts feature, you’ll be happy to know we’ve added <code class="highlighter-rouge">-D</code>, a shortened version of <code class="highlighter-rouge">--drafts</code>.</li>
|
2727
|
-
<li>Permalinks with special characters should now generate without errors.</li>
|
2728
|
-
<li>Expose the current Jekyll version as the <code class="highlighter-rouge">jekyll.version</code> Liquid variable.</li>
|
2729
|
-
</ul>
|
2730
|
-
|
2731
|
-
<p>For a full run-down, visit our <a href="/docs/history/">change log</a>!</p>
|
2732
|
-
|
2733
|
-
</div>
|
2734
|
-
</article>
|
2735
|
-
|
2736
|
-
|
2737
|
-
<article>
|
2738
|
-
<h2>
|
2739
|
-
<a href="/news/2013/07/25/jekyll-1-1-2-released/">
|
2740
|
-
Jekyll 1.1.2 Released
|
2741
|
-
</a>
|
2742
|
-
</h2>
|
2743
|
-
<span class="post-category">
|
2744
|
-
<span class="label">
|
2745
|
-
release
|
2746
|
-
</span>
|
2747
|
-
</span>
|
2748
|
-
<div class="post-meta">
|
2749
|
-
<span class="post-date">
|
2750
|
-
25 Jul 2013
|
2751
|
-
</span>
|
2752
|
-
<a href="https://github.com/parkr" class="post-author">
|
2753
|
-
|
2754
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2755
|
-
parkr
|
2756
|
-
</a>
|
2757
|
-
</div>
|
2758
|
-
<div class="post-content">
|
2759
|
-
<p>Version 1.1.2 fixes a minor, but nonetheless important security vulnerability affecting several third-party Jekyll plugins. If your Jekyll site does not use plugins, you may, but are not required to upgrade at this time.</p>
|
2760
|
-
|
2761
|
-
<p>Community and custom plugins extending the <code class="highlighter-rouge">Liquid::Drop</code> class may inadvertently disclose some system information such as directory structure or software configuration to users with access to the Liquid templating system.</p>
|
2762
|
-
|
2763
|
-
<p>We recommend you upgrade to Jekyll v1.1.2 immediately if you use <code class="highlighter-rouge">Liquid::Drop</code> plugins on your Jekyll site.</p>
|
2764
|
-
|
2765
|
-
<p>Many thanks for <a href="https://github.com/benbalter">Ben Balter</a> for alerting us to the problem
|
2766
|
-
and <a href="https://github.com/jekyll/jekyll/issues/1349">submitting a patch</a> so quickly.</p>
|
2767
|
-
|
2768
|
-
|
2769
|
-
</div>
|
2770
|
-
</article>
|
2771
|
-
|
2772
|
-
|
2773
|
-
<article>
|
2774
|
-
<h2>
|
2775
|
-
<a href="/news/2013/07/25/jekyll-1-0-4-released/">
|
2776
|
-
Jekyll 1.0.4 Released
|
2777
|
-
</a>
|
2778
|
-
</h2>
|
2779
|
-
<span class="post-category">
|
2780
|
-
<span class="label">
|
2781
|
-
release
|
2782
|
-
</span>
|
2783
|
-
</span>
|
2784
|
-
<div class="post-meta">
|
2785
|
-
<span class="post-date">
|
2786
|
-
25 Jul 2013
|
2787
|
-
</span>
|
2788
|
-
<a href="https://github.com/mattr-" class="post-author">
|
2789
|
-
|
2790
|
-
<img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2791
|
-
mattr-
|
2792
|
-
</a>
|
2793
|
-
</div>
|
2794
|
-
<div class="post-content">
|
2795
|
-
<p>Version 1.0.4 fixes a minor, but nonetheless important security vulnerability affecting several third-party Jekyll plugins. If your Jekyll site does not use plugins, you may, but are not required to upgrade at this time.</p>
|
2796
|
-
|
2797
|
-
<p>Community and custom plugins extending the <code class="highlighter-rouge">Liquid::Drop</code> class may inadvertently disclose some system information such as directory structure or software configuration to users with access to the Liquid templating system.</p>
|
2798
|
-
|
2799
|
-
<p>We recommend you upgrade to Jekyll v1.0.4 immediately if you use <code class="highlighter-rouge">Liquid::Drop</code> plugins on your Jekyll site.</p>
|
2800
|
-
|
2801
|
-
<p>Many thanks for <a href="https://github.com/benbalter">Ben Balter</a> for alerting us to the problem
|
2802
|
-
and <a href="https://github.com/jekyll/jekyll/issues/1349">submitting a patch</a> so quickly.</p>
|
2803
|
-
|
2804
|
-
|
2805
|
-
</div>
|
2806
|
-
</article>
|
2807
|
-
|
2808
|
-
|
2809
|
-
<article>
|
2810
|
-
<h2>
|
2811
|
-
<a href="/news/2013/07/24/jekyll-1-1-1-released/">
|
2812
|
-
Jekyll 1.1.1 Released
|
2813
|
-
</a>
|
2814
|
-
</h2>
|
2815
|
-
<span class="post-category">
|
2816
|
-
<span class="label">
|
2817
|
-
release
|
2818
|
-
</span>
|
2819
|
-
</span>
|
2820
|
-
<div class="post-meta">
|
2821
|
-
<span class="post-date">
|
2822
|
-
24 Jul 2013
|
2823
|
-
</span>
|
2824
|
-
<a href="https://github.com/parkr" class="post-author">
|
2825
|
-
|
2826
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2827
|
-
parkr
|
2828
|
-
</a>
|
2829
|
-
</div>
|
2830
|
-
<div class="post-content">
|
2831
|
-
<p>Coming just 10 days after the release of v1.1.0, v1.1.1 is out with a patch for the nasty
|
2832
|
-
excerpt inception bug (<a href="https://github.com/jekyll/jekyll/issues/1339">#1339</a>) and non-zero exit codes for invalid commands
|
2833
|
-
(<a href="https://github.com/jekyll/jekyll/issues/1338">#1338</a>).</p>
|
2834
|
-
|
2835
|
-
<p>To all those affected by the <a href="https://github.com/jekyll/jekyll/issues/1321">strange excerpt bug in v1.1.0</a>, I’m sorry. I think we
|
2836
|
-
have it all patched up and it should be deployed to <a href="https://pages.github.com/">GitHub Pages</a> in the next
|
2837
|
-
couple weeks. Thank you for your patience!</p>
|
2838
|
-
|
2839
|
-
<p>If you’re checking out v1.1.x for the first time, definitely check out <a href="https://github.com/jekyll/jekyll/releases/tag/v1.1.0">what shipped with
|
2840
|
-
v1.1.0!</a></p>
|
2841
|
-
|
2842
|
-
<p>See the <a href="https://github.com/jekyll/jekyll/releases/tag/v1.1.1">GitHub Release</a> page for more a more detailed changelog for this release.</p>
|
2843
|
-
|
2844
|
-
|
2845
|
-
</div>
|
2846
|
-
</article>
|
2847
|
-
|
2848
|
-
|
2849
|
-
<article>
|
2850
|
-
<h2>
|
2851
|
-
<a href="/news/2013/07/14/jekyll-1-1-0-released/">
|
2852
|
-
Jekyll 1.1.0 Released
|
2853
|
-
</a>
|
2854
|
-
</h2>
|
2855
|
-
<span class="post-category">
|
2856
|
-
<span class="label">
|
2857
|
-
release
|
2858
|
-
</span>
|
2859
|
-
</span>
|
2860
|
-
<div class="post-meta">
|
2861
|
-
<span class="post-date">
|
2862
|
-
14 Jul 2013
|
2863
|
-
</span>
|
2864
|
-
<a href="https://github.com/parkr" class="post-author">
|
2865
|
-
|
2866
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2867
|
-
parkr
|
2868
|
-
</a>
|
2869
|
-
</div>
|
2870
|
-
<div class="post-content">
|
2871
|
-
<p>After a month of hard work, the Jekyll core team is excited to announce the release of
|
2872
|
-
Jekyll v1.1.0! This latest release of Jekyll brings some really exciting new additions:</p>
|
2873
|
-
|
2874
|
-
<ul>
|
2875
|
-
<li>Add <code class="highlighter-rouge">docs</code> subcommand to read Jekyll’s docs when offline. (<a href="https://github.com/jekyll/jekyll/issues/1046">#1046</a>)</li>
|
2876
|
-
<li>Support passing parameters to templates in <code class="highlighter-rouge">include</code> tag (<a href="https://github.com/jekyll/jekyll/issues/1204">#1204</a>)</li>
|
2877
|
-
<li>Add support for Liquid tags to post excerpts (<a href="https://github.com/jekyll/jekyll/issues/1302">#1302</a>)</li>
|
2878
|
-
<li>Fix pagination for subdirectories (<a href="https://github.com/jekyll/jekyll/issues/1198">#1198</a>)</li>
|
2879
|
-
<li>Provide better error reporting when generating sites (<a href="https://github.com/jekyll/jekyll/issues/1253">#1253</a>)</li>
|
2880
|
-
<li>Latest posts first in non-LSI <code class="highlighter-rouge">related_posts</code> (<a href="https://github.com/jekyll/jekyll/issues/1271">#1271</a>)</li>
|
2881
|
-
</ul>
|
2882
|
-
|
2883
|
-
<p>See the <a href="https://github.com/jekyll/jekyll/releases/tag/v1.1.0">GitHub Release</a> page for more a more detailed changelog for this release.</p>
|
2884
|
-
|
2885
|
-
|
2886
|
-
</div>
|
2887
|
-
</article>
|
2888
|
-
|
2889
|
-
|
2890
|
-
<article>
|
2891
|
-
<h2>
|
2892
|
-
<a href="/news/2013/06/07/jekyll-1-0-3-released/">
|
2893
|
-
Jekyll 1.0.3 Released
|
2894
|
-
</a>
|
2895
|
-
</h2>
|
2896
|
-
<span class="post-category">
|
2897
|
-
<span class="label">
|
2898
|
-
release
|
2899
|
-
</span>
|
2900
|
-
</span>
|
2901
|
-
<div class="post-meta">
|
2902
|
-
<span class="post-date">
|
2903
|
-
07 Jun 2013
|
2904
|
-
</span>
|
2905
|
-
<a href="https://github.com/parkr" class="post-author">
|
2906
|
-
|
2907
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2908
|
-
parkr
|
2909
|
-
</a>
|
2910
|
-
</div>
|
2911
|
-
<div class="post-content">
|
2912
|
-
<p>v1.0.3 contains some key enhancements and bug fixes:</p>
|
2913
|
-
|
2914
|
-
<ul>
|
2915
|
-
<li>Fail with non-zero exit code when MaRuKu errors (<a href="https://github.com/jekyll/jekyll/issues/1190">#1190</a>) or Liquid errors (<a href="https://github.com/jekyll/jekyll/issues/1121">#1121</a>)</li>
|
2916
|
-
<li>Add support for private gists to <code class="highlighter-rouge">gist</code> tag (<a href="https://github.com/jekyll/jekyll/issues/1189">#1189</a>)</li>
|
2917
|
-
<li>Add <code class="highlighter-rouge">--force</code> option to <code class="highlighter-rouge">jekyll new</code> (<a href="https://github.com/jekyll/jekyll/issues/1115">#1115</a>)</li>
|
2918
|
-
<li>Fix compatibility with <code class="highlighter-rouge">exclude</code> and <code class="highlighter-rouge">include</code> with pre-1.0 Jekyll (<a href="https://github.com/jekyll/jekyll/issues/1114">#1114</a>)</li>
|
2919
|
-
<li>Fix pagination issue regarding <code class="highlighter-rouge">File.basename</code> and <code class="highlighter-rouge">page:num</code> (<a href="https://github.com/jekyll/jekyll/issues/1063">#1063</a>)</li>
|
2920
|
-
</ul>
|
2921
|
-
|
2922
|
-
<p>See the <a href="/docs/history/#v1-0-3">History</a> page for more information on this release.</p>
|
2923
|
-
|
2924
|
-
|
2925
|
-
</div>
|
2926
|
-
</article>
|
2927
|
-
|
2928
|
-
|
2929
|
-
<article>
|
2930
|
-
<h2>
|
2931
|
-
<a href="/news/2013/05/12/jekyll-1-0-2-released/">
|
2932
|
-
Jekyll 1.0.2 Released
|
2933
|
-
</a>
|
2934
|
-
</h2>
|
2935
|
-
<span class="post-category">
|
2936
|
-
<span class="label">
|
2937
|
-
release
|
2938
|
-
</span>
|
2939
|
-
</span>
|
2940
|
-
<div class="post-meta">
|
2941
|
-
<span class="post-date">
|
2942
|
-
12 May 2013
|
2943
|
-
</span>
|
2944
|
-
<a href="https://github.com/parkr" class="post-author">
|
2945
|
-
|
2946
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2947
|
-
parkr
|
2948
|
-
</a>
|
2949
|
-
</div>
|
2950
|
-
<div class="post-content">
|
2951
|
-
<p>v1.0.2 has some key bugfixes that optionally restore some behaviour from pre-1.0
|
2952
|
-
releases, and fix some other annoying bugs:</p>
|
2953
|
-
|
2954
|
-
<ul>
|
2955
|
-
<li>Backwards-compatibilize relative permalinks (<a href="https://github.com/jekyll/jekyll/issues/1081">#1081</a>)</li>
|
2956
|
-
<li>Add <code class="highlighter-rouge">jekyll doctor</code> command to check site for any known compatibility problems (<a href="https://github.com/jekyll/jekyll/issues/1081">#1081</a>)</li>
|
2957
|
-
<li>Deprecate old config <code class="highlighter-rouge">server_port</code>, match to <code class="highlighter-rouge">port</code> if <code class="highlighter-rouge">port</code> isn’t set (<a href="https://github.com/jekyll/jekyll/issues/1084">#1084</a>)</li>
|
2958
|
-
<li>Update pygments.rb and kramdon versions to 0.5.0 and 1.0.2, respectively (<a href="https://github.com/jekyll/jekyll/issues/1061">#1061</a>, <a href="https://github.com/jekyll/jekyll/issues/1067">#1067</a>)</li>
|
2959
|
-
<li>Fix issue when post categories are numbers (<a href="https://github.com/jekyll/jekyll/issues/1078">#1078</a>)</li>
|
2960
|
-
<li>Add a <code class="highlighter-rouge">data-lang="<lang>"</code> attribute to Redcarpet code blocks (<a href="https://github.com/jekyll/jekyll/issues/1066">#1066</a>)</li>
|
2961
|
-
<li>Catching that Redcarpet gem isn’t installed (<a href="https://github.com/jekyll/jekyll/issues/1059">#1059</a>)</li>
|
2962
|
-
</ul>
|
2963
|
-
|
2964
|
-
<p>See the <a href="/docs/history/#v1-0-2">History</a> page for more information on this release.</p>
|
2965
|
-
|
2966
|
-
|
2967
|
-
</div>
|
2968
|
-
</article>
|
2969
|
-
|
2970
|
-
|
2971
|
-
<article>
|
2972
|
-
<h2>
|
2973
|
-
<a href="/news/2013/05/08/jekyll-1-0-1-released/">
|
2974
|
-
Jekyll 1.0.1 Released
|
2975
|
-
</a>
|
2976
|
-
</h2>
|
2977
|
-
<span class="post-category">
|
2978
|
-
<span class="label">
|
2979
|
-
release
|
2980
|
-
</span>
|
2981
|
-
</span>
|
2982
|
-
<div class="post-meta">
|
2983
|
-
<span class="post-date">
|
2984
|
-
08 May 2013
|
2985
|
-
</span>
|
2986
|
-
<a href="https://github.com/parkr" class="post-author">
|
2987
|
-
|
2988
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
2989
|
-
parkr
|
2990
|
-
</a>
|
2991
|
-
</div>
|
2992
|
-
<div class="post-content">
|
2993
|
-
<p>Hot on the trails of v1.0, v1.0.1 is out! Here are the highlights:</p>
|
2994
|
-
|
2995
|
-
<ul>
|
2996
|
-
<li>Add newer <code class="highlighter-rouge">language-</code> class name prefix to code blocks (<a href="https://github.com/jekyll/jekyll/issues/1037">#1037</a>)</li>
|
2997
|
-
<li>Commander error message now preferred over process abort with incorrect args (<a href="https://github.com/jekyll/jekyll/issues/1040">#1040</a>)</li>
|
2998
|
-
<li>Do not force use of toc_token when using generate_toc in RDiscount (<a href="https://github.com/jekyll/jekyll/issues/1048">#1048</a>)</li>
|
2999
|
-
<li>Make Redcarpet respect the pygments configuration option (<a href="https://github.com/jekyll/jekyll/issues/1053">#1053</a>)</li>
|
3000
|
-
<li>Fix the index build with LSI (<a href="https://github.com/jekyll/jekyll/issues/1045">#1045</a>)</li>
|
3001
|
-
<li>Don’t print deprecation warning when no arguments are specified. (<a href="https://github.com/jekyll/jekyll/issues/1041">#1041</a>)</li>
|
3002
|
-
<li>Add missing <code class="highlighter-rouge"></div></code> to site template used by <code class="highlighter-rouge">new</code> subcommand, fixed typos in code (<a href="https://github.com/jekyll/jekyll/issues/1032">#1032</a>)</li>
|
3003
|
-
</ul>
|
3004
|
-
|
3005
|
-
<p>See the <a href="/docs/history/#v1-0-1">History</a> page for more information on this release.</p>
|
3006
|
-
|
3007
|
-
|
3008
|
-
</div>
|
3009
|
-
</article>
|
3010
|
-
|
3011
|
-
|
3012
|
-
<article>
|
3013
|
-
<h2>
|
3014
|
-
<a href="/news/2013/05/05/jekyll-1-0-0-released/">
|
3015
|
-
Jekyll 1.0.0 Released
|
3016
|
-
</a>
|
3017
|
-
</h2>
|
3018
|
-
<span class="post-category">
|
3019
|
-
<span class="label">
|
3020
|
-
release
|
3021
|
-
</span>
|
3022
|
-
</span>
|
3023
|
-
<div class="post-meta">
|
3024
|
-
<span class="post-date">
|
3025
|
-
05 May 2013
|
3026
|
-
</span>
|
3027
|
-
<a href="https://github.com/parkr" class="post-author">
|
3028
|
-
|
3029
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
3030
|
-
parkr
|
3031
|
-
</a>
|
3032
|
-
</div>
|
3033
|
-
<div class="post-content">
|
3034
|
-
<p>Hey! After many months of hard work by Jekyll’s contributors, we’re excited
|
3035
|
-
to announce the first major release of the project in a long while. v1.0.0 is
|
3036
|
-
finally here! While the list of improvements and bug fixes is <a href="/docs/history/#v1-0-0">quite lengthy</a>,
|
3037
|
-
here are the highlights (thanks to <a href="https://twitter.com/BenBalter">@benbalter</a> for the
|
3038
|
-
examples and for compiling this list):</p>
|
3039
|
-
|
3040
|
-
<ul>
|
3041
|
-
<li>Support for the Gist tag for easily embedding Gists (<a href="https://gist.github.com/benbalter/5555251">example</a>)</li>
|
3042
|
-
<li>Automatically generated post excerpts (<a href="https://gist.github.com/benbalter/5555369">example</a>)</li>
|
3043
|
-
<li>Save and preview drafts before publishing (<a href="https://gist.github.com/benbalter/5555992">example</a>)</li>
|
3044
|
-
</ul>
|
3045
|
-
|
3046
|
-
<p>Take a look at the <a href="/docs/upgrading/">Upgrading</a> page in the docs for more detailed information.</p>
|
3047
|
-
|
3048
|
-
|
3049
|
-
</div>
|
3050
|
-
</article>
|
3051
|
-
|
3052
|
-
|
3053
|
-
|
3054
|
-
</div>
|
3055
|
-
|
3056
|
-
<div class="unit one-fifth hide-on-mobiles">
|
3057
|
-
<aside>
|
3058
|
-
<ul>
|
3059
|
-
<li class="">
|
3060
|
-
<a href="/news/">All News</a>
|
3061
|
-
</li>
|
3062
|
-
<li class="current">
|
3063
|
-
<a href="/news/releases/">Jekyll Releases</a>
|
3064
|
-
</li>
|
3065
|
-
</ul>
|
3066
|
-
<h4>Recent Releases</h4>
|
3067
|
-
<ul>
|
3068
|
-
|
3069
|
-
<li class="">
|
3070
|
-
<a href="/news/2017/09/21/jekyll-3-6-0-released/">Version 3.6.0</a>
|
3071
|
-
</li>
|
3072
|
-
|
3073
|
-
<li class="">
|
3074
|
-
<a href="/news/2017/08/12/jekyll-3-5-2-released/">Version 3.5.2</a>
|
3075
|
-
</li>
|
3076
|
-
|
3077
|
-
<li class="">
|
3078
|
-
<a href="/news/2017/07/17/jekyll-3-5-1-released/">Version 3.5.1</a>
|
3079
|
-
</li>
|
3080
|
-
|
3081
|
-
<li class="">
|
3082
|
-
<a href="/news/2017/06/15/jekyll-3-5-0-released/">Version 3.5.0</a>
|
3083
|
-
</li>
|
3084
|
-
|
3085
|
-
<li class="">
|
3086
|
-
<a href="/news/2017/03/21/jekyll-3-4-3-released/">Version 3.4.3</a>
|
3087
|
-
</li>
|
3088
|
-
|
3089
|
-
<li>
|
3090
|
-
<a href="/docs/history/">History »</a>
|
3091
|
-
</li>
|
3092
|
-
</ul>
|
3093
|
-
<h4>Other News</h4>
|
3094
|
-
<ul>
|
3095
|
-
|
3096
|
-
|
3097
|
-
|
3098
|
-
|
3099
|
-
|
3100
|
-
|
3101
|
-
|
3102
|
-
|
3103
|
-
|
3104
|
-
|
3105
|
-
|
3106
|
-
|
3107
|
-
|
3108
|
-
|
3109
|
-
|
3110
|
-
|
3111
|
-
|
3112
|
-
|
3113
|
-
|
3114
|
-
|
3115
|
-
|
3116
|
-
|
3117
|
-
<li class="">
|
3118
|
-
<a href="/news/2016/08/24/jekyll-admin-initial-release/">Jekyll Admin Initial Release</a>
|
3119
|
-
</li>
|
3120
|
-
|
3121
|
-
|
3122
|
-
|
3123
|
-
|
3124
|
-
|
3125
|
-
|
3126
|
-
|
3127
|
-
<li class="">
|
3128
|
-
<a href="/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/">Jekyll's Google Summer of Code Project: The CMS You Always Wanted</a>
|
3129
|
-
</li>
|
3130
|
-
|
3131
|
-
|
3132
|
-
|
3133
|
-
|
3134
|
-
|
3135
|
-
|
3136
|
-
|
3137
|
-
|
3138
|
-
|
3139
|
-
|
3140
|
-
|
3141
|
-
|
3142
|
-
|
3143
|
-
|
3144
|
-
|
3145
|
-
<li class="">
|
3146
|
-
<a href="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">Making it easier to contribute to Jekyll</a>
|
3147
|
-
</li>
|
3148
|
-
|
3149
|
-
|
3150
|
-
|
3151
|
-
|
3152
|
-
|
3153
|
-
|
3154
|
-
|
3155
|
-
|
3156
|
-
|
3157
|
-
|
3158
|
-
|
3159
|
-
|
3160
|
-
|
3161
|
-
|
3162
|
-
|
3163
|
-
|
3164
|
-
|
3165
|
-
<li class="">
|
3166
|
-
<a href="/news/2015/02/26/introducing-jekyll-talk/">Join the Discussion at Jekyll Talk</a>
|
3167
|
-
</li>
|
3168
|
-
|
3169
|
-
|
3170
|
-
|
3171
|
-
|
3172
|
-
|
3173
|
-
<li class="">
|
3174
|
-
<a href="/news/2015/01/20/jekyll-meet-and-greet/">Jekyll Meet & Greet at GitHub HQ</a>
|
3175
|
-
</li>
|
3176
|
-
|
3177
|
-
|
3178
|
-
|
3179
|
-
|
3180
|
-
|
3181
|
-
<li class="">
|
3182
|
-
<a href="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">Alfred Xing has joined the Jekyll core team</a>
|
3183
|
-
</li>
|
3184
|
-
|
3185
|
-
|
3186
|
-
|
3187
|
-
|
3188
|
-
|
3189
|
-
|
3190
|
-
|
3191
|
-
|
3192
|
-
|
3193
|
-
|
3194
|
-
|
3195
|
-
|
3196
|
-
|
3197
|
-
|
3198
|
-
|
3199
|
-
|
3200
|
-
|
3201
|
-
|
3202
|
-
|
3203
|
-
<li class="">
|
3204
|
-
<a href="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">Pick Up your $1 Jekyll Sticker</a>
|
3205
|
-
</li>
|
3206
|
-
|
3207
|
-
|
3208
|
-
|
3209
|
-
|
3210
|
-
|
3211
|
-
|
3212
|
-
|
3213
|
-
|
3214
|
-
|
3215
|
-
|
3216
|
-
|
3217
|
-
|
3218
|
-
|
3219
|
-
|
3220
|
-
|
3221
|
-
|
3222
|
-
|
3223
|
-
|
3224
|
-
|
3225
|
-
|
3226
|
-
|
3227
|
-
|
3228
|
-
|
3229
|
-
|
3230
|
-
|
3231
|
-
|
3232
|
-
|
3233
|
-
|
3234
|
-
|
3235
|
-
|
3236
|
-
|
3237
|
-
|
3238
|
-
|
3239
|
-
|
3240
|
-
|
3241
|
-
|
3242
|
-
|
3243
|
-
|
3244
|
-
|
3245
|
-
|
3246
|
-
|
3247
|
-
|
3248
|
-
|
3249
|
-
|
3250
|
-
</ul>
|
3251
|
-
</aside>
|
3252
|
-
</div>
|
3253
|
-
|
3254
|
-
|
3255
|
-
<div class="clear"></div>
|
3256
|
-
|
3257
|
-
</div>
|
3258
|
-
</section>
|
3259
|
-
|
3260
|
-
|
3261
|
-
<footer>
|
3262
|
-
<div class="grid">
|
3263
|
-
<div class="unit one-third center-on-mobiles">
|
3264
|
-
<p>The contents of this website are <br>© 2017 under the terms of the <a href="https://github.com/jekyll/jekyll/blob/master/LICENSE">MIT License</a>.</p>
|
3265
|
-
</div>
|
3266
|
-
<div class="unit two-thirds align-right center-on-mobiles">
|
3267
|
-
<p>
|
3268
|
-
Proudly hosted by
|
3269
|
-
<a href="https://github.com">
|
3270
|
-
<img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
|
3271
|
-
</a>
|
3272
|
-
</p>
|
3273
|
-
</div>
|
3274
|
-
</div>
|
3275
|
-
</footer>
|
3276
|
-
|
3277
|
-
<script>
|
3278
|
-
var anchorForId = function (id) {
|
3279
|
-
var anchor = document.createElement("a");
|
3280
|
-
anchor.className = "header-link";
|
3281
|
-
anchor.href = "#" + id;
|
3282
|
-
anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
|
3283
|
-
anchor.title = "Permalink";
|
3284
|
-
return anchor;
|
3285
|
-
};
|
3286
|
-
|
3287
|
-
var linkifyAnchors = function (level, containingElement) {
|
3288
|
-
var headers = containingElement.getElementsByTagName("h" + level);
|
3289
|
-
for (var h = 0; h < headers.length; h++) {
|
3290
|
-
var header = headers[h];
|
3291
|
-
|
3292
|
-
if (typeof header.id !== "undefined" && header.id !== "") {
|
3293
|
-
header.appendChild(anchorForId(header.id));
|
3294
|
-
}
|
3295
|
-
}
|
3296
|
-
};
|
3297
|
-
|
3298
|
-
document.onreadystatechange = function () {
|
3299
|
-
if (this.readyState === "complete") {
|
3300
|
-
var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
|
3301
|
-
if (!contentBlock) {
|
3302
|
-
return;
|
3303
|
-
}
|
3304
|
-
for (var level = 1; level <= 6; level++) {
|
3305
|
-
linkifyAnchors(level, contentBlock);
|
3306
|
-
}
|
3307
|
-
}
|
3308
|
-
};
|
3309
|
-
</script>
|
3310
|
-
|
3311
|
-
|
3312
|
-
<!-- Gauges (http://get.gaug.es/) -->
|
3313
|
-
<script>
|
3314
|
-
var _gauges = _gauges || [];
|
3315
|
-
(function() {
|
3316
|
-
var t = document.createElement('script');
|
3317
|
-
t.type = 'text/javascript';
|
3318
|
-
t.async = true;
|
3319
|
-
t.id = 'gauges-tracker';
|
3320
|
-
t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
|
3321
|
-
t.src = '//secure.gaug.es/track.js';
|
3322
|
-
var s = document.getElementsByTagName('script')[0];
|
3323
|
-
s.parentNode.insertBefore(t, s);
|
3324
|
-
})();
|
3325
|
-
</script>
|
3326
|
-
|
3327
|
-
|
3328
|
-
|
3329
|
-
<!-- Google Analytics (https://www.google.com/analytics) -->
|
3330
|
-
<script>
|
3331
|
-
!function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
|
3332
|
-
(j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
|
3333
|
-
L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
|
3334
|
-
L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
|
3335
|
-
|
3336
|
-
ga('create', 'UA-50755011-1', 'jekyllrb.com');
|
3337
|
-
ga('send', 'pageview');
|
3338
|
-
|
3339
|
-
</script>
|
3340
|
-
|
3341
|
-
|
3342
|
-
|
3343
|
-
</body>
|
3344
|
-
</html>
|