jekyll 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of jekyll might be problematic. Click here for more details.
- checksums.yaml +8 -8
- data/History.markdown +4 -1
- data/jekyll.gemspec +5 -3
- data/lib/jekyll.rb +1 -1
- data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +20 -0
- data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +20 -0
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NzE0ZjEzYzM3ZGZhYmJjODMyZDNkYTUxNWY5ZThjMWVlM2M3NWI5Yg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NGU1MDcwYjliYjlhMjNmMjk5ZTNkZTA2ODgxMmQ5Y2E3NGM3Y2Y5Yw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
N2Y5YmY5NDJjMGVhMGJkZDMyMmEyNWQ2ZGZlMzNlY2MxN2U1ZDY0NjVhY2U0
|
10
|
+
OGY4NjE1MmYwOWRlM2E1MTU1YmYyYWY3M2MwNGYwZmYyZTI5MDQ5OTdlMmQ5
|
11
|
+
OWVmMDQ0M2U5NDk1N2Y2ODEwODY5Y2I0MzkyNjdjNDE3NzBiNTg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MzdkNjFjZjllNmI4NzIzMjJhNjU1MjY4ZjI4ZGIwNjU5Mjc4YzZjMDY1ODY1
|
14
|
+
M2QxMDIwYzkzNDY0M2Y2NWYwZDUxZDcyZGM0ZTNlNGQyMmU3ZDg4NmYwNzNl
|
15
|
+
ZmY5YTJlZWZlNmRiMjE4ZmEwZGZkYmU0NDMzNTFhYzRhNzM2ODY=
|
data/History.markdown
CHANGED
data/jekyll.gemspec
CHANGED
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.rubygems_version = '1.3.5'
|
5
5
|
|
6
6
|
s.name = 'jekyll'
|
7
|
-
s.version = '1.1.
|
7
|
+
s.version = '1.1.2'
|
8
8
|
s.license = 'MIT'
|
9
|
-
s.date = '2013-07-
|
9
|
+
s.date = '2013-07-25'
|
10
10
|
s.rubyforge_project = 'jekyll'
|
11
11
|
|
12
12
|
s.summary = "A simple, blog aware, static site generator."
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.rdoc_options = ["--charset=UTF-8"]
|
24
24
|
s.extra_rdoc_files = %w[README.markdown LICENSE]
|
25
25
|
|
26
|
-
s.add_runtime_dependency('liquid', "~> 2.
|
26
|
+
s.add_runtime_dependency('liquid', "~> 2.5.1")
|
27
27
|
s.add_runtime_dependency('classifier', "~> 1.3")
|
28
28
|
s.add_runtime_dependency('directory_watcher', "~> 1.4.1")
|
29
29
|
s.add_runtime_dependency('maruku', "~> 0.5")
|
@@ -142,6 +142,8 @@ Gem::Specification.new do |s|
|
|
142
142
|
site/_posts/2013-06-07-jekyll-1-0-3-released.markdown
|
143
143
|
site/_posts/2013-07-14-jekyll-1-1-0-released.markdown
|
144
144
|
site/_posts/2013-07-24-jekyll-1-1-1-released.markdown
|
145
|
+
site/_posts/2013-07-25-jekyll-1-0-4-released.markdown
|
146
|
+
site/_posts/2013-07-25-jekyll-1-1-2-released.markdown
|
145
147
|
site/css/gridism.css
|
146
148
|
site/css/normalize.css
|
147
149
|
site/css/pygments.css
|
data/lib/jekyll.rb
CHANGED
@@ -58,7 +58,7 @@ require_all 'jekyll/tags'
|
|
58
58
|
SafeYAML::OPTIONS[:suppress_warnings] = true
|
59
59
|
|
60
60
|
module Jekyll
|
61
|
-
VERSION = '1.1.
|
61
|
+
VERSION = '1.1.2'
|
62
62
|
|
63
63
|
# Public: Generate a Jekyll configuration Hash by merging the default
|
64
64
|
# options with anything in _config.yml, and adding the given options on top.
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: "Jekyll 1.0.4 Released"
|
4
|
+
date: "2013-07-25 09:08:38 +0200"
|
5
|
+
author: parkr
|
6
|
+
version: 1.0.4
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
This version contains a [very important security patch][230] for `Liquid::Drop` plugins
|
11
|
+
which granted access to all non-`Drop` entities within a `Drop`, which may include your
|
12
|
+
Rack configuration settings and many more pieces of private information which could be
|
13
|
+
used to exploit your system. We recommend you upgrade to v1.0.4 as quickly as possible if
|
14
|
+
you use `Liquid::Drop` plugins in your site.
|
15
|
+
|
16
|
+
Many thanks for [Ben Balter](http://github.com/benbalter) for alerting us to the problem
|
17
|
+
and [submitting a patch][1349] so quickly.
|
18
|
+
|
19
|
+
[230]: https://github.com/Shopify/liquid/pull/230
|
20
|
+
[1349]: https://github.com/mojombo/jekyll/issues/1349
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: "Jekyll 1.1.2 Released"
|
4
|
+
date: "2013-07-25 09:08:38 +0200"
|
5
|
+
author: parkr
|
6
|
+
version: 1.1.2
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
This version contains a [very important security patch][230] for `Liquid::Drop` plugins
|
11
|
+
which granted access to all non-`Drop` entities within a `Drop`, which may include your
|
12
|
+
Rack configuration settings and many more pieces of private information which could be
|
13
|
+
used to exploit your system. We recommend you upgrade to v1.1.2 as quickly as possible if
|
14
|
+
you use `Liquid::Drop` plugins in your site.
|
15
|
+
|
16
|
+
Many thanks for [Ben Balter](http://github.com/benbalter) for alerting us to the problem
|
17
|
+
and [submitting a patch][1349] so quickly.
|
18
|
+
|
19
|
+
[230]: https://github.com/Shopify/liquid/pull/230
|
20
|
+
[1349]: https://github.com/mojombo/jekyll/issues/1349
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Preston-Werner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: liquid
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 2.5.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 2.5.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: classifier
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -426,6 +426,8 @@ files:
|
|
426
426
|
- site/_posts/2013-06-07-jekyll-1-0-3-released.markdown
|
427
427
|
- site/_posts/2013-07-14-jekyll-1-1-0-released.markdown
|
428
428
|
- site/_posts/2013-07-24-jekyll-1-1-1-released.markdown
|
429
|
+
- site/_posts/2013-07-25-jekyll-1-0-4-released.markdown
|
430
|
+
- site/_posts/2013-07-25-jekyll-1-1-2-released.markdown
|
429
431
|
- site/css/gridism.css
|
430
432
|
- site/css/normalize.css
|
431
433
|
- site/css/pygments.css
|