circleci-bundle-update-pr 5.2.6 → 5.2.7
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/.circleci/config.yml +1 -1
- data/.github/actionlint.yaml +8 -0
- data/.github/dependabot.yml +12 -0
- data/.github/ghalint.yml +6 -0
- data/.github/release.yml +24 -0
- data/.github/workflows/add_assignee_to_pr.yml +11 -0
- data/.github/workflows/ci.yml +29 -0
- data/.github/workflows/dependency_review.yml +11 -0
- data/.github/workflows/release.yml +82 -0
- data/.github/workflows/schedule.yml +27 -0
- data/.github/zizmor.yml +7 -0
- data/.tagpr +10 -0
- data/CHANGELOG.md +137 -0
- data/Gemfile.lock +7 -7
- data/README.md +4 -2
- data/lib/circleci/bundle/update/pr/version.rb +1 -1
- metadata +13 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6616aceee3c2677357b9bbdf2a83984c983ea3766eef0167363bf10703fae848
|
|
4
|
+
data.tar.gz: 6b30ab0102ae68c3fb1d111da3d592d4dc1c18f81474aaa38d7b143b147da6c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 126577e963889f5286554c8a320685d21ab540f511cc5dfc590214a58c6bc7b62534d3ee561043067749ae2e1df0528ad32658644a3910ef032e50a827e9594d
|
|
7
|
+
data.tar.gz: 52a60ba6d5148bf177623d2198b3469d7396c8c323417e0745f7e0ac78790de0456a667eb4a9c39b5a152a35d08c3b9fa06b0971dac6440c747eb973a162c7bf
|
data/.circleci/config.yml
CHANGED
|
@@ -83,7 +83,7 @@ jobs:
|
|
|
83
83
|
gem specific_install https://github.com/masutaka/circleci-bundle-update-pr.git
|
|
84
84
|
- deploy:
|
|
85
85
|
name: Run circleci-bundle-update-pr
|
|
86
|
-
command: circleci-bundle-update-pr CircleCI circleci@example.com $CIRCLE_BRANCH -d
|
|
86
|
+
command: circleci-bundle-update-pr CircleCI circleci@example.com $CIRCLE_BRANCH -d -l dependencies,ruby
|
|
87
87
|
- pushover/notify-on-failure
|
|
88
88
|
|
|
89
89
|
workflows:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# actionlint - https://github.com/rhysd/actionlint/blob/main/docs/config.md
|
|
2
|
+
|
|
3
|
+
paths:
|
|
4
|
+
.github/workflows/release.yml:
|
|
5
|
+
ignore:
|
|
6
|
+
# concurrency.queue is a valid key added in 2026-05, but actionlint 1.7.12 does not know it yet.
|
|
7
|
+
# https://github.blog/changelog/2026-05-07-github-actions-concurrency-groups-now-allow-larger-queues/
|
|
8
|
+
- 'unexpected key "queue" for "concurrency" section'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# https://docs.github.com/code-security/reference/supply-chain-security/dependabot-options-reference
|
|
2
|
+
version: 2
|
|
3
|
+
updates:
|
|
4
|
+
- package-ecosystem: "github-actions"
|
|
5
|
+
directory: "/"
|
|
6
|
+
open-pull-requests-limit: 99
|
|
7
|
+
schedule:
|
|
8
|
+
interval: "monthly"
|
|
9
|
+
time: "19:00"
|
|
10
|
+
timezone: "Asia/Tokyo"
|
|
11
|
+
cooldown:
|
|
12
|
+
default-days: 7
|
data/.github/ghalint.yml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# yaml-language-server: $schema=https://raw.githubusercontent.com/suzuki-shunsuke/ghalint/refs/heads/main/json-schema/ghalint.json
|
|
2
|
+
# ghalint - https://github.com/suzuki-shunsuke/ghalint
|
|
3
|
+
|
|
4
|
+
excludes:
|
|
5
|
+
- policy_name: action_ref_should_be_full_length_commit_sha
|
|
6
|
+
action_name: masutaka/actions/.github/workflows/*.yml
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
changelog:
|
|
2
|
+
exclude:
|
|
3
|
+
labels:
|
|
4
|
+
- tagpr
|
|
5
|
+
categories:
|
|
6
|
+
- title: "Breaking Changes :hammer_and_wrench:"
|
|
7
|
+
labels:
|
|
8
|
+
- breaking-change
|
|
9
|
+
- title: "New Features :tada:"
|
|
10
|
+
labels:
|
|
11
|
+
- enhancement
|
|
12
|
+
- title: "Fix bug :bug:"
|
|
13
|
+
labels:
|
|
14
|
+
- bug
|
|
15
|
+
- title: "Maintenance :technologist:"
|
|
16
|
+
labels:
|
|
17
|
+
- dependencies
|
|
18
|
+
- maintenance
|
|
19
|
+
- title: "Documentation :memo:"
|
|
20
|
+
labels:
|
|
21
|
+
- documentation
|
|
22
|
+
- title: "Other Changes"
|
|
23
|
+
labels:
|
|
24
|
+
- "*"
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
gh_action_lint:
|
|
11
|
+
uses: masutaka/actions/.github/workflows/gh_action_lint.yml@main
|
|
12
|
+
permissions:
|
|
13
|
+
contents: read
|
|
14
|
+
codeql:
|
|
15
|
+
permissions:
|
|
16
|
+
actions: read
|
|
17
|
+
contents: read
|
|
18
|
+
pull-requests: read
|
|
19
|
+
security-events: write
|
|
20
|
+
uses: masutaka/actions/.github/workflows/codeql.yml@main
|
|
21
|
+
pushover:
|
|
22
|
+
name: pushover if failure
|
|
23
|
+
if: github.ref_name == github.event.repository.default_branch && failure()
|
|
24
|
+
needs: [gh_action_lint, codeql]
|
|
25
|
+
uses: masutaka/actions/.github/workflows/pushover.yml@main
|
|
26
|
+
permissions: {}
|
|
27
|
+
secrets:
|
|
28
|
+
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
|
|
29
|
+
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
status: {}
|
|
5
|
+
|
|
6
|
+
concurrency:
|
|
7
|
+
group: ${{ github.workflow }}
|
|
8
|
+
# A status event creates a workflow run even when every job is skipped, so the
|
|
9
|
+
# default `queue: single` lets those runs cancel the pending one that matters.
|
|
10
|
+
queue: max
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
tagpr:
|
|
14
|
+
# Only run when the newest Ruby job on main succeeds. CircleCI reports one
|
|
15
|
+
# commit status per job, so waiting for a single job keeps this to one run.
|
|
16
|
+
# (1) Create a release pull request.
|
|
17
|
+
# (2) If the pull request already exists, update it.
|
|
18
|
+
# (3) If the pull request has been merged, create a new git tag.
|
|
19
|
+
if: >-
|
|
20
|
+
github.event.state == 'success' &&
|
|
21
|
+
github.event.context == 'ci/circleci: ruby-4.0' &&
|
|
22
|
+
contains(github.event.branches.*.name, 'main')
|
|
23
|
+
runs-on: ubuntu-latest
|
|
24
|
+
timeout-minutes: 10
|
|
25
|
+
permissions:
|
|
26
|
+
contents: read
|
|
27
|
+
steps:
|
|
28
|
+
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
|
|
29
|
+
id: app-token
|
|
30
|
+
with:
|
|
31
|
+
app-id: ${{ vars.CI_APP_ID }}
|
|
32
|
+
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
|
|
33
|
+
permission-contents: write
|
|
34
|
+
permission-pull-requests: write
|
|
35
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
36
|
+
with:
|
|
37
|
+
persist-credentials: false
|
|
38
|
+
token: ${{ steps.app-token.outputs.token }}
|
|
39
|
+
# Required to run `bundle lock` via postVersionCommand in .tagpr
|
|
40
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
41
|
+
with:
|
|
42
|
+
ruby-version: ruby
|
|
43
|
+
- id: run-tagpr
|
|
44
|
+
uses: Songmu/tagpr@242e22916eb775d6e359959fe3ba5c497de4a01a # v1.20.2
|
|
45
|
+
env:
|
|
46
|
+
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
47
|
+
outputs:
|
|
48
|
+
tagpr-tag: ${{ steps.run-tagpr.outputs.tag }}
|
|
49
|
+
|
|
50
|
+
release:
|
|
51
|
+
# When (3) above occurs, tagpr-tag is non-empty, so push the gem.
|
|
52
|
+
if: needs.tagpr.outputs.tagpr-tag != ''
|
|
53
|
+
needs: [tagpr]
|
|
54
|
+
runs-on: ubuntu-latest
|
|
55
|
+
timeout-minutes: 10
|
|
56
|
+
permissions:
|
|
57
|
+
contents: read # tagpr has already created the tag, so `rake release` does not push it
|
|
58
|
+
id-token: write # Mandatory for trusted publishing
|
|
59
|
+
steps:
|
|
60
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
61
|
+
with:
|
|
62
|
+
persist-credentials: false
|
|
63
|
+
ref: ${{ needs.tagpr.outputs.tagpr-tag }}
|
|
64
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
65
|
+
with:
|
|
66
|
+
ruby-version: ruby
|
|
67
|
+
# The release job is the only one that writes a bundler cache on GitHub
|
|
68
|
+
# Actions -- the test matrix lives on CircleCI -- so there is no cache
|
|
69
|
+
# entry an attacker could poison.
|
|
70
|
+
bundler-cache: true # zizmor: ignore[cache-poisoning]
|
|
71
|
+
# Runs `bundle exec rake release` internally
|
|
72
|
+
- uses: rubygems/release-gem@7f9650160c1a4e7989fdc9855807bdbd421d8b6b # v1.4.1
|
|
73
|
+
|
|
74
|
+
pushover:
|
|
75
|
+
name: pushover if failure
|
|
76
|
+
if: failure()
|
|
77
|
+
needs: [release]
|
|
78
|
+
uses: masutaka/actions/.github/workflows/pushover.yml@main
|
|
79
|
+
permissions: {}
|
|
80
|
+
secrets:
|
|
81
|
+
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
|
|
82
|
+
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: Schedule
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: "00 10 * * 5" # every friday 19:00 JST
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
codeql:
|
|
9
|
+
strategy:
|
|
10
|
+
matrix:
|
|
11
|
+
language: [actions, ruby]
|
|
12
|
+
permissions:
|
|
13
|
+
actions: read
|
|
14
|
+
contents: read
|
|
15
|
+
security-events: write
|
|
16
|
+
uses: masutaka/actions/.github/workflows/codeql_core.yml@main
|
|
17
|
+
with:
|
|
18
|
+
language: ${{ matrix.language }}
|
|
19
|
+
pushover:
|
|
20
|
+
name: pushover if failure
|
|
21
|
+
if: github.ref_name == github.event.repository.default_branch && failure()
|
|
22
|
+
needs: codeql
|
|
23
|
+
uses: masutaka/actions/.github/workflows/pushover.yml@main
|
|
24
|
+
permissions: {}
|
|
25
|
+
secrets:
|
|
26
|
+
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
|
|
27
|
+
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}
|
data/.github/zizmor.yml
ADDED
data/.tagpr
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# config file for the tagpr in git config format
|
|
2
|
+
# https://github.com/Songmu/tagpr
|
|
3
|
+
[tagpr]
|
|
4
|
+
vPrefix = true
|
|
5
|
+
releaseBranch = main
|
|
6
|
+
versionFile = lib/circleci/bundle/update/pr/version.rb
|
|
7
|
+
release = draft
|
|
8
|
+
# Rewriting versionFile alone leaves the PATH section of Gemfile.lock stale,
|
|
9
|
+
# which makes `rake release` in the release job fail at release:guard_clean.
|
|
10
|
+
postVersionCommand = bundle lock
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [v5.2.7](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.6...v5.2.7) - 2026-09-01
|
|
4
|
+
|
|
5
|
+
### Maintenance :technologist:
|
|
6
|
+
- bundle update at 2026-08-01 19:11:16 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/263
|
|
7
|
+
- Automate RubyGems release with tagpr + trusted publishing by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/265
|
|
8
|
+
- Stop skipped Release runs from cancelling the pending one by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/267
|
|
9
|
+
- chore: Label bundle update PRs for release note categorization by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/268
|
|
10
|
+
- chore: Consolidate CI into masutaka/actions reusable workflows by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/269
|
|
11
|
+
- chore(deps): Bump Songmu/tagpr from 1.20.1 to 1.20.2 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/274
|
|
12
|
+
- chore(deps): Bump rubygems/release-gem from 1.4.0 to 1.4.1 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/273
|
|
13
|
+
|
|
14
|
+
## [v5.2.6](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.5...v5.2.6) - 2026-08-02
|
|
15
|
+
|
|
16
|
+
- bundle update at 2026-07-01 19:11:28 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/261
|
|
17
|
+
- Release for v5.2.6 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/264
|
|
18
|
+
|
|
19
|
+
## [v5.2.5](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.4...v5.2.5) - 2026-07-04
|
|
20
|
+
|
|
21
|
+
- bundle update at 2026-06-01 19:11:32 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/258
|
|
22
|
+
- Bump faraday from 2.14.2 to 2.14.3 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/260
|
|
23
|
+
- Release for v5.2.5 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/262
|
|
24
|
+
|
|
25
|
+
## [v5.2.4](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.3...v5.2.4) - 2026-06-01
|
|
26
|
+
|
|
27
|
+
- bundle update at 2026-05-01 19:11:16 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/255
|
|
28
|
+
- Bump faraday from 2.14.1 to 2.14.2 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/257
|
|
29
|
+
- Release for v5.2.4 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/259
|
|
30
|
+
|
|
31
|
+
## [v5.2.3](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.2...v5.2.3) - 2026-05-03
|
|
32
|
+
|
|
33
|
+
- Release for v5.2.2 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/251
|
|
34
|
+
- bundle update at 2026-04-01 19:11:12 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/250
|
|
35
|
+
- Bump addressable from 2.8.9 to 2.9.0 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/254
|
|
36
|
+
- Release for v5.2.3 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/256
|
|
37
|
+
|
|
38
|
+
## [v5.2.2](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.1...v5.2.2) - 2026-04-04
|
|
39
|
+
|
|
40
|
+
- bundle update at 2026-03-01 19:11:31 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/245
|
|
41
|
+
- Bump json from 2.18.1 to 2.19.2 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/247
|
|
42
|
+
- Bump mcp from 0.7.1 to 0.9.2 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/248
|
|
43
|
+
- Good-bye CodeRabbit! by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/249
|
|
44
|
+
|
|
45
|
+
## [v5.2.1](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.2.0...v5.2.1) - 2026-03-01
|
|
46
|
+
|
|
47
|
+
- bundle update at 2026-02-01 19:11:29 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/239
|
|
48
|
+
- Disable dependabot version updates by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/242
|
|
49
|
+
- Add `--all` flag to `bundle update` command by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/243
|
|
50
|
+
- Bump faraday from 2.14.0 to 2.14.1 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/244
|
|
51
|
+
- Release for v5.2.1 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/246
|
|
52
|
+
|
|
53
|
+
## [v5.2.0](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.11...v5.2.0) - 2026-02-03
|
|
54
|
+
|
|
55
|
+
- bundle update at 2026-01-01 19:11:04 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/234
|
|
56
|
+
- Support Ruby 4.0 and set to the default by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/236
|
|
57
|
+
- Release for v5.2.0 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/240
|
|
58
|
+
|
|
59
|
+
## [v5.1.11](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.10...v5.1.11) - 2026-01-02
|
|
60
|
+
|
|
61
|
+
- bundle update at 2025-12-01 19:11:19 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/230
|
|
62
|
+
- Release for v5.1.11 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/235
|
|
63
|
+
|
|
64
|
+
## [v5.1.10](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.9...v5.1.10) - 2025-12-07
|
|
65
|
+
|
|
66
|
+
- bundle update at 2025-11-01 19:11:29 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/224
|
|
67
|
+
- Introduce CodeRabbit by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/228
|
|
68
|
+
- Update README.md by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/229
|
|
69
|
+
- Release for v5.1.10 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/232
|
|
70
|
+
|
|
71
|
+
## [v5.1.9](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.8...v5.1.9) - 2025-11-01
|
|
72
|
+
|
|
73
|
+
- bundle update at 2025-10-01 19:11:17 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/222
|
|
74
|
+
- Introduce dependabot version updates by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/225
|
|
75
|
+
- Release for v5.1.9 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/227
|
|
76
|
+
|
|
77
|
+
## [v5.1.8](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.7...v5.1.8) - 2025-10-01
|
|
78
|
+
|
|
79
|
+
- bundle update at 2025-09-01 19:11:31 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/220
|
|
80
|
+
- Release for v5.1.8 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/223
|
|
81
|
+
|
|
82
|
+
## [v5.1.7](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.6...v5.1.7) - 2025-09-01
|
|
83
|
+
|
|
84
|
+
- bundle update at 2025-08-01 19:11:07 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/217
|
|
85
|
+
- Add DeepWiki badge by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/219
|
|
86
|
+
- Release for v5.1.7 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/221
|
|
87
|
+
|
|
88
|
+
## [v5.1.6](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.5...v5.1.6) - 2025-08-02
|
|
89
|
+
|
|
90
|
+
- bundle update at 2025-07-01 19:11:05 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/214
|
|
91
|
+
- Release for v5.1.6 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/218
|
|
92
|
+
|
|
93
|
+
## [v5.1.5](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.4...v5.1.5) - 2025-07-03
|
|
94
|
+
|
|
95
|
+
- bundle update at 2025-06-01 19:11:04 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/212
|
|
96
|
+
- Remove FOSSA badges by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/215
|
|
97
|
+
- Release for v5.1.5 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/216
|
|
98
|
+
|
|
99
|
+
## [v5.1.4](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.3...v5.1.4) - 2025-06-02
|
|
100
|
+
|
|
101
|
+
- bundle update at 2025-05-01 19:11:05 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/210
|
|
102
|
+
- Release for v5.1.4 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/213
|
|
103
|
+
|
|
104
|
+
## [v5.1.3](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.2...v5.1.3) - 2025-05-05
|
|
105
|
+
|
|
106
|
+
- bundle update at 2025-04-01 19:11:20 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/207
|
|
107
|
+
- Fix rubocop warnings by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/209
|
|
108
|
+
- Release for v5.1.3 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/211
|
|
109
|
+
|
|
110
|
+
## [v5.1.2](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.1...v5.1.2) - 2025-04-01
|
|
111
|
+
|
|
112
|
+
- bundle update at 2025-03-01 19:11:15 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/203
|
|
113
|
+
- Bump json from 2.10.1 to 2.10.2 by @dependabot[bot] in https://github.com/masutaka/circleci-bundle-update-pr/pull/206
|
|
114
|
+
- Release for v5.1.2 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/208
|
|
115
|
+
|
|
116
|
+
## [v5.1.1](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.1.0...v5.1.1) - 2025-03-05
|
|
117
|
+
|
|
118
|
+
- bundle update at 2025-02-01 19:11:06 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/201
|
|
119
|
+
- Release for v5.1.1 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/204
|
|
120
|
+
|
|
121
|
+
## [v5.1.0](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.0.10...v5.1.0) - 2025-02-02
|
|
122
|
+
|
|
123
|
+
- bundle update at 2025-01-01 19:10:45 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/196
|
|
124
|
+
- Support Ruby 3.4 and set to the default by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/195
|
|
125
|
+
- Forgot to run `$ bundle` by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/199
|
|
126
|
+
- Update README.md by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/200
|
|
127
|
+
- Release for v5.1.0 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/202
|
|
128
|
+
|
|
129
|
+
## [v5.0.10](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.0.9...v5.0.10) - 2025-01-01
|
|
130
|
+
|
|
131
|
+
- bundle update at 2024-12-01 19:11:02 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/193
|
|
132
|
+
- Release for v5.0.10 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/197
|
|
133
|
+
|
|
134
|
+
## [v5.0.9](https://github.com/masutaka/circleci-bundle-update-pr/compare/v5.0.8...v5.0.9) - 2024-12-06
|
|
135
|
+
|
|
136
|
+
- bundle update at 2024-11-01 19:10:45 JST by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/191
|
|
137
|
+
- Release for v5.0.9 by @masutaka in https://github.com/masutaka/circleci-bundle-update-pr/pull/194
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
circleci-bundle-update-pr (5.2.
|
|
4
|
+
circleci-bundle-update-pr (5.2.7)
|
|
5
5
|
compare_linker (>= 1.4.10)
|
|
6
6
|
octokit
|
|
7
7
|
|
|
@@ -26,8 +26,8 @@ GEM
|
|
|
26
26
|
net-http (~> 0.5)
|
|
27
27
|
httpclient (2.9.0)
|
|
28
28
|
mutex_m
|
|
29
|
-
json (2.
|
|
30
|
-
language_server-protocol (3.17.0.
|
|
29
|
+
json (2.21.2)
|
|
30
|
+
language_server-protocol (3.17.0.6)
|
|
31
31
|
lint_roller (1.1.0)
|
|
32
32
|
logger (1.7.0)
|
|
33
33
|
mutex_m (0.3.0)
|
|
@@ -38,7 +38,7 @@ GEM
|
|
|
38
38
|
sawyer (~> 0.9)
|
|
39
39
|
ostruct (0.6.3)
|
|
40
40
|
parallel (2.1.0)
|
|
41
|
-
parser (3.3.
|
|
41
|
+
parser (3.3.12.0)
|
|
42
42
|
ast (~> 2.4.1)
|
|
43
43
|
racc
|
|
44
44
|
prism (1.9.0)
|
|
@@ -60,7 +60,7 @@ GEM
|
|
|
60
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
61
61
|
rspec-support (~> 3.13.0)
|
|
62
62
|
rspec-support (3.13.7)
|
|
63
|
-
rubocop (1.88.
|
|
63
|
+
rubocop (1.88.2)
|
|
64
64
|
json (~> 2.3)
|
|
65
65
|
language_server-protocol (~> 3.17.0.2)
|
|
66
66
|
lint_roller (~> 1.1.0)
|
|
@@ -71,7 +71,7 @@ GEM
|
|
|
71
71
|
rubocop-ast (>= 1.49.0, < 2.0)
|
|
72
72
|
ruby-progressbar (~> 1.7)
|
|
73
73
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
74
|
-
rubocop-ast (1.
|
|
74
|
+
rubocop-ast (1.50.0)
|
|
75
75
|
parser (>= 3.3.7.2)
|
|
76
76
|
prism (~> 1.7)
|
|
77
77
|
rubocop-rake (0.7.1)
|
|
@@ -108,4 +108,4 @@ DEPENDENCIES
|
|
|
108
108
|
rubocop-rspec
|
|
109
109
|
|
|
110
110
|
BUNDLED WITH
|
|
111
|
-
4.0.
|
|
111
|
+
4.0.16
|
data/README.md
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
# Circleci::Bundle::Update::Pr
|
|
2
2
|
|
|
3
3
|
[][circleci]
|
|
4
|
-
[][ci]
|
|
5
|
+
[][schedule]
|
|
5
6
|
[][gem]
|
|
6
7
|
[][deepwiki]
|
|
7
8
|
|
|
8
9
|
[circleci]: https://app.circleci.com/pipelines/github/masutaka/circleci-bundle-update-pr?branch=main
|
|
9
|
-
[
|
|
10
|
+
[ci]: https://github.com/masutaka/circleci-bundle-update-pr/actions/workflows/ci.yml?query=branch%3Amain
|
|
11
|
+
[schedule]: https://github.com/masutaka/circleci-bundle-update-pr/actions/workflows/schedule.yml?query=branch%3Amain
|
|
10
12
|
[gem]: https://rubygems.org/gems/circleci-bundle-update-pr
|
|
11
13
|
[deepwiki]: https://deepwiki.com/masutaka/circleci-bundle-update-pr
|
|
12
14
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: circleci-bundle-update-pr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.2.
|
|
4
|
+
version: 5.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Masuda
|
|
@@ -131,10 +131,22 @@ extra_rdoc_files: []
|
|
|
131
131
|
files:
|
|
132
132
|
- ".circleci/config.yml"
|
|
133
133
|
- ".github/CODEOWNERS"
|
|
134
|
+
- ".github/actionlint.yaml"
|
|
135
|
+
- ".github/dependabot.yml"
|
|
136
|
+
- ".github/ghalint.yml"
|
|
137
|
+
- ".github/release.yml"
|
|
138
|
+
- ".github/workflows/add_assignee_to_pr.yml"
|
|
139
|
+
- ".github/workflows/ci.yml"
|
|
140
|
+
- ".github/workflows/dependency_review.yml"
|
|
141
|
+
- ".github/workflows/release.yml"
|
|
142
|
+
- ".github/workflows/schedule.yml"
|
|
143
|
+
- ".github/zizmor.yml"
|
|
134
144
|
- ".gitignore"
|
|
135
145
|
- ".rspec"
|
|
136
146
|
- ".rubocop.yml"
|
|
137
147
|
- ".rubocop_todo.yml"
|
|
148
|
+
- ".tagpr"
|
|
149
|
+
- CHANGELOG.md
|
|
138
150
|
- Gemfile
|
|
139
151
|
- Gemfile.lock
|
|
140
152
|
- LICENSE.txt
|