embulk 0.8.20-java → 0.8.21-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 +4 -4
- data/build.gradle +1 -1
- data/embulk-core/build.gradle +1 -1
- data/embulk-docs/src/release.rst +1 -0
- data/embulk-docs/src/release/release-0.8.21.rst +17 -0
- data/embulk.gemspec +1 -1
- data/lib/embulk/command/embulk_run.rb +7 -7
- data/lib/embulk/version.rb +1 -1
- metadata +8 -7
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: d4bd80b40c744f4409d92e2a431b0e3332f145ab
         | 
| 4 | 
            +
              data.tar.gz: 2a3ae73793c955902701b03e350b1110637689f8
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: f7ed8a41d591bfe5d68cf37f477fdaeb9f694434b7f8ef98599faf8b8a80b4182dd6093fa020203ba431e52e3eb9019c4b023f7195433fada934c8049b445377
         | 
| 7 | 
            +
              data.tar.gz: 1490de3937dd2641b876c8162666218b6906a5cea45d99b1c740c9d99c474bb208b6fd1b22719eb16e2fd3e062017dec336a262855f3560732d7c3b9ab58e1a2
         | 
    
        data/build.gradle
    CHANGED
    
    
    
        data/embulk-core/build.gradle
    CHANGED
    
    
    
        data/embulk-docs/src/release.rst
    CHANGED
    
    
| @@ -0,0 +1,17 @@ | |
| 1 | 
            +
            Release 0.8.21
         | 
| 2 | 
            +
            ==================================
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            General Changes
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Minor fix:
         | 
| 8 | 
            +
             | 
| 9 | 
            +
              * Fixed embulk/command/embulk_run.rb to use Ruby's Embulk::VERSION_INTERNAL to fix #625. [#626]
         | 
| 10 | 
            +
             | 
| 11 | 
            +
              * Updated msgpack in embulk.gemspec. (@hiroyuki-sato) [#623]
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              * Downgraded liquid 4.0.0 to 3.0.6 to fix #627. [#632]
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            Release Date
         | 
| 16 | 
            +
            ------------------
         | 
| 17 | 
            +
            2017-05-15
         | 
    
        data/embulk.gemspec
    CHANGED
    
    | @@ -22,7 +22,7 @@ Gem::Specification.new do |gem| | |
| 22 22 |  | 
| 23 23 | 
             
              if RUBY_PLATFORM =~ /java/i
         | 
| 24 24 | 
             
                gem.add_dependency "bundler", '>= 1.10.6'
         | 
| 25 | 
            -
                gem.add_dependency "msgpack", '~>  | 
| 25 | 
            +
                gem.add_dependency "msgpack", '~> 1.1.0'
         | 
| 26 26 | 
             
                gem.add_dependency "liquid", '~> 3.0.6'
         | 
| 27 27 |  | 
| 28 28 | 
             
                # For embulk/guess/charset.rb. See also embulk-core/build.gradle
         | 
| @@ -11,7 +11,7 @@ module Embulk | |
| 11 11 | 
             
                i = argv.find_index {|arg| arg !~ /^\-/ }
         | 
| 12 12 | 
             
                unless i
         | 
| 13 13 | 
             
                  if argv.include?('--version')
         | 
| 14 | 
            -
                    puts "embulk #{ | 
| 14 | 
            +
                    puts "embulk #{Embulk::VERSION_INTERNAL}"
         | 
| 15 15 | 
             
                    system_exit_success
         | 
| 16 16 | 
             
                  end
         | 
| 17 17 | 
             
                  usage nil
         | 
| @@ -21,9 +21,9 @@ module Embulk | |
| 21 21 | 
             
                require 'java'
         | 
| 22 22 | 
             
                require 'optparse'
         | 
| 23 23 | 
             
                op = OptionParser.new
         | 
| 24 | 
            -
                op.version =  | 
| 24 | 
            +
                op.version = Embulk::VERSION_INTERNAL
         | 
| 25 25 |  | 
| 26 | 
            -
                puts "#{Time.now.strftime("%Y-%m-%d %H:%M:%S.%3N %z")}: Embulk v#{ | 
| 26 | 
            +
                puts "#{Time.now.strftime("%Y-%m-%d %H:%M:%S.%3N %z")}: Embulk v#{Embulk::VERSION_INTERNAL}"
         | 
| 27 27 |  | 
| 28 28 | 
             
                plugin_paths = []
         | 
| 29 29 | 
             
                load_paths = []
         | 
| @@ -229,13 +229,13 @@ examples: | |
| 229 229 | 
             
                  (org.embulk.cli.EmbulkExample.new).createExample(ARGV[0] || "embulk-example")
         | 
| 230 230 |  | 
| 231 231 | 
             
                when :new
         | 
| 232 | 
            -
                  (org.embulk.cli.EmbulkNew.new(ARGV[0], ARGV[1],  | 
| 232 | 
            +
                  (org.embulk.cli.EmbulkNew.new(ARGV[0], ARGV[1], Embulk::VERSION_INTERNAL)).newPlugin()
         | 
| 233 233 |  | 
| 234 234 | 
             
                when :migrate
         | 
| 235 | 
            -
                  (org.embulk.cli.EmbulkMigrate.new).migratePlugin(ARGV[0],  | 
| 235 | 
            +
                  (org.embulk.cli.EmbulkMigrate.new).migratePlugin(ARGV[0], Embulk::VERSION_INTERNAL)
         | 
| 236 236 |  | 
| 237 237 | 
             
                when :selfupdate
         | 
| 238 | 
            -
                  (org.embulk.cli.EmbulkSelfUpdate.new).updateSelf( | 
| 238 | 
            +
                  (org.embulk.cli.EmbulkSelfUpdate.new).updateSelf(Embulk::VERSION_INTERNAL,
         | 
| 239 239 | 
             
                                                                   ARGV[0],
         | 
| 240 240 | 
             
                                                                   __FILE__,
         | 
| 241 241 | 
             
                                                                   options[:force])
         | 
| @@ -361,7 +361,7 @@ examples: | |
| 361 361 | 
             
              end
         | 
| 362 362 |  | 
| 363 363 | 
             
              def self.usage(message)
         | 
| 364 | 
            -
                STDERR.puts "Embulk v#{ | 
| 364 | 
            +
                STDERR.puts "Embulk v#{Embulk::VERSION_INTERNAL}"
         | 
| 365 365 | 
             
                STDERR.puts "Usage: embulk [-vm-options] <command> [--options]"
         | 
| 366 366 | 
             
                STDERR.puts "Commands:"
         | 
| 367 367 | 
             
                STDERR.puts "   mkbundle   <directory>                             # create a new plugin bundle environment."
         | 
    
        data/lib/embulk/version.rb
    CHANGED
    
    | @@ -3,7 +3,7 @@ | |
| 3 3 | 
             
            module Embulk
         | 
| 4 4 | 
             
              @@warned = false
         | 
| 5 5 |  | 
| 6 | 
            -
              VERSION_INTERNAL = '0.8. | 
| 6 | 
            +
              VERSION_INTERNAL = '0.8.21'
         | 
| 7 7 |  | 
| 8 8 | 
             
              DEPRECATED_MESSAGE = 'Embulk::VERSION in (J)Ruby is deprecated. Use org.embulk.EmbulkVersion::VERSION instead. If this message is from a plugin, please tell this to the author of the plugin!'
         | 
| 9 9 | 
             
              def self.const_missing(name)
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: embulk
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.8. | 
| 4 | 
            +
              version: 0.8.21
         | 
| 5 5 | 
             
            platform: java
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Sadayuki Furuhashi
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2017-05- | 
| 11 | 
            +
            date: 2017-05-15 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -29,7 +29,7 @@ dependencies: | |
| 29 29 | 
             
                requirements:
         | 
| 30 30 | 
             
                - - "~>"
         | 
| 31 31 | 
             
                  - !ruby/object:Gem::Version
         | 
| 32 | 
            -
                    version:  | 
| 32 | 
            +
                    version: 1.1.0
         | 
| 33 33 | 
             
              name: msgpack
         | 
| 34 34 | 
             
              prerelease: false
         | 
| 35 35 | 
             
              type: :runtime
         | 
| @@ -37,7 +37,7 @@ dependencies: | |
| 37 37 | 
             
                requirements:
         | 
| 38 38 | 
             
                - - "~>"
         | 
| 39 39 | 
             
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            -
                    version:  | 
| 40 | 
            +
                    version: 1.1.0
         | 
| 41 41 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 42 42 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 43 43 | 
             
                requirements:
         | 
| @@ -150,9 +150,9 @@ files: | |
| 150 150 | 
             
            - classpath/commons-compress-1.10.jar
         | 
| 151 151 | 
             
            - classpath/commons-lang-2.4.jar
         | 
| 152 152 | 
             
            - classpath/commons-lang3-3.4.jar
         | 
| 153 | 
            -
            - classpath/embulk-cli-0.8. | 
| 154 | 
            -
            - classpath/embulk-core-0.8. | 
| 155 | 
            -
            - classpath/embulk-standards-0.8. | 
| 153 | 
            +
            - classpath/embulk-cli-0.8.21.jar
         | 
| 154 | 
            +
            - classpath/embulk-core-0.8.21.jar
         | 
| 155 | 
            +
            - classpath/embulk-standards-0.8.21.jar
         | 
| 156 156 | 
             
            - classpath/guava-18.0.jar
         | 
| 157 157 | 
             
            - classpath/guice-4.0.jar
         | 
| 158 158 | 
             
            - classpath/guice-bootstrap-0.1.1.jar
         | 
| @@ -488,6 +488,7 @@ files: | |
| 488 488 | 
             
            - embulk-docs/src/release/release-0.8.19.rst
         | 
| 489 489 | 
             
            - embulk-docs/src/release/release-0.8.2.rst
         | 
| 490 490 | 
             
            - embulk-docs/src/release/release-0.8.20.rst
         | 
| 491 | 
            +
            - embulk-docs/src/release/release-0.8.21.rst
         | 
| 491 492 | 
             
            - embulk-docs/src/release/release-0.8.3.rst
         | 
| 492 493 | 
             
            - embulk-docs/src/release/release-0.8.4.rst
         | 
| 493 494 | 
             
            - embulk-docs/src/release/release-0.8.5.rst
         |