summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG9
-rwxr-xr-xtests/tc_facterbin.rb2
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5226eef..6a565f1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,14 @@
+1.3.4:
+ Added many new facts, including LSB facts.
+
+ Fixed a few small bugs, notably the error you could get when asking
+ for a non-existent fact.
+
1.3.3:
Added thread exclusivity to memory and processor facts.
- Added the ability to retrieve facts by pulling them out of the shell environment.
+ Added the ability to retrieve facts by pulling them out of the shell
+ environment.
1.3.2:
Temporarily disabled memory and processor facts since they might cause hangs.
diff --git a/tests/tc_facterbin.rb b/tests/tc_facterbin.rb
index 9d9ca15..85f8df1 100755
--- a/tests/tc_facterbin.rb
+++ b/tests/tc_facterbin.rb
@@ -75,6 +75,8 @@ class TestFacterBin < Test::Unit::TestCase
assert_instance_of(Hash, result)
result.each do |name, value|
+ # These change too frequently.
+ next if name.to_s.downcase =~ /mem/
assert_equal(value, Facter.value(name))
end
end