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 +4 -4
- data/.commitlintrc.yml +37 -0
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +8 -0
- data/lib/track_open_instances/version.rb +1 -1
- data/release-please-config.json +15 -1
- metadata +4 -4
- data/commitlint.config.js +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aaef16c11475da44dc5e2942a6c44bc49beafaf0a310801f8137abe236974df1
|
4
|
+
data.tar.gz: b11fd4cab34446f7b46ec7cb4d2e5b2c03bc0d80d48cb585692cadcbf8f5c0ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
|
data/release-please-config.json
CHANGED
@@ -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.
|
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.
|
222
|
-
changelog_uri: https://rubydoc.info/gems/track_open_instances/0.1.
|
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
|
-
};
|