torquebox 4.0.0.alpha1-java → 4.0.0.beta1-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/CHANGELOG.md +39 -0
- data/README.md +16 -18
- metadata +51 -9
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: dbddc0748a3d93512f55503831be9877070a36d1
         | 
| 4 | 
            +
              data.tar.gz: 66397424505b6366863b5c2a84a1d08d9119b57a
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 85fef3a5f0091586a631aad9416ed24ddf3e21386de9081313cee5bbd678b54e311bc182d5c64df21c41d43531ad644ce31b7927cd552462579baad481c9fec3
         | 
| 7 | 
            +
              data.tar.gz: d54759a20043f23b9693b9284b109d75835103dd4263398c3b356c655514d5d855b1d48037ff94ac0bb03d44d57b018ca51f48f9842e8053583015952b10ccd2
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,3 +1,42 @@ | |
| 1 | 
            +
            ## 4.0.0.beta1
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            * The 'torquebox' gem was missing gem dependencies on
         | 
| 4 | 
            +
              'torquebox-caching' and 'torquebox-messaging'. This has been fixed.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            * Streaming of responses when not using chunked transfer-encoding is
         | 
| 7 | 
            +
              fixed. Previously, the response wouldn't be streamed and only get
         | 
| 8 | 
            +
              sent when the response was finished. This impacts Rail's
         | 
| 9 | 
            +
              response.stream, SSE, etc. Anything using chunked transfer-encoding
         | 
| 10 | 
            +
              worked fine and will continue to work fine.
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Bundler wasn't being packaged inside executable jars created with
         | 
| 13 | 
            +
              'torquebox jar' if Bundler was installed in a non-standard
         | 
| 14 | 
            +
              $GEM_HOME. The logic now looks at Gem.path instead of
         | 
| 15 | 
            +
              Gem.default_path, and thus should respect $GEM_HOME.
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            * Recent versions of Nokogiri will once again work when an app is
         | 
| 18 | 
            +
              packaged as a .war and deployed to WildFly.
         | 
| 19 | 
            +
             | 
| 20 | 
            +
            * Passing "--env foo" to the "torquebox war" command no longer results
         | 
| 21 | 
            +
              in "NoMethodError: undefined method `[]=' for
         | 
| 22 | 
            +
              nil:Nilclass". Previously, this error would happen anytime you used
         | 
| 23 | 
            +
              the "--env" flag unless you also used the "--envvar FOO=BAR" flag to
         | 
| 24 | 
            +
              set some environment variable earlier in the command.
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            * Development moved to the 'master' branch instead of 'torqbox'
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            * The Rack Hijack API has been partially implemented. The only tested
         | 
| 29 | 
            +
              use of this is with the `tubesock` gem for WebSocket support.
         | 
| 30 | 
            +
             | 
| 31 | 
            +
            * Print out the host and port that web is listening on when
         | 
| 32 | 
            +
              programmatically started with :auto_start set to true.
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            * Wars generated with 'torquebox war' can now be run directly with
         | 
| 35 | 
            +
              `java -jar foo.war`, just like jars.
         | 
| 36 | 
            +
             | 
| 37 | 
            +
            * Scripts can now be run from inside packaged jar and war files using
         | 
| 38 | 
            +
              "-S".  Ex: `java -jar my_rails_app.jar -S rake db:migrate`
         | 
| 39 | 
            +
             | 
| 1 40 | 
             
            ## 4.0.0.alpha1 - Big Changes
         | 
| 2 41 |  | 
| 3 42 | 
             
            * The gem previous known as 'torqbox' is now 'torquebox-web'
         | 
    
        data/README.md
    CHANGED
    
    | @@ -27,9 +27,9 @@ usage, and deployment of TorqueBox 4. | |
| 27 27 |  | 
| 28 28 | 
             
            ### Requirements
         | 
| 29 29 |  | 
| 30 | 
            -
            TorqueBox requires JRuby 1.7.x  | 
| 31 | 
            -
             | 
| 32 | 
            -
            should work on earlier versions.
         | 
| 30 | 
            +
            TorqueBox requires JRuby 1.7.x (in 1.9 or 2.0 mode) or JRuby 9.x.x
         | 
| 31 | 
            +
            running on Java 7+. The code has only been tested on JRuby 1.7.6 and
         | 
| 32 | 
            +
            higher but should work on earlier versions.
         | 
| 33 33 |  | 
| 34 34 | 
             
            ### Installation
         | 
| 35 35 |  | 
| @@ -141,31 +141,31 @@ takes quite a bit longer, but is what CI runs. | |
| 141 141 |  | 
| 142 142 | 
             
            ### Preparation
         | 
| 143 143 |  | 
| 144 | 
            -
            TorqueBox 4 is released from the ` | 
| 144 | 
            +
            TorqueBox 4 is released from the `master` branch of
         | 
| 145 145 | 
             
            [torquebox/torquebox-release][release_repo].
         | 
| 146 146 |  | 
| 147 147 | 
             
            Set up this repository as an additional remote for your workspace:
         | 
| 148 148 |  | 
| 149 149 | 
             
                git remote add release git@github.com:torquebox/torquebox-release.git
         | 
| 150 150 |  | 
| 151 | 
            -
            Ensure that the ` | 
| 151 | 
            +
            Ensure that the `master` branch has the contents you wish to release.  Using the `-f`
         | 
| 152 152 | 
             
            flag to force is allowed in this case, since the **torquebox-release** repository is not
         | 
| 153 153 | 
             
            a public-facing human-cloneable repository.
         | 
| 154 154 |  | 
| 155 | 
            -
                git push release  | 
| 155 | 
            +
                git push release master:master -f
         | 
| 156 156 |  | 
| 157 157 |  | 
| 158 158 | 
             
            ### Perform the build
         | 
| 159 159 |  | 
| 160 160 | 
             
            Using the [build system](http://projectodd.ci.cloudbees.com/), select
         | 
| 161 161 | 
             
            the **torquebox4-release** job, entering in the branch to release from
         | 
| 162 | 
            -
            (usually ' | 
| 162 | 
            +
            (usually 'master'), the version to release, and the next version
         | 
| 163 163 | 
             
            after release.
         | 
| 164 164 |  | 
| 165 165 | 
             
            If something goes wrong in the release job and it needs to run again,
         | 
| 166 166 | 
             
            be sure to reset the torquebox-release repository with the correct code first:
         | 
| 167 167 |  | 
| 168 | 
            -
                git push release  | 
| 168 | 
            +
                git push release master:master -f
         | 
| 169 169 |  | 
| 170 170 | 
             
            ### Deploy RubyGems
         | 
| 171 171 |  | 
| @@ -178,20 +178,18 @@ using: | |
| 178 178 | 
             
            You'll have to be an owner of the gems to do this. Bug bbrowning,
         | 
| 179 179 | 
             
            bobmcw, or tcrawley if you are not.
         | 
| 180 180 |  | 
| 181 | 
            -
            ###  | 
| 181 | 
            +
            ### Publish the release API documentation
         | 
| 182 182 |  | 
| 183 | 
            -
             | 
| 184 | 
            -
             | 
| 185 | 
            -
             | 
| 186 | 
            -
            torquebox.org. No preparation or modification of the release
         | 
| 187 | 
            -
            repository is needed.  In fact, the exact tag pushed by the primary
         | 
| 188 | 
            -
            **torquebox-release** job is required to build the docs.
         | 
| 183 | 
            +
            The release API docs are built by the release job on CI. Download
         | 
| 184 | 
            +
            those and put them a _4x_docs/<version>/yardoc folder in the
         | 
| 185 | 
            +
            torquebox.org git repo.
         | 
| 189 186 |  | 
| 190 187 | 
             
            ### Push changes from the release repository to the official repository
         | 
| 191 188 |  | 
| 192 | 
            -
                git fetch release
         | 
| 193 | 
            -
                git merge release/ | 
| 194 | 
            -
                git push origin  | 
| 189 | 
            +
                git fetch release --tags
         | 
| 190 | 
            +
                git merge release/master
         | 
| 191 | 
            +
                git push origin master
         | 
| 192 | 
            +
                git push origin <release_tag>
         | 
| 195 193 |  | 
| 196 194 | 
             
            ### Release the project in JIRA
         | 
| 197 195 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: torquebox
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 4.0.0. | 
| 4 | 
            +
              version: 4.0.0.beta1
         | 
| 5 5 | 
             
            platform: java
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - The TorqueBox Team
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 11 | 
            +
            date: 2015-06-10 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: torquebox-core
         | 
| @@ -16,12 +16,40 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - '='
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: 4.0.0. | 
| 19 | 
            +
                    version: 4.0.0.beta1
         | 
| 20 20 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 21 21 | 
             
                requirements:
         | 
| 22 22 | 
             
                - - '='
         | 
| 23 23 | 
             
                  - !ruby/object:Gem::Version
         | 
| 24 | 
            -
                    version: 4.0.0. | 
| 24 | 
            +
                    version: 4.0.0.beta1
         | 
| 25 | 
            +
              prerelease: false
         | 
| 26 | 
            +
              type: :runtime
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: torquebox-caching
         | 
| 29 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - '='
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: 4.0.0.beta1
         | 
| 34 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 35 | 
            +
                requirements:
         | 
| 36 | 
            +
                - - '='
         | 
| 37 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 38 | 
            +
                    version: 4.0.0.beta1
         | 
| 39 | 
            +
              prerelease: false
         | 
| 40 | 
            +
              type: :runtime
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: torquebox-messaging
         | 
| 43 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - '='
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: 4.0.0.beta1
         | 
| 48 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 49 | 
            +
                requirements:
         | 
| 50 | 
            +
                - - '='
         | 
| 51 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 52 | 
            +
                    version: 4.0.0.beta1
         | 
| 25 53 | 
             
              prerelease: false
         | 
| 26 54 | 
             
              type: :runtime
         | 
| 27 55 | 
             
            - !ruby/object:Gem::Dependency
         | 
| @@ -30,12 +58,12 @@ dependencies: | |
| 30 58 | 
             
                requirements:
         | 
| 31 59 | 
             
                - - '='
         | 
| 32 60 | 
             
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            -
                    version: 4.0.0. | 
| 61 | 
            +
                    version: 4.0.0.beta1
         | 
| 34 62 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 35 63 | 
             
                requirements:
         | 
| 36 64 | 
             
                - - '='
         | 
| 37 65 | 
             
                  - !ruby/object:Gem::Version
         | 
| 38 | 
            -
                    version: 4.0.0. | 
| 66 | 
            +
                    version: 4.0.0.beta1
         | 
| 39 67 | 
             
              prerelease: false
         | 
| 40 68 | 
             
              type: :runtime
         | 
| 41 69 | 
             
            - !ruby/object:Gem::Dependency
         | 
| @@ -44,12 +72,12 @@ dependencies: | |
| 44 72 | 
             
                requirements:
         | 
| 45 73 | 
             
                - - '='
         | 
| 46 74 | 
             
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            -
                    version: 4.0.0. | 
| 75 | 
            +
                    version: 4.0.0.beta1
         | 
| 48 76 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 49 77 | 
             
                requirements:
         | 
| 50 78 | 
             
                - - '='
         | 
| 51 79 | 
             
                  - !ruby/object:Gem::Version
         | 
| 52 | 
            -
                    version: 4.0.0. | 
| 80 | 
            +
                    version: 4.0.0.beta1
         | 
| 53 81 | 
             
              prerelease: false
         | 
| 54 82 | 
             
              type: :runtime
         | 
| 55 83 | 
             
            - !ruby/object:Gem::Dependency
         | 
| @@ -136,6 +164,20 @@ dependencies: | |
| 136 164 | 
             
                    version: 1.5.1
         | 
| 137 165 | 
             
              prerelease: false
         | 
| 138 166 | 
             
              type: :development
         | 
| 167 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 168 | 
            +
              name: websocket-client-simple
         | 
| 169 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 170 | 
            +
                requirements:
         | 
| 171 | 
            +
                - - ~>
         | 
| 172 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 173 | 
            +
                    version: 0.2.2
         | 
| 174 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 175 | 
            +
                requirements:
         | 
| 176 | 
            +
                - - ~>
         | 
| 177 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 178 | 
            +
                    version: 0.2.2
         | 
| 179 | 
            +
              prerelease: false
         | 
| 180 | 
            +
              type: :development
         | 
| 139 181 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 140 182 | 
             
              name: activesupport
         | 
| 141 183 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| @@ -243,7 +285,7 @@ files: | |
| 243 285 | 
             
            - CHANGELOG.md
         | 
| 244 286 | 
             
            - README.md
         | 
| 245 287 | 
             
            - LICENSE
         | 
| 246 | 
            -
            homepage: http://torquebox.org/ | 
| 288 | 
            +
            homepage: http://torquebox.org/4x
         | 
| 247 289 | 
             
            licenses:
         | 
| 248 290 | 
             
            - Apache-2.0
         | 
| 249 291 | 
             
            metadata: {}
         |