track_open_instances 0.1.14 → 0.1.15

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: 6d99656a8491b908698d6621fd382b7663fe2109b34ba2fc6146542ee92b884d
4
- data.tar.gz: d794cbf3600672be9a267fefefac1f9014082ebebc08989bac04a597d13dd166
3
+ metadata.gz: aaef16c11475da44dc5e2942a6c44bc49beafaf0a310801f8137abe236974df1
4
+ data.tar.gz: b11fd4cab34446f7b46ec7cb4d2e5b2c03bc0d80d48cb585692cadcbf8f5c0ed
5
5
  SHA512:
6
- metadata.gz: a06f866ba376df17ae3599b510757d7556d3f14bc6cfcca653d49cc34ff8ed7bee0fe4cf4c585eec78c8a945f5765e94d351aeefcfe2531e71101690a56166f1
7
- data.tar.gz: e6519a7ecbf57d97db96850f413f280c9584a2fc012d255ddbac1d15a4bfc1aa0a2edc69a8b1d591e35544a8def4fbe6713609bedb9ac15e730fa85cffd19edb
6
+ metadata.gz: 14193ff4d4d26d2267f5935d251e9ce9bdfa1254db3f78745eee26388b1dfa11f4dc4b50d5a03f73218114d22c87826d4449550a8f4fe0e2121173aae165e564
7
+ data.tar.gz: 827fd193d68948163bd6186cf20a983c2eba580b0a50ac7c8470df9841084e9e1edcbd5a340baa0a3bd3639c5cd071b1751aa82b5efabf116b53c37ee8ef2738
data/.commitlintrc.yml ADDED
@@ -0,0 +1,37 @@
1
+ ---
2
+ extends: '@commitlint/config-conventional'
3
+
4
+ rules:
5
+ # See: https://commitlint.js.org/reference/rules.html
6
+ #
7
+ # Rules are made up by a name and a configuration array. The configuration
8
+ # array contains:
9
+ #
10
+ # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if
11
+ # violated
12
+ # * Applicability [always|never]: never inverts the rule
13
+ # * Value: value to use for this rule (if applicable)
14
+ #
15
+ # Run `npx commitlint --print-config` to see the current setting for all
16
+ # rules.
17
+ #
18
+ header-max-length: [2, always, 100] # Header can not exceed 100 chars
19
+
20
+ type-case: [2, always, lower-case] # Type must be lower case
21
+ type-empty: [2, never] # Type must not be empty
22
+
23
+ # Supported conventional commit types
24
+ type-enum: [2, always, [build, ci, chore, docs, feat, fix, perf, refactor, revert, style, test]]
25
+
26
+ scope-case: [2, always, lower-case] # Scope must be lower case
27
+
28
+ # Error if subject is one of these cases (encourages lower-case)
29
+ subject-case: [2, never, [sentence-case, start-case, pascal-case, upper-case]]
30
+ subject-empty: [2, never] # Subject must not be empty
31
+ subject-full-stop: [2, never, "."] # Subject must not end with a period
32
+
33
+ body-leading-blank: [2, always] # Body must have a blank line before it
34
+ body-max-line-length: [2, always, 100] # Body lines can not exceed 100 chars
35
+
36
+ footer-leading-blank: [2, always] # Footer must have a blank line before it
37
+ footer-max-line-length: [2, always, 100] # Footer lines can not exceed 100 chars
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.1.14"
2
+ ".": "0.1.15"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Change Log
2
2
 
3
+ ## [0.1.15](https://github.com/main-branch/track_open_instances/compare/v0.1.14...v0.1.15) (2025-04-17)
4
+
5
+
6
+ ### Other Changes
7
+
8
+ * Configure release-please to includes all changes in the CHANGELOG ([8db0fac](https://github.com/main-branch/track_open_instances/commit/8db0facc3cfc14833dda616d14b03695c3fdf5f0))
9
+ * Do not enforce conventional commits for release PR ([64f2749](https://github.com/main-branch/track_open_instances/commit/64f274979de50dfc4b4e0b88e78d147a12c5061f))
10
+
3
11
  ## [0.1.14](https://github.com/main-branch/track_open_instances/compare/v0.1.13...v0.1.14) (2025-04-16)
4
12
 
5
13
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module TrackOpenInstances
4
4
  # The last released version of this gem
5
- VERSION = '0.1.14'
5
+ VERSION = '0.1.15'
6
6
  end
@@ -10,7 +10,21 @@
10
10
  "bump-patch-for-minor-pre-major": true,
11
11
  "draft": false,
12
12
  "prerelease": false,
13
- "include-component-in-tag": false
13
+ "include-component-in-tag": false,
14
+ "pull-request-title-pattern": "chore: release v${version}",
15
+ "changelog-sections": [
16
+ { "type": "feat", "section": "Features", "hidden": false },
17
+ { "type": "fix", "section": "Bug Fixes", "hidden": false },
18
+ { "type": "build", "section": "Other Changes", "hidden": false },
19
+ { "type": "chore", "section": "Other Changes", "hidden": false },
20
+ { "type": "ci", "section": "Other Changes", "hidden": false },
21
+ { "type": "docs", "section": "Other Changes", "hidden": false },
22
+ { "type": "perf", "section": "Other Changes", "hidden": false },
23
+ { "type": "refactor", "section": "Other Changes", "hidden": false },
24
+ { "type": "revert", "section": "Other Changes", "hidden": false },
25
+ { "type": "style", "section": "Other Changes", "hidden": false },
26
+ { "type": "test", "section": "Other Changes", "hidden": false }
27
+ ]
14
28
  }
15
29
  },
16
30
  "plugins": [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: track_open_instances
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.14
4
+ version: 0.1.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -193,6 +193,7 @@ executables: []
193
193
  extensions: []
194
194
  extra_rdoc_files: []
195
195
  files:
196
+ - ".commitlintrc.yml"
196
197
  - ".husky/commit-msg"
197
198
  - ".markdownlint.yml"
198
199
  - ".release-please-manifest.json"
@@ -205,7 +206,6 @@ files:
205
206
  - LICENSE.txt
206
207
  - README.md
207
208
  - Rakefile
208
- - commitlint.config.js
209
209
  - lib/track_open_instances.rb
210
210
  - lib/track_open_instances/version.rb
211
211
  - package.json
@@ -218,8 +218,8 @@ metadata:
218
218
  allowed_push_host: https://rubygems.org
219
219
  homepage_uri: https://github.com/main-branch/track_open_instances
220
220
  source_code_uri: https://github.com/main-branch/track_open_instances
221
- documentation_uri: https://rubydoc.info/gems/track_open_instances/0.1.14
222
- changelog_uri: https://rubydoc.info/gems/track_open_instances/0.1.14/file/CHANGELOG.md
221
+ documentation_uri: https://rubydoc.info/gems/track_open_instances/0.1.15
222
+ changelog_uri: https://rubydoc.info/gems/track_open_instances/0.1.15/file/CHANGELOG.md
223
223
  rubygems_mfa_required: 'true'
224
224
  rdoc_options: []
225
225
  require_paths:
data/commitlint.config.js DELETED
@@ -1,30 +0,0 @@
1
- module.exports = {
2
- extends: ["@commitlint/config-conventional"],
3
- rules: {
4
- "body-leading-blank": [1, "always"],
5
- "body-max-line-length": [2, "always", 100],
6
- "footer-leading-blank": [1, "always"],
7
- "header-max-length": [2, "always", 100],
8
- "subject-empty": [2, "never"],
9
- "subject-full-stop": [2, "never", "."],
10
- "type-case": [2, "always", "lower-case"],
11
- "type-empty": [2, "never"],
12
- "type-enum": [
13
- 2,
14
- "always",
15
- [
16
- "build",
17
- "chore",
18
- "ci",
19
- "docs",
20
- "feat",
21
- "fix",
22
- "perf",
23
- "refactor",
24
- "revert",
25
- "style",
26
- "test",
27
- ],
28
- ],
29
- },
30
- };