Skip to content

Commit 4bf78c8

Browse files
authored
Merge pull request #29 from GabrielNagy/1.0.7_release
(maint) Release prep for 1.0.7
2 parents fcaa6ec + a075ec5 commit 4bf78c8

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
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).
44

5+
## [1.0.7](https://github.com/puppetlabs/puppetlabs-yumrepo_core/tree/1.0.7) (2020-04-13)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-yumrepo_core/compare/1.0.6...1.0.7)
8+
9+
### Added
10+
11+
- \(MODULES-10617\) Add property module\_hotfixes [\#28](https://github.com/puppetlabs/puppetlabs-yumrepo_core/pull/28) ([seriv](https://github.com/seriv))
12+
513
## [1.0.6](https://github.com/puppetlabs/puppetlabs-yumrepo_core/tree/1.0.6) (2019-12-19)
614

715
[Full Changelog](https://github.com/puppetlabs/puppetlabs-yumrepo_core/compare/1.0.5...1.0.6)

REFERENCE.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,7 @@ repository.
134134

135135
Valid values: YUM_BOOLEAN, absent
136136

137-
To make the system use packages from a repository regardless of
138-
their modularity, specify module_hotfixes=true in the .repo file.
137+
Whether packages from this repo can be installed into modules.
139138

140139
##### `failovermethod`
141140

@@ -192,6 +191,15 @@ Priority of this repository. Can be any integer value
192191
(including negative). Requires that the `priorities` plugin
193192
is installed and enabled.
194193

194+
##### `minrate`
195+
196+
Valid values: %r{^\d+$}, absent
197+
198+
Sets the low speed threshold in bytes per second.
199+
If the server is sending data slower than this for at least
200+
`timeout` seconds, Yum aborts the connection. The default is
201+
`1000`.
202+
195203
##### `throttle`
196204

197205
Valid values: %r{^\d+[kMG%]?$}, absent
@@ -222,8 +230,8 @@ Cost of this repository.
222230
Valid values: %r{.*}, absent
223231

224232
URL of a proxy server that Yum should use when accessing this repository.
225-
This attribute can also be set to `'_none_'`, which will make Yum bypass any
226-
global proxy settings when accessing this repository.
233+
This attribute can also be set to '_none_' (or '' for EL >= 8 only),
234+
which will make Yum bypass any global proxy settings when accessing this repository.
227235

228236
##### `proxy_username`
229237

metadata.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-yumrepo_core",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"author": "puppetlabs",
55
"summary": "Manage client yum repo configurations by parsing yum INI configuration files.",
66
"license": "Apache-2.0",
@@ -16,7 +16,8 @@
1616
"operatingsystemrelease": [
1717
"5",
1818
"6",
19-
"7"
19+
"7",
20+
"8"
2021
]
2122
},
2223
{
@@ -32,7 +33,8 @@
3233
"operatingsystemrelease": [
3334
"5",
3435
"6",
35-
"7"
36+
"7",
37+
"8"
3638
]
3739
},
3840
{
@@ -48,7 +50,10 @@
4850
"operatingsystemrelease": [
4951
"26",
5052
"27",
51-
"28"
53+
"28",
54+
"29",
55+
"30",
56+
"31"
5257
]
5358
}
5459
],

0 commit comments

Comments
 (0)