sensu-plugins-oracle 0.14.0 → 0.15.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: a06d6e2d3d711b88f60465fd6181210eaa8efec8334346af61c6cb5f8de63f95
4
- data.tar.gz: 5a74b692ce5d380b7cc574d3e060294d1c52fb7cdf7b1489b514010df10fec9b
3
+ metadata.gz: 44bd87ce15f419c450e1aa669aa4622e6f760056fad3cde98c0e82a0c1713443
4
+ data.tar.gz: 89c7fc10ee5b4bdd9e1dfd9af7d171cfd7c87a298a443ca0a9820adcb51799b8
5
5
  SHA512:
6
- metadata.gz: 10c2f1495a1b054bb476c2457aa8e4e07cea6d22cadace3a7aa8308f20d6de02f4a4b702a6cca484974bb22c9ee08591406da3d408123715802479ab8e9e1c13
7
- data.tar.gz: 6afad92f3e954c2d59201c3c94371408eeaebfbacdc29169d7367e8322fc8858a0cc7a89b65b3a7495daca7ae3316cf1878fc8fa03356224047f7613a3ae9150
6
+ metadata.gz: 78d806b20b16417306081bb313db2b84c8e8debbe81801e8b8a551a44369e134e3026ac36a1646115c1119fc2eaac8977c09de1f5726fe7ab48b788fee6723d8
7
+ data.tar.gz: 12d3903f0a6d32e5c4a12cc9d0eb9c9bb3d0a10144584801a19d4ef7dc1677085967f02f272c68f5610a406a9f52f64244bf101ab12ffe71921890b8d5299195
data/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## 0.15.1 - 2025-11-09
2
+
3
+ Added:
4
+ - Enabled Trusted Publishing
5
+
6
+ ## 0.15.0 - 2024-09-07
7
+
8
+ Changed:
9
+ - Update Dependencies
10
+ - Make it compatible to future ruby versions (logger)
11
+
1
12
  ## 0.14.0 - 2024-02-21
2
13
 
3
14
  Changed:
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,8 +1,7 @@
1
1
 
2
2
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-oracle.svg)](https://badge.fury.io/rb/sensu-plugins-oracle)
3
- [![Maintainability](https://api.codeclimate.com/v1/badges/a96aadf931c023673c49/maintainability)](https://codeclimate.com/github/thomis/sensu-plugins-oracle/maintainability)
4
- [![Test Coverage](https://api.codeclimate.com/v1/badges/a96aadf931c023673c49/test_coverage)](https://codeclimate.com/github/thomis/sensu-plugins-oracle/test_coverage)
5
- [![ci](https://github.com/thomis/sensu-plugins-oracle/actions/workflows/ci.yml/badge.svg)](https://github.com/thomis/sensu-plugins-oracle/actions/workflows/ci.yml)
3
+ [![01 - Test](https://github.com/thomis/sensu-plugins-oracle/actions/workflows/01_test.yml/badge.svg)](https://github.com/thomis/sensu-plugins-oracle/actions/workflows/01_test.yml)
4
+ [![02 - Release](https://github.com/thomis/sensu-plugins-oracle/actions/workflows/02_release.yml/badge.svg)](https://github.com/thomis/sensu-plugins-oracle/actions/workflows/02_release.yml)
6
5
 
7
6
  # sensu-plugins-oracle
8
7
 
@@ -51,9 +50,38 @@ This sensu plugin provides native Oracle instrumentation.
51
50
 
52
51
  Currently supported and tested ruby versions are:
53
52
 
54
- - 3.3
55
- - 3.2
56
- - 3.1
53
+ - 3.4 (EOL March 31 2028)
54
+ - 3.3 (EOL March 31 2027)
55
+ - 3.2 (EOL March 31 2026)
56
+
57
+ Ruby versions not tested anymore:
58
+
59
+ - 3.1 (EOL March 31 2025)
57
60
  - 3.0 (EOL March 31 2024)
58
- - 2.7 (EOL March 31 2023, is not part of CI anymore)
59
- - 2.6 (EOL March 31 2022, is not part of CI anymore)
61
+ - 2.7 (EOL March 31 2023)
62
+ - 2.6 (EOL March 31 2022)
63
+
64
+ ## Branch naming
65
+
66
+ Note: the default branch was renamed from `master` to `main` in 2025/08 to align with modern Git defaults.
67
+ Please base new work and pull requests on `main`.
68
+
69
+ ## Publishing
70
+
71
+ 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.
72
+
73
+ With Trusted Publishing configured, gem releases are automatically published to RubyGems when the release workflow runs, providing a more secure and streamlined publishing process.
74
+
75
+ ## Contributing
76
+
77
+ Bug reports and pull requests are welcome on GitHub at https://github.com/thomis/sensu-plugins-oracle. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
78
+
79
+ 1. Fork it ( https://github.com/thomis/sensu-plugins-oracle/fork )
80
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
81
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
82
+ 4. Push to the branch (`git push origin my-new-feature`)
83
+ 5. Create a new Pull Request
84
+
85
+ ## License
86
+
87
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module SensuPluginsOracle
2
- VERSION = "0.14.0"
2
+ VERSION = "0.15.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-oracle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-02-21 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: sensu-plugin
@@ -52,6 +51,20 @@ dependencies:
52
51
  - - "~>"
53
52
  - !ruby/object:Gem::Version
54
53
  version: '3.3'
54
+ - !ruby/object:Gem::Dependency
55
+ name: logger
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.6'
61
+ type: :runtime
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '1.6'
55
68
  - !ruby/object:Gem::Dependency
56
69
  name: bundler
57
70
  requirement: !ruby/object:Gem::Requirement
@@ -163,8 +176,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
163
176
  - !ruby/object:Gem::Version
164
177
  version: '0'
165
178
  requirements: []
166
- rubygems_version: 3.5.3
167
- signing_key:
179
+ rubygems_version: 3.6.9
168
180
  specification_version: 4
169
181
  summary: Sensu plugins for oracle
170
182
  test_files: []