sheets_v4 0.10.2 → 0.10.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: 2c3d783f219c23fb3ae2c8b788d777e90368af28a33cf6f263c4dd87f6d4234b
4
- data.tar.gz: 24bf0f38de70b2d007a6b1375ad428ed6a5a95c13c548743f56ed7e3aaf487bd
3
+ metadata.gz: dbed66a895b713d2a8178eb654e83e7f76bb1350509f2bc25dee5f2fd7491cd5
4
+ data.tar.gz: c57a497834a2fc0af61cee758df0121d850d7d67f801cea4c901fedaa40e2364
5
5
  SHA512:
6
- metadata.gz: 670736596b4c0075d86e09052b962b7430d07ab09506365b9c09d47405c9d09764a6a223ae8db478844fc1b8be171e472718ffb35ab1e8693b58fefa08096856
7
- data.tar.gz: b9f71f333a75207a6167de526dbfeb0debc1321e99df5b249c95f954935a5d2b2fc72fd5697edd06eb2c4520d60404eeab4d07be5b16ce01f773b7b36ba2a180
6
+ metadata.gz: 0a5b0b7bc85a51f8a66cf5af0ddd66afc6a4ccdf76f15bd7edefe8de16453ed62130fd5e2f5d6157550039cdf46f4d88d736e4fb193309b5e412b36589acd692
7
+ data.tar.gz: e17c0371e8cfb33f8afa5c564c30e30c0ba6d2d48b78d1d3abff2b5f2c7656295117793fbc2645d812e020ea76576db05d4e52217d3c673dc011adde0146a6d3
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
- ".": "0.10.2"
2
+ ".": "0.10.4"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ Changes for each release are listed in this file.
4
4
 
5
5
  This project adheres to [Semantic Versioning](https://semver.org/) for its releases.
6
6
 
7
+ ## [0.10.4](https://github.com/main-branch/sheets_v4/compare/v0.10.3...v0.10.4) (2026-04-24)
8
+
9
+
10
+ ### Other Changes
11
+
12
+ * **dependencies:** Update dependencies for the GitHub Actions workflows ([b1cac07](https://github.com/main-branch/sheets_v4/commit/b1cac07dd69c5db943baa453cb2377312877a481))
13
+ * **rubocop:** Fix offenses from new RuboCop cops ([fb883d6](https://github.com/main-branch/sheets_v4/commit/fb883d6eedbc3a4b6b314c5571bd701b60b10674))
14
+
15
+ ## [0.10.3](https://github.com/main-branch/sheets_v4/compare/v0.10.2...v0.10.3) (2025-04-18)
16
+
17
+
18
+ ### Other Changes
19
+
20
+ * Configure release-please to includes all changes in the CHANGELOG ([7e943c4](https://github.com/main-branch/sheets_v4/commit/7e943c46fb851b15418ca3f95844bdc25424ad99))
21
+
7
22
  ## [0.10.2](https://github.com/main-branch/sheets_v4/compare/v0.10.1...v0.10.2) (2025-04-17)
8
23
 
9
24
 
@@ -19,7 +19,8 @@ require_relative 'google_extensions/spreadsheet'
19
19
  require_relative 'google_extensions/sheet'
20
20
 
21
21
  # @private
22
- module Google
22
+
23
+ module Google # rubocop:disable Style/OneClassPerFile
23
24
  module Apis
24
25
  # Add SheetsV4 extensions to Google::Apis::SheetsV4 classes
25
26
  module SheetsV4
@@ -2,5 +2,5 @@
2
2
 
3
3
  module SheetsV4
4
4
  # The version of this gem
5
- VERSION = '0.10.2'
5
+ VERSION = '0.10.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": [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sheets_v4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -324,8 +324,8 @@ metadata:
324
324
  rubygems_mfa_required: 'true'
325
325
  homepage_uri: https://github.com/main-branch/sheets_v4
326
326
  source_code_uri: https://github.com/main-branch/sheets_v4
327
- documentation_uri: https://rubydoc.info/gems/sheets_v4/0.10.2
328
- changelog_uri: https://rubydoc.info/gems/sheets_v4/0.10.2/file/CHANGELOG.md
327
+ documentation_uri: https://rubydoc.info/gems/sheets_v4/0.10.4
328
+ changelog_uri: https://rubydoc.info/gems/sheets_v4/0.10.4/file/CHANGELOG.md
329
329
  rdoc_options: []
330
330
  require_paths:
331
331
  - lib
@@ -342,7 +342,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
342
342
  requirements:
343
343
  - 'Platform: Mac, Linux, or Windows'
344
344
  - 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
345
- rubygems_version: 3.6.7
345
+ rubygems_version: 4.0.6
346
346
  specification_version: 4
347
347
  summary: Unofficial helpers and extensions for the Google Sheets V4 API
348
348
  test_files: []