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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a0847e57e56c69ecd6983bbe2f5c73b82a4a2ef81c507b1920549ca18fac27f
4
- data.tar.gz: a2aba2cf1697aaa3acbeb098392c2caaabdbf7e9007b072aecf2ad70ba9dd2aa
3
+ metadata.gz: 33067413d4a97ba3b26ff80ccdaa54983612cb2880b55df1002f82f70c047632
4
+ data.tar.gz: 4adb83ad137bd748d7e5648e027ad83ca5c327c2df4fbd92da7e0e69ef061c40
5
5
  SHA512:
6
- metadata.gz: b05b0aa7c3aa2606e5a8c5637820da64c4fc01f9211314c4f0c39a3f9d2095ff95c83fb0cd46c88579203ddc68d1559a4c45073eb8be9070fbddc4371de0d8cd
7
- data.tar.gz: 10e697e58297c7e13b066ad492c386847cccc1311c07718d842e39e679cbc5a1b2db3bdfa2bb941f0640368acb8d9794508eb8bb3279ce393b3ca3e44a0240cb
6
+ metadata.gz: b22c78d47e0f34e9647ab3129f34c09e636c7587a2c21624a41a43eff2fde6e9b1b3529115db34d5a40120d7681a80c7e17e1de42b9f8ffe0c3bdda5ee3ff2df
7
+ data.tar.gz: 0c3f1bb469c57f520fabd07f5dc90a719544610ee2a34c20b6bebba71649f135d0ee6082522836c13e20e43535eea1b674cb14f724e30cc08a5a4a8f51813496
@@ -16,7 +16,7 @@ jobs:
16
16
  with:
17
17
  fetch-depth: '0'
18
18
  - name: Bump version and push tag
19
- uses: anothrNick/github-tag-action@1.71.0
19
+ uses: anothrNick/github-tag-action@1.73.0
20
20
  env:
21
21
  GITHUB_TOKEN: ${{ secrets.PUPPET_RELEASE_GH_TOKEN }}
22
22
  DEFAULT_BUMP: patch
data/CHANGELOG.mkd CHANGED
@@ -4,6 +4,12 @@ CHANGELOG
4
4
  Unreleased
5
5
  ----------
6
6
 
7
+
8
+ 5.0.1
9
+ -----
10
+
11
+ - Ensure rugged downloads all tags [#1417](https://github.com/puppetlabs/r10k/pull/1417)
12
+
7
13
  5.0.0
8
14
  -----
9
15
 
@@ -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.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.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: 2024-12-05 00:00:00.000000000 Z
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
@@ -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'