rexml 3.2.3 → 3.2.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rexml might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 50a1edf481c0166f41419e4ec6a7281db35e46a480c321f5f536afedc243c582
4
- data.tar.gz: 2fe98cd4b1f91b895362f49d1026f6e712ce218edfda7e51e108477fc274a65a
3
+ metadata.gz: e09eaebc2e8b94e90c9529f88060a7aa21cbaed09fe2f424d1293cf5a9e19785
4
+ data.tar.gz: 3c9d5d8a428c10037df1b93de84f9420b31caccd435d903361f7d9d3b5b49da5
5
5
  SHA512:
6
- metadata.gz: f0babb3c1a90a87879c923edec9dc99704fe2d27a7b1c36aeefd0dc5dccc7f5aefa4f7223149ca9bc079cd4fa30128ee289d16f398cdcc4e75378212439b73d4
7
- data.tar.gz: 920401977f208f24670de80b771a50915347471bba9c6a20a5672318d177c2f830c57aac1257dac5c7d93c3c4b505d307bae9955824e5867af42f94287c7dc4e
6
+ metadata.gz: 17f5224c52c6ec2f5388545f34167f486a826eeba5d9bd83f69e7bf59e194e2ee8d738a6625749dd282961b1c4ec2f3d028cd7935eff58dc3882a5272b440c5c
7
+ data.tar.gz: 04e0b736f5d40c3585582ffa3db301a94c116ff3d2152f911414b04917979e3c9defca5c5f98088962cde6491adec37bc6d774b5e8693cd954148d7d6fc22268
data/NEWS.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # News
2
2
 
3
+ ## 3.2.4 - 2020-01-31 {#version-3-2-4}
4
+
5
+ ### Improvements
6
+
7
+ * Don't use `taint` with Ruby 2.7 or later.
8
+ [GitHub#21][Patch by Jeremy Evans]
9
+
10
+ ### Fixes
11
+
12
+ * Fixed a `elsif` typo.
13
+ [GitHub#22][Patch by Nobuyoshi Nakada]
14
+
15
+ ### Thanks
16
+
17
+ * Jeremy Evans
18
+
19
+ * Nobuyoshi Nakada
20
+
3
21
  ## 3.2.3 - 2019-10-12 {#version-3-2-3}
4
22
 
5
23
  ### Fixes
@@ -90,7 +90,7 @@ module REXML
90
90
  # object itself is valid.)
91
91
  #
92
92
  # out::
93
- # An object implementing <TT>&lt;&lt;<TT> to which the entity will be
93
+ # An object implementing <TT>&lt;&lt;</TT> to which the entity will be
94
94
  # output
95
95
  # indent::
96
96
  # *DEPRECATED* and ignored
@@ -24,7 +24,7 @@
24
24
  module REXML
25
25
  COPYRIGHT = "Copyright © 2001-2008 Sean Russell <ser@germane-software.com>"
26
26
  DATE = "2008/019"
27
- VERSION = "3.2.3"
27
+ VERSION = "3.2.4"
28
28
  REVISION = ""
29
29
 
30
30
  Copyright = COPYRIGHT
@@ -200,7 +200,7 @@ module REXML
200
200
  end
201
201
  rv = super
202
202
  end
203
- rv.taint
203
+ rv.taint if RUBY_VERSION < '2.7'
204
204
  rv
205
205
  end
206
206
 
@@ -228,7 +228,7 @@ module REXML
228
228
  @source = nil
229
229
  end
230
230
  end
231
- rv.taint
231
+ rv.taint if RUBY_VERSION < '2.7'
232
232
  rv
233
233
  end
234
234
 
@@ -109,7 +109,7 @@ module REXML
109
109
  @string = arg.instance_variable_get(:@string).dup
110
110
  @raw = arg.raw
111
111
  @entity_filter = arg.instance_variable_get(:@entity_filter)
112
- elsif
112
+ else
113
113
  raise "Illegal argument of type #{arg.type} for Text constructor (#{arg})"
114
114
  end
115
115
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rexml
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.3
4
+ version: 3.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-10-11 00:00:00.000000000 Z
11
+ date: 2020-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler