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