volt 0.9.6.pre3 → 0.9.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +17 -0
  3. data/lib/volt/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af40ada934fde21bab3077199e52634e939d0316
4
- data.tar.gz: 6029344175c2e1fb6004226f3b7a83cc04420d90
3
+ metadata.gz: 1fe04baec1557acb6a08015750b7d20fad493f47
4
+ data.tar.gz: e2da487f9ee5fb406dcf7f4090bed2dda65f92f3
5
5
  SHA512:
6
- metadata.gz: a83fff0163894a9d6bb91d2d50a4e746632c6650420522cd5c08442442de3ab71ca710e2b146bbd328990a9f9303e3e54e3bb43599458c4745532df8219e3773
7
- data.tar.gz: 9587b05a0126bc352bc1d003d53380b3cd1ae0fb3f0ac9c2a02e2ba83c39c2aa2bd35e11a745c8e9a2cafc76ae8f4dc0673a8187d3ff5da611a91026ed47f866
6
+ metadata.gz: 1f71474b6ed762a6662e38d6ab179e50003ce21a172b4514d9608283b90f2f24c93a8ced63284795a5e23e028a0208061c29651441c27d5cc5958d5e2517501d
7
+ data.tar.gz: d2ae18337a6654e85864f98b8adf4cd081c0d401045d5882a82b62fbcaf8284c5d1a6f5d6c531dfb6383670c795e56b0570c69f71ee64a97b0c049642b6ca9fa
@@ -1,13 +1,30 @@
1
1
  # Change Log
2
2
 
3
3
  ## 0.9.6
4
+ 0.9.6 is mostly a bug fix release with a few minor features.
5
+
4
6
  ### Added
5
7
  - @merongivian was kind enough to add Spanish traslations to the docs: (http://docs.voltframework.com/es/index.html)
8
+ - @alexandred added user_connect/disconnect events (see docs)
9
+ - added a data transformer class used internally, but can also be used externally
10
+ - You can now boot apps in any ruby file by doing:
11
+ ```ruby
12
+ require 'volt/boot'
13
+ Volt.boot(Dir.pwd)
14
+ ```
6
15
 
7
16
  ### Changed
8
17
  - Finally tracked down an illusive memory leak.
9
18
  - Computations now raise an error on their inital run, then log errors (via Volt.logger.error(..)) when running again (since they update on next tick)
10
19
  - fixed template caching issue
20
+ - upgrade the volt-mongo gem to mongo gem 2.1
21
+ - fixed issue with https web socket connection
22
+ - improved errors when returning objects from Tasks that can't be serialized
23
+ - validate! on models now rejects the promise when the model has errors.
24
+ - fixed template caching issue
25
+ - fixed page stash issue
26
+ - fixed Gemfile issue on windows
27
+ - fixed a memory leak
11
28
 
12
29
  ## 0.9.5
13
30
  ### Breaking Changes
@@ -1,5 +1,5 @@
1
1
  module Volt
2
2
  module Version
3
- STRING = '0.9.6.pre3'
3
+ STRING = '0.9.6'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: volt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6.pre3
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Stout
@@ -884,9 +884,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
884
884
  version: '2.1'
885
885
  required_rubygems_version: !ruby/object:Gem::Requirement
886
886
  requirements:
887
- - - ">"
887
+ - - ">="
888
888
  - !ruby/object:Gem::Version
889
- version: 1.3.1
889
+ version: '0'
890
890
  requirements: []
891
891
  rubyforge_project:
892
892
  rubygems_version: 2.4.5