parent
646b424166
commit
f9c2395a86
|
@ -71,6 +71,16 @@
|
|||
* Add support for upcoming logger 1.4.3 (#9392)
|
||||
* Fix typo in devcontainer.json (#9364)
|
||||
|
||||
## 4.3.3 / 2023-12-27
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Backport #9392 for v4.3.x: Fix backward compatibility issues in the Logger (#9510)
|
||||
|
||||
### Development Fixes
|
||||
|
||||
* Backport #9237 for v4.3.x: Use Hash explicitly for Struct initializer (#9285)
|
||||
|
||||
## 3.9.3 / 2023-01-29
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
version: 4.3.2
|
||||
version: 4.3.3
|
||||
name: Jekyll • Simple, blog-aware, static sites
|
||||
description: Transform your plain text into static websites and blogs
|
||||
url: https://jekyllrb.com
|
||||
|
|
|
@ -4,6 +4,20 @@ permalink: "/docs/history/"
|
|||
note: This file is autogenerated. Edit /History.markdown instead.
|
||||
---
|
||||
|
||||
## 4.3.3 / 2023-12-27
|
||||
{: #v4-3-3}
|
||||
|
||||
### Bug Fixes
|
||||
{: #bug-fixes-v4-3-3}
|
||||
|
||||
- Backport [#9392]({{ site.repository }}/issues/9392) for v4.3.x: Fix backward compatibility issues in the Logger ([#9510]({{ site.repository }}/issues/9510))
|
||||
|
||||
### Development Fixes
|
||||
{: #development-fixes-v4-3-3}
|
||||
|
||||
- Backport [#9237]({{ site.repository }}/issues/9237) for v4.3.x: Use Hash explicitly for Struct initializer ([#9285]({{ site.repository }}/issues/9285))
|
||||
|
||||
|
||||
## 3.9.3 / 2023-01-29
|
||||
{: #v3-9-3}
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ Security updates are applied to the latest MINOR version of Jekyll, and the vers
|
|||
Please report vulnerabilities by sending an email to security@jekyllrb.com with the following information:
|
||||
|
||||
1. A description of the vulnerability
|
||||
2. Reproduction steps and/or a sample site (share a private repo to the [Jekyll Security Team](/team/#security-team))
|
||||
2. Reproduction steps and/or a sample site (share a private repo to the [Jekyll Security Team](docs/pages/team.md))
|
||||
3. Your contact information
|
||||
|
||||
The Jekyll security team will respond to your submission and notify you whether it has been confirmed by the team.
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: 'Jekyll 4.3.3 Released'
|
||||
date: 2023-12-27 11:15:00 -0600
|
||||
author: mattr-
|
||||
version: 4.3.3
|
||||
category: release
|
||||
---
|
||||
|
||||
Hello Jekyllers!
|
||||
|
||||
This is a very small release containing two things:
|
||||
|
||||
- A fix for using Jekyll with Ruby 3.3 and the new `logger` gem included with that release.
|
||||
- A test fix for newer versions of Ruby for packagers that run the test suite
|
||||
as part of their packaging process.
|
||||
|
||||
Nothing new in the way of features for this release. You'll need to wait for v4.4 for that. 😄
|
||||
|
||||
Happy Jekylling!!
|
|
@ -1 +1 @@
|
|||
4.3.2
|
||||
4.3.3
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Jekyll
|
||||
VERSION = "4.3.2"
|
||||
VERSION = "4.3.3"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue