asciidoctor-pdf 2.3.25 → 2.3.27
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.adoc +20 -0
- data/README.adoc +1 -1
- data/lib/asciidoctor/pdf/ext/asciidoctor/document.rb +3 -1
- data/lib/asciidoctor/pdf/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9139f7e33e3e3315511b4a776645a86dde196465473673bbf4cd5472556e3e11
|
|
4
|
+
data.tar.gz: '0518d599bd4c839384cf4bb3e6817791abb90998b1e6124092eeb6e8e31e5a30'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a729565ce0dbba9df85c3803c67dca6a59f653faa3d482af16f5c1ccd7b0e7869d2c79169a5799fd57bae41dbc7f9f32296c347cfe5b86808370b1f9cf12c9a
|
|
7
|
+
data.tar.gz: 30c6c70a8fd29aaa202ab648bcd1ea21b2b67bc0ee50e6091dde4d833cfcbb22f9846af3f7bc7fc841f4b9548e9f79ca30f85118b5fa4852dcece1ffbb3b9f2f
|
data/CHANGELOG.adoc
CHANGED
|
@@ -5,6 +5,26 @@
|
|
|
5
5
|
This document provides a high-level view of the changes to the {project-name} by release.
|
|
6
6
|
For a detailed view of what has changed, refer to the {url-repo}/commits/main[commit history] on GitHub.
|
|
7
7
|
|
|
8
|
+
== 2.3.27 (2026-09-02) - @mojavelinux
|
|
9
|
+
|
|
10
|
+
Bug Fixes::
|
|
11
|
+
|
|
12
|
+
* honor attribute unset in AsciiDoc table cell when determining if attribute is unspecified
|
|
13
|
+
|
|
14
|
+
=== Details
|
|
15
|
+
|
|
16
|
+
{url-repo}/releases/tag/v2.3.27[git tag] | {url-repo}/compare/v2.3.26\...v2.3.27[full diff]
|
|
17
|
+
|
|
18
|
+
== 2.3.26 (2026-09-02) - @mojavelinux
|
|
19
|
+
|
|
20
|
+
Bug Fixes::
|
|
21
|
+
|
|
22
|
+
* scope Document#attr_unspecified? to parent document; don't crash if `:attributes` option not set (#2656)
|
|
23
|
+
|
|
24
|
+
=== Details
|
|
25
|
+
|
|
26
|
+
{url-repo}/releases/tag/v2.3.26[git tag] | {url-repo}/compare/v2.3.25\...v2.3.26[full diff]
|
|
27
|
+
|
|
8
28
|
== 2.3.25 (2026-08-31) - @mojavelinux
|
|
9
29
|
|
|
10
30
|
Enhancements::
|
data/README.adoc
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
= Asciidoctor PDF: A native PDF converter for AsciiDoc
|
|
2
2
|
Dan Allen <https://github.com/mojavelinux[@mojavelinux]>; Sarah White <https://github.com/graphitefriction[@graphitefriction]>
|
|
3
|
-
v2.3.
|
|
3
|
+
v2.3.27, 2026-09-02
|
|
4
4
|
// Settings:
|
|
5
5
|
:experimental:
|
|
6
6
|
:idprefix:
|
|
@@ -28,8 +28,10 @@ class Asciidoctor::Document
|
|
|
28
28
|
def attr_unspecified? name
|
|
29
29
|
if (attribute_locked? name) || (@attributes_modified.include? name)
|
|
30
30
|
false
|
|
31
|
+
elsif nested?
|
|
32
|
+
@parent_document.attr_unspecified? name
|
|
31
33
|
else
|
|
32
|
-
@options[:attributes].each_pair.none? do |k, v|
|
|
34
|
+
(@options[:attributes] || {}).each_pair.none? do |k, v|
|
|
33
35
|
if k == name
|
|
34
36
|
true
|
|
35
37
|
elsif v == '@'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: asciidoctor-pdf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dan Allen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-
|
|
12
|
+
date: 2026-09-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: asciidoctor
|