sensu-plugins-filesize 0.7.0 → 0.7.1

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: 50d83eadc8e2e7bd5daff7dbd3a91c73cd2ea47e7ca0125b713f7739d38675e7
4
- data.tar.gz: de40b1412371fc0db0407800ca2666ef5296dae820e526bd5b29ce8436a818ce
3
+ metadata.gz: d4ccb206a4e985cd2b9eef5377fe7661857a2d38f0b4fc826b991fcaee118b5f
4
+ data.tar.gz: a0d424928dc910e76abd1d3adc8db04a5e1ddae158cada5d02d6d3a258a5ca15
5
5
  SHA512:
6
- metadata.gz: d93520f6c5f860b574cd37e317ccbd366009b102637735c4e5fe99bc479b3213943bc11f1294fe2fcaf7d41a931f64946f703846f692d621c6126df992cbe092
7
- data.tar.gz: 5ca545adbac8b0fc721c76df530605801f26ac3965eecd9622aa4f8722a48a75d94d6b5117b934e7e05e4cdbbd9f22a4df643feee1d7f8f2eeba8ea7f119df78
6
+ metadata.gz: 3f5d739f63c9bbc190271553bed56cab811b23f39c35f5ab95c9ee5e36d7810d84881897ce34553cf531ca9b399c732eafe3c3c998282f3a11c644c64bb17dd8
7
+ data.tar.gz: ccff2b6fb4b808f392a87079044645c114a412b5a957095ece485178821e6bc087959d6fd4b89186d132a54bbecf6abdd6fb842b142590d8ce29bc7211b4ba09
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.7.1 / 2025-11-09
2
+
3
+ * Enabled Trusted Publisher
4
+
5
+ ## 0.7.0 / 2023-12-25
6
+
7
+ * Update CI/CD to use ruby 3.3.0
8
+
1
9
  ## 0.7.0 / 2023-08-19
2
10
 
3
11
  * Update CI/CD with actual ruby versions
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2016 thomis
3
+ Copyright (c) 2016-2025 ikey.ch
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-filesize.svg)](https://badge.fury.io/rb/sensu-plugins-filesize)
2
- [![Maintainability](https://api.codeclimate.com/v1/badges/83cc2ff8ee1d6db49b32/maintainability)](https://codeclimate.com/github/thomis/sensu-plugins-filesize/maintainability)
3
- [![Test Coverage](https://api.codeclimate.com/v1/badges/83cc2ff8ee1d6db49b32/test_coverage)](https://codeclimate.com/github/thomis/sensu-plugins-filesize/test_coverage)
4
- [![ci](https://github.com/thomis/sensu-plugins-filesize/actions/workflows/ci.yml/badge.svg)](https://github.com/thomis/sensu-plugins-filesize/actions/workflows/ci.yml)
2
+ [![01 - Test](https://github.com/thomis/sensu-plugins-filesize/actions/workflows/01_test.yml/badge.svg)](https://github.com/thomis/sensu-plugins-filesize/actions/workflows/01_test.yml)
3
+ [![02 - Release](https://github.com/thomis/sensu-plugins-filesize/actions/workflows/02_release.yml/badge.svg)](https://github.com/thomis/sensu-plugins-filesize/actions/workflows/02_release.yml)
5
4
 
6
5
  # sensu-plugins-filesize
7
6
 
@@ -35,8 +34,33 @@ The size option is transparently passed to the find command. More details can be
35
34
 
36
35
  Currently supported and tested ruby versions are:
37
36
 
38
- - 3.2
39
- - 3.1
40
- - 3.0
41
- - 2.7 (EOL March 31 2023, is not part of CI anymore)
42
- - 2.6 (EOL March 31 2022, is not part of CI anymore)
37
+ - 3.4 (EOL March 31 2028)
38
+ - 3.3 (EOL March 31 2027)
39
+ - 3.2 (EOL March 31 2026)
40
+
41
+ Not tested anymore
42
+
43
+ - 3.1 (EOL March 31 2025)
44
+ - 3.0 (EOL March 31 2024)
45
+ - 2.7 (EOL March 31 2023)
46
+ - 2.6 (EOL March 31 2022)
47
+
48
+ ## Publishing
49
+
50
+ This project uses [Trusted Publishing](https://guides.rubygems.org/trusted-publishing/) to securely publish gems to RubyGems.org. Trusted Publishing eliminates the need for long-lived API tokens by using OpenID Connect (OIDC) to establish a trusted relationship between GitHub Actions and RubyGems.org.
51
+
52
+ With Trusted Publishing configured, gem releases are automatically published to RubyGems when the release workflow runs, providing a more secure and streamlined publishing process.
53
+
54
+ ## Contributing
55
+
56
+ Bug reports and pull requests are welcome on GitHub at https://github.com/thomis/sensu-plugins-filesize. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
57
+
58
+ 1. Fork it ( https://github.com/thomis/sensu-plugins-filesize/fork )
59
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
60
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
61
+ 4. Push to the branch (`git push origin my-new-feature`)
62
+ 5. Create a new Pull Request
63
+
64
+ ## License
65
+
66
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,7 +1,7 @@
1
1
  module Sensu
2
2
  module Plugins
3
3
  module Filesize
4
- VERSION = "0.7.0"
4
+ VERSION = "0.7.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-filesize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-19 00:00:00.000000000 Z
11
+ date: 2025-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -133,8 +133,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  requirements: []
136
- rubygems_version: 3.4.10
137
- signing_key:
136
+ rubygems_version: 3.5.22
137
+ signing_key:
138
138
  specification_version: 4
139
139
  summary: Sensu plugin to search files based on size
140
140
  test_files: []