]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
Merge pull request #999 from smortex/debian-frontend
authordaianamezdrea <46529728+daianamezdrea@users.noreply.github.com>
Mon, 13 Sep 2021 09:38:57 +0000 (12:38 +0300)
committerGitHub <noreply@github.com>
Mon, 13 Sep 2021 09:38:57 +0000 (12:38 +0300)
(maint) Set DEBIAN_FRONTEND=noninteractive on upgrade

.sync.yml
CHANGELOG.md
Rakefile
metadata.json

index 55e74f61fa64f7f20fd03e10b2b3f4a8176c3e02..8e8bd2cd0777fff2204fd8624cab701fea4b2103 100644 (file)
--- a/.sync.yml
+++ b/.sync.yml
@@ -30,4 +30,4 @@ spec/spec_helper.rb:
   unmanaged: false
 .travis.yml:
   delete: true
-changelog_since_tag: 'v8.0.0'
\ No newline at end of file
+changelog_since_tag: '5.0.1'
index 734a7bd30c5e925224b6adc802dd6b94cfa8f5ac..4aaea3fd4e2f4606e3e7e7bbc318317b27d266e0 100644 (file)
@@ -2,6 +2,18 @@
 
 All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
 
+## [v8.2.0](https://github.com/puppetlabs/puppetlabs-apt/tree/v8.2.0) (2021-08-25)
+
+[Full Changelog](https://github.com/puppetlabs/puppetlabs-apt/compare/v8.1.0...v8.2.0)
+
+### Added
+
+- \(maint\) Add support for Debian 11 [\#1001](https://github.com/puppetlabs/puppetlabs-apt/pull/1001) ([smortex](https://github.com/smortex))
+
+### Fixed
+
+- \(main\) Allow stdlib 8.0.0 [\#1000](https://github.com/puppetlabs/puppetlabs-apt/pull/1000) ([smortex](https://github.com/smortex))
+
 ## [v8.1.0](https://github.com/puppetlabs/puppetlabs-apt/tree/v8.1.0) (2021-07-26)
 
 [Full Changelog](https://github.com/puppetlabs/puppetlabs-apt/compare/v8.0.2...v8.1.0)
@@ -12,9 +24,8 @@ All notable changes to this project will be documented in this file. The format
 
 ### Fixed
 
-- \(IAC-1597\) Increasing MAX\_RETRY\_COUNT [\#987](https://github.com/puppetlabs/puppetlabs-apt/pull/987) ([pmcmaw](https://github.com/pmcmaw))
-
 - apt::source: pass the weak\_ssl param to apt::key [\#993](https://github.com/puppetlabs/puppetlabs-apt/pull/993) ([kenyon](https://github.com/kenyon))
+- \(IAC-1597\) Increasing MAX\_RETRY\_COUNT [\#987](https://github.com/puppetlabs/puppetlabs-apt/pull/987) ([pmcmaw](https://github.com/pmcmaw))
 
 ## [v8.0.2](https://github.com/puppetlabs/puppetlabs-apt/tree/v8.0.2) (2021-03-29)
 
index 54422c591bb057788f88901d20f7e6ea3afec5f6..310012c9d9505b6b49b73dcd39e56494da28be1c 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -48,7 +48,7 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
     raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil?
     config.user = "#{changelog_user}"
     config.project = "#{changelog_project}"
-    config.since_tag = "v8.0.0"
+    config.since_tag = "5.0.1"
     config.max_issues = 500
     config.future_release = "#{changelog_future_release}"
     config.exclude_labels = ['maintenance']
index 3e7d2b3799e5727c1c294fb2ff4870eadcfc8526..ac01aa100e5e014fe26d64f666e055d64c16271c 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "puppetlabs-apt",
-  "version": "8.1.0",
+  "version": "8.2.0",
   "author": "puppetlabs",
   "summary": "Provides an interface for managing Apt source, key, and definitions with Puppet",
   "license": "Apache-2.0",
@@ -10,7 +10,7 @@
   "dependencies": [
     {
       "name": "puppetlabs/stdlib",
-      "version_requirement": ">= 4.16.0 < 8.0.0"
+      "version_requirement": ">= 4.16.0 < 9.0.0"
     }
   ],
   "operatingsystem_support": [
@@ -19,7 +19,8 @@
       "operatingsystemrelease": [
         "8",
         "9",
-        "10"
+        "10",
+        "11"
       ]
     },
     {