facterdb 1.4.0 → 1.8.0

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/release.yml +32 -0
  3. data/.github/workflows/test.yml +28 -0
  4. data/CHANGELOG.md +172 -118
  5. data/Gemfile +2 -2
  6. data/README.md +110 -100
  7. data/Rakefile +9 -3
  8. data/facterdb.gemspec +7 -8
  9. data/facts/1.7/centos-9-x86_64.facts +82 -0
  10. data/facts/2.0/centos-9-x86_64.facts +82 -0
  11. data/facts/2.1/centos-9-x86_64.facts +112 -0
  12. data/facts/2.2/centos-9-x86_64.facts +137 -0
  13. data/facts/2.3/centos-9-x86_64.facts +138 -0
  14. data/facts/2.4/centos-9-x86_64.facts +139 -0
  15. data/facts/3.11/archlinux-x86_64.facts +11 -1
  16. data/facts/3.11/solaris-10-i86pc.facts +1 -4
  17. data/facts/3.11/solaris-11-i86pc.facts +1 -4
  18. data/facts/3.11/solaris-11-sun4v.facts +1 -4
  19. data/facts/3.14/almalinux-8-x86_64.facts +522 -0
  20. data/facts/3.14/archlinux-x86_64.facts +11 -1
  21. data/facts/3.14/darwin-19-x86_64.facts +412 -0
  22. data/facts/3.14/darwin-20-x86_64.facts +516 -0
  23. data/facts/3.14/solaris-11-i86pc.facts +1 -4
  24. data/facts/3.14/solaris-11-sun4v.facts +1 -4
  25. data/facts/3.9/solaris-10-i86pc.facts +0 -3
  26. data/facts/4.0/almalinux-8-x86_64.facts +307 -0
  27. data/facts/4.0/centos-7-x86_64.facts +706 -0
  28. data/facts/4.0/debian-10-x86_64.facts +1091 -0
  29. data/facts/4.0/solaris-11-sun4v.facts +585 -0
  30. data/facts/4.2/centos-9-x86_64.facts +291 -0
  31. data/facts/4.2/darwin-20-x86_64.facts +524 -0
  32. data/facts/Vagrantfile +8 -1
  33. data/facts/get_facts.sh +14 -0
  34. data/lib/facterdb.rb +47 -11
  35. data/lib/facterdb/version.rb +1 -1
  36. data/spec/facterdb_spec.rb +36 -0
  37. data/spec/facts_spec.rb +9 -2
  38. metadata +25 -30
  39. data/.travis.yml +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b446e391aa35c93ef8b2344d8311594c1f31ca608b515026f8ccb3772a23f0e8
4
- data.tar.gz: 848bce097609f4da2f5f39baddcabc820e11aff6e0a3c329f0db22df86aefb39
3
+ metadata.gz: 4b1227033e5bcabacb16131097ae799b9af27a53b0f38cca614bb8df69b849aa
4
+ data.tar.gz: 99c27e3aba4f0a2f8f8595509607f9d5948da0db61cdc9cafb64006c0f7867ee
5
5
  SHA512:
6
- metadata.gz: d11839665d133a84b6b78f3b3ce338c2d127787acbea80c861ad88c3ec69d55f20517d0e31aae323a5ec0f7ecb63efbde08b0aa66cb499001e6042911362583b
7
- data.tar.gz: 13070c867414980285265492c7f0f56551c7adc901f7442a52b816ecd4e7674c8b58d800f710c13d4a1a0b6e1d2ddcf770470776a3efa4a9ce29e57992b9cd39
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/camptocamp/facterdb/compare/1.3.0...1.4.0)
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/camptocamp/facterdb/pull/154) ([mmoll](https://github.com/mmoll))
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/camptocamp/facterdb/compare/1.2.0...1.3.0)
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/camptocamp/facterdb/issues/135)
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/camptocamp/facterdb/pull/152) ([bastelfreak](https://github.com/bastelfreak))
22
- - Pin to facter \< 4 to avoid automatic upgrade [\#151](https://github.com/camptocamp/facterdb/pull/151) ([raphink](https://github.com/raphink))
23
- - AmazonLinux facts added [\#147](https://github.com/camptocamp/facterdb/pull/147) ([bFekete](https://github.com/bFekete))
24
- - Add facts for Raspbian 9 and 10; alter Rakefile to support Raspbian [\#136](https://github.com/camptocamp/facterdb/pull/136) ([threepistons](https://github.com/threepistons))
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/camptocamp/facterdb/compare/1.1.0...1.2.0)
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/camptocamp/facterdb/pull/146) ([dhoppe](https://github.com/dhoppe))
33
- - drop json as runtime dependency [\#145](https://github.com/camptocamp/facterdb/pull/145) ([bastelfreak](https://github.com/bastelfreak))
34
- - add .vendor to .gitignore [\#144](https://github.com/camptocamp/facterdb/pull/144) ([bastelfreak](https://github.com/bastelfreak))
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/camptocamp/facterdb/compare/1.0.0...1.1.0)
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/camptocamp/facterdb/issues/139)
43
- - Archlinux legacy facts missing in 3.x fact sets. [\#132](https://github.com/camptocamp/facterdb/issues/132)
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
- - Adding facts from Solaris 11 x86 & SPARC [\#149](https://github.com/camptocamp/facterdb/pull/149) ([genebean](https://github.com/genebean))
48
- - Add Gentoo 3.11 factset [\#143](https://github.com/camptocamp/facterdb/pull/143) ([bastelfreak](https://github.com/bastelfreak))
49
- - archlinux: set correct FQDN/hostname [\#142](https://github.com/camptocamp/facterdb/pull/142) ([bastelfreak](https://github.com/bastelfreak))
50
- - Add Fedora 30 facts for Facter 3.11 [\#141](https://github.com/camptocamp/facterdb/pull/141) ([baurmatt](https://github.com/baurmatt))
51
- - Add Gentoo facts for Facter 3.14 [\#140](https://github.com/camptocamp/facterdb/pull/140) ([baurmatt](https://github.com/baurmatt))
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/camptocamp/facterdb/compare/0.8.2...1.0.0)
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/camptocamp/facterdb/issues/127)
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/camptocamp/facterdb/pull/133) ([bastelfreak](https://github.com/bastelfreak))
65
- - add VirtuozzoLinux 7 facts [\#131](https://github.com/camptocamp/facterdb/pull/131) ([bastelfreak](https://github.com/bastelfreak))
66
- - Add more Archlinux facts [\#130](https://github.com/camptocamp/facterdb/pull/130) ([bastelfreak](https://github.com/bastelfreak))
67
- - Ensure all fact sets contain the legacy networking facts [\#128](https://github.com/camptocamp/facterdb/pull/128) ([rodjek](https://github.com/rodjek))
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/camptocamp/facterdb/compare/0.8.1...0.8.2)
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/camptocamp/facterdb/issues/124)
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/camptocamp/facterdb/pull/125) ([rodjek](https://github.com/rodjek))
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/camptocamp/facterdb/compare/0.8.0...0.8.1)
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/camptocamp/facterdb/pull/121) ([rodjek](https://github.com/rodjek))
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/camptocamp/facterdb/compare/0.7.0...0.8.0)
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/camptocamp/facterdb/issues/115)
96
- - Debian 10 facts [\#102](https://github.com/camptocamp/facterdb/issues/102)
97
- - 3.11 facts for Debian Stretch and Ubuntu 18.04 are missing distro information [\#98](https://github.com/camptocamp/facterdb/issues/98)
98
- - Remove/move invalid factset files [\#78](https://github.com/camptocamp/facterdb/issues/78)
99
- - Remove duplicate default factset files [\#77](https://github.com/camptocamp/facterdb/issues/77)
100
- - Updated OpenBSD Facts [\#71](https://github.com/camptocamp/facterdb/issues/71)
101
- - FreeBSD Support [\#51](https://github.com/camptocamp/facterdb/issues/51)
102
- - Add LinuxMint Facts [\#41](https://github.com/camptocamp/facterdb/issues/41)
103
- - Facts for archlinux release 4 are missing. [\#37](https://github.com/camptocamp/facterdb/issues/37)
104
- - Consider adding the os::distro fact [\#36](https://github.com/camptocamp/facterdb/issues/36)
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/camptocamp/facterdb/pull/119) ([rodjek](https://github.com/rodjek))
109
- - Improve test coverage [\#118](https://github.com/camptocamp/facterdb/pull/118) ([rodjek](https://github.com/rodjek))
110
- - Update Windows factsets [\#117](https://github.com/camptocamp/facterdb/pull/117) ([rodjek](https://github.com/rodjek))
111
- - Added and updated Solaris 10 factsets [\#116](https://github.com/camptocamp/facterdb/pull/116) ([sirinek](https://github.com/sirinek))
112
- - Update OSX 10.11 - 10.14 factsets [\#113](https://github.com/camptocamp/facterdb/pull/113) ([rodjek](https://github.com/rodjek))
113
- - Update SLES 11 & 12 factsets [\#112](https://github.com/camptocamp/facterdb/pull/112) ([rodjek](https://github.com/rodjek))
114
- - Change table rake task to update README.md [\#111](https://github.com/camptocamp/facterdb/pull/111) ([rodjek](https://github.com/rodjek))
115
- - Update RHEL based factsets [\#110](https://github.com/camptocamp/facterdb/pull/110) ([rodjek](https://github.com/rodjek))
116
- - \(\#71\) Add OpenBSD 6.4 factsets [\#109](https://github.com/camptocamp/facterdb/pull/109) ([rodjek](https://github.com/rodjek))
117
- - \(\#98\) Update Debian & Ubuntu factsets [\#108](https://github.com/camptocamp/facterdb/pull/108) ([rodjek](https://github.com/rodjek))
118
- - Properly split and sort facter versions [\#107](https://github.com/camptocamp/facterdb/pull/107) ([rodjek](https://github.com/rodjek))
119
- - \(\#41\) Add factsets for linuxmint 18 & 19 [\#106](https://github.com/camptocamp/facterdb/pull/106) ([rodjek](https://github.com/rodjek))
120
- - \(\#37\) Update Archlinux factsets [\#105](https://github.com/camptocamp/facterdb/pull/105) ([rodjek](https://github.com/rodjek))
121
- - Add more FreeBSD facts [\#104](https://github.com/camptocamp/facterdb/pull/104) ([smortex](https://github.com/smortex))
122
- - add missing rubygem-bundler package for FreeBSD [\#103](https://github.com/camptocamp/facterdb/pull/103) ([olevole](https://github.com/olevole))
123
- - Missing facts [\#99](https://github.com/camptocamp/facterdb/pull/99) ([seanmil](https://github.com/seanmil))
124
- - Add CentOS e.a. facts from facter 3.11 [\#87](https://github.com/camptocamp/facterdb/pull/87) ([tdevelioglu](https://github.com/tdevelioglu))
125
- - Explicitly use bash not sh [\#81](https://github.com/camptocamp/facterdb/pull/81) ([bodgit](https://github.com/bodgit))
126
- - OpenBSD 6.2 & 6.3 facts [\#80](https://github.com/camptocamp/facterdb/pull/80) ([bodgit](https://github.com/bodgit))
127
- - \(\#77\)\(\#78\) Add default factset tests and fix failures [\#79](https://github.com/camptocamp/facterdb/pull/79) ([glennsarti](https://github.com/glennsarti))
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/camptocamp/facterdb/compare/0.6.0...0.7.0)
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/camptocamp/facterdb/pull/100) ([ralimi](https://github.com/ralimi))
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/camptocamp/facterdb/compare/0.5.2...0.6.0)
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/camptocamp/facterdb/pull/95) ([Dan33l](https://github.com/Dan33l))
144
- - Add Gentoo facts for Facter 2.5 and fix Travis CI [\#93](https://github.com/camptocamp/facterdb/pull/93) ([baurmatt](https://github.com/baurmatt))
145
- - Update Fedora facts [\#89](https://github.com/camptocamp/facterdb/pull/89) ([blackknight36](https://github.com/blackknight36))
146
- - Add facter 3.11 facts for Debian 9 and Ubuntu 18.04 [\#88](https://github.com/camptocamp/facterdb/pull/88) ([tobias-urdin](https://github.com/tobias-urdin))
147
- - Updated fedora facts for f26 and f27 [\#85](https://github.com/camptocamp/facterdb/pull/85) ([timhughes](https://github.com/timhughes))
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/camptocamp/facterdb/issues/92)
152
- - Code doesnt handle facter point versions with 2 digits [\#83](https://github.com/camptocamp/facterdb/issues/83)
153
- - Rakefile: Set config.projet for github\_changelog\_generator [\#97](https://github.com/camptocamp/facterdb/pull/97) ([raphink](https://github.com/raphink))
154
- - fixes \#83 changes the way factor version in paths is calculated [\#84](https://github.com/camptocamp/facterdb/pull/84) ([timhughes](https://github.com/timhughes))
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/camptocamp/facterdb/issues/91)
159
- - Add facter 2.5 Gentoo facts [\#90](https://github.com/camptocamp/facterdb/issues/90)
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/camptocamp/facterdb/compare/0.5.1...0.5.2)
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/camptocamp/facterdb/pull/82) ([bastelfreak](https://github.com/bastelfreak))
176
- - Added Solaris 10 facts on Facter 3.9 [\#75](https://github.com/camptocamp/facterdb/pull/75) ([sirinek](https://github.com/sirinek))
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/camptocamp/facterdb/compare/0.5.0...0.5.1)
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/camptocamp/facterdb/pull/74) ([TJM](https://github.com/TJM))
185
- - Fix Archlinux support / update archlinux facts [\#73](https://github.com/camptocamp/facterdb/pull/73) ([bastelfreak](https://github.com/bastelfreak))
186
- - Add AIX 7.1 powerpc [\#72](https://github.com/camptocamp/facterdb/pull/72) ([TJM](https://github.com/TJM))
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/camptocamp/facterdb/compare/0.4.1...0.5.0)
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/camptocamp/facterdb/issues/65)
249
+ - create new release [\#65](https://github.com/voxpupuli/facterdb/issues/65)
195
250
 
196
251
  **Merged pull requests:**
197
252
 
198
- - Release prep for 0.5.0 [\#70](https://github.com/camptocamp/facterdb/pull/70) ([DavidS](https://github.com/DavidS))
199
- - add freebsd\_11 facts [\#69](https://github.com/camptocamp/facterdb/pull/69) ([b4ldr](https://github.com/b4ldr))
200
- - add freebsd 10 facts for facter 2.5 and 3.9 [\#68](https://github.com/camptocamp/facterdb/pull/68) ([b4ldr](https://github.com/b4ldr))
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/camptocamp/facterdb/compare/0.4.0...0.4.1)
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/camptocamp/facterdb/compare/0.3.12...0.4.0)
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/camptocamp/facterdb/pull/62) ([logicminds](https://github.com/logicminds))
214
- - Improve FreeBSD Support [\#60](https://github.com/camptocamp/facterdb/pull/60) ([xaque208](https://github.com/xaque208))
215
- - Add facts for Amazon Linux 2017.03 [\#56](https://github.com/camptocamp/facterdb/pull/56) ([pillarsdotnet](https://github.com/pillarsdotnet))
216
- - Add missing facts for Fedora 20, 21, and 26 [\#50](https://github.com/camptocamp/facterdb/pull/50) ([blackknight36](https://github.com/blackknight36))
217
- - Facter 3.8 fact sets [\#48](https://github.com/camptocamp/facterdb/pull/48) ([rodjek](https://github.com/rodjek))
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/camptocamp/facterdb/pull/64) ([rodjek](https://github.com/rodjek))
222
- - fix facter 2.x facts for Debian 9 [\#52](https://github.com/camptocamp/facterdb/pull/52) ([mmoll](https://github.com/mmoll))
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/camptocamp/facterdb/issues/57)
227
- - Fact package\_provider is missing [\#49](https://github.com/camptocamp/facterdb/issues/49)
228
- - allow loading of external fact hashes [\#27](https://github.com/camptocamp/facterdb/issues/27)
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/camptocamp/facterdb/compare/0.3.11...0.3.12)
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/camptocamp/facterdb/issues/47)
237
- - Add support for facter 2.5 [\#45](https://github.com/camptocamp/facterdb/issues/45)
238
- - Add Debian Stretch [\#43](https://github.com/camptocamp/facterdb/issues/43)
239
- - Release new version [\#40](https://github.com/camptocamp/facterdb/issues/40)
240
- - support for more windows editions [\#30](https://github.com/camptocamp/facterdb/issues/30)
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/camptocamp/facterdb/pull/46) ([rodjek](https://github.com/rodjek))
245
- - Adds Mint-18.1 Facts [\#42](https://github.com/camptocamp/facterdb/pull/42) ([petems](https://github.com/petems))
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