switch the order of the isa checks, for performance improvement
[p5sagit/JSON-MaybeXS.git] / Changes
diff --git a/Changes b/Changes
index 92807d5..e91750d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,72 @@
 Revision history for JSON-MaybeXS
 
-1.003000 - 2014-10-22
- - add :legacy tag to support legacy apps 
+ - slight speed optimization for is_bool()
+
+1.004003 - 2020-11-13
+ - fix another test that fails when JSON::XS is installed, but below version 3.0
+
+1.004002 - 2020-05-17
+ - fix test that fails when JSON::XS is installed, but below version 3.0
+   (RT#132578)
+
+1.004001 - 2020-05-01
+ - document when is_bool became available
+ - now favouring Cpanel::JSON::XS over JSON::XS in more situations (the former
+   is always added to prereqs when a compiler is available, although JSON::XS
+   is still used at runtime if new enough and Cpanel::JSON::XS is not
+   installed). This makes boolean handling more predictable and consistent.
+
+1.004000 - 2018-04-19
+ - added true and false subs so they can be used via JSON::MaybeXS rather than
+   only JSON() exported sub.
+
+1.003010 - 2018-01-28
+ - use bundled ExtUtils::HasCompiler rather than ExtUtils::CBuilder to detect
+   compiler availability.
+ - clarify exported JSON in documentation
+
+1.003009 - 2017-02-27
+ - fix tests to no longer rely on . being in @INC (RT#120404)
+
+1.003008 - 2016-10-03
+ - added an INSTALLATION section to documentation, to clarify the use of
+   dynamic prerequisites in Makefile.PL
+ - minimize prereqs listed in META.json to avoid giving the appearance of XS
+   prerequisites, and confusing static inspection tools such as metacpan.org.
+
+1.003007 - 2016-09-11
+ - no changes since 1.003006_001
+
+1.003006_001 - 2016-06-28
+ - bump prereq on JSON::PP, to ensure we get the fix for parsing utf8-encoded
+   values (in JSON::PP 2.27300)
+ - we now always upgrade JSON::XS if it is installed and below version 3.0,
+   due to changes in handling booleans
+ - remove test dependency on Test::Without::Module (RT#115394)
+
+1.003005 - 2015-03-22
+ - fix x_contributors metadata that was killing metacpan (see
+   https://github.com/CPAN-API/cpan-api/issues/401)
+
+1.003004 - 2015-03-14
+ - caveat added to documentation about type checking the object returned by
+   new() (John SJ Anderson, RT#102733)
+
+1.003003 - 2014-12-06
+ - ensure an old Cpanel::JSON::XS is upgraded if it is too old, as it will
+   always be used in preference to JSON::XS
+ - avoid "JSON::XS::Boolean::* redefined" warnings caused by an old JSON::XS
+   loaded at the same time as a newer Cpanel::JSON::XS
+
+1.003002 - 2014-11-16
+ - correctly fix boolean interoperability with older Cpanel::JSON::MaybeXS
+
+1.003001 - 2014-11-13
+ - fix boolean interoperability with older Cpanel::JSON::MaybeXS
+
+1.003_000 - 2014-10-30
+ - add :legacy tag to support legacy apps
+
 1.002006 - 2014-10-22
  - add some additional test diagnostics, to help find bad version combinations
    of JSON backends