jrjackson 0.4.15-java → 0.4.16-java

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f26e41f367e27c5ae624a779718fe260a94e479e0cddc22dec10c0957f689726
4
- data.tar.gz: ca6abb4cf890430110d1150cbc10de602bed9ea288a508d08d236c5164e89cf4
3
+ metadata.gz: ba3a6575a97381358dd1545cab46cd67180bdd1a7ce482bdf4fb449f5ff05b05
4
+ data.tar.gz: 4457a9ddeb2bf3dadceccc2e487c845b3b9d5f03461979236568b638e62eafd2
5
5
  SHA512:
6
- metadata.gz: 27b760f1feeb762030a94992052260a5cb376e55a6d1c3db58bb486d37c826c70fdb6e46d3b3daec5102a20c5d7a091cbb5c0adf926a77a1abb42847ac258827
7
- data.tar.gz: 1b3c25eb385ee1ee050329c185bb7095dc820213c60d8ca3b1059e9e26e27220ff66526e671ece4ace181df2536e79970861363e154b7d8ec969a626c292600b
6
+ metadata.gz: 4bb9543ea871c12404f0c43198028b7e82d102b79be9046e7f2078796e47620519a1762c37facf15b8ce292983847fb7c9e9cb187c58a7b115ef00863bd385d8
7
+ data.tar.gz: 8c2d0aa72ba4074137ee4d715b755f6a0406dd4b2ea47b4e9ddc96c1e8be8d420db47df1be0dfc21e99fe19c927cfa5b87d0d229dfb14cdb6994e6051bc7d1a1
data/Mavenfile CHANGED
@@ -14,7 +14,7 @@ properties 'project.build.sourceEncoding' => 'UTF-8',
14
14
 
15
15
  jar 'junit:junit', '4.11', :scope => :test
16
16
 
17
- jar 'org.jruby:jruby', '9.2.4.0', :scope => :provided
17
+ jar 'org.jruby:jruby', '9.2.13.0', :scope => :provided
18
18
 
19
19
  plugin :compiler, '3.1', :source => '1.8', :target => '1.8',
20
20
  :showDeprecation => false,
@@ -23,9 +23,3 @@ plugin :compiler, '3.1', :source => '1.8', :target => '1.8',
23
23
  :fork => true
24
24
 
25
25
  plugin :surefire, '2.17', :skipTests => true
26
-
27
- # since bundle install does not vendor our jars we need to it manually
28
- plugin 'org.torquebox.mojo:jruby9-exec-maven-plugin', '0.3.1' do
29
- execute_goal :exec, :id => 'vendor-jars', :phase => 'prepare-package',
30
- :script => "require 'jars/installer';Jars::Installer.vendor_jars!"
31
- end
data/README.md CHANGED
@@ -29,7 +29,7 @@ represents your custom object.
29
29
 
30
30
  11th May 2014 - Added to_time method call for Ruby object serialization
31
31
 
32
- 26th October 2013 - Added support to serialize arbitary (non JSON datatypes)
32
+ 26th October 2013 - Added support to serialize arbitrary (non JSON datatypes)
33
33
  ruby objects. Normally the toJava internal method is called, but additionally
34
34
  to_h, to_hash, to_a and finally to_json are tried. Be aware that the to_json
35
35
  method might invoke a new selialization session (i.e. it may use the JSON gem)
data/Rakefile CHANGED
@@ -16,6 +16,13 @@ end
16
16
  desc "Pack jar after compiling classes, use this to rebuild the pom.xml"
17
17
  task :compile do
18
18
  RubyMaven.exec('prepare-package')
19
+ # after packaging the jrjackson-x.y.z.jar vendor jar dependencies
20
+ Rake::Task['vendor_jars'].invoke
21
+ end
22
+
23
+ task :vendor_jars do
24
+ require 'jars/installer'
25
+ Jars::Installer.vendor_jars!
19
26
  end
20
27
 
21
28
  desc "Clean build"
@@ -30,4 +37,3 @@ Gem::PackageTask.new( eval File.read( 'jrjackson.gemspec' ) ) do
30
37
  desc 'Pack gem'
31
38
  task :package => [:compile]
32
39
  end
33
-
data/changelog.md CHANGED
@@ -1,3 +1,9 @@
1
+ v0.4.16
2
+ Publish v0.4.15 again without world writable files
3
+
4
+ v0.4.15
5
+ Bump jackson and jackson-databind to v2.13.3
6
+
1
7
  v0.4.14
2
8
  Bump jackson-databind to v2.9.10.8
3
9
 
data/jrjackson.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.license = 'Apache License 2.0'
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_development_dependency 'bundler', '~> 1.10'
21
+ s.add_development_dependency 'bundler'
22
22
  s.add_development_dependency 'jar-dependencies', '< 2.0', '>= 0.3.2'
23
23
 
24
24
  jackson_version = JrJackson::BuildInfo.jackson_version
@@ -1,11 +1,11 @@
1
1
  module JrJackson
2
2
  module BuildInfo
3
3
  def self.version
4
- '0.4.15'
4
+ '0.4.16'
5
5
  end
6
6
 
7
7
  def self.release_date
8
- '2022-06-02'
8
+ '2022-07-08'
9
9
  end
10
10
 
11
11
  def self.files
@@ -21,7 +21,7 @@ module JrJackson
21
21
  end
22
22
 
23
23
  def self.jar_version
24
- '1.2.32'
24
+ '1.2.33'
25
25
  end
26
26
 
27
27
  private
data/pom.xml CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>com.jrjackson.jruby</groupId>
13
13
  <artifactId>jrjackson</artifactId>
14
- <version>1.2.32</version>
14
+ <version>1.2.33</version>
15
15
  <name>A JRuby wrapper for the java jackson json processor jar</name>
16
16
  <description>A mostly native JRuby wrapper for the java jackson json processor jar</description>
17
17
  <url>http://github.com/guyboertje/jrjackson</url>
@@ -40,7 +40,7 @@ DO NOT MODIFY - GENERATED CODE
40
40
  <dependency>
41
41
  <groupId>rubygems</groupId>
42
42
  <artifactId>bundler</artifactId>
43
- <version>[1.10,1.99999]</version>
43
+ <version>[0,)</version>
44
44
  <type>gem</type>
45
45
  <scope>test</scope>
46
46
  </dependency>
@@ -80,7 +80,7 @@ DO NOT MODIFY - GENERATED CODE
80
80
  <dependency>
81
81
  <groupId>org.jruby</groupId>
82
82
  <artifactId>jruby</artifactId>
83
- <version>9.2.4.0</version>
83
+ <version>9.2.13.0</version>
84
84
  <scope>provided</scope>
85
85
  </dependency>
86
86
  </dependencies>
@@ -118,7 +118,7 @@ DO NOT MODIFY - GENERATED CODE
118
118
  </executions>
119
119
  <configuration>
120
120
  <outputDirectory>lib/jrjackson/jars</outputDirectory>
121
- <finalName>jrjackson-1.2.32</finalName>
121
+ <finalName>jrjackson-1.2.33</finalName>
122
122
  </configuration>
123
123
  </plugin>
124
124
  <plugin>
@@ -129,7 +129,7 @@ DO NOT MODIFY - GENERATED CODE
129
129
  <fileset>
130
130
  <directory>lib/jrjackson/jars</directory>
131
131
  <includes>
132
- <include>jrjackson-1.2.32.jar</include>
132
+ <include>jrjackson-1.2.33.jar</include>
133
133
  <include>*/**/*.jar</include>
134
134
  </includes>
135
135
  </fileset>
@@ -163,23 +163,6 @@ DO NOT MODIFY - GENERATED CODE
163
163
  <skipTests>true</skipTests>
164
164
  </configuration>
165
165
  </plugin>
166
- <plugin>
167
- <groupId>org.torquebox.mojo</groupId>
168
- <artifactId>jruby9-exec-maven-plugin</artifactId>
169
- <version>0.3.1</version>
170
- <executions>
171
- <execution>
172
- <id>vendor-jars</id>
173
- <phase>prepare-package</phase>
174
- <goals>
175
- <goal>exec</goal>
176
- </goals>
177
- <configuration>
178
- <script>require 'jars/installer';Jars::Installer.vendor_jars!</script>
179
- </configuration>
180
- </execution>
181
- </executions>
182
- </plugin>
183
166
  </plugins>
184
167
  </build>
185
168
  </project>
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jrjackson
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.15
4
+ version: 0.4.16
5
5
  platform: java
6
6
  authors:
7
7
  - Guy Boertje
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-02 00:00:00.000000000 Z
11
+ date: 2022-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
17
  - !ruby/object:Gem::Version
18
- version: '1.10'
18
+ version: '0'
19
19
  name: bundler
20
20
  prerelease: false
21
21
  type: :development
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '1.10'
26
+ version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
@@ -66,7 +66,7 @@ files:
66
66
  - lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.13.3/jackson-module-afterburner-2.13.3.jar
67
67
  - lib/jrjackson.rb
68
68
  - lib/jrjackson/build_info.rb
69
- - lib/jrjackson/jars/jrjackson-1.2.32.jar
69
+ - lib/jrjackson/jars/jrjackson-1.2.33.jar
70
70
  - lib/jrjackson/jrjackson.rb
71
71
  - lib/jrjackson_jars.rb
72
72
  - lib/require_relative_patch.rb
@@ -138,7 +138,7 @@ requirements:
138
138
  - jar com.fasterxml.jackson.core:jackson-annotations, 2.13.3
139
139
  - jar com.fasterxml.jackson.core:jackson-databind, 2.13.3
140
140
  - jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.13.3
141
- rubygems_version: 3.2.29
141
+ rubygems_version: 3.2.3
142
142
  signing_key:
143
143
  specification_version: 4
144
144
  summary: A JRuby wrapper for the java jackson json processor jar