nonnative 1.95.0 → 1.97.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +5 -5
- data/README.md +3 -11
- data/lib/nonnative/close_all_socket_pair.rb +2 -0
- data/lib/nonnative/delay_socket_pair.rb +2 -0
- data/lib/nonnative/fault_injection_proxy.rb +2 -0
- data/lib/nonnative/invalid_data_socket_pair.rb +2 -0
- data/lib/nonnative/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d545433883dc728547208b3498cfc683c76162ddcc7ef888f78fe9bbcb291fd
|
4
|
+
data.tar.gz: 5ad448a849648fcaf025c34949edd7ec09220e11be0aedac756dae7133122660
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62b63172647661d52856dc4c1bdefcd9d5336be3ca347b61ed51c63d83a4fe67906a258385cac7c9fd2fcae1798d1bc099d7269e4e8fa0c885a049db43131421
|
7
|
+
data.tar.gz: a47d3b669a8ebc2e111deb44a9aac655073572460da6088c64d98a8105f9f32ce93ba1f132298f9ebe3fa4a858a136f26d1eb80d71f667bb1eddeb246b37f2f3
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
|
7
7
|
## Unreleased
|
8
8
|
|
9
|
+
## [v1.97.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.97.0) - 2025-04-30
|
10
|
+
|
11
|
+
- [`367a78f`](https://github.com/alexfalkowski/nonnative/commit/367a78fa8615ebe3f68cb86fa416f7ea0f2cd63e) feat(socket): add logs for pairs (#549)
|
12
|
+
|
13
|
+
## [v1.96.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.96.0) - 2025-04-30
|
14
|
+
|
15
|
+
- [`281eb99`](https://github.com/alexfalkowski/nonnative/commit/281eb993fefb9dfda6118a23e811153e9acb0c02) feat(proxy): add logs for fault_injection (#548)
|
16
|
+
|
9
17
|
## [v1.95.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.95.0) - 2025-04-30
|
10
18
|
|
11
19
|
- [`5146eb7`](https://github.com/alexfalkowski/nonnative/commit/5146eb76cc7fb0dbe8ad5443d189639a7837f5b2) feat(http): use puma (#547)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
nonnative (1.
|
4
|
+
nonnative (1.97.0)
|
5
5
|
concurrent-ruby (>= 1, < 2)
|
6
6
|
config (>= 5, < 6)
|
7
7
|
cucumber (>= 7, < 10)
|
@@ -65,7 +65,7 @@ GEM
|
|
65
65
|
google-protobuf (4.30.2-x86_64-darwin)
|
66
66
|
bigdecimal
|
67
67
|
rake (>= 13)
|
68
|
-
googleapis-common-protos-types (1.
|
68
|
+
googleapis-common-protos-types (1.20.0)
|
69
69
|
google-protobuf (>= 3.18, < 5.a)
|
70
70
|
grpc (1.71.0-x86_64-darwin)
|
71
71
|
google-protobuf (>= 3.25, < 5.0)
|
@@ -80,7 +80,7 @@ GEM
|
|
80
80
|
mime-types (3.6.2)
|
81
81
|
logger
|
82
82
|
mime-types-data (~> 3.2015)
|
83
|
-
mime-types-data (3.2025.
|
83
|
+
mime-types-data (3.2025.0429)
|
84
84
|
mini_mime (1.1.5)
|
85
85
|
multi_test (1.1.0)
|
86
86
|
mustermann (3.0.3)
|
@@ -136,7 +136,7 @@ GEM
|
|
136
136
|
rspec-support (3.13.2)
|
137
137
|
rspec-wait (1.0.1)
|
138
138
|
rspec (>= 3.4)
|
139
|
-
rubocop (1.75.
|
139
|
+
rubocop (1.75.4)
|
140
140
|
json (~> 2.3)
|
141
141
|
language_server-protocol (~> 3.17.0.2)
|
142
142
|
lint_roller (~> 1.1.0)
|
@@ -173,7 +173,7 @@ GEM
|
|
173
173
|
rack-protection (= 4.1.1)
|
174
174
|
rack-session (>= 2.0.0, < 3)
|
175
175
|
tilt (~> 2.0)
|
176
|
-
sorbet-runtime (0.5.
|
176
|
+
sorbet-runtime (0.5.12046)
|
177
177
|
sys-uname (1.3.1)
|
178
178
|
ffi (~> 1.1)
|
179
179
|
tilt (2.6.0)
|
data/README.md
CHANGED
@@ -235,7 +235,7 @@ Define your server:
|
|
235
235
|
```ruby
|
236
236
|
module Nonnative
|
237
237
|
module Features
|
238
|
-
class
|
238
|
+
class Hello < Sinatra::Application
|
239
239
|
get '/hello' do
|
240
240
|
'Hello World!'
|
241
241
|
end
|
@@ -243,13 +243,7 @@ module Nonnative
|
|
243
243
|
|
244
244
|
class HTTPServer < Nonnative::HTTPServer
|
245
245
|
def initialize(service)
|
246
|
-
|
247
|
-
configure do
|
248
|
-
set :logging, false
|
249
|
-
end
|
250
|
-
end
|
251
|
-
|
252
|
-
super(app, service)
|
246
|
+
super(Sinatra.new(Hello), service)
|
253
247
|
end
|
254
248
|
end
|
255
249
|
end
|
@@ -379,9 +373,7 @@ module Nonnative
|
|
379
373
|
|
380
374
|
class GRPCServer < Nonnative::GRPCServer
|
381
375
|
def initialize(service)
|
382
|
-
|
383
|
-
|
384
|
-
super(svc, service)
|
376
|
+
super(Greeter.new, service)
|
385
377
|
end
|
386
378
|
end
|
387
379
|
end
|
data/lib/nonnative/version.rb
CHANGED