beaker 4.38.0 → 4.38.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: e1ac6690e4ad7436057320fe86b41db78a6f805e7fa93e1a5565ca84c778a5e0
4
- data.tar.gz: 54cdf1e43fea24d2b1a1421612b12c9cc41cd9a529d00d78a79d37a6b746dadd
3
+ metadata.gz: 3562bd02cb178e3681d11868dd867f2707b5926ee78383c7f1ab602061e27aa6
4
+ data.tar.gz: 68846748df975c7101af84a112adbb704819bf967565f95f6939fce2ad6b997b
5
5
  SHA512:
6
- metadata.gz: afe3ecdd06a58edf0a841aac2009eb0f03974edeaf4441d5843760dfa30e364be94c030c144173080abcdfc12f3b4b87dac1deaef6644e6cc56cc83297b51f2a
7
- data.tar.gz: 5d7ec12ffce5318ca9470d9e66d689c6a9f51ef10fd29e5fa26d43bebcf47d6978d2f5d392a43223aba21f4d2372fe69994217adbaff73f4bb078a40a5633359
6
+ metadata.gz: d6e77ab05197ee47ee3f48bc511161c7dcdf8577899dad7f7d31b49faa2b50570d13f6b71828b36afaeb43def2211f7de6f2d67eb6ab9789f815b6b3a2d808f1
7
+ data.tar.gz: c0a3023cffd83b47cc67fd1837d57fa217611c38c56617f5f0d1d23da2bd5e32fdf62d8ef858e1ff63e85f7099240846196ac68d653841630b2a7d31c7ae6885
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## [4.38.0](https://github.com/voxpupuli/beaker/tree/4.37.2) (2022-08-11)
3
+ ## [4.38.1](https://github.com/voxpupuli/beaker/tree/4.38.1) (2022-09-21)
4
+
5
+ ## Added
6
+
7
+ - Arch Linux testing: Ensure the keyring is up2date before installing packages ([#1755](https://github.com/voxpupuli/beaker/pull/1755))
8
+
9
+ ## [4.38.0](https://github.com/voxpupuli/beaker/tree/4.38.0) (2022-08-11)
4
10
 
5
11
  ## Added
6
12
 
@@ -74,9 +74,11 @@ module Unix::Pkg
74
74
 
75
75
  # Arch Linux is a rolling release distribution. We need to ensure that it is up2date
76
76
  # Except for the kernel. An upgrade will purge the modules for the currently running kernel
77
+ # Before upgrading packages, we need to ensure we've the latest keyring
77
78
  def update_pacman_if_needed
78
79
  if self['platform'] =~ /archlinux/
79
80
  if @pacman_needs_update
81
+ execute("pacman --sync --noconfirm --noprogressbar --refresh archlinux-keyring")
80
82
  execute("pacman --sync --noconfirm --noprogressbar --refresh --sysupgrade --ignore linux --ignore linux-docs --ignore linux-headers")
81
83
  @pacman_needs_update = false
82
84
  end
@@ -1,5 +1,5 @@
1
1
  module Beaker
2
2
  module Version
3
- STRING = '4.38.0'
3
+ STRING = '4.38.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.38.0
4
+ version: 4.38.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-11 00:00:00.000000000 Z
11
+ date: 2022-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec