protobuf 2.8.2 → 2.8.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d44db7fad20c57a27c5b7df503571c5d22aaad70
4
- data.tar.gz: 18be880b13f13ce7b699e3b4ac9cc72bb7fa4736
3
+ metadata.gz: 99faa34dcab90672042c22bf0d26d6f4c0a4c744
4
+ data.tar.gz: 20ebf82a6795eae334a29e5bcc1e8f6e4256bfd5
5
5
  SHA512:
6
- metadata.gz: 90b2b7de26ceb4482214d2f1ca65185d3b9d7d01b718d5304b4f5d295cd8693df685c7bba363cd0798f69e82acd55f2d17cda890997c29b1c6feee54b86fad3f
7
- data.tar.gz: 4495ec1541d52078a1a9cb968e81f0235b0f04e9df7512eb815484de96f0fa53233b4e3fb33e3762347d19803ee7788b62a10550e1f7f397036f396e171abb1a
6
+ metadata.gz: f28ad5326df4358721e6ffd7924f2acdfd6cd5931b8a2fff9b7d57bd44e8adb67e3617a79d03621437c7206c1f4c3e56b2e1bc64ff1ca85ae8158a7d7bb71cfb
7
+ data.tar.gz: 88dcfaa540f8d5357eb0825cba17c60d4197cf57bd8345f39053f2e00a4fbe341fedb494e783e97ea722477cd4f789d30b4effb925df8e5bb945714b19d79554
data/CHANGES.md CHANGED
@@ -1,3 +1,8 @@
1
+ 2.8.3
2
+ ----------
3
+
4
+ - Add Deprecation warning when requiring `protobuf/evented`. Version 3.x will not support the eventmachine transport layer for client or server.
5
+
1
6
  2.8.2
2
7
  ----------
3
8
 
@@ -13,6 +13,21 @@
13
13
  #
14
14
  # gem 'protobuf', :require => 'protobuf/evented'
15
15
  #
16
+ $stderr.puts <<-WARN
17
+ [DEPRECATED] You are using the evented connector and/or server which has been deprecated.
18
+ Versions >= 3.0 will no longer provide the evented module for clients
19
+ and servers. You should upgrade to the socket or zmq transport configurations.
20
+
21
+ To upgrade your rpc_server, simply replace `--evented` option
22
+ with `--socket` or `--zmq`. If you are using the `PB_CLIENT_TYPE`
23
+ env variable, simply assign it to socket or zmq.
24
+
25
+ If you are requiring the gem in your gemfile expclitly, change
26
+ the require to match your chosen transport type:
27
+
28
+ `gem 'protobuf', :require => 'protobuf/socket'`
29
+ WARN
30
+
16
31
  require 'protobuf'
17
32
  Protobuf.connector_type = :evented
18
33
 
@@ -1,4 +1,4 @@
1
1
  module Protobuf
2
- VERSION = '2.8.2'
2
+ VERSION = '2.8.3'
3
3
  PROTOC_VERSION = '2.5.0'
4
4
  end
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: 2.8.2
4
+ version: 2.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - BJ Neilsen
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-09-03 00:00:00.000000000 Z
13
+ date: 2013-09-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport