Lines Matching full:2009

984                 Add example to ignore unknown tags (2009-12-08)
987 Add Ruby example (2009-12-08)
990 … Do not omit the tag for JavaBean properties when the tag is explicitly defined (2009-12-08)
993 Fix ID format for numbers over 999 (2009-12-05)
996 Allow separate option in DumperOptions for long strings (2009-11-16)
999 JavaBeanDumper: add possibility to define a custom Representer (2009-11-25)
1003 by a single constructor (2009-11-25)
1006 Refactor BaseConstructor: simplify second step for recursive structures (2009-11-25)
1009 Add FilterPropertyToDumpTest to show how to filter JavaBean properties (2009-11-24)
1012 Add FilterClassesConstructorTest to show how to filter created classes (2009-11-16)
1015 Improve JavaDoc (2009-11-12)
1018 Add Velocity example (2009-11-03)
1021 … Refactor: rename Tuple to RecursiveTuple and hide it inside BaseConstructor (2009-11-03)
1024 …<release version="1.5" date="2009-10-30" description="Improve usage of generic collections in Java…
1026 Extend Resolver to support custom implicit types (2009-10-27)
1029 … Performance improvement: use ArrayStack instead of Stack which extends Vector (2009-10-20)
1034 accessible via reflection from Method/Field. (2009-10-19)
1039 from the resolved tag (2009-10-19)
1044 for the root tag it is the other way around (2009-10-19)
1047 Line numbers reported in Exceptions are Zero based, should be 1 based (2009-10-12)
1050 Support arrays of reference types as JavaBean properties (2009-09-22)
1053 Respect root tag for sequences (2009-09-04)
1057 more then one Java implementation available (Long, List, Map, Date etc) (2009-09-03)
1060 Add possibility to define a custom Class Loader. (2009-09-01)
1064 of the stream. The fix is imported from PyYAML 3.09 {ticket 118} (2009-08-31)
1067 …avaBean class properties. Tests show that the loading has become a few percents faster (2009-08-31)
1071 'remove(size()-1)' (2009-08-27)
1074 Fix: ArrayList is more efficient than LinkedList (2009-08-26)
1077 …<release version="1.4" date="2009-08-26" description="better support for loading immutable objects…
1079 Apply Apache License Version 2.0 (2009-08-14)
1082 Provide javadocs link to Sun Java API (2009-08-10)
1085 Build 1.4 Release Candidate 1 (2009-08-07)
1088 …ntroduce Tags.getGlobalTagForClass() to simplify tag generation in custom constructors (2009-08-06)
1091 Refactor: introduce ImplicitTuple (2009-08-06)
1095 Explicit tag -> Runtime class (defined in JavaBean) -> implicit tag (2009-08-06)
1100 then 1 way to create an instance (2009-08-04)
1104 constructor arguments is used to get the runtime classes (2009-08-04)
1108 be created (2009-08-02)
1112 Instead introduce ConstructScalar, ConstructSequence, ConstructMapping (2009-07-31)
1115 … Change Maven repository path: groupId='org.yaml', artifactId='snakeyaml' (2009-07-31)
1118 Fix: dump omits JavaBean class name when used with an alias (2009-07-28)
1121 Generate sources and Javadoc (2009-07-27)
1124 … Node does not have the value. It is delegated to the non-abstract classes (2009-07-27)
1128 Introduce method setMapTagForBean() (2009-07-22)
1132 properties in the YAML document(2009-07-22)
1136 Drop dynamic root tag concept (2009-07-22)
1139 Remove unused TypeDescription in Representer (2009-07-21)
1142 Use NodeTuple instead of Node[] for mappings (2009-07-21)
1145 Introduce JavaBeanLoader and JavaBeanDumper. Deprecate JavaBeanParser (2009-07-21)
1148 Fix: Representer was keeping state between invocations (2009-07-21)
1151 … <release version="1.3" date="2009-07-20" description="complete support for recursive objects">
1153 … Fix: values returned by System.identityHashCode() are not guaranteed to be unique (2009-07-14)
1159 for details (2009-07-13)
1162 Fix: set the "cause" field for MarkedYAMLException (2009-07-10)
1165 Fix: Recursive objects are now fully supported (2009-07-09)
1168 Add support for BigDecimal as a JavaBean property (2009-07-07)
1172 with only setter without the corresponding getter (2009-07-07)
1175 Add a test to check the proper report for IOException (2009-07-03)
1179 document but a member of a collection (2009-07-03)
1182 Refactor: run PMD and apply some of the recommendations (2009-06-18)
1185 Create an issue for Recursive objects to be remembered (2009-06-08)
1188 Migrate project hosting from Assembla to Google code (2009-06-08)
1191 Fix: null as a JavaBean property was not handled properly (2009-06-04)
1194 Validate changes.xml file (2009-05-25)
1197 …cket 40 in Assembla: getting an error when javabean contains java.sql.Timestamp fields (2009-05-25)
1200 <release version="1.2" date="2009-04-27" description="expose low-level API">
1202 … Add 'Yaml.parse()' method which return Events to support low level YAML processing (2009-04-20)
1205 Introduce LineBreak.getPlatformLineBreak (ticket 5 in Assembla) (2009-04-18)
1208 Rename LineBreak.LINUX to LineBreak.UNIX (ticket 5 in Assembla) (2009-04-18)
1211 Add 'Yaml.compose()' methods which return Nodes to support YEdit (2009-04-17)
1214 Refactor: rename enums in DumperOptions to make the names consistent (2009-04-07)
1217 Refactor: use Character instead of char primitive for style in Emitter (2009-04-07)
1220 Add possibility to parse all scalars as Strings (2009-03-30)
1223 Merge changeset 347 from PyYAML (2009-03-30)
1226 Respect DumperOptions with a custom Representer (2009-03-18)
1229 Represent TAB as '\t' instead of '(9' in the error message (2009-03-17)
1232 … <release version="1.1" date="2009-03-14" description="improve performance and test coverage">
1234 Introduce JavaBeanParser (2009-03-14)
1237 Introduce DumperOptions.Version enum (2009-03-13)
1240 Introduce DumperOptions.LineBreak enum (2009-03-10)
1243 Use byte[] for binary type. (2009-03-09)
1248 performance problem. (2009-03-06)
1252 as the class name. (2009-03-05)
1256 … different Yaml instances. Because they are statefull it is not Thread-safe. (2009-03-05)
1259 … Add possibility to set a meaningful name for Yaml instance to be shown in toString(). (2009-03-05)
1262 … Refactor: declare classes which are not expected to be extended as final. (2009-03-04)
1265 Refactor: use 'final' keyword to identify immutable fields. (2009-03-04)
1268 Refactor: do not use 'final' keyword for local variables. (2009-03-04)
1271 Fix: respect implicit resolvers with 'null' as a first character. (2009-03-02)
1274 … Refactor: use Character instead of String as a key for implicit resolvers. (2009-03-02)
1277 Use Ragel instead of Regular Expressions for implicit types. (2009-03-02)
1280 Fix ticket #4 (in Assembla): java.sql.Date not handled. (2009-02-28)
1283 Introduce DumperOptions.DefaultFlowStyle enum (2009-02-24)
1286 Introduce DumperOptions.DefaultScalarStyle enum (2009-02-24)
1289 …actor: use 'switch' with Enum instead of multiple 'if' statements to distinguish nodes (2009-02-19)
1292 Refactor: use Enum instead of String as NodeId (2009-02-19)
1295 <release version="1.0.1" date="2009-02-18" description="implement Enum support">
1297 Do not emit anchors for Enum (2009-02-18)
1301 not need tags for both loading and dumping (2009-02-17)
1304 Enum is emitted as a scalar node (2009-02-17)
1307 Enum is parsed as a scalar node or as a JavaBean property (2009-02-17)
1310 … Refactor: for performance ScannerImpl.stalePossibleSimpleKeys() does not copy key Set (2009-02-10)
1314 DumperOptions.setAllowUnicode(false) (2009-02-09)
1317 … Implement allowUnicode setting (to escape Unicode characters on non UTF-8 terminals) (2009-02-09)
1320 Add possibility to specify tags for dumping (2009-02-09)
1324 standard JavaBean naming convention (2009-02-09)
1328 standard JavaBean naming convention (2009-02-09)
1331 Add possibility to specify a line break (2009-02-09)
1334 <release version="1.0" date="2009-02-06" description="final 1.0 release">
1336 Deliver first release (2009-02-06)