nonnative 1.100.0 → 1.101.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d3530e65abf8acdfa154645821c1b77bc3ea0cb9da03c8095b1a34cce16c75c
4
- data.tar.gz: 59d1cf7b63e86b28a9f28ea3d1ff67d972429e53985808e00dd77bc49c803284
3
+ metadata.gz: 969ee407c6a61689907e52312cd3a17803b38323b3f3405008cad5202e450c2d
4
+ data.tar.gz: dde8d2d79b0d6aab78396453f7cc0e3076569fe4d56eee76390e775cda77cd90
5
5
  SHA512:
6
- metadata.gz: 40192749152bfb68f6f54e13e56067f9a51b9b63bed52a37f011774913cf2296a7f14d3c1c42bd0bc2c7472a901f384070e772f26c693904a85f435d27b079a7
7
- data.tar.gz: 6c38e6d1785412caae05c77a3f28bf7700afe29d2141c09937e39df0b3d551e5ccc215e9766584db366d13a4be9fc3d2ae59981b7f7333004c7f765aab246692
6
+ metadata.gz: 902fda05827a817c5d18423d0417449ac61857339d0fd0e543049e12f88633378c6275fa78b23d89cf1c86d244023f172572f65f032cb9e1c7e821e5dff49fc5
7
+ data.tar.gz: b718dfc306d72a463c07f1fa173f2214a124c0cc27a6867e0c26a3f06fbc1384a6c9f5478780cbc2b2bb77f18bd5f5aa141a2d2c92b68a2ddd61d5b908cef8e6
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## Unreleased
8
8
 
9
+ ## [v1.101.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.101.0) - 2025-05-01
10
+
11
+ - [`ae5969c`](https://github.com/alexfalkowski/nonnative/commit/ae5969c59f3f52bc2b88c1d84e4290f3a0d164a1) feat(proxy): add logs for start/stop (#555)
12
+
9
13
  ## [v1.100.0](https://github.com/alexfalkowski/nonnative/releases/tag/v1.100.0) - 2025-05-01
10
14
 
11
15
  - [`c82c27b`](https://github.com/alexfalkowski/nonnative/commit/c82c27b9edd5bfe50b6ab22cc3779adc7afcc82c) feat(clear): separate clearing pool or configuration (#553)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- nonnative (1.100.0)
4
+ nonnative (1.101.0)
5
5
  concurrent-ruby (>= 1, < 2)
6
6
  config (>= 5, < 6)
7
7
  cucumber (>= 7, < 10)
@@ -14,11 +14,15 @@ module Nonnative
14
14
  def start
15
15
  @tcp_server = ::TCPServer.new(service.host, service.port)
16
16
  @thread = Thread.new { perform_start }
17
+
18
+ Nonnative.logger.info "started with host '#{service.host}' and port '#{service.port}' for proxy 'fault_injection'"
17
19
  end
18
20
 
19
21
  def stop
20
22
  thread&.terminate
21
23
  tcp_server&.close
24
+
25
+ Nonnative.logger.info "stopped with host '#{service.host}' and port '#{service.port}' for proxy 'fault_injection'"
22
26
  end
23
27
 
24
28
  def close_all
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nonnative
4
- VERSION = '1.100.0'
4
+ VERSION = '1.101.0'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nonnative
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.100.0
4
+ version: 1.101.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alejandro Falkowski