chore(release): reflect latest patched releases (#7262)
Merge pull request 7262
This commit is contained in:
parent
f692f0999c
commit
88dbe5db8a
|
@ -111,8 +111,6 @@
|
|||
|
||||
* Add call to unused method `validate_options` in `commands/serve.rb` (#7122)
|
||||
* Security: fix `include` bypass of `EntryFilter#filter` symlink check (#7226)
|
||||
* 3.8.x: security: fix `include` bypass of `EntryFilter#filter` symlink check (#7228)
|
||||
* 3.6.x: security: fix `include` bypass of `EntryFilter#filter` symlink check (#7229)
|
||||
* Check if scope applies to type before given path (#7263)
|
||||
|
||||
### feature
|
||||
|
@ -120,6 +118,12 @@
|
|||
* Disable Liquid via front matter (#6824)
|
||||
* Do not process Liquid in post excerpt when disabled in front matter (#7146)
|
||||
|
||||
## 3.8.4 / 2018-09-18
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 3.8.x: security: fix `include` bypass of `EntryFilter#filter` symlink check (#7228)
|
||||
|
||||
## 3.8.3 / 2018-06-05
|
||||
|
||||
### Bug Fixes
|
||||
|
@ -237,6 +241,12 @@
|
|||
* Handle liquid tags in excerpts robustly (#6891)
|
||||
* Allow front matter defaults to be applied properly to documents gathered under custom `collections_dir` (#6885)
|
||||
|
||||
## 3.7.4 / 2018-09-07
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Security: fix `include` bypass of EntryFilter#filter symlink check (#7224)
|
||||
|
||||
## 3.7.3 / 2018-02-25
|
||||
|
||||
### Bug Fixes
|
||||
|
@ -403,6 +413,12 @@
|
|||
* Improve docs styling for code to be run in shell (#6641)
|
||||
* Fix permalink icon markup in news-item layout (#6639)
|
||||
|
||||
## 3.6.3 / 2018-09-18
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 3.6.x: security: fix `include` bypass of `EntryFilter#filter` symlink check (#7229)
|
||||
|
||||
## 3.6.2 / 2017-10-21
|
||||
|
||||
### Development Fixes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
version: 3.8.3
|
||||
version: 3.8.4
|
||||
name: Jekyll • Simple, blog-aware, static sites
|
||||
description: Transform your plain text into static websites and blogs
|
||||
url: https://jekyllrb.com
|
||||
|
|
|
@ -1 +1 @@
|
|||
3.8.3
|
||||
3.8.4
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Jekyll
|
||||
VERSION = "3.8.3"
|
||||
VERSION = "3.8.4"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue