Skip to content

Commit b08f299

Browse files
committed
Update upstream source from tag 'upstream/3.3.10'
Update to upstream version '3.3.10' with Debian dir 3393ed4
2 parents fbbcb1b + c3b7112 commit b08f299

File tree

134 files changed

+3137
-1218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+3137
-1218
lines changed
File renamed without changes.

.bundle/gems/rexml-3.3.9/NEWS.md renamed to .bundle/gems/rexml-3.4.4/NEWS.md

Lines changed: 198 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,202 @@
11
# News
22

3+
## 3.4.4 - 2025-09-10 {#version-3-4-4}
4+
5+
### Improvement
6+
7+
* Accept `REXML::Document.new("")` for backward compatibility
8+
* GH-296
9+
* GH-295
10+
* Patch by NAITOH Jun
11+
* Reported by Joe Rafaniello
12+
13+
### Thanks
14+
15+
* NAITOH Jun
16+
17+
* Joe Rafaniello
18+
19+
## 3.4.3 - 2025-09-07 {#version-3-4-3}
20+
21+
### Improvement
22+
23+
* Reject no root element XML as an invalid XML
24+
* GH-289
25+
* GH-291
26+
* Patch by NAITOH Jun
27+
* Reported by Sutou Kouhei
28+
29+
### Fixes
30+
31+
* Fixed an issue with `IOSource#read_until` when reaching the end of a file
32+
* GH-287
33+
* GH-288
34+
* Patch by NAITOH Jun
35+
* Reported by Jason Thomas
36+
37+
### Thanks
38+
39+
* NAITOH Jun
40+
41+
* Sutou Kouhei
42+
43+
* Jason Thomas
44+
45+
## 3.4.2 - 2025-08-26 {#version-3-4-2}
46+
47+
### Improvement
48+
49+
* Improved performance.
50+
* GH-244
51+
* GH-245
52+
* GH-246
53+
* GH-249
54+
* GH-256
55+
* Patch by NAITOH Jun
56+
57+
* Raise appropriate exception when failing to match start tag in DOCTYPE
58+
* GH-247
59+
* Patch by NAITOH Jun
60+
61+
* Deprecate accepting array as an element in XPath.match, first and each
62+
* GH-252
63+
* Patch by tomoya ishida
64+
65+
* Don't call needless encoding_updated
66+
* GH-259
67+
* Patch by Sutou Kouhei
68+
69+
* Reuse XPath::match
70+
* GH-263
71+
* Patch by pboling
72+
73+
* Cache redundant calls for doctype
74+
* GH-264
75+
* Patch by pboling
76+
77+
* Use Safe Navigation (&.) from Ruby 2.3
78+
* GH-265
79+
* Patch by pboling
80+
81+
* Remove redundant return statements
82+
* GH-266
83+
* Patch by pboling
84+
85+
* Added XML declaration check & Source#skip_spaces method
86+
* GH-282
87+
* Patch by NAITOH Jun
88+
* Reported by Sofi Aberegg
89+
90+
### Fixes
91+
92+
* Fix docs typo
93+
* GH-248
94+
* Patch by James Coleman
95+
96+
* Fix reverse sort in xpath_parser
97+
* GH-251
98+
* Patch by tomoya ishida
99+
100+
* Fix duplicate responses in XPath following, following-sibling, preceding, preceding-sibling
101+
* GH-255
102+
* Patch by NAITOH Jun
103+
104+
* Fix wrong Encoding resolution
105+
* GH-258
106+
* Patch by Sutou Kouhei
107+
108+
* Handle nil when parsing fragment
109+
* GH-267
110+
* GH-268
111+
* Patch by pboling
112+
113+
* [Documentation] Use # to reference instance methods
114+
* GH-269
115+
* GH-270
116+
* Patch by pboling
117+
118+
* Fix & Deprecate REXML::Text#text_indent
119+
* GH-273
120+
* GH-275
121+
* Patch by pboling
122+
123+
* remove bundler from dev deps
124+
* GH-276
125+
* GH-277
126+
* Patch by pboling
127+
128+
* remove ostruct from dev deps
129+
* GH-280
130+
* GH-281
131+
* Patch by pboling
132+
133+
### Thanks
134+
135+
* NAITOH Jun
136+
137+
* tomoya ishida
138+
139+
* James Coleman
140+
141+
* pboling
142+
143+
* Sutou Kouhei
144+
145+
* Sofi Aberegg
146+
147+
## 3.4.1 - 2025-02-16 {#version-3-4-1}
148+
149+
### Improvement
150+
151+
* Improved performance.
152+
* GH-226
153+
* GH-227
154+
* GH-237
155+
* Patch by NAITOH Jun
156+
157+
### Fixes
158+
159+
* Fix serialization of ATTLIST is incorrect
160+
* GH-233
161+
* GH-234
162+
* Patch by OlofKalufs
163+
* Reported by OlofKalufs
164+
165+
### Thanks
166+
167+
* NAITOH Jun
168+
169+
* OlofKalufs
170+
171+
## 3.4.0 - 2024-12-15 {#version-3-4-0}
172+
173+
### Improvement
174+
175+
* Improved performance.
176+
* GH-216
177+
* Patch by NAITOH Jun
178+
179+
* JRuby: Improved parse performance.
180+
* GH-219
181+
* Patch by João Duarte
182+
183+
* Added support for reusing pull parser.
184+
* GH-214
185+
* GH-220
186+
* Patch by Dmitry Pogrebnoy
187+
188+
* Improved error handling when source is `IO`.
189+
* GH-221
190+
* Patch by NAITOH Jun
191+
192+
### Thanks
193+
194+
* NAITOH Jun
195+
196+
* João Duarte
197+
198+
* Dmitry Pogrebnoy
199+
3200
## 3.3.9 - 2024-10-24 {#version-3-3-9}
4201

5202
### Improvements
@@ -333,7 +530,7 @@
333530

334531
* Patch by NAITOH Jun.
335532

336-
* Improved parse performance when an attribute has many `<`s.
533+
* Improved parse performance when an attribute has many `>`s.
337534

338535
* GH-126
339536

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)