pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/sysutils/ruby-inspec-core



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun May  9 15:01:04 UTC 2021

Modified Files:
        pkgsrc/sysutils/ruby-inspec-core: Makefile PLIST distinfo

Log Message:
sysutils/ruby-inspec-core: update to 4.37.0

4.37.0 (2021-05-05)

Enhancements
* Reinstate resource testing on supported platforms using Test-Kitchen #5204
  (clintoncwolfe)

Bug Fixes
* Fix : windows_firewall_rule fails to validate more than 1 rule depending
  on how it's executed #5502 (Vasu1105)

Merged Pull Requests
* Update openssl to 1.1.1k on macos #5493 (tas50)
* Update Ruby in omnibus packages to 2.7.3 #5492 (tas50)
* Make sure we use chef-telemetry 1.0.8+ #5491 (tas50)
* Upgrade to GitHub-native Dependabot #5488 (dependabot-preview[bot])
* Fixes for the integration-resources pipeline #5501 (clintoncwolfe)
* Fix bad link #5498 (IanMadd)
* Fix undefined method `+' for nil:NilClass\n\nProfile: - when using profile
  dependencies and require_controls #5487 (Vasu1105)
* Remove coverage testing #5500 (clintoncwolfe)
* Added alias command automate for inspec compliance #5490 (Nik08)

4.36.4 (2021-04-29)

New Features
* Add selinux resource with basic feature support #5458 (Vasu1105)
* New input option pattern added for DSL and metadata inputs #5466 (Nik08)

Enhancements
* Add selinux resource support for modules and booleans #5463 (Vasu1105)

Bug Fixes
* Fix for group resource when member does not exist #5470 (Nik08)

Merged Pull Requests
* Update faraday requirement from >= 0.9.0, < 1.4 to >= 0.9.0, < 1.5 #5469
  (dependabot-preview[bot])
* Minor fix - Method expected to return boolean but it was returning nil if
  condition check fails #5480 (Vasu1105)
* updating Gemfile to support environment variables #5485 (jayashrig158)
* Group & Groups doc updated - about using local and etc groups #5483
  (Nik08)
* Added new property members_array for group & groups resources. #5479
  (Nik08)

4.33.1 (2021-04-21)

New Features
* Optionally include controls source code in CLI reporter #5465
  (clintoncwolfe)

Merged Pull Requests
* Update postgres_ident_conf.md #5461 (tobiasbp)
* Remove default of 3600 seconds for command timeout #5472 (clintoncwolfe)

v4.32.0 (2021-04-14)

New Features
* Added ability to pass inputs to InSpec shell using input file and cli
  #5452 (Nik08)

4.31.1 (2021-04-08)

Bug Fixes
* Use default command timeout value if timeout is 0 #5455 (clintoncwolfe)

4.31.0 (2021-04-07)

New Features
* Add --docker-url CLI option #5445 (clintoncwolfe)

Merged Pull Requests
* Fix for Deprecation warning and FilterTable::ExceptionCatcher to show
  exact failure message. #5441 (Vasu1105)
* Update inputs.md #5449 (IanMadd)
* Add timeout option to command resource #5443 (clintoncwolfe)
* Update platforms doc #5442 (IanMadd)
* Bug fix for loading hashmap inputs consistently #5446 (Nik08)

4.29.3 (2021-03-25)

Bug Fixes
* Fix for -controls option is not working as expected. #5434 (Vasu1105)
* Fix for executing git profiles independent of the name of the default
  branch #5438 (Nik08)

Merged Pull Requests
* Minor Docs edits #5433 (IanMadd)
* Add quotation around -name option for apt resource to work properly with
  zsh #5437 (ymotongpoo)
* Updates profile init for cloud platforms to use inputs #5435
  (collinmcneese)
* Move Passthrough Config from Automate to JSON Reporter #5430 (tohch4)
* Update codeowners for docs #5440 (IanMadd)
* Improve resource page menu titles #5439 (IanMadd)
* Add m1 support to MacOS build list #5432 (clintoncwolfe)


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/ruby-inspec-core/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/ruby-inspec-core/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/sysutils/ruby-inspec-core/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/ruby-inspec-core/Makefile
diff -u pkgsrc/sysutils/ruby-inspec-core/Makefile:1.6 pkgsrc/sysutils/ruby-inspec-core/Makefile:1.7
--- pkgsrc/sysutils/ruby-inspec-core/Makefile:1.6       Thu Apr  1 14:10:53 2021
+++ pkgsrc/sysutils/ruby-inspec-core/Makefile   Sun May  9 15:01:04 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2021/04/01 14:10:53 taca Exp $
+# $NetBSD: Makefile,v 1.7 2021/05/09 15:01:04 taca Exp $
 
-DISTNAME=      inspec-core-4.28.0
+DISTNAME=      inspec-core-4.37.0
 CATEGORIES=    sysutils
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -21,6 +21,7 @@ DEPENDS+=     ${RUBY_PKGPREFIX}-mixlib-log>=
 DEPENDS+=      ${RUBY_PKGPREFIX}-sslshake>=1.2<2:../../security/ruby-sslshake
 DEPENDS+=      ${RUBY_PKGPREFIX}-parallel>=1.9<2:../../misc/ruby-parallel
 DEPENDS+=      ${RUBY_PKGPREFIX}-faraday>=0.9.0:../../www/ruby-faraday
+DEPENDS+=      ${RUBY_PKGPREFIX}-faraday_middleware>=1.0<2:../../www/ruby-faraday_middleware
 DEPENDS+=      ${RUBY_PKGPREFIX}-tty-table>=0.10<1:../../devel/ruby-tty-table
 DEPENDS+=      ${RUBY_PKGPREFIX}-tty-prompt>=0.17<1:../../devel/ruby-tty-prompt
 DEPENDS+=      ${RUBY_PKGPREFIX}-tomlrb>=1.2:../../devel/ruby-tomlrb

Index: pkgsrc/sysutils/ruby-inspec-core/PLIST
diff -u pkgsrc/sysutils/ruby-inspec-core/PLIST:1.1 pkgsrc/sysutils/ruby-inspec-core/PLIST:1.2
--- pkgsrc/sysutils/ruby-inspec-core/PLIST:1.1  Mon Jan 18 15:12:39 2021
+++ pkgsrc/sysutils/ruby-inspec-core/PLIST      Sun May  9 15:01:04 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1 2021/01/18 15:12:39 taca Exp $
+@comment $NetBSD: PLIST,v 1.2 2021/05/09 15:01:04 taca Exp $
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/Gemfile
 ${GEM_LIBDIR}/LICENSE
@@ -203,6 +203,7 @@ ${GEM_LIBDIR}/lib/inspec/resources/runit
 ${GEM_LIBDIR}/lib/inspec/resources/script.rb
 ${GEM_LIBDIR}/lib/inspec/resources/security_identifier.rb
 ${GEM_LIBDIR}/lib/inspec/resources/security_policy.rb
+${GEM_LIBDIR}/lib/inspec/resources/selinux.rb
 ${GEM_LIBDIR}/lib/inspec/resources/service.rb
 ${GEM_LIBDIR}/lib/inspec/resources/shadow.rb
 ${GEM_LIBDIR}/lib/inspec/resources/ssh_config.rb
@@ -328,15 +329,15 @@ ${GEM_LIBDIR}/lib/plugins/inspec-init/te
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/plugins/inspec-plugin-template/lib/inspec-plugin-template/reporter.rb
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/plugins/inspec-plugin-template/lib/inspec-plugin-template/version.rb
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/aws/README.md
-${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/aws/attributes.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/aws/controls/example.rb
+${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/aws/inputs.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/aws/inspec.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/azure/README.md
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/azure/controls/example.rb
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/azure/inspec.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/gcp/README.md
-${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/gcp/attributes.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/gcp/controls/example.rb
+${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/gcp/inputs.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/gcp/inspec.yml
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/os/README.md
 ${GEM_LIBDIR}/lib/plugins/inspec-init/templates/profiles/os/controls/example.rb

Index: pkgsrc/sysutils/ruby-inspec-core/distinfo
diff -u pkgsrc/sysutils/ruby-inspec-core/distinfo:1.4 pkgsrc/sysutils/ruby-inspec-core/distinfo:1.5
--- pkgsrc/sysutils/ruby-inspec-core/distinfo:1.4       Sun Mar 21 13:33:31 2021
+++ pkgsrc/sysutils/ruby-inspec-core/distinfo   Sun May  9 15:01:04 2021
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2021/03/21 13:33:31 taca Exp $
+$NetBSD: distinfo,v 1.5 2021/05/09 15:01:04 taca Exp $
 
-SHA1 (inspec-core-4.28.0.gem) = d96fb109ece6ce2743addc45cd3c5e9632ea6d2b
-RMD160 (inspec-core-4.28.0.gem) = 548e2ee8cef5199778b3d454b4189d08dcb4dbe1
-SHA512 (inspec-core-4.28.0.gem) = b09f300a316e2fad6e5fc1a9e0621705e17614475ee7e9cbd8c7c4895567a5f5b32046eb95fadb29622c0f7c63be180150355cb8503174a3db6b21c08f3657ee
-Size (inspec-core-4.28.0.gem) = 370688 bytes
+SHA1 (inspec-core-4.37.0.gem) = c1640544e5386efc7b18eace502668da54b2b6c5
+RMD160 (inspec-core-4.37.0.gem) = 8b0dea27e88381a7b53b2a1df257d602538a6a75
+SHA512 (inspec-core-4.37.0.gem) = 290a3d5f322680ff2abfc19ff36849bd82d5206bea8884cf6f0f58da271c949ffe0cf14db6a3d46707d32182fdb3af82f091d68caff306e3ae0a94db6b619aa6
+Size (inspec-core-4.37.0.gem) = 373760 bytes



Home | Main Index | Thread Index | Old Index