facterdb 0.4.0 → 0.4.1

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
  SHA1:
3
- metadata.gz: 4d364d21c8a8005c5707071b2505929811e611b3
4
- data.tar.gz: c28896ab52abe2ad92aaf2f4e9e7ba85bc185da6
3
+ metadata.gz: 0361433b8e3a053b31ac33f0d58d282749a13f6b
4
+ data.tar.gz: 12b8f8278c19a073287ca873fdf1b28e84032dfe
5
5
  SHA512:
6
- metadata.gz: 3ac60113f97b6bd4f57341b6c8b7a77d29f386db0987f69c30e18a91e908911bc89b5a8e076c5cee328536608d05db289b77ab5f13b1b88f2ef62127623f4aeb
7
- data.tar.gz: a71f465fad3cae37212a32c5924f6f15006901e97c292a551744ddeab45e8e1f030fc4c0982a636f57b683693f9311f02b7f55aa96125efd7e78035cdf06c883
6
+ metadata.gz: a8590a71794d26917ec8f8b448294a6e2781cce9395bb0428c6098c95a2c5241be8b1afa188c7c6e4668c2aa59496c1c6d882ed1ffe9d681a2d837e858ed5b99
7
+ data.tar.gz: 6487cf8ee20cb6da82be3d7fb7bcbb45bff11b7fd083e7d32fc1fdb5e161095310a3abb7ac6cf7395d23525b07c96ba6fda6ff1503eb6b6c539e1a4fb38d507b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,24 @@
1
1
  # Change Log
2
2
 
3
- ## [0.3.12]((https://rubygems.org/gems/facterdb/versions/0.3.12) (2017-07-27)
3
+ ## [0.4.0](https://rubygems.org/gems/facterdb/versions/0.4.0) (2017-10-24)
4
+
5
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.12...0.4.0)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Release prep for 0.4.0 [\#66](https://github.com/camptocamp/facterdb/pull/66) ([DavidS](https://github.com/DavidS))
10
+ - Allow loading of external fact hashes [\#62](https://github.com/camptocamp/facterdb/pull/62) ([logicminds](https://github.com/logicminds))
11
+ - Improve FreeBSD Support [\#60](https://github.com/camptocamp/facterdb/pull/60) ([xaque208](https://github.com/xaque208))
12
+ - Add facts for Amazon Linux 2017.03 [\#56](https://github.com/camptocamp/facterdb/pull/56) ([pillarsdotnet](https://github.com/pillarsdotnet))
13
+ - Add missing facts for Fedora 20, 21, and 26 [\#50](https://github.com/camptocamp/facterdb/pull/50) ([blackknight36](https://github.com/blackknight36))
14
+ - Facter 3.8 fact sets [\#48](https://github.com/camptocamp/facterdb/pull/48) ([rodjek](https://github.com/rodjek))
15
+
16
+ **Fixed bugs:**
17
+
18
+ - Update Windows Facter 3.x sets with legacy facts [\#64](https://github.com/camptocamp/facterdb/pull/64) ([rodjek](https://github.com/rodjek))
19
+ - fix facter 2.x facts for Debian 9 [\#52](https://github.com/camptocamp/facterdb/pull/52) ([mmoll](https://github.com/mmoll))
20
+
21
+ ## [0.3.12](https://rubygems.org/gems/facterdb/versions/0.3.12) (2017-07-27)
4
22
 
5
23
  [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.11...0.3.12)
6
24
 
data/Gemfile CHANGED
@@ -6,4 +6,9 @@ if facterversion = ENV['FACTER_GEM_VERSION']
6
6
  gem 'facter', facterversion, :require => false
7
7
  else
8
8
  gem 'facter', :require => false
9
- end
9
+ end
10
+
11
+ group :development do
12
+ # TODO: Use gem instead of git. Section mapping is merged into master, but not yet released
13
+ gem 'github_changelog_generator', git: 'https://github.com/skywinder/github-changelog-generator.git', ref: '33f89614d47a4bca1a3ae02bdcc37edd0b012e86'
14
+ end
data/HISTORY.md ADDED
@@ -0,0 +1,143 @@
1
+ **Implemented enhancements:**
2
+
3
+ - Backfill missing 2.x and 3.x facts for supported operating systems [\#46](https://github.com/camptocamp/facterdb/pulls/46)
4
+ - Adds Mint-18.1 facts [\#42](https://github.com/camptocamp/facterdb/pulls/42)
5
+ - Use rvm 2.3 for unit tests
6
+
7
+ ## [0.3.11]((https://rubygems.org/gems/facterdb/versions/0.3.11) (2017-06-23)
8
+
9
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.10...0.3.11)
10
+
11
+ **Implemented enhancements:**
12
+
13
+ - Add Virtuozzo PCS 6 x86_64 support
14
+ - Add CentOS from facter 3.6
15
+
16
+ ## [0.3.10]((https://rubygems.org/gems/facterdb/versions/0.3.10) (2017-03-08)
17
+
18
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.9...0.3.10)
19
+
20
+ **Implemented enhancements:**
21
+
22
+ - Add SLES 12 support
23
+
24
+ ## [0.3.9]((https://rubygems.org/gems/facterdb/versions/0.3.9) (2017-02-07)
25
+
26
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.8...0.3.9)
27
+
28
+ **Implemented enhancements:**
29
+
30
+ - Add OpenBSD 6.0 support
31
+
32
+ ## [0.3.8]((https://rubygems.org/gems/facterdb/versions/0.3.8) (2016-10-15)
33
+
34
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.7...0.3.8)
35
+
36
+ **Implemented enhancements:**
37
+
38
+ - Add Fedora 24 support
39
+
40
+ ## [0.3.7]((https://rubygems.org/gems/facterdb/versions/0.3.7) (2016-10-06)
41
+
42
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.6...0.3.7)
43
+
44
+ **Implemented enhancements:**
45
+
46
+ - Add AIX facts for facter 3.2
47
+
48
+ ## [0.3.6]((https://rubygems.org/gems/facterdb/versions/0.3.6) (2016-08-04)
49
+
50
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.5...0.3.6)
51
+
52
+ **Implemented enhancements:**
53
+
54
+ - Add facts for facter 3.3
55
+ - Use --show-legacy for facter 3
56
+
57
+ ## [0.3.5](https://rubygems.org/gems/facterdb/versions/0.3.5) (2016-05-02)
58
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.4...0.3.5)
59
+
60
+ **Implemented enhancements:**
61
+
62
+ - Add facts for OpenBSD 5.8 and OpenBSD 5.9
63
+
64
+ ## [0.3.4](https://rubygems.org/gems/facterdb/versions/0.3.4) (2016-04-11)
65
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.3...0.3.4)
66
+
67
+ **Implemented enhancements:**
68
+
69
+ - Add facts for Fedora 22 and Fedora 23
70
+
71
+ ## [0.3.3](https://rubygems.org/gems/facterdb/versions/0.3.3) (2016-03-30)
72
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.2...0.3.3)
73
+
74
+ **Implemented enhancements:**
75
+
76
+ - Add facts for Ubuntu 16.04
77
+
78
+ ## [0.3.2](https://rubygems.org/gems/facterdb/versions/0.3.2) (2016-03-25)
79
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.1...0.3.2)
80
+
81
+ **Implemented enhancements:**
82
+
83
+ - Add facts for Windows 2012 r2 and Windows 7
84
+
85
+ ## [0.3.1](https://rubygems.org/gems/facterdb/versions/0.3.1) (2016-01-06)
86
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.3.0...0.3.1)
87
+
88
+ **Implemented enhancements:**
89
+
90
+ - Add facts for OSX 10.10
91
+
92
+ ## [0.3.0](https://rubygems.org/gems/facterdb/versions/0.3.0) (2015-11-05)
93
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.2.2...0.3.0)
94
+
95
+ **Implemented enhancements:**
96
+
97
+ - New function: get\_facts
98
+ - Deprecated function: get\_os\_facts
99
+
100
+ ## [0.2.2](https://rubygems.org/gems/facterdb/versions/0.2.2) (2015-11-05)
101
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.2.1...0.2.2)
102
+
103
+ **Implemented enhancements:**
104
+
105
+ - Add facts for Ubuntu 15.10
106
+
107
+ ## [0.2.1](https://rubygems.org/gems/facterdb/versions/0.2.1) (2015-08-31)
108
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.2.0...0.2.1)
109
+
110
+ **Fixed bugs:**
111
+
112
+ - Tag 0.2.0 does not point to the right commit... [\#13](https://github.com/camptocamp/facterdb/issues/13)
113
+
114
+ ## [0.2.0](https://rubygems.org/gems/facterdb/versions/0.2.0) (2015-08-31)
115
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.1.0...0.2.0)
116
+
117
+ **Implemented enhancements:**
118
+
119
+ - Add CLI [\#9](https://github.com/camptocamp/facterdb/issues/9)
120
+ - Allow Hash or String for filter [\#8](https://github.com/camptocamp/facterdb/issues/8)
121
+
122
+ **Fixed bugs:**
123
+
124
+ - Fix project homepage [\#10](https://github.com/camptocamp/facterdb/issues/10)
125
+ - Hash keys should be symbolized [\#11](https://github.com/camptocamp/facterdb/pull/11) ([mcanevet](https://github.com/mcanevet))
126
+
127
+ ## [0.1.0](https://rubygems.org/gems/facterdb/versions/0.1.0) (2015-08-27)
128
+ [Full Changelog](https://github.com/camptocamp/facterdb/compare/0.0.1...0.1.0)
129
+
130
+ **Implemented enhancements:**
131
+
132
+ - Add missing facts [\#3](https://github.com/camptocamp/facterdb/issues/3)
133
+ - No need for include with self.\# [\#2](https://github.com/camptocamp/facterdb/pull/2) ([raphink](https://github.com/raphink))
134
+ - Use jgrep to filter out OS facts [\#1](https://github.com/camptocamp/facterdb/pull/1) ([raphink](https://github.com/raphink))
135
+
136
+ **Fixed bugs:**
137
+
138
+ - Use a relative factsdir for the lib [\#4](https://github.com/camptocamp/facterdb/pull/4) ([raphink](https://github.com/raphink))
139
+
140
+ ## [0.0.1](https://rubygems.org/gems/facterdb/versions/0.0.1) (2015-05-29)
141
+
142
+
143
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Rakefile CHANGED
@@ -1,12 +1,23 @@
1
+ require 'facterdb/version'
2
+
1
3
  begin
2
4
  require 'rspec/core/rake_task'
3
5
  RSpec::Core::RakeTask.new(:spec)
4
6
  rescue LoadError
5
7
  end
6
8
 
7
- require 'github_changelog_generator/task'
8
- require 'facterdb/version'
9
- GitHubChangelogGenerator::RakeTask.new :changelog do |config|
10
- config.future_release = FacterDB::Version::STRING
11
- config.release_url = "https://rubygems.org/gems/facterdb/versions/%s"
9
+ begin
10
+ require 'github_changelog_generator/task'
11
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
12
+ config.future_release = FacterDB::Version::STRING
13
+ config.include_labels = %w[enhancement bug]
14
+ config.user = 'camptocamp'
15
+ config.release_url = "https://rubygems.org/gems/facterdb/versions/%s"
16
+ config.since_tag = '0.3.11'
17
+ end
18
+ rescue LoadError
19
+ desc 'Install github_changelog_generator to get access to automatic changelog generation'
20
+ task :changelog do
21
+ raise 'Install github_changelog_generator to get access to automatic changelog generation'
22
+ end
12
23
  end
@@ -1,5 +1,5 @@
1
1
  module FacterDB
2
2
  module Version
3
- STRING = '0.4.0'
3
+ STRING = '0.4.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facterdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mickaël Canévet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-24 00:00:00.000000000 Z
11
+ date: 2017-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: coveralls
@@ -126,6 +126,7 @@ files:
126
126
  - ".travis.yml"
127
127
  - CHANGELOG.md
128
128
  - Gemfile
129
+ - HISTORY.md
129
130
  - LICENSE
130
131
  - README.md
131
132
  - Rakefile