r10k 5.0.0 → 5.0.1
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/.github/workflows/release.yml +1 -1
- data/CHANGELOG.mkd +6 -0
- data/lib/r10k/git/rugged/bare_repository.rb +2 -2
- data/lib/r10k/version.rb +1 -1
- metadata +2 -3
- data/.github/workflows/stale.yml +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 33067413d4a97ba3b26ff80ccdaa54983612cb2880b55df1002f82f70c047632
|
4
|
+
data.tar.gz: 4adb83ad137bd748d7e5648e027ad83ca5c327c2df4fbd92da7e0e69ef061c40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b22c78d47e0f34e9647ab3129f34c09e636c7587a2c21624a41a43eff2fde6e9b1b3529115db34d5a40120d7681a80c7e17e1de42b9f8ffe0c3bdda5ee3ff2df
|
7
|
+
data.tar.gz: 0c3f1bb469c57f520fabd07f5dc90a719544610ee2a34c20b6bebba71649f135d0ee6082522836c13e20e43535eea1b674cb14f724e30cc08a5a4a8f51813496
|
data/CHANGELOG.mkd
CHANGED
@@ -59,8 +59,8 @@ class R10K::Git::Rugged::BareRepository < R10K::Git::Rugged::BaseRepository
|
|
59
59
|
remote = remotes[remote_name]
|
60
60
|
proxy = R10K::Git.get_proxy_for_remote(remote)
|
61
61
|
|
62
|
-
options = {:credentials => credentials, :prune => true, :proxy_url => proxy}
|
63
|
-
refspecs = ['+refs/heads/*:refs/heads/*']
|
62
|
+
options = {:credentials => credentials, :prune => true, :proxy_url => proxy, :download_tags => true}
|
63
|
+
refspecs = ['+refs/heads/*:refs/heads/*', '+refs/tags/*:refs/tags/*']
|
64
64
|
|
65
65
|
results = nil
|
66
66
|
|
data/lib/r10k/version.rb
CHANGED
@@ -2,5 +2,5 @@ module R10K
|
|
2
2
|
# When updating to a new major (X) or minor (Y) version, include `#major` or
|
3
3
|
# `#minor` (respectively) in your commit message to trigger the appropriate
|
4
4
|
# release. Otherwise, a new patch (Z) version will be released.
|
5
|
-
VERSION = '5.0.
|
5
|
+
VERSION = '5.0.1'
|
6
6
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r10k
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adrien Thebo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored2
|
@@ -204,7 +204,6 @@ files:
|
|
204
204
|
- ".github/workflows/docker.yml"
|
205
205
|
- ".github/workflows/release.yml"
|
206
206
|
- ".github/workflows/rspec_tests.yml"
|
207
|
-
- ".github/workflows/stale.yml"
|
208
207
|
- ".gitignore"
|
209
208
|
- CHANGELOG.mkd
|
210
209
|
- CODEOWNERS
|
data/.github/workflows/stale.yml
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
name: Mark stale issues
|
2
|
-
|
3
|
-
on:
|
4
|
-
schedule:
|
5
|
-
- cron: "30 1 * * *"
|
6
|
-
|
7
|
-
jobs:
|
8
|
-
stale:
|
9
|
-
runs-on: ubuntu-latest
|
10
|
-
steps:
|
11
|
-
- uses: actions/stale@v8
|
12
|
-
with:
|
13
|
-
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
14
|
-
days-before-stale: 60
|
15
|
-
days-before-close: 7
|
16
|
-
stale-issue-message: 'This issue has been marked stale because it has had no activity for 60 days. The Puppet Team is actively prioritizing existing bugs and new features, if this issue is still important to you please comment and we will add this to our backlog to complete. Otherwise, it will be closed in 7 days.'
|
17
|
-
stale-issue-label: 'stale'
|
18
|
-
exempt-issue-labels: 'community interest'
|
19
|
-
stale-pr-message: "This PR has been marked stale because it has had no activity for 60 days. If you are still interested in getting this merged, please comment and we'll try to move it forward. Otherwise, it will be closed in 7 days."
|
20
|
-
stale-pr-label: 'stale'
|
21
|
-
exempt-pr-labels: 'community interest'
|