net-ssh 7.3.1.rc1 → 7.3.2.rc1

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: 7b3496d4b36f54df16cf189f42b0c9569f0e279745a6c724189a5a5133f7f497
4
- data.tar.gz: 41053dee6b487bb48d1d677efc5387301e6e2ab5e25301a6db06b2d6aae01e88
3
+ metadata.gz: 9bb6ed808781b2335aac518def42df92fc4f441d4863970b228d98bf13db1e07
4
+ data.tar.gz: a6750bf0379cc1c0e5864b80e209a78fad105ee35e2a5fa8299245f81581b090
5
5
  SHA512:
6
- metadata.gz: 240932305634d897b4e6a10c07922cf0bd40b7d60ccd2a3ef096057b7ceea34e86c3b580404c58eed93ee3734fc83c6c29771ba080d99581b6dab9b9d898ec90
7
- data.tar.gz: 67ba88e82c7aa594222e37cbb1acf1d8cc5583e5cf624278513479d0e3f4d7ae76e6d24082808312f9a8da652cae869fc5a7948456861fcabc238e8636f29a35
6
+ metadata.gz: 4cb354279823cb355e9b3480a7107df936a9f45d28f6fa19afc739fa93bec57706698e9ff8960b2f84571bee59b77d8e78660c9bad0a302e18dedbd4832b722f
7
+ data.tar.gz: ffaf5165d6f414643cab0234acd6a8cc478c9df8b67569755d3be48b943474152a993f447a7acc515ed2bc06afc2d33b2819ea5eeefd50c01b467f8ad18d53ac
checksums.yaml.gz.sig CHANGED
@@ -1,2 +1 @@
1
- k���_ͤ�!��B6���[?\�6"C�;"H�̱���>��
2
- V��)��^����� L,7�C��Z3M~J�f,������]��S1]=��o���� ,���"j�6���(�]o�f����
1
+ ��=�Q��%��. ׿~M<��©`Zs._�k�&2 ?�W6MרT���q����6n�j��㨏������ߙ��jD��n��Ӟ�h�g)@&,Oi��8��D�4�غ�{h2/�� �w�� ����Vn�w5�鞉�U`u��{��-��5�DS}�ս#�XTE͂��af�������Nh9���Qfq��L<^�+t�|� �xZl C~p_X ��I&����cK����_����XQ&V��L�T�o=x��_ʉU
@@ -42,8 +42,8 @@ jobs:
42
42
  gem install bundler ${{ (startsWith(matrix.ruby-version, '2.6.') || startsWith(matrix.ruby-version, '2.7.')) && '-v 2.4.22' || '' }}
43
43
  bundle config set path 'vendor/bundle'
44
44
  bundle config set --local path 'vendor/bundle'
45
- bundle install --jobs 4 --retry 3 --path vendor/bundle
46
- BUNDLE_GEMFILE=./Gemfile.noed25519 bundle install --jobs 4 --retry 3 --path vendor/bundle
45
+ bundle install --jobs 4 --retry 3
46
+ BUNDLE_GEMFILE=./Gemfile.noed25519 bundle install --jobs 4 --retry 3
47
47
  env:
48
48
  BUNDLE_PATH: vendor/bundle
49
49
 
data/CHANGES.txt CHANGED
@@ -1,3 +1,12 @@
1
+ === 7.3.2 rc2
2
+
3
+ * Fix Ruby 2.6 compat: use public_to_der fallback for EC public keys [#993]
4
+ * Fix test framework hang: preserve StringIO position in idle!
5
+
6
+ === 7.3.2 rc1
7
+
8
+ * Support frozen strings [#958]
9
+
1
10
  === 7.3.0 rc0
2
11
 
3
12
  * aes(128|256)gcm [#946]
data/Dockerfile.zlib_ng CHANGED
@@ -2,7 +2,17 @@ FROM fedora:latest
2
2
 
3
3
  ENV INSTALL_PATH="/netssh"
4
4
 
5
- RUN dnf install -y openssl ruby ruby-devel git make gcc zlib-ng
5
+ # Fedora's OpenSSL 3.x blocks SHA-1 for RSA/DSA signing by default.
6
+ # - LEGACY crypto policy relaxes the system-wide restrictions.
7
+ # - OPENSSL_CONF points to our config which activates the legacy provider,
8
+ # sets SECLEVEL=0, and sets rh-allow-sha1-signatures=yes (Fedora/RHEL
9
+ # OpenSSL patch that gates SHA-1 signing independently of the policy level).
10
+ # OPENSSL_CONF must be set as a Docker ENV so it is in the environment before
11
+ # Ruby/OpenSSL initialises — setting it in the Rakefile is too late.
12
+ ENV OPENSSL_CONF="/netssh/test/openssl3.conf"
13
+
14
+ RUN dnf install -y openssl ruby ruby-devel git make gcc zlib-ng crypto-policies-scripts && \
15
+ update-crypto-policies --set LEGACY
6
16
 
7
17
  WORKDIR $INSTALL_PATH
8
18
 
@@ -57,8 +57,9 @@ module Net
57
57
  return false unless script.next(:first)
58
58
 
59
59
  if script.next(:first).remote?
60
+ current_pos = pos
60
61
  self.string = "#{self.string}#{script.next}"
61
- self.pos = pos
62
+ self.pos = current_pos
62
63
  end
63
64
 
64
65
  return true
@@ -52,7 +52,7 @@ module Net
52
52
  MINOR = 3
53
53
 
54
54
  # The tiny component of this version of the Net::SSH library
55
- TINY = 1
55
+ TINY = 2
56
56
 
57
57
  # The prerelease component of this version of the Net::SSH library
58
58
  # nil allowed
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net-ssh
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.3.1.rc1
4
+ version: 7.3.2.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
@@ -32,7 +32,7 @@ cert_chain:
32
32
  ufHf4AX2UIkJbh7zCPkiNCqIr7MSWLNFG/9lOlHYsEJM8XujT1ofPobYx6YSFx/C
33
33
  7HBrI7UX7awt6UvBZebhcHzyMHxg/B5PVQllPA==
34
34
  -----END CERTIFICATE-----
35
- date: 2026-02-15 00:00:00.000000000 Z
35
+ date: 2026-03-15 00:00:00.000000000 Z
36
36
  dependencies:
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: bcrypt_pbkdf
metadata.gz.sig CHANGED
Binary file