protobuf 3.0.0.rc2 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +7 -17
- data/lib/protobuf/version.rb +1 -1
- data/spec/lib/protobuf/rpc/middleware/logger_spec.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: feddea356bf59f68e37664372a458f1573d54923
|
4
|
+
data.tar.gz: 9e8950a881ea6b3433dede11594f8cf57b72154f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f914482a71eb64f8097dceb55fafd2b18abc5eff4198082fdd642c479e78221a65139b9015eb55b78fed21a7055bca1e938301eb2245cb8cbb7d6f77064a9cc
|
7
|
+
data.tar.gz: e6c14db07c7c0b7424cabf2a485b779586ef810737aaaa482f9225715923c2a3afabe81f14e8c7a2a1c1f957c1b2a981c2b13afe13ec8d6a19a09758de7dbfe9
|
data/CHANGES.md
CHANGED
@@ -1,20 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# Stable (3.x)
|
2
2
|
|
3
|
-
3.0.0
|
3
|
+
3.0.0
|
4
4
|
---------
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
- Add support for assigning a symbol to a string or bytes field. [#181, @abrandoned]
|
9
|
-
- Add `first_alive_load_balance` option to rpc server. Pass `PB_FIRST_ALIVE_LOAD_BALANCE`
|
10
|
-
as an env variable to the client process to ensure the client asks the server
|
11
|
-
if it is alive (able to server requests to clients). [#183, @abrandoned]
|
12
|
-
|
13
|
-
|
14
|
-
3.0.0.rc1
|
15
|
-
---------
|
16
|
-
|
17
|
-
A lot has changed leading up to the release of 3.0. For all the relevant changes,
|
6
|
+
A lot has changed since the last stable v2.8.12. For all the relevant changes,
|
18
7
|
see the closed [pull requests and issues list in github](https://github.com/localshred/protobuf/issues?milestone=1&state=closed).
|
19
8
|
Below is a high-level list of fixes, deprecations, breaking changes, and new APIs.
|
20
9
|
|
@@ -90,9 +79,10 @@ __!! NOTE: These deprecated methods will be removed in v3.1. !!__
|
|
90
79
|
- `Server` now invokes the [middleware stack](https://github.com/localshred/protobuf/tree/master/lib/protobuf/rpc/middleware) for request handling. [#159, @liveh2o]
|
91
80
|
- Added `protobuf:compile` and `protobuf:clean` rake tasks. Simply `load 'protobuf/tasks/compile.rake'` in your Rakefile (see `compile.rake` for arguments and usage). [#142, #143]
|
92
81
|
- Add `Protobuf::Deprecator` module to alias deprecated methods. [#165]
|
93
|
-
|
94
|
-
|
95
|
-
|
82
|
+
- Add support for assigning a symbol to a string or bytes field. [#181, @abrandoned]
|
83
|
+
- Add `first_alive_load_balance` option to rpc server. Pass `PB_FIRST_ALIVE_LOAD_BALANCE`
|
84
|
+
as an env variable to the client process to ensure the client asks the server
|
85
|
+
if it is alive (able to server requests to clients). [#183, @abrandoned]
|
96
86
|
|
97
87
|
2.8.12
|
98
88
|
---------
|
data/lib/protobuf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BJ Neilsen
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-02-
|
14
|
+
date: 2014-02-26 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: activesupport
|
@@ -383,9 +383,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
383
383
|
version: '0'
|
384
384
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
385
385
|
requirements:
|
386
|
-
- - '
|
386
|
+
- - '>='
|
387
387
|
- !ruby/object:Gem::Version
|
388
|
-
version:
|
388
|
+
version: '0'
|
389
389
|
requirements: []
|
390
390
|
rubyforge_project:
|
391
391
|
rubygems_version: 2.1.2
|