drive_v3 0.3.2 → 0.3.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 +4 -4
- data/.commitlintrc.yml +27 -6
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +14 -0
- data/lib/drive_v3/version.rb +1 -1
- data/release-please-config.json +15 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1f64f902bcf4bbc4011bea33ecb510a449847759e8178ae239d4fc9715568151
|
|
4
|
+
data.tar.gz: 545c1581e385276287ada6e5f3c40c02cda5bfc0ffaebb2f02d0b0d5032b2320
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2eef0fd3dd630d60db68b42c0901c3c53aa9e6d6a18e9e8d9287bc8c26d67c15eb9caa74c02f1c1107eb4ea0d7c0c1e61c0cb32424ccf47d636bc78e55de564
|
|
7
|
+
data.tar.gz: b6d09c813e5cc3167be9662bcb1b79663f578e8e0f473aae1102e647abc91078bbb5dd07274610aa11ba312122900f7d1a5a6b9a3f91a37ef9266d14f4fb6361
|
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
|
|
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
|
|
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
|
|
15
|
+
# Run `npx commitlint --print-config` to see the current setting for all
|
|
16
|
+
# rules.
|
|
14
17
|
#
|
|
15
|
-
|
|
16
|
-
|
|
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
|
@@ -4,6 +4,20 @@ 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.3.4](https://github.com/main-branch/drive_v3/compare/v0.3.3...v0.3.4) (2026-04-24)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Other Changes
|
|
11
|
+
|
|
12
|
+
* **dependencies:** Update dependencies for the GitHub Actions workflows ([ecd5de4](https://github.com/main-branch/drive_v3/commit/ecd5de4a2ba366776bff9ee328a20113c66c5284))
|
|
13
|
+
|
|
14
|
+
## [0.3.3](https://github.com/main-branch/drive_v3/compare/v0.3.2...v0.3.3) (2025-04-18)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Other Changes
|
|
18
|
+
|
|
19
|
+
* Configure release-please to includes all changes in the CHANGELOG ([3d98ba9](https://github.com/main-branch/drive_v3/commit/3d98ba99aa540a6e9b012c8cdea7df7705a3206a))
|
|
20
|
+
|
|
7
21
|
## [0.3.2](https://github.com/main-branch/drive_v3/compare/v0.3.1...v0.3.2) (2025-04-17)
|
|
8
22
|
|
|
9
23
|
|
data/lib/drive_v3/version.rb
CHANGED
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: drive_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- James Couball
|
|
@@ -314,8 +314,8 @@ metadata:
|
|
|
314
314
|
rubygems_mfa_required: 'true'
|
|
315
315
|
homepage_uri: https://github.com/main-branch/drive_v3
|
|
316
316
|
source_code_uri: https://github.com/main-branch/drive_v3
|
|
317
|
-
documentation_uri: https://rubydoc.info/gems/drive_v3/0.3.
|
|
318
|
-
changelog_uri: https://rubydoc.info/gems/drive_v3/0.3.
|
|
317
|
+
documentation_uri: https://rubydoc.info/gems/drive_v3/0.3.4
|
|
318
|
+
changelog_uri: https://rubydoc.info/gems/drive_v3/0.3.4/file/CHANGELOG.md
|
|
319
319
|
rdoc_options: []
|
|
320
320
|
require_paths:
|
|
321
321
|
- lib
|
|
@@ -332,7 +332,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
332
332
|
requirements:
|
|
333
333
|
- 'Platform: Mac, Linux, or Windows'
|
|
334
334
|
- 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
|
|
335
|
-
rubygems_version:
|
|
335
|
+
rubygems_version: 4.0.6
|
|
336
336
|
specification_version: 4
|
|
337
337
|
summary: Unofficial helpers and extensions for the Google Drive V3 API
|
|
338
338
|
test_files: []
|