qpid_proton 0.31.0 → 0.35.0

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.
@@ -105,9 +105,10 @@ module Qpid::Proton
105
105
  # Configures the level of verification used on the peer certificate.
106
106
  #
107
107
  # This method congtrols how the peer's certificate is validated, if at all.
108
- # By default, neither servers nor clients attempt to verify their peers
109
- # (*ANONYMOUS_PEER*). Once certficates and trusted CAs are configured, peer
110
- # verification can be enabled.
108
+ # By default, servers do not attempt to verify their peers
109
+ # (*ANONYMOUS_PEER*) but clients attempt to verify both the certificate and
110
+ # peer name (*VERIFY_PEER_NAME*). Once certficates and trusted CAs are
111
+ # configured, peer verification can be enabled.
111
112
  #
112
113
  # *NOTE:* In order to verify a peer, a trusted CA must be configured.
113
114
  #
@@ -0,0 +1,32 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one
2
+ # or more contributor license agreements. See the NOTICE file
3
+ # distributed with this work for additional information
4
+ # regarding copyright ownership. The ASF licenses this file
5
+ # to you under the Apache License, Version 2.0 (the
6
+ # "License"); you may not use this file except in compliance
7
+ # with the License. You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+
19
+ if ENV['COVERAGE']
20
+ require 'simplecov'
21
+ SimpleCov.start do
22
+ if ENV['TRAVIS']
23
+ require 'codecov'
24
+ formatter SimpleCov::Formatter::MultiFormatter.new([
25
+ SimpleCov::Formatter::HTMLFormatter,
26
+ SimpleCov::Formatter::Codecov,
27
+ ])
28
+ end
29
+ coverage_dir ENV['COVERAGE_DIR'] or 'coverage'
30
+ track_files 'ruby/lib/**/*.rb'
31
+ end
32
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qpid_proton
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darryl L. Pierce
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-05-14 00:00:00.000000000 Z
12
+ date: 2021-09-10 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: |
15
15
  Proton is a high performance, lightweight messaging library. It can be used in
@@ -24,84 +24,85 @@ extensions:
24
24
  extra_rdoc_files: []
25
25
  files:
26
26
  - LICENSE.txt
27
- - examples/README.md
28
- - examples/broker.rb
29
- - examples/client.rb
30
- - examples/direct_recv.rb
31
- - examples/direct_send.rb
32
- - examples/helloworld.rb
33
- - examples/server.rb
34
- - examples/simple_recv.rb
35
- - examples/simple_send.rb
36
- - examples/ssl-certs/README.txt
37
- - examples/ssl-certs/tclient-certificate.p12
38
- - examples/ssl-certs/tclient-certificate.pem
39
- - examples/ssl-certs/tclient-full.p12
40
- - examples/ssl-certs/tclient-private-key.pem
41
- - examples/ssl-certs/tserver-certificate.p12
42
- - examples/ssl-certs/tserver-certificate.pem
43
- - examples/ssl-certs/tserver-full.p12
44
- - examples/ssl-certs/tserver-private-key.pem
45
- - examples/ssl_send.rb
46
- - examples/testme
47
- - ext/cproton/cproton.c
48
27
  - ext/cproton/extconf.rb
28
+ - ext/cproton/cproton.c
29
+ - lib/reactor/container.rb
49
30
  - lib/codec/data.rb
50
31
  - lib/codec/mapping.rb
51
- - lib/core/condition.rb
52
- - lib/core/connection.rb
32
+ - lib/util/deprecation.rb
33
+ - lib/util/wrapper.rb
34
+ - lib/util/schedule.rb
35
+ - lib/util/version.rb
36
+ - lib/util/error_handler.rb
37
+ - lib/types/hash.rb
38
+ - lib/types/described.rb
39
+ - lib/types/type.rb
40
+ - lib/types/strings.rb
41
+ - lib/types/array.rb
42
+ - lib/qpid_proton.rb
43
+ - lib/handler/messaging_handler.rb
44
+ - lib/handler/reactor_messaging_adapter.rb
45
+ - lib/handler/messaging_adapter.rb
46
+ - lib/handler/adapter.rb
47
+ - lib/core/ssl_domain.rb
48
+ - lib/core/ssl.rb
49
+ - lib/core/messaging_handler.rb
50
+ - lib/core/transfer.rb
51
+ - lib/core/ssl_details.rb
53
52
  - lib/core/connection_driver.rb
53
+ - lib/core/sasl.rb
54
+ - lib/core/uri.rb
55
+ - lib/core/endpoint.rb
56
+ - lib/core/disposition.rb
57
+ - lib/core/terminus.rb
54
58
  - lib/core/container.rb
55
59
  - lib/core/delivery.rb
56
- - lib/core/disposition.rb
57
- - lib/core/endpoint.rb
58
- - lib/core/event.rb
59
- - lib/core/exceptions.rb
60
- - lib/core/link.rb
61
- - lib/core/listener.rb
62
60
  - lib/core/message.rb
63
- - lib/core/messaging_handler.rb
64
- - lib/core/receiver.rb
65
- - lib/core/sasl.rb
61
+ - lib/core/event.rb
62
+ - lib/core/work_queue.rb
66
63
  - lib/core/sender.rb
64
+ - lib/core/listener.rb
67
65
  - lib/core/session.rb
68
- - lib/core/ssl.rb
69
- - lib/core/ssl_details.rb
70
- - lib/core/ssl_domain.rb
71
- - lib/core/terminus.rb
72
- - lib/core/tracker.rb
73
- - lib/core/transfer.rb
66
+ - lib/core/exceptions.rb
74
67
  - lib/core/transport.rb
75
- - lib/core/uri.rb
76
68
  - lib/core/url.rb
77
- - lib/core/work_queue.rb
78
- - lib/handler/adapter.rb
79
- - lib/handler/messaging_adapter.rb
80
- - lib/handler/messaging_handler.rb
81
- - lib/handler/reactor_messaging_adapter.rb
82
- - lib/qpid_proton.rb
83
- - lib/reactor/container.rb
84
- - lib/types/array.rb
85
- - lib/types/described.rb
86
- - lib/types/hash.rb
87
- - lib/types/strings.rb
88
- - lib/types/type.rb
89
- - lib/util/deprecation.rb
90
- - lib/util/error_handler.rb
91
- - lib/util/schedule.rb
92
- - lib/util/version.rb
93
- - lib/util/wrapper.rb
94
- - tests/test_connection_driver.rb
95
- - tests/test_container.rb
96
- - tests/test_container_sasl.rb
69
+ - lib/core/connection.rb
70
+ - lib/core/condition.rb
71
+ - lib/core/link.rb
72
+ - lib/core/tracker.rb
73
+ - lib/core/receiver.rb
97
74
  - tests/test_data.rb
98
75
  - tests/test_delivery.rb
76
+ - tests/test_connection_driver.rb
99
77
  - tests/test_interop.rb
100
- - tests/test_messaging_adapter.rb
101
- - tests/test_old_adapter.rb
102
- - tests/test_tools.rb
103
78
  - tests/test_uri.rb
79
+ - tests/test_container_sasl.rb
80
+ - tests/test_messaging_adapter.rb
104
81
  - tests/test_utils.rb
82
+ - tests/test_tools.rb
83
+ - tests/test_old_adapter.rb
84
+ - tests/test_container.rb
85
+ - tests/collect_coverage.rb
86
+ - examples/direct_recv.rb
87
+ - examples/ssl-certs/tclient-certificate.p12
88
+ - examples/ssl-certs/tserver-private-key.pem
89
+ - examples/ssl-certs/tserver-certificate.pem
90
+ - examples/ssl-certs/tclient-full.p12
91
+ - examples/ssl-certs/tserver-full.p12
92
+ - examples/ssl-certs/README.txt
93
+ - examples/ssl-certs/tclient-private-key.pem
94
+ - examples/ssl-certs/tserver-certificate.p12
95
+ - examples/ssl-certs/tclient-certificate.pem
96
+ - examples/broker.rb
97
+ - examples/helloworld.rb
98
+ - examples/simple_recv.rb
99
+ - examples/server.rb
100
+ - examples/client.rb
101
+ - examples/README.md
102
+ - examples/direct_send.rb
103
+ - examples/testme
104
+ - examples/ssl_send.rb
105
+ - examples/simple_send.rb
105
106
  homepage: http://qpid.apache.org/proton
106
107
  licenses:
107
108
  - Apache-2.0
@@ -112,17 +113,17 @@ require_paths:
112
113
  - lib
113
114
  required_ruby_version: !ruby/object:Gem::Requirement
114
115
  requirements:
115
- - - ">="
116
+ - - '>='
116
117
  - !ruby/object:Gem::Version
117
118
  version: 1.9.3
118
119
  required_rubygems_version: !ruby/object:Gem::Requirement
119
120
  requirements:
120
- - - ">="
121
+ - - '>='
121
122
  - !ruby/object:Gem::Version
122
123
  version: '0'
123
124
  requirements: []
124
125
  rubyforge_project:
125
- rubygems_version: 2.7.6.2
126
+ rubygems_version: 2.0.14.1
126
127
  signing_key:
127
128
  specification_version: 4
128
129
  summary: Ruby language bindings for the Qpid Proton messaging framework