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