process_executer 3.2.3 → 3.2.4

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: 2000a0333ebf2ac629edac374ca29355a557c05e512783570b650738c439719c
4
- data.tar.gz: 0347f4f0a06370cfbfd4e4240947cf940879acecc6d072fad77711bb04598125
3
+ metadata.gz: 48ed2573bb17348a6b021a3354b360361ed39d4040bda74f6f2a9f1997d79616
4
+ data.tar.gz: 8697e82bb6713eccbf0f4f58d0709c435b39fc62a53abece990070a53ab81a5d
5
5
  SHA512:
6
- metadata.gz: 4553524b57e82b0a601f94d84e2f4dcda5e0ffc761774d95a083673fcd0eb56fd8608a4124d1fdf84a7d815220f57f0c8753f60f85d3754ae2bfb486b0666d36
7
- data.tar.gz: bd5516506787274bf2a9baf3b20b2738bde3b71c4874f024e457e08dfad49070204bec7c8ee4aec01113db113397a9c17a15f86184dc8e7f03f80ae8da68e8e1
6
+ metadata.gz: efbeab2d5a4608f322969a2b5c0f7a948ff25cd717a19d32c7bf0708652c5d923c638bb43bee27cea6ac5687d52c10252d6bf92b7a3f07a21f88f3e3d5b580ca
7
+ data.tar.gz: '09de2958475e4581f86c27208fbb148afc1860f054c4c7651b7adc32255a89fd41072c327284e5afa93dcc0d6456c1d0e680358419304588cbc8250b88859cc1'
data/.commitlintrc.yml CHANGED
@@ -4,13 +4,34 @@ extends: '@commitlint/config-conventional'
4
4
  rules:
5
5
  # See: https://commitlint.js.org/reference/rules.html
6
6
  #
7
- # Rules are made up by a name and a configuration array. The configuration array contains:
7
+ # Rules are made up by a name and a configuration array. The configuration
8
+ # array contains:
8
9
  #
9
- # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if violated
10
+ # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if
11
+ # violated
10
12
  # * Applicability [always|never]: never inverts the rule
11
- # * Value: value to use for this rule
13
+ # * Value: value to use for this rule (if applicable)
12
14
  #
13
- # Run `npx commitlint --print-config` to see the current setting for all rules.
15
+ # Run `npx commitlint --print-config` to see the current setting for all
16
+ # rules.
14
17
  #
15
- body-leading-blank: [2, 'always']
16
- footer-leading-blank: [2, 'always']
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
- ".": "3.2.3"
2
+ ".": "3.2.4"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to the process_executer gem will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.2.4](https://github.com/main-branch/process_executer/compare/v3.2.3...v3.2.4) (2025-04-18)
9
+
10
+
11
+ ### Other Changes
12
+
13
+ * Configure release-please to includes all changes in the CHANGELOG ([41acdbc](https://github.com/main-branch/process_executer/commit/41acdbcee8bc6e7ebef5e45356bb9197b652a498))
14
+ * Do not enforce conventional commits for release PR ([080f3ff](https://github.com/main-branch/process_executer/commit/080f3ff0b131bb4c91f5798bb6e57fe964091f8c))
15
+
8
16
  ## [3.2.3](https://github.com/main-branch/process_executer/compare/v3.2.2...v3.2.3) (2025-04-17)
9
17
 
10
18
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module ProcessExecuter
4
4
  # The current Gem version
5
- VERSION = '3.2.3'
5
+ VERSION = '3.2.4'
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": [
@@ -19,4 +33,4 @@
19
33
  }
20
34
  ],
21
35
  "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
22
- }
36
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process_executer
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.3
4
+ version: 3.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -266,8 +266,8 @@ metadata:
266
266
  allowed_push_host: https://rubygems.org
267
267
  homepage_uri: https://github.com/main-branch/process_executer
268
268
  source_code_uri: https://github.com/main-branch/process_executer
269
- documentation_uri: https://rubydoc.info/gems/process_executer/3.2.3
270
- changelog_uri: https://rubydoc.info/gems/process_executer/3.2.3/file/CHANGELOG.md
269
+ documentation_uri: https://rubydoc.info/gems/process_executer/3.2.4
270
+ changelog_uri: https://rubydoc.info/gems/process_executer/3.2.4/file/CHANGELOG.md
271
271
  rubygems_mfa_required: 'true'
272
272
  rdoc_options: []
273
273
  require_paths: