facterdb 1.4.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +32 -0
- data/.github/workflows/test.yml +28 -0
- data/CHANGELOG.md +172 -118
- data/Gemfile +2 -2
- data/README.md +110 -100
- data/Rakefile +9 -3
- data/facterdb.gemspec +7 -8
- data/facts/1.7/centos-9-x86_64.facts +82 -0
- data/facts/2.0/centos-9-x86_64.facts +82 -0
- data/facts/2.1/centos-9-x86_64.facts +112 -0
- data/facts/2.2/centos-9-x86_64.facts +137 -0
- data/facts/2.3/centos-9-x86_64.facts +138 -0
- data/facts/2.4/centos-9-x86_64.facts +139 -0
- data/facts/3.11/archlinux-x86_64.facts +11 -1
- data/facts/3.11/solaris-10-i86pc.facts +1 -4
- data/facts/3.11/solaris-11-i86pc.facts +1 -4
- data/facts/3.11/solaris-11-sun4v.facts +1 -4
- data/facts/3.14/almalinux-8-x86_64.facts +522 -0
- data/facts/3.14/archlinux-x86_64.facts +11 -1
- data/facts/3.14/darwin-19-x86_64.facts +412 -0
- data/facts/3.14/darwin-20-x86_64.facts +516 -0
- data/facts/3.14/solaris-11-i86pc.facts +1 -4
- data/facts/3.14/solaris-11-sun4v.facts +1 -4
- data/facts/3.9/solaris-10-i86pc.facts +0 -3
- data/facts/4.0/almalinux-8-x86_64.facts +307 -0
- data/facts/4.0/centos-7-x86_64.facts +706 -0
- data/facts/4.0/debian-10-x86_64.facts +1091 -0
- data/facts/4.0/solaris-11-sun4v.facts +585 -0
- data/facts/4.2/centos-9-x86_64.facts +291 -0
- data/facts/4.2/darwin-20-x86_64.facts +524 -0
- data/facts/Vagrantfile +8 -1
- data/facts/get_facts.sh +14 -0
- data/lib/facterdb.rb +47 -11
- data/lib/facterdb/version.rb +1 -1
- data/spec/facterdb_spec.rb +36 -0
- data/spec/facts_spec.rb +9 -2
- metadata +25 -30
- data/.travis.yml +0 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b1227033e5bcabacb16131097ae799b9af27a53b0f38cca614bb8df69b849aa
|
4
|
+
data.tar.gz: 99c27e3aba4f0a2f8f8595509607f9d5948da0db61cdc9cafb64006c0f7867ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa4ea8e4b5740771fbb43a12dff25162475cad91cfbe42be28a470b74e1b05af1c081d364d3b62b64f32a7a69fdf448120e98ef8c7cc2db9ba9868d8bec83643
|
7
|
+
data.tar.gz: 3d6d07a67c4e3b175f1304aff48fd8c78df056364f70af8d22fc7ffe627209690ff3999efa07a157f5f646e71a3b6c752d1d074efea283a16bc032a02ed09020
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
tags:
|
6
|
+
- '*'
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
release:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
if: github.repository == 'voxpupuli/facterdb'
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- name: Install Ruby 3.0
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: '3.0'
|
18
|
+
env:
|
19
|
+
BUNDLE_WITHOUT: release
|
20
|
+
- name: Build gem
|
21
|
+
run: gem build *.gemspec
|
22
|
+
- name: Publish gem to rubygems.org
|
23
|
+
run: gem push *.gem
|
24
|
+
env:
|
25
|
+
GEM_HOST_API_KEY: '${{ secrets.RUBYGEMS_AUTH_TOKEN }}'
|
26
|
+
- name: Setup GitHub packages access
|
27
|
+
run: |
|
28
|
+
mkdir -p ~/.gem
|
29
|
+
echo ":github: Bearer ${{ secrets.GITHUB_TOKEN }}" >> ~/.gem/credentials
|
30
|
+
chmod 0600 ~/.gem/credentials
|
31
|
+
- name: Publish gem to GitHub packages
|
32
|
+
run: gem push --key github --host https://rubygems.pkg.github.com/voxpupuli *.gem
|
@@ -0,0 +1,28 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
- pull_request
|
5
|
+
- push
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test:
|
9
|
+
runs-on: ubuntu-latest
|
10
|
+
strategy:
|
11
|
+
fail-fast: false
|
12
|
+
matrix:
|
13
|
+
ruby:
|
14
|
+
- '2.5'
|
15
|
+
- '2.6'
|
16
|
+
- '2.7'
|
17
|
+
- '3.0'
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v2
|
20
|
+
- name: Install Ruby ${{ matrix.ruby }}
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby }}
|
24
|
+
bundler-cache: true
|
25
|
+
env:
|
26
|
+
BUNDLE_WITHOUT: release
|
27
|
+
- name: Run tests
|
28
|
+
run: bundle exec rake spec
|
data/CHANGELOG.md
CHANGED
@@ -1,248 +1,302 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.8.0](https://rubygems.org/gems/facterdb/versions/1.8.0) (2021-08-06)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.7.0...1.8.0)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Add facts for for Darwin 20 \(macOS 11\) x86\_64 [\#179](https://github.com/voxpupuli/facterdb/pull/179) ([yachub](https://github.com/yachub))
|
10
|
+
- Add CentOS Stream 9 facts [\#177](https://github.com/voxpupuli/facterdb/pull/177) ([mwhahaha](https://github.com/mwhahaha))
|
11
|
+
|
12
|
+
**Fixed bugs:**
|
13
|
+
|
14
|
+
- Fix broken GHA release job [\#178](https://github.com/voxpupuli/facterdb/pull/178) ([bastelfreak](https://github.com/bastelfreak))
|
15
|
+
|
16
|
+
## [1.7.0](https://rubygems.org/gems/facterdb/versions/1.7.0) (2021-07-19)
|
17
|
+
|
18
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.6.0...1.7.0)
|
19
|
+
|
20
|
+
**Implemented enhancements:**
|
21
|
+
|
22
|
+
- Fixes \#173 - Add AlmaLinux [\#174](https://github.com/voxpupuli/facterdb/pull/174) ([maccelf](https://github.com/maccelf))
|
23
|
+
- Introduce cache to speed things up and cleanup method [\#171](https://github.com/voxpupuli/facterdb/pull/171) ([lzap](https://github.com/lzap))
|
24
|
+
- Add Facter 4 facts for Debian 10/CentOS 7 [\#170](https://github.com/voxpupuli/facterdb/pull/170) ([genebean](https://github.com/genebean))
|
25
|
+
- Add Sparc Solaris 11 Facter 4 facts [\#169](https://github.com/voxpupuli/facterdb/pull/169) ([genebean](https://github.com/genebean))
|
26
|
+
|
27
|
+
**Merged pull requests:**
|
28
|
+
|
29
|
+
- cleanup documentation + migrate CI+release process from travis to github actions [\#172](https://github.com/voxpupuli/facterdb/pull/172) ([bastelfreak](https://github.com/bastelfreak))
|
30
|
+
- Add Darwin 19 \(macOS 10.15\) x86\_64 Support [\#168](https://github.com/voxpupuli/facterdb/pull/168) ([yachub](https://github.com/yachub))
|
31
|
+
- Remove `clientX` facts from solaris factsets [\#167](https://github.com/voxpupuli/facterdb/pull/167) ([alexjfisher](https://github.com/alexjfisher))
|
32
|
+
- Drop EOL Ruby version from CI matrix [\#166](https://github.com/voxpupuli/facterdb/pull/166) ([bastelfreak](https://github.com/bastelfreak))
|
33
|
+
- facts\_spec: Pathname class is missing [\#165](https://github.com/voxpupuli/facterdb/pull/165) ([lelutin](https://github.com/lelutin))
|
34
|
+
|
35
|
+
## [1.6.0](https://rubygems.org/gems/facterdb/versions/1.6.0) (2020-12-21)
|
36
|
+
|
37
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.5.0...1.6.0)
|
38
|
+
|
39
|
+
**Closed issues:**
|
40
|
+
|
41
|
+
- New gem release required prior to Puppet 7 to resolve dependency issues [\#161](https://github.com/voxpupuli/facterdb/issues/161)
|
42
|
+
- FacterDB appears to not give a os.family for solaris 11 on facter 4 [\#158](https://github.com/voxpupuli/facterdb/issues/158)
|
43
|
+
- facterdb conflict [\#157](https://github.com/voxpupuli/facterdb/issues/157)
|
44
|
+
|
45
|
+
**Merged pull requests:**
|
46
|
+
|
47
|
+
- release 1.6.0 [\#163](https://github.com/voxpupuli/facterdb/pull/163) ([bastelfreak](https://github.com/bastelfreak))
|
48
|
+
- Archlinux: Update fact sets [\#162](https://github.com/voxpupuli/facterdb/pull/162) ([bastelfreak](https://github.com/bastelfreak))
|
49
|
+
|
50
|
+
## [1.5.0](https://rubygems.org/gems/facterdb/versions/1.5.0) (2020-11-19)
|
51
|
+
|
52
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.4.0...1.5.0)
|
53
|
+
|
54
|
+
**Implemented enhancements:**
|
55
|
+
|
56
|
+
- add filter validation [\#19](https://github.com/voxpupuli/facterdb/issues/19)
|
57
|
+
|
58
|
+
**Merged pull requests:**
|
59
|
+
|
60
|
+
- Fixes a bug with generate\_filter\_str [\#160](https://github.com/voxpupuli/facterdb/pull/160) ([logicminds](https://github.com/logicminds))
|
61
|
+
- Fixes \#19 - add filter validation [\#159](https://github.com/voxpupuli/facterdb/pull/159) ([logicminds](https://github.com/logicminds))
|
62
|
+
- Remove pin on facter \< 4 [\#156](https://github.com/voxpupuli/facterdb/pull/156) ([sanfrancrisko](https://github.com/sanfrancrisko))
|
63
|
+
- Add ruby 2.5 and 2.7 testing [\#155](https://github.com/voxpupuli/facterdb/pull/155) ([DavidS](https://github.com/DavidS))
|
64
|
+
|
3
65
|
## [1.4.0](https://rubygems.org/gems/facterdb/versions/1.4.0) (2020-05-09)
|
4
66
|
|
5
|
-
[Full Changelog](https://github.com/
|
67
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.3.0...1.4.0)
|
6
68
|
|
7
69
|
**Merged pull requests:**
|
8
70
|
|
9
|
-
- Add Ubuntu 20.04 factset [\#154](https://github.com/
|
71
|
+
- Add Ubuntu 20.04 factset [\#154](https://github.com/voxpupuli/facterdb/pull/154) ([mmoll](https://github.com/mmoll))
|
10
72
|
|
11
73
|
## [1.3.0](https://rubygems.org/gems/facterdb/versions/1.3.0) (2020-04-15)
|
12
74
|
|
13
|
-
[Full Changelog](https://github.com/
|
75
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.2.0...1.3.0)
|
14
76
|
|
15
77
|
**Closed issues:**
|
16
78
|
|
17
|
-
- Raspbian support [\#135](https://github.com/
|
79
|
+
- Raspbian support [\#135](https://github.com/voxpupuli/facterdb/issues/135)
|
18
80
|
|
19
81
|
**Merged pull requests:**
|
20
82
|
|
21
|
-
- Add Debian 10 facter 3.13/3.14 sets [\#152](https://github.com/
|
22
|
-
- Pin to facter \< 4 to avoid automatic upgrade [\#151](https://github.com/
|
23
|
-
-
|
24
|
-
-
|
83
|
+
- Add Debian 10 facter 3.13/3.14 sets [\#152](https://github.com/voxpupuli/facterdb/pull/152) ([bastelfreak](https://github.com/bastelfreak))
|
84
|
+
- Pin to facter \< 4 to avoid automatic upgrade [\#151](https://github.com/voxpupuli/facterdb/pull/151) ([raphink](https://github.com/raphink))
|
85
|
+
- Adding facts from Solaris 11 x86 & SPARC [\#149](https://github.com/voxpupuli/facterdb/pull/149) ([genebean](https://github.com/genebean))
|
86
|
+
- AmazonLinux facts added [\#147](https://github.com/voxpupuli/facterdb/pull/147) ([bFekete](https://github.com/bFekete))
|
87
|
+
- Add facts for Raspbian 9 and 10; alter Rakefile to support Raspbian [\#136](https://github.com/voxpupuli/facterdb/pull/136) ([threepistons](https://github.com/threepistons))
|
25
88
|
|
26
89
|
## [1.2.0](https://rubygems.org/gems/facterdb/versions/1.2.0) (2020-01-08)
|
27
90
|
|
28
|
-
[Full Changelog](https://github.com/
|
91
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.1.0...1.2.0)
|
29
92
|
|
30
93
|
**Merged pull requests:**
|
31
94
|
|
32
|
-
- \[Arch Linux\] Set correct hostname, domain, fqdn [\#146](https://github.com/
|
33
|
-
- drop json as runtime dependency [\#145](https://github.com/
|
34
|
-
- add .vendor to .gitignore [\#144](https://github.com/
|
95
|
+
- \[Arch Linux\] Set correct hostname, domain, fqdn [\#146](https://github.com/voxpupuli/facterdb/pull/146) ([dhoppe](https://github.com/dhoppe))
|
96
|
+
- drop json as runtime dependency [\#145](https://github.com/voxpupuli/facterdb/pull/145) ([bastelfreak](https://github.com/bastelfreak))
|
97
|
+
- add .vendor to .gitignore [\#144](https://github.com/voxpupuli/facterdb/pull/144) ([bastelfreak](https://github.com/bastelfreak))
|
35
98
|
|
36
99
|
## [1.1.0](https://rubygems.org/gems/facterdb/versions/1.1.0) (2020-01-07)
|
37
100
|
|
38
|
-
[Full Changelog](https://github.com/
|
101
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/1.0.0...1.1.0)
|
39
102
|
|
40
103
|
**Closed issues:**
|
41
104
|
|
42
|
-
- Please provider Gentoo facts for 3.14 [\#139](https://github.com/
|
43
|
-
- Archlinux legacy facts missing in 3.x fact sets. [\#132](https://github.com/
|
105
|
+
- Please provider Gentoo facts for 3.14 [\#139](https://github.com/voxpupuli/facterdb/issues/139)
|
106
|
+
- Archlinux legacy facts missing in 3.x fact sets. [\#132](https://github.com/voxpupuli/facterdb/issues/132)
|
44
107
|
|
45
108
|
**Merged pull requests:**
|
46
109
|
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
- Add
|
51
|
-
- Add
|
52
|
-
- Add CentOS 8 facts [\#137](https://github.com/camptocamp/facterdb/pull/137) ([traylenator](https://github.com/traylenator))
|
110
|
+
- Add Gentoo 3.11 factset [\#143](https://github.com/voxpupuli/facterdb/pull/143) ([bastelfreak](https://github.com/bastelfreak))
|
111
|
+
- archlinux: set correct FQDN/hostname [\#142](https://github.com/voxpupuli/facterdb/pull/142) ([bastelfreak](https://github.com/bastelfreak))
|
112
|
+
- Add Fedora 30 facts for Facter 3.11 [\#141](https://github.com/voxpupuli/facterdb/pull/141) ([baurmatt](https://github.com/baurmatt))
|
113
|
+
- Add Gentoo facts for Facter 3.14 [\#140](https://github.com/voxpupuli/facterdb/pull/140) ([baurmatt](https://github.com/baurmatt))
|
114
|
+
- Add CentOS 8 facts [\#137](https://github.com/voxpupuli/facterdb/pull/137) ([traylenator](https://github.com/traylenator))
|
53
115
|
|
54
116
|
## [1.0.0](https://rubygems.org/gems/facterdb/versions/1.0.0) (2019-10-29)
|
55
117
|
|
56
|
-
[Full Changelog](https://github.com/
|
118
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.8.2...1.0.0)
|
57
119
|
|
58
120
|
**Fixed bugs:**
|
59
121
|
|
60
|
-
- IP address facts have disappeared [\#127](https://github.com/
|
122
|
+
- IP address facts have disappeared [\#127](https://github.com/voxpupuli/facterdb/issues/127)
|
61
123
|
|
62
124
|
**Merged pull requests:**
|
63
125
|
|
64
|
-
- regenerate Archlinux / VZ 7 facts [\#133](https://github.com/
|
65
|
-
- add VirtuozzoLinux 7 facts [\#131](https://github.com/
|
66
|
-
- Add more Archlinux facts [\#130](https://github.com/
|
67
|
-
- Ensure all fact sets contain the legacy networking facts [\#128](https://github.com/
|
126
|
+
- regenerate Archlinux / VZ 7 facts [\#133](https://github.com/voxpupuli/facterdb/pull/133) ([bastelfreak](https://github.com/bastelfreak))
|
127
|
+
- add VirtuozzoLinux 7 facts [\#131](https://github.com/voxpupuli/facterdb/pull/131) ([bastelfreak](https://github.com/bastelfreak))
|
128
|
+
- Add more Archlinux facts [\#130](https://github.com/voxpupuli/facterdb/pull/130) ([bastelfreak](https://github.com/bastelfreak))
|
129
|
+
- Ensure all fact sets contain the legacy networking facts [\#128](https://github.com/voxpupuli/facterdb/pull/128) ([rodjek](https://github.com/rodjek))
|
68
130
|
|
69
131
|
## [0.8.2](https://rubygems.org/gems/facterdb/versions/0.8.2) (2019-08-28)
|
70
132
|
|
71
|
-
[Full Changelog](https://github.com/
|
133
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.8.1...0.8.2)
|
72
134
|
|
73
135
|
**Fixed bugs:**
|
74
136
|
|
75
|
-
- Update removed selinux facts [\#124](https://github.com/
|
137
|
+
- Update removed selinux facts [\#124](https://github.com/voxpupuli/facterdb/issues/124)
|
76
138
|
|
77
139
|
**Merged pull requests:**
|
78
140
|
|
79
|
-
- Update RHEL based fact sets with default SELinux values [\#125](https://github.com/
|
141
|
+
- Update RHEL based fact sets with default SELinux values [\#125](https://github.com/voxpupuli/facterdb/pull/125) ([rodjek](https://github.com/rodjek))
|
80
142
|
|
81
143
|
## [0.8.1](https://rubygems.org/gems/facterdb/versions/0.8.1) (2019-07-25)
|
82
144
|
|
83
|
-
[Full Changelog](https://github.com/
|
145
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.8.0...0.8.1)
|
84
146
|
|
85
147
|
**Merged pull requests:**
|
86
148
|
|
87
|
-
- Add fact sets for SLES15 [\#121](https://github.com/
|
149
|
+
- Add fact sets for SLES15 [\#121](https://github.com/voxpupuli/facterdb/pull/121) ([rodjek](https://github.com/rodjek))
|
88
150
|
|
89
151
|
## [0.8.0](https://rubygems.org/gems/facterdb/versions/0.8.0) (2019-07-22)
|
90
152
|
|
91
|
-
[Full Changelog](https://github.com/
|
153
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.7.0...0.8.0)
|
92
154
|
|
93
155
|
**Closed issues:**
|
94
156
|
|
95
|
-
- solaris 10 facts are not found [\#115](https://github.com/
|
96
|
-
- Debian 10 facts [\#102](https://github.com/
|
97
|
-
- 3.11 facts for Debian Stretch and Ubuntu 18.04 are missing distro information [\#98](https://github.com/
|
98
|
-
- Remove/move invalid factset files [\#78](https://github.com/
|
99
|
-
- Remove duplicate default factset files [\#77](https://github.com/
|
100
|
-
- Updated OpenBSD Facts [\#71](https://github.com/
|
101
|
-
- FreeBSD Support [\#51](https://github.com/
|
102
|
-
- Add LinuxMint Facts [\#41](https://github.com/
|
103
|
-
- Facts for archlinux release 4 are missing. [\#37](https://github.com/
|
104
|
-
- Consider adding the os::distro fact [\#36](https://github.com/
|
157
|
+
- solaris 10 facts are not found [\#115](https://github.com/voxpupuli/facterdb/issues/115)
|
158
|
+
- Debian 10 facts [\#102](https://github.com/voxpupuli/facterdb/issues/102)
|
159
|
+
- 3.11 facts for Debian Stretch and Ubuntu 18.04 are missing distro information [\#98](https://github.com/voxpupuli/facterdb/issues/98)
|
160
|
+
- Remove/move invalid factset files [\#78](https://github.com/voxpupuli/facterdb/issues/78)
|
161
|
+
- Remove duplicate default factset files [\#77](https://github.com/voxpupuli/facterdb/issues/77)
|
162
|
+
- Updated OpenBSD Facts [\#71](https://github.com/voxpupuli/facterdb/issues/71)
|
163
|
+
- FreeBSD Support [\#51](https://github.com/voxpupuli/facterdb/issues/51)
|
164
|
+
- Add LinuxMint Facts [\#41](https://github.com/voxpupuli/facterdb/issues/41)
|
165
|
+
- Facts for archlinux release 4 are missing. [\#37](https://github.com/voxpupuli/facterdb/issues/37)
|
166
|
+
- Consider adding the os::distro fact [\#36](https://github.com/voxpupuli/facterdb/issues/36)
|
105
167
|
|
106
168
|
**Merged pull requests:**
|
107
169
|
|
108
|
-
- Add fact sets for Debian 10 [\#119](https://github.com/
|
109
|
-
- Improve test coverage [\#118](https://github.com/
|
110
|
-
- Update Windows factsets [\#117](https://github.com/
|
111
|
-
- Added and updated Solaris 10 factsets [\#116](https://github.com/
|
112
|
-
- Update OSX 10.11 - 10.14 factsets [\#113](https://github.com/
|
113
|
-
- Update SLES 11 & 12 factsets [\#112](https://github.com/
|
114
|
-
- Change table rake task to update README.md [\#111](https://github.com/
|
115
|
-
- Update RHEL based factsets [\#110](https://github.com/
|
116
|
-
- \(\#71\) Add OpenBSD 6.4 factsets [\#109](https://github.com/
|
117
|
-
- \(\#98\) Update Debian & Ubuntu factsets [\#108](https://github.com/
|
118
|
-
- Properly split and sort facter versions [\#107](https://github.com/
|
119
|
-
- \(\#41\) Add factsets for linuxmint 18 & 19 [\#106](https://github.com/
|
120
|
-
- \(\#37\) Update Archlinux factsets [\#105](https://github.com/
|
121
|
-
- Add more FreeBSD facts [\#104](https://github.com/
|
122
|
-
- add missing rubygem-bundler package for FreeBSD [\#103](https://github.com/
|
123
|
-
- Missing facts [\#99](https://github.com/
|
124
|
-
- Add CentOS e.a. facts from facter 3.11 [\#87](https://github.com/
|
125
|
-
- Explicitly use bash not sh [\#81](https://github.com/
|
126
|
-
- OpenBSD 6.2 & 6.3 facts [\#80](https://github.com/
|
127
|
-
- \(\#77\)\(\#78\) Add default factset tests and fix failures [\#79](https://github.com/
|
170
|
+
- Add fact sets for Debian 10 [\#119](https://github.com/voxpupuli/facterdb/pull/119) ([rodjek](https://github.com/rodjek))
|
171
|
+
- Improve test coverage [\#118](https://github.com/voxpupuli/facterdb/pull/118) ([rodjek](https://github.com/rodjek))
|
172
|
+
- Update Windows factsets [\#117](https://github.com/voxpupuli/facterdb/pull/117) ([rodjek](https://github.com/rodjek))
|
173
|
+
- Added and updated Solaris 10 factsets [\#116](https://github.com/voxpupuli/facterdb/pull/116) ([sirinek](https://github.com/sirinek))
|
174
|
+
- Update OSX 10.11 - 10.14 factsets [\#113](https://github.com/voxpupuli/facterdb/pull/113) ([rodjek](https://github.com/rodjek))
|
175
|
+
- Update SLES 11 & 12 factsets [\#112](https://github.com/voxpupuli/facterdb/pull/112) ([rodjek](https://github.com/rodjek))
|
176
|
+
- Change table rake task to update README.md [\#111](https://github.com/voxpupuli/facterdb/pull/111) ([rodjek](https://github.com/rodjek))
|
177
|
+
- Update RHEL based factsets [\#110](https://github.com/voxpupuli/facterdb/pull/110) ([rodjek](https://github.com/rodjek))
|
178
|
+
- \(\#71\) Add OpenBSD 6.4 factsets [\#109](https://github.com/voxpupuli/facterdb/pull/109) ([rodjek](https://github.com/rodjek))
|
179
|
+
- \(\#98\) Update Debian & Ubuntu factsets [\#108](https://github.com/voxpupuli/facterdb/pull/108) ([rodjek](https://github.com/rodjek))
|
180
|
+
- Properly split and sort facter versions [\#107](https://github.com/voxpupuli/facterdb/pull/107) ([rodjek](https://github.com/rodjek))
|
181
|
+
- \(\#41\) Add factsets for linuxmint 18 & 19 [\#106](https://github.com/voxpupuli/facterdb/pull/106) ([rodjek](https://github.com/rodjek))
|
182
|
+
- \(\#37\) Update Archlinux factsets [\#105](https://github.com/voxpupuli/facterdb/pull/105) ([rodjek](https://github.com/rodjek))
|
183
|
+
- Add more FreeBSD facts [\#104](https://github.com/voxpupuli/facterdb/pull/104) ([smortex](https://github.com/smortex))
|
184
|
+
- add missing rubygem-bundler package for FreeBSD [\#103](https://github.com/voxpupuli/facterdb/pull/103) ([olevole](https://github.com/olevole))
|
185
|
+
- Missing facts [\#99](https://github.com/voxpupuli/facterdb/pull/99) ([seanmil](https://github.com/seanmil))
|
186
|
+
- Add CentOS e.a. facts from facter 3.11 [\#87](https://github.com/voxpupuli/facterdb/pull/87) ([tdevelioglu](https://github.com/tdevelioglu))
|
187
|
+
- Explicitly use bash not sh [\#81](https://github.com/voxpupuli/facterdb/pull/81) ([bodgit](https://github.com/bodgit))
|
188
|
+
- OpenBSD 6.2 & 6.3 facts [\#80](https://github.com/voxpupuli/facterdb/pull/80) ([bodgit](https://github.com/bodgit))
|
189
|
+
- \(\#77\)\(\#78\) Add default factset tests and fix failures [\#79](https://github.com/voxpupuli/facterdb/pull/79) ([glennsarti](https://github.com/glennsarti))
|
128
190
|
|
129
191
|
## [0.7.0](https://rubygems.org/gems/facterdb/versions/0.7.0) (2019-07-02)
|
130
192
|
|
131
|
-
[Full Changelog](https://github.com/
|
193
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.6.0...0.7.0)
|
132
194
|
|
133
195
|
**Merged pull requests:**
|
134
196
|
|
135
|
-
- Add facts for aarch64. [\#100](https://github.com/
|
197
|
+
- Add facts for aarch64. [\#100](https://github.com/voxpupuli/facterdb/pull/100) ([ralimi](https://github.com/ralimi))
|
136
198
|
|
137
199
|
## [0.6.0](https://rubygems.org/gems/facterdb/versions/0.6.0) (2018-12-13)
|
138
200
|
|
139
|
-
[Full Changelog](https://github.com/
|
201
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.5.2...0.6.0)
|
140
202
|
|
141
203
|
**Implemented enhancements:**
|
142
204
|
|
143
|
-
- Rework of Lots of Puppet 5 facter additions [\#95](https://github.com/
|
144
|
-
- Add Gentoo facts for Facter 2.5 and fix Travis CI [\#93](https://github.com/
|
145
|
-
- Update Fedora facts [\#89](https://github.com/
|
146
|
-
- Add facter 3.11 facts for Debian 9 and Ubuntu 18.04 [\#88](https://github.com/
|
147
|
-
- Updated fedora facts for f26 and f27 [\#85](https://github.com/
|
205
|
+
- Rework of Lots of Puppet 5 facter additions [\#95](https://github.com/voxpupuli/facterdb/pull/95) ([Dan33l](https://github.com/Dan33l))
|
206
|
+
- Add Gentoo facts for Facter 2.5 and fix Travis CI [\#93](https://github.com/voxpupuli/facterdb/pull/93) ([baurmatt](https://github.com/baurmatt))
|
207
|
+
- Update Fedora facts [\#89](https://github.com/voxpupuli/facterdb/pull/89) ([blackknight36](https://github.com/blackknight36))
|
208
|
+
- Add facter 3.11 facts for Debian 9 and Ubuntu 18.04 [\#88](https://github.com/voxpupuli/facterdb/pull/88) ([tobias-urdin](https://github.com/tobias-urdin))
|
209
|
+
- Updated fedora facts for f26 and f27 [\#85](https://github.com/voxpupuli/facterdb/pull/85) ([timhughes](https://github.com/timhughes))
|
148
210
|
|
149
211
|
**Fixed bugs:**
|
150
212
|
|
151
|
-
- Git+SSH Url broken Travis CI [\#92](https://github.com/
|
152
|
-
- Code doesnt handle facter point versions with 2 digits [\#83](https://github.com/
|
153
|
-
- Rakefile: Set config.projet for github\_changelog\_generator [\#97](https://github.com/
|
154
|
-
- fixes \#83 changes the way factor version in paths is calculated [\#84](https://github.com/
|
213
|
+
- Git+SSH Url broken Travis CI [\#92](https://github.com/voxpupuli/facterdb/issues/92)
|
214
|
+
- Code doesnt handle facter point versions with 2 digits [\#83](https://github.com/voxpupuli/facterdb/issues/83)
|
215
|
+
- Rakefile: Set config.projet for github\_changelog\_generator [\#97](https://github.com/voxpupuli/facterdb/pull/97) ([raphink](https://github.com/raphink))
|
216
|
+
- fixes \#83 changes the way factor version in paths is calculated [\#84](https://github.com/voxpupuli/facterdb/pull/84) ([timhughes](https://github.com/timhughes))
|
155
217
|
|
156
218
|
**Closed issues:**
|
157
219
|
|
158
|
-
- facts/2.5/fedora-28-x86\_64.facts broken [\#91](https://github.com/
|
159
|
-
- Add facter 2.5 Gentoo facts [\#90](https://github.com/
|
160
|
-
|
161
|
-
**Merged pull requests:**
|
162
|
-
|
163
|
-
- \(maint\) Add `rake table` task + update README.md + better Windows detection [\#76](https://github.com/camptocamp/facterdb/pull/76) ([glennsarti](https://github.com/glennsarti))
|
220
|
+
- facts/2.5/fedora-28-x86\_64.facts broken [\#91](https://github.com/voxpupuli/facterdb/issues/91)
|
221
|
+
- Add facter 2.5 Gentoo facts [\#90](https://github.com/voxpupuli/facterdb/issues/90)
|
164
222
|
|
165
223
|
## [0.5.2](https://rubygems.org/gems/facterdb/versions/0.5.2) (2018-04-30)
|
166
224
|
|
167
|
-
[Full Changelog](https://github.com/
|
168
|
-
|
169
|
-
**Implemented enhancements:**
|
170
|
-
|
171
|
-
- Release prep for 0.4.0 [\#66](https://github.com/camptocamp/facterdb/pull/66) ([DavidS](https://github.com/DavidS))
|
225
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.5.1...0.5.2)
|
172
226
|
|
173
227
|
**Merged pull requests:**
|
174
228
|
|
175
|
-
- add Ubuntu 18.04 facts [\#82](https://github.com/
|
176
|
-
-
|
229
|
+
- add Ubuntu 18.04 facts [\#82](https://github.com/voxpupuli/facterdb/pull/82) ([bastelfreak](https://github.com/bastelfreak))
|
230
|
+
- \(maint\) Add `rake table` task + update README.md + better Windows detection [\#76](https://github.com/voxpupuli/facterdb/pull/76) ([glennsarti](https://github.com/glennsarti))
|
231
|
+
- Added Solaris 10 facts on Facter 3.9 [\#75](https://github.com/voxpupuli/facterdb/pull/75) ([sirinek](https://github.com/sirinek))
|
177
232
|
|
178
233
|
## [0.5.1](https://rubygems.org/gems/facterdb/versions/0.5.1) (2018-03-06)
|
179
234
|
|
180
|
-
[Full Changelog](https://github.com/
|
235
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.5.0...0.5.1)
|
181
236
|
|
182
237
|
**Merged pull requests:**
|
183
238
|
|
184
|
-
- AIX 7.1 legacy facts [\#74](https://github.com/
|
185
|
-
- Fix Archlinux support / update archlinux facts [\#73](https://github.com/
|
186
|
-
- Add AIX 7.1 powerpc [\#72](https://github.com/
|
239
|
+
- AIX 7.1 legacy facts [\#74](https://github.com/voxpupuli/facterdb/pull/74) ([TJM](https://github.com/TJM))
|
240
|
+
- Fix Archlinux support / update archlinux facts [\#73](https://github.com/voxpupuli/facterdb/pull/73) ([bastelfreak](https://github.com/bastelfreak))
|
241
|
+
- Add AIX 7.1 powerpc [\#72](https://github.com/voxpupuli/facterdb/pull/72) ([TJM](https://github.com/TJM))
|
187
242
|
|
188
243
|
## [0.5.0](https://rubygems.org/gems/facterdb/versions/0.5.0) (2017-12-14)
|
189
244
|
|
190
|
-
[Full Changelog](https://github.com/
|
245
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.4.1...0.5.0)
|
191
246
|
|
192
247
|
**Closed issues:**
|
193
248
|
|
194
|
-
- create new release [\#65](https://github.com/
|
249
|
+
- create new release [\#65](https://github.com/voxpupuli/facterdb/issues/65)
|
195
250
|
|
196
251
|
**Merged pull requests:**
|
197
252
|
|
198
|
-
-
|
199
|
-
- add freebsd
|
200
|
-
-
|
201
|
-
- openSUSE Support [\#63](https://github.com/camptocamp/facterdb/pull/63) ([genebean](https://github.com/genebean))
|
253
|
+
- add freebsd\_11 facts [\#69](https://github.com/voxpupuli/facterdb/pull/69) ([b4ldr](https://github.com/b4ldr))
|
254
|
+
- add freebsd 10 facts for facter 2.5 and 3.9 [\#68](https://github.com/voxpupuli/facterdb/pull/68) ([b4ldr](https://github.com/b4ldr))
|
255
|
+
- openSUSE Support [\#63](https://github.com/voxpupuli/facterdb/pull/63) ([genebean](https://github.com/genebean))
|
202
256
|
|
203
257
|
## [0.4.1](https://rubygems.org/gems/facterdb/versions/0.4.1) (2017-10-25)
|
204
258
|
|
205
|
-
[Full Changelog](https://github.com/
|
259
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.4.0...0.4.1)
|
206
260
|
|
207
261
|
## [0.4.0](https://rubygems.org/gems/facterdb/versions/0.4.0) (2017-10-24)
|
208
262
|
|
209
|
-
[Full Changelog](https://github.com/
|
263
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.3.12...0.4.0)
|
210
264
|
|
211
265
|
**Implemented enhancements:**
|
212
266
|
|
213
|
-
- Allow loading of external fact hashes [\#62](https://github.com/
|
214
|
-
- Improve FreeBSD Support [\#60](https://github.com/
|
215
|
-
- Add facts for Amazon Linux 2017.03 [\#56](https://github.com/
|
216
|
-
- Add missing facts for Fedora 20, 21, and 26 [\#50](https://github.com/
|
217
|
-
- Facter 3.8 fact sets [\#48](https://github.com/
|
267
|
+
- Allow loading of external fact hashes [\#62](https://github.com/voxpupuli/facterdb/pull/62) ([logicminds](https://github.com/logicminds))
|
268
|
+
- Improve FreeBSD Support [\#60](https://github.com/voxpupuli/facterdb/pull/60) ([xaque208](https://github.com/xaque208))
|
269
|
+
- Add facts for Amazon Linux 2017.03 [\#56](https://github.com/voxpupuli/facterdb/pull/56) ([pillarsdotnet](https://github.com/pillarsdotnet))
|
270
|
+
- Add missing facts for Fedora 20, 21, and 26 [\#50](https://github.com/voxpupuli/facterdb/pull/50) ([blackknight36](https://github.com/blackknight36))
|
271
|
+
- Facter 3.8 fact sets [\#48](https://github.com/voxpupuli/facterdb/pull/48) ([rodjek](https://github.com/rodjek))
|
218
272
|
|
219
273
|
**Fixed bugs:**
|
220
274
|
|
221
|
-
- Update Windows Facter 3.x sets with legacy facts [\#64](https://github.com/
|
222
|
-
- fix facter 2.x facts for Debian 9 [\#52](https://github.com/
|
275
|
+
- Update Windows Facter 3.x sets with legacy facts [\#64](https://github.com/voxpupuli/facterdb/pull/64) ([rodjek](https://github.com/rodjek))
|
276
|
+
- fix facter 2.x facts for Debian 9 [\#52](https://github.com/voxpupuli/facterdb/pull/52) ([mmoll](https://github.com/mmoll))
|
223
277
|
|
224
278
|
**Closed issues:**
|
225
279
|
|
226
|
-
- Add facts for Amazon Linux [\#57](https://github.com/
|
227
|
-
- Fact package\_provider is missing [\#49](https://github.com/
|
228
|
-
- allow loading of external fact hashes [\#27](https://github.com/
|
280
|
+
- Add facts for Amazon Linux [\#57](https://github.com/voxpupuli/facterdb/issues/57)
|
281
|
+
- Fact package\_provider is missing [\#49](https://github.com/voxpupuli/facterdb/issues/49)
|
282
|
+
- allow loading of external fact hashes [\#27](https://github.com/voxpupuli/facterdb/issues/27)
|
229
283
|
|
230
284
|
## [0.3.12](https://rubygems.org/gems/facterdb/versions/0.3.12) (2017-07-27)
|
231
285
|
|
232
|
-
[Full Changelog](https://github.com/
|
286
|
+
[Full Changelog](https://github.com/voxpupuli/facterdb/compare/0.3.11...0.3.12)
|
233
287
|
|
234
288
|
**Closed issues:**
|
235
289
|
|
236
|
-
- Add support for Facter 2.5 [\#47](https://github.com/
|
237
|
-
- Add support for facter 2.5 [\#45](https://github.com/
|
238
|
-
- Add Debian Stretch [\#43](https://github.com/
|
239
|
-
- Release new version [\#40](https://github.com/
|
240
|
-
- support for more windows editions [\#30](https://github.com/
|
290
|
+
- Add support for Facter 2.5 [\#47](https://github.com/voxpupuli/facterdb/issues/47)
|
291
|
+
- Add support for facter 2.5 [\#45](https://github.com/voxpupuli/facterdb/issues/45)
|
292
|
+
- Add Debian Stretch [\#43](https://github.com/voxpupuli/facterdb/issues/43)
|
293
|
+
- Release new version [\#40](https://github.com/voxpupuli/facterdb/issues/40)
|
294
|
+
- support for more windows editions [\#30](https://github.com/voxpupuli/facterdb/issues/30)
|
241
295
|
|
242
296
|
**Merged pull requests:**
|
243
297
|
|
244
|
-
- Backfill missing 2.x and 3.x facts for supported operating systems [\#46](https://github.com/
|
245
|
-
- Adds Mint-18.1 Facts [\#42](https://github.com/
|
298
|
+
- Backfill missing 2.x and 3.x facts for supported operating systems [\#46](https://github.com/voxpupuli/facterdb/pull/46) ([rodjek](https://github.com/rodjek))
|
299
|
+
- Adds Mint-18.1 Facts [\#42](https://github.com/voxpupuli/facterdb/pull/42) ([petems](https://github.com/petems))
|
246
300
|
|
247
301
|
**Implemented enhancements:**
|
248
302
|
|