jekyll_flexible_include 2.0.28 → 2.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +10 -9
- data/jekyll_flexible_include_plugin.gemspec +1 -1
- data/lib/flexible_include/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2232e1912080dc0efb93181db15ea44d82e34666e1b2a35f0ca30efb71133d85
|
|
4
|
+
data.tar.gz: 59bc09d732f17d23738757d0d3b3a86d861571d1c08bc4475b21359b101265f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dcf67360d05ae77803faed7c033770e8338e1b5f7dca2d56f10ed7109c275941e01699f33892ebc41f5ca19cf266cc40e036c5aef715978c1397f6938c16721
|
|
7
|
+
data.tar.gz: f667fba38d554f321bdbe14f49e3b41cadae38b906d32180d5b94ac19fad435734119ae1bb9061ce1c56cd59aa268516e8660015a28be469ba5cc1f201adbef1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 2.0.29 / 2026-07-11
|
|
4
|
+
|
|
5
|
+
* Modified `bin/setup` to allow Rugged 1.9x which requires `libgpg-error-dev`
|
|
6
|
+
library under Ubuntu. `--with-ssh`. See
|
|
7
|
+
https://www.mslinn.com/git/4400-rugged.html for rugged installation
|
|
8
|
+
instructions.
|
|
9
|
+
|
|
3
10
|
## 2.0.28 / 2025-11-18
|
|
4
11
|
|
|
5
12
|
* Added new dependency, [`benchmark`](https://github.com/ruby/benchmark),
|
data/README.md
CHANGED
|
@@ -168,19 +168,20 @@ time to enumerate the files.
|
|
|
168
168
|
|
|
169
169
|
## Restricting Arbitrary Processes
|
|
170
170
|
|
|
171
|
-
By default, `flexible_include` can execute any command.
|
|
172
|
-
|
|
173
|
-
|
|
171
|
+
By default, `flexible_include` can execute any command. You can disable that by
|
|
172
|
+
setting the environment variable `DISABLE_FLEXIBLE_INCLUDE` to any non-empty
|
|
173
|
+
value.
|
|
174
174
|
|
|
175
175
|
```shell
|
|
176
176
|
export DISABLE_FLEXIBLE_INCLUDE=true
|
|
177
177
|
```
|
|
178
178
|
|
|
179
|
-
If a potential command execution is intercepted,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
179
|
+
If a potential command execution is intercepted, a big red message will appear
|
|
180
|
+
on the generated web page that says `Arbitrary command execution denied by
|
|
181
|
+
DISABLE_FLEXIBLE_INCLUDE value.`, and a red error message will be logged on the
|
|
182
|
+
console that says something like: `ERROR FlexibleInclude:
|
|
183
|
+
_posts/2020/2020-10-03-jekyll-plugins.html - Arbitrary command execution denied
|
|
184
|
+
by DISABLE_FLEXIBLE_INCLUDE value.`
|
|
184
185
|
|
|
185
186
|
|
|
186
187
|
## Installation
|
|
@@ -212,7 +213,7 @@ and a red error message will be logged on the console that says something like:
|
|
|
212
213
|
5. Install the `jekyll_flexible_include` Ruby gem and mark it as a dependency of your project:
|
|
213
214
|
|
|
214
215
|
```shell
|
|
215
|
-
$ bundle
|
|
216
|
+
$ bundle install
|
|
216
217
|
```
|
|
217
218
|
|
|
218
219
|
### CSS and Assets
|
|
@@ -39,6 +39,6 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
|
39
39
|
spec.add_dependency 'jekyll_draft'
|
|
40
40
|
spec.add_dependency 'jekyll_from_to_until', '>= 1.0.5'
|
|
41
41
|
spec.add_dependency 'jekyll_plugin_support', '>= 3.1.1'
|
|
42
|
-
spec.add_dependency 'jekyll-sass-converter', '
|
|
42
|
+
spec.add_dependency 'jekyll-sass-converter', '>=3.1.0'
|
|
43
43
|
spec.add_dependency 'rugged'
|
|
44
44
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll_flexible_include
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.29
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Slinn
|
|
@@ -71,16 +71,16 @@ dependencies:
|
|
|
71
71
|
name: jekyll-sass-converter
|
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
|
73
73
|
requirements:
|
|
74
|
-
- -
|
|
74
|
+
- - ">="
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
|
-
version:
|
|
76
|
+
version: 3.1.0
|
|
77
77
|
type: :runtime
|
|
78
78
|
prerelease: false
|
|
79
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
80
80
|
requirements:
|
|
81
|
-
- -
|
|
81
|
+
- - ">="
|
|
82
82
|
- !ruby/object:Gem::Version
|
|
83
|
-
version:
|
|
83
|
+
version: 3.1.0
|
|
84
84
|
- !ruby/object:Gem::Dependency
|
|
85
85
|
name: rugged
|
|
86
86
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -148,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
149
|
version: '0'
|
|
150
150
|
requirements: []
|
|
151
|
-
rubygems_version:
|
|
151
|
+
rubygems_version: 4.0.19
|
|
152
152
|
specification_version: 4
|
|
153
153
|
summary: Jekyll plugin supports various ways to include content into the generated
|
|
154
154
|
site.
|