File: CHANGELOG.md

package info (click to toggle)
ruby-snmp 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,996 kB
  • sloc: ruby: 3,260; ansic: 56; makefile: 9; sh: 4
file content (71 lines) | stat: -rw-r--r-- 3,133 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Change Log

## Changes for version 1.3.4:
* Add `OctetString#to_fs` for human-readable byte strings https://github.com/ruby-snmp/ruby-snmp/pull/73
* gemspec: Require MFA for gem releases https://github.com/ruby-snmp/ruby-snmp/pull/69
* gemspec: Update path for CHANGELOG link https://github.com/ruby-snmp/ruby-snmp/pull/68
* CI: Add Ruby 4.0 to CI Matrix https://github.com/ruby-snmp/ruby-snmp/pull/72
* CI: Bump actions/checkout from 5 to 6 https://github.com/ruby-snmp/ruby-snmp/pull/71
* CI: Bump actions/checkout from 4 to 5 https://github.com/ruby-snmp/ruby-snmp/pull/70

## Changes for version 1.3.3:
* Move web content to GitHub Pages https://github.com/ruby-snmp/ruby-snmp/pull/66
* Modernize project structure: README, gemspec, Rakefile, and development dependencies https://github.com/ruby-snmp/ruby-snmp/pull/65
  * This change includes: Ship license file in gem. https://github.com/ruby-snmp/ruby-snmp/pull/65
* Migrate from Travis CI to GitHub Actions https://github.com/ruby-snmp/ruby-snmp/pull/64
* Transfer repository from `hallidave/ruby-snmp` to `ruby-snmp/ruby-snmp` https://github.com/ruby-snmp/ruby-snmp/pull/63
* Allow MIB dir to be specified when loading additional modules (Fixes: https://github.com/ruby-snmp/ruby-snmp/issues/55 )
* Name lookup hash values were set to nil when overwriting (Fixes: https://github.com/ruby-snmp/ruby-snmp/issues/54 )

## Changes for version 1.3.2:
* Accept non-standard error status codes

## Changes for version 1.3.1:
* Cleaned up deprecation warnings
* Fixed SNMP::Integer#<=> method for Ruby 2.3.0 and later
* Removed artificial limit on number of non-repeaters for GetBulkRequest
* SNMP::BER module no longer pollutes global namespace

## Changes for version 1.2.0:
* Removed support for Ruby 1.8
* Changed license to MIT License

## Changes for version 1.1.1:

* Incorporate various small pull requests

## Changes for version 1.1.0:

* Added MIB support to ObjectId and Varbind, so that to_s can return symbolic information
* Added to_str method to ObjectId to return a numeric OID string (old to_s behavior)
* TrapListener can now support multiple community strings

## Changes for version 1.0.4:

* New option handling and added lower-case versions of all options
* Added SNMP::VERSION constant
* Experimental support for IPv6
* Removed support for installation with setup.rb

## Changes for version 1.0.3:

* Minor changes to Manager class.  The :Transport option may now be an
  object or a class.  Explicity call Timeout.timeout so that a timeout
  method may be defined in subclasses.  Thanks to Eric Monti.

## Changes for version 1.0.2:

* Internal code changes to make this library compatible with both Ruby 1.8
  and Ruby 1.9.  Note that an ord() method is now added to the Fixnum class
  for Ruby 1.8.  See the ber.rb file for details.

## Changes for version 1.0.1:

* Made the host configurable for the TrapListener.  Previously defaulted
  to 'localhost'.

## Changes for version 1.0.0:

* Added to_s method to TimeTicks.  Displays time in human-readable form
  instead of just a number.  The to_i method can still be used to get the
  number of ticks.