tests: Add invalid "struct" tests to increase coverage
[vala-gnome.git] / NEWS
blob6b686cb08fe2184f307b06fe0cf54148e0bc7809
1 Vala 0.39.7
2 ===========
3  * Regression fix:
4   - codegen: Don't try to infer error argument on async begin methods [#793158]
5     This was a regression introduced by [#614294]
7 Vala 0.39.6
8 ===========
9  * Highlights
10   - Add --abi-stability option for ABI stability of libraries
11     It ensures that the order of class/interface members in Vala sources will
12     be preserved in generated C source (instance/type structs) [#789069]
14  * Various bug fixes:
15   - girparser:
16     + Set NoAccessorMethod for non-readable and construct-only properties
17     + Ignore conflicting closure/destroy indexes
18     + Don't accept methods as property-accessor which throw errors [#792998]
19   - codegen:
20     + Infer error parameter from abstract/virtual base methods [#614294]
21     + Internally generated delegates don't require a typedef [#787521]
22     + Fix return-type for cancelled async creation methods of classes [#792942]
23     + Use G_PARAM_STATIC_STRINGS
24   - vala: Variadic constructors without a real first parameter are not allowed
25   - libvaladoc: Keep bootstrap-support with valac >= 0.16.1
27  * Bindings:
28   - gtk+-3.0: Fix cheader_filename of Plug and Socket
29   - gtk+-4.0: Update to 3.93.0+4d36a0bf
30   - gtk+-4.0: Only override type of "event" parameters
31   - posix: Add ctime(3) and fix binding of struct hostent and gethostbyname(3)
33 Vala 0.39.5
34 ===========
35  * Various bug fixes:
36   - libvaladoc: Allow @link tags to be split over multiple lines [#646982]
37   - libvaladoc: Add support for single line documentation comments [#736483]
38   - girparser: Improve instance method detection [#732460]
39   - codegen: Add support for abstract/virtual methods and properties in
40     compact classes [#741465]
41   - vala: Fix parameter type inference of overridden async methods [#792660]
42   - codewriter: Don't use string.replace() to apply header_to_override [#731322]
44  * Bindings:
45   - gio-unix-2.0: Update to 2.55.1
46   - gtk+-4.0: Update to 3.93.0+60d3378d
47   - libwnck-3.0: Update to 3.24.1
48   - webkit2gtk-4.0: Update to 2.19.5
49   - webkit2gtk-web-extension-4.0: Fix DOM.EventTarget interface
51 Vala 0.39.4
52 ===========
53  * Various improvements and bug fixes:
54   - codegen
55     + Only add property-enum and GParamSpec-array for GObject classes
56     + Use g_enum/flags_to_string while targeting glib >= 2.54
57     + Add destroy param when invoking delegate returned by delegate [#792077]
58   - Don't write trailing space in function declarations/definitions [#688447]
59   - vala: Add pkgdatadir and pkglibdir to pkg-config file
60   - gidlparser: Update type qualifiers
62  * Bindings:
63   - gtk+-2.0/3.0: Don't hide user_data in Clipboard.set_with_data() [#792237]
64   - gtk+-3.0: Update to 3.22.26+6f26d0dc
65   - gtk+-4.0: Update to 3.93.0+6aeae2c8
67 Vala 0.39.3
68 ===========
69  * Various bug fixes:
70   - Fix chain-up regression with real non-null struct parameters [#791785]
71   - Release taken references to CodeContext after using it [#712694] and keep
72     custom invocations of parse_file() possible [#791936]
73   - parser: Accept comma-separated list in case-statements of switchs [#614015]
75  * Bindings:
76   - Remove bindings which are shipped upstream for some years
77     + gedit 3 [#776021], libgnome-keyring [#776022],
78       gtksourceview-3.0 [#776023], libgdata [#776024], librsvg-2.0 [#776025]
79   - glib-2.0: Add GLib.OPTION_REMAINING and GLib.OptionFlags.NONE
80   - gstreamer-1.0: Update from 1.13+ git master
81   - gtk+-2.0: Mark MessageDialog constructor parameter, message_format, as
82     nullable [#791570]
83   - gtk+-4.0: Update to 3.93.0+6aeae2c8
84   - webkit2gtk-4.0: Update to 2.19.3
86 Vala 0.39.2
87 ===========
88  * Various bug fixes:
89   - vala: Don't transform an explicit "null" into valid format-string [#791215]
90   - codegen: Don't create null-safe destroy-wrapper for GenericType [#791283]
91   - Improve error message for missing type-parameter on enclosing type [#587905]
93  * GIR parser:
94   - Allow change of parameter names
95   - Handle metadata for fields inside a transparent union
96   - Accept setters with boolean return-type as valid property-accessor
97   - Don't mark simple-type out-parameters with '?' as nullable
99  * Valadoc
100   - libvaladoc: Actually resolve "percnt;" to '%'
102  * Bindings:
103   - glib-2.0: Fix potential null pointer dereference in string.joinv() [#791257]
104   - gobject-2.0: Add missing GType constants for fundamentals [#791023]
105   - gstreamer-1.0: Update from 1.13+ git master
106   - gtk+-3.0: Switch to GIR [#730746]
107   - gtk+-4.0: Update to 3.93.0+6af4947e
108   - posix: Move signal constants to an enum and add few missing ones [#790958]
110 Vala 0.39.1
111 ===========
112  * Highlights
113   - Report warning if property-type is not compatible with GLib.Object [#693932]
114   - Allow to pass compatible delegates to signal.connect() [#787521]
115   - Allow unscoped enum values where possible
116   - Avoid use of temp-var for some callables returning ValueType
117     and to access in/ref parameters [#789071]
118   - Reformat generated source declarations and definitions for better
119     readability [#688447]
121  * Various bug fixes:
122   - Use array_length_cexpr to support fixed-arrays for return-values [#784691]
123   - Properly parse arguments for vala interpeter-mode [#663070]
124   - Enforce name-length >= 3 for structs using GType [#764041]
125   - Report error for missing type-parameter on enclosing type [#587905]
126   - Add boolean "use_inplace" ccode-attribute for methods [#750840]
127   - Improve handling of unowned/owned keyword occurrences
128   - Methods need to throw compatible error if target delegate throws one
129   - Discover invalid member access to instance field [#790903]
130   - Improve error output of mismatching overriding methods
132  * Valadoc
133   - Acknowledge possible properties in structs [#784705]
134   - Fix fatal typo in GtkdocRenderer.visit_symbol_link() [#790266]
136  * Bindings:
137   - glib-2.0: Use type-id/marshaller-type for (u)int16/(u)short from (u)int32
138     [#693932]
139   - glib-2.0: Add optional 'unparsed' parameter to *.try_parse () [#774124]
140   - gobject-2.0: Add some missing symbols
141   - gstreamer-1.0: Bind GST_TIME_ARGS, GST_STIME_ARGS macros [#750840]
142   - gstreamer-1.0: Bind GST_DEBUG_BIN_TO_DOT_FILE/*_WITH_TS [#785215]
143   - gstreamer-1.0: Update from 1.13+ git master
144   - gtk+-3.0: Update to 3.22.26+9ce824d3
145   - gtk+-4.0: Split Gsk.RenderNode into several classes
146   - gtk+-4.0: Update to 3.93.0+2d797dd8
147   - webkit2gtk-4.0: Update to 2.19.2
149 Vala 0.38.3
150 ===========
151  * Various bug fixes:
152   - codegen: Prioritize "array_length=true" over "array_null_terminated=true"
153     [#788775]
154   - codegen: Avoid possible conflicts with internal property/signal defines
155     [#788964]
157  * Bindings:
158   - gio-2.0: Expose g_task_get_source_object as Task.get_unowned_source_object
159   - gstreamer-1.0: Update from 1.13+ git master
160   - gtk+-4.0: Update to 3.92.1
161   - libxml-2.0: Add DTD methods [#789442]
163 Vala 0.38.2
164 ===========
165  * Various bindings updates:
166   - gstreamer-1.0,gtk+-3.0,gtk+-4.0: Update from git master
167   - gnutls: Fix free_function ccode-attribute of Certificate [#788181]
169 Vala 0.38.1
170 ===========
171  * Various bug fixes:
172   - valadoc: Don't use 'stderr' as variable name [#787305]
173   - codegen: Try to use a more unique internal define for properties [#787436]
174   - vala: Update list of used attributes
175   - method: Use prototype-string for error-reports of return-type mismatches
177  * Bindings:
178   - glib-2.0: Fix MainContext.check(),
179       OptionEntry[] params are null-terminated,
180       Bind g_convert_with_fallback() and g_convert_with_iconv()
182 Vala 0.38.0
183 ===========
184  * Various bug fixes:
185   - Improve error output for incompatible method signatures
186     (Add CallableType as base for DelegateType, MethodType, SignalType)
187   - codegen:
188     + Initialize temp-variable for fixed-size arrays to zero first [#787152]
189     + Add support for "type-func" in ui-files [#787033]
191  * Bindings:
192   - gtk+-3.0,gtk+-4.0: Update
193   - libxml-2.0: Bind xmlLastElementChild and xmlPreviousElementSibling
194   - pangocairo: CairoFontMap.set_default() is not an instance method
195   - gio-2.0: Application.set_default() is not an instance method
197 Vala 0.37.91
198 ============
199  * Various bug fixes:
200   - codegen:
201     + Actually write declaration for GNodeTraverseFunc wrapper [#786845]
202     + Don't transfer ownership of variable if target-type is unknown [#736774]
203     + Adjust format-index for printf/scanf-methods which throw errors [#781061]
204     + Use given dup_function for structs
205   - libvaladoc: Fix some -Wincompatible-pointer-types warnings
206   - tests: Fix some syntax issues [#786652]
207   - Add .editorconfig file [#786620]
209  * GIR parser:
210   - Better support of "cprefix" argument in metadata
211   - Support "cname" argument in metadata
213  * Bindings:
214   - Add javascriptcoregtk-4.0 and avoid skips in webkit2gtk*-4.0
215   - Update GIR-based bindings
216   - gtk+-3.0: Update to 3.22.19
218 Vala 0.37.90
219 ============
220  * Various bug fixes:
221   - Fix some build-system problem
222     + valadoc/tests: Add the source vapi directory to driver-test [#786505],
223       Add ./vala/.libs rather than ./gee/.libs to LD_LIBRARY_PATH
224     + Explicitly link doclets against libvala-*.la [#786534]
225     + Add missing include of Makefile.common
226   - vapigen: Mark given source-files as such and force girparser to handle them
227   - codegen: Include glib-object.h for Enums/Structs with type_id
228  * Bindings:
229   - gtk+-4.0: Make Gsk.Texturer.for_*() static factory methods
231 Vala 0.37.2
232 ===========
233  * Various bug fixes:
234   - libvaladoc: Keep bootstrap-support with valac >= 0.16.1
235   - valadoc: Fix tests while bootstapping with valac < 0.31/32
237  * Bindings:
238   - glib-2.0: Update Unicode symbols
239   - gobject-2.0: Add required type_id attributes to all ParamSpec subclasses
240   - libgdata: Make Authorizer.reauth_* methods virtual [#779229]
241   - libxml-2.0: Update Xml.ParserOption [#785585]
242   - gtk+-4.0: Update to 3.91.2
243   - webkit2gtk-4.0: Update to 2.17.90
245 Vala 0.37.1
246 ===========
247  * Highlights
248   - Don't warn about deprecated symbols if installed_version is older
249   - Add --gresourcesdir option [#783133]
250   - Install libvala-0.xx.vapi to "global" vapi directory
251   - Require and target GLib >= 2.40
252   - build: Make ccode and codegen private API
253   - build: Use --use-header for vala's libraries
254   - compiler: Add --color=WHEN option
255   - codegen: Use g_object_notify_by_pspec() to notify property-changes
256   - codegen: Use *_free_full to free GLib.List, GLib.SList and GLib.Queue
257   - codegen: Support renamed signals [#731547]
258   - Optimize (de)serialization of arrays with type-signature "ay" [#772426]
259   - Merge valadoc - Consider valadoc a part of vala's toolchain and
260     therefore let it live in the main repository (adds graphviz to the
261     build-requirements)
263  * Various bug fixes:
264   - Fix finally blocks with async yields [#741929]
265   - Handle non-null in coalescing expression [#611223]
266   - Make the task_complete flag for < 2.44 more similar to >= 2.44 [#783543]
267   - Nullable ValueType requires POINTER as marshaller signature [#783897]
268   - NoAccessorMethod attribute is allowed for gobject-properties only
269   - girparser: Fix parsing of delegate-alias without target
270   - compiler: Use API_VERSION instead of stripping PACKAGE_SUFFIX
271   - girwriter: Write length-parameters of arrays with rank > 1 [#758019]
272   - gdbus: Don't leak nested HashTable on deserialization [#782719]
273   - codewriter: Update timestamps of generated c-files if needed [#683286]
274   - tests: Use dbus-run-session instead of dbus-launch [#771455]
275   - codegenerator: Add source_reference parameter to CodeGenerator.store_*()
276   - Don't allow assigning delegate if no target/closure is available [#598869]
277   - gee: Add some useful symbols from gee-0.8
279  * Bindings:
280   - gio-2.0: Add DBusConnection 'closed' signal as 'on_closed' [#684358]
281   - gio-2.0: Use default 'length = null' for DataInputStream.read_line_utf8*
282     [#783351]
283   - glib-2.0,gobject-2.0: Updates from 2.53.x
284   - poppler-glib: Update to 0.54.0
285   - webkit2gtk-4.0: Update to 2.17.4
286   - gstreamer-1.0: Update to 1.13.0+
287   - libgvc: Add WITH_CGRAPH conditionals
289 Vala 0.36.3
290 ===========
291  * Various bug fixes:
292   - scanner: Fix calculation of column value for tokens after multiline comment
293     [#652899]
294   - codegen: Unref GLib.AsyncResult on uncaught errors in coroutines [#641171]
295   - Keep initializing result-variable for struct constructors [#782056]
297 Vala 0.36.2
298 ===========
299  * Various bug fixes:
300   - Enums require at least one value otherwise report an error
302  * Bindings:
303   - gstreamer-1.0: Update to 1.11.90+
304   - gio-2.0: Fix GLib.Task constructor and report_error/report_new_error()
305   - glib-2.0: Add quark() functions to errordomains,
306       Add missing version macro and constants,
308 Vala 0.36.1
309 ===========
310  * Various bug fixes:
311   - Always consider a method compatible with itself [#773135]
312   - Perform arguments-check against actual .end() method-signature [#684208]
313   - Slightly improve lamdba-expression error on target-type mismatch
314   - Fix delegate initializer for instance fields [#683925]
315   - Don't leak target-reference when casting/assigning owned delegates [#780426]
317  * GIR parser and writer:
318   - girparser: Add destroy argument for metadata [#750838]
319   - vapigen: Add --nostdpkg option like in valac
321  * Bindings:
322   - gstreamer-1.0: Fix Pad.set_*_function() bindings [#750838]
323   - glib-2.0: Add missing version macro and constants,
324       unichar.to_string doesn't return null
325   - gtk+-2.0,gtk+-3.0: Mark "intersection" param of Widget.intersect() as out
326   - gtk+-4.0: Update to 3.90.0
328 Vala 0.36.0
329 ===========
331  * Highlights
332   - Update manual using DocBook from wiki.gnome.org as source [#779090]
333   - Add support for array-parameters with rank > 1 in signals [#778632]
334   - Use GTask instead of GSimpleAsyncResult with GLib 2.36/2.44 target [#763345]
335   - Deny access to protected constructors [#760031]
336   - Support [DBus (signature = ...)] for properties [#744595]
337   - Add [CCode ("finish_instance = ...")] attribute [#710103]
338   - Support [HasEmitter] for vala sources [#681356]
339   - Add support for the \v escape charactor [#664689]
340   - Add explicit copy method for arrays [#650663]
341   - Allow underscores in type parameter names [#644938]
342   - Support [FormatArg] attribute for parameters
343   - Ignore --thread commandline option and drop gthread-2.0 references
344   - Check inferred generic-types of MemberAccess [#775466]
345   - Check generic-types count of DelegateType [#772204]
346   - Fix type checking when using generics in combination with subtype [#615830]
347   - Fix type parameter check for overriding generic methods
348   - Use g_signal_emit where possible [#641828]
349   - Only emit notify of properties if value actually changed [#631267] [#779955]
350   - Mark chained relational expressions as stable [#677022]
351   - Perform more thorough compatibility check of inherited properties [#779038]
352   - Handle nullable ValueTypes in signals delegates properly [#758816]
354  * New bindings:
355   - gtk+-4.0, gtk+-unix-print-{2,3,4}.0, libgrss
357  * Removed bindings:
358   - clutter-json-1.0
360  * Updated bindings. Some fixes may need to be wrapped in your Vala code
361    with the preparser directive #if VALA_0_36
362   - cairo: Add bindings for cairo_*_user_data()
363   - clutter-1.0: Fix constructors which weren't detected as such
364   - clutter-gst-2.0: Skip VideoTexture.get_audio_streams/get_subtitle_tracks
365   - clutter-gst-3.0: Three commits
366   - gdk-2.0: Include gdk/gdkkeysyms.h for Gdk.Key
367   - gdk-3.0: Three commits
368   - gdk-pixbuf-2.0: Three commits
369   - gobject-introspection-1.0: Prettify and fix the whole thing
370   - gsl.vapi: Fix attribute typos
371   - gstreamer-1.0: Make ElementFactory.get_static_pad_templates fully "unowned",
372       Mark *.make_writable with "ReturnsModifiedPointer",
373       Fix Gst.Base.Adapter.map/take bindings
374   - gtk+-3.0: Various updates
375   - gtk+-X.0: Mark "iter" param of ListStore.remove() as ref
376   - libarchive: Add ReadDisk
377   - libxml-2.0: Adding missing API and nullable parameters
378   - linux: add non-posix fcntl constants
379   - polkit-gobject-1: Fix constructors which weren't detected as such
380   - poppler-glib: Update to 0.52.0
381   - rest-0.7: Fix some ownership problems
382   - sdl: Make Palette and PixelFormat a struct
383   - webkit2gtk-4.0: Update to 2.16
384   - webkit2gtk: URI*.get_http_headers returns unowned Soup.MessageHeaders
386  * Updated GLib core bindings:
387   - gio-2.0:
388     + Fix async constructors of DBusConnection,DBusObjectManagerClient...
389     + Fix binding of Resolver.lookup_service*()
390     + Keep GLib.Socket API compatible with gio < 2.48
391     + Update SettingsBackend related bindings
392     + Add/"Unlock" missing GTask symbols
393   - gio-unix-2.0:
394     + Add "g_unix_mounts_for" and fix "g_unix_mount_at"
395   - glib-2.0:
396     + Add GPOINTER_TO_* as from_pointer()
397     + Add G_CHECKSUM_SHA384
398     + Add "g_utf8_make_valid"
399     + Add more Error bindings
400     + Add simple fast-path to string.replace()
401     + Add UCS-4 and UTF-16 related bindings
402     + Add uuid_string_*
403     + Fix g_bookmark_file_load_from_*/to_file bindings
404     + Mark delegates in Test.add_data_func/add_func() as scope=async
405     + Mark va_list.arg() with simple-generics to allow int64 or double
406     + Update Unicode symbols
407   - gobject-2.0:
408     + Add a bunch of missing symbols
409     + Add some missing "array_length_type" annotations
411  * GIR parser and writer:
412   - Add [GIR ("fullname = ...")] attribute, set fullname of GType [#775591]
413   - More complete parsing of field information [#772902]
414   - Use the correct tag- and element-name for an annotation [#769597]
415   - Use type_id information from gir if not already overridden
416   - No support for fixed-size array as return-value
417   - Let alias inherit more information from base_type
418   - Improve function to method conversion
419   - Avoid fatal handling of nameless unions
420   - Allow to specify the base_type of an alias
421   - Add metadata-support for "returns_modified_pointer" [#759255]
423  * D-Bus code generation:
424   - Check there is a return error location before using it [#779652]
425   - Fix memory-leak using g_task_propagate_pointer [#778993]
426   - Initialize intermediate variables [#778540]
427   - Handle errors when extracting FDs from dbus messages [#778540]
428   - Ensure extracted data from the GVariant is freed on error [#778540]
430  * C code hardening and reproducibility:
431   - Fix build with -Werror=enum-compare -Werror=switch
432   - Build testsuite with -Werror=format-nonliteral -Werror=format-security
433       -Werror=int-conversion -Werror=redundant-decls
434   - Add G_GNUC_FORMAT attribute for FormatArg functions [#774060]
435   - Add G_GNUC_PRINTF/SCANF attribute for Printf/ScanfFormat functions [#710862]
436   - gtkmodule: Order required-gtype-classes for reproducibility [debian#802528]
438  * Reduce incompatible-pointer-type C code warnings:
439   - Cast vfunc pointer assigns of abstract overrides [#777958]
440   - Fix vfunc cast for async method implementation/override
441   - Default to void-return for vfunc cast of *_async methods
442   - Cast *_destroy_func of generic-types calls to GDestroyNotify
443   - Cast destroy_data for g_cclosure_new to GClosureNotify
444   - Pass pointer of matching type to property-getter
445   - memberaccess: Don't resolve base_method/property twice
447  * Genie:
448   - Allow comma-separated identifiers in definition of enums [#776833]
449   - Add empty file check to read_token() [#633083]
451  * Various bug fixes:
452   - codegen: Don't create duplicated complete-async code [#778302]
453   - codegen: Don't return void for non-nullable simple-type structs [#778224]
454   - vala: Non-null initializers not allowed for owned namespace fields [#777697]
455   - codegen: Support casting arbitary value-types to arrays [#777194]
456   - codegen: Reference struct fields with their actual cname [#775761]
457   - codegen: Add function-prototypes for all register-type calls [#775446]
458   - vala: check a property has an accessor and/or a mutator [#773956]
459   - codegen: Don't declare CreationMethod for compact-classes twice [#772661]
460   - method: Print encountered type if return types mismatch [#769501]
461   - codegen: Fix memory-leak with object initializer for properties [#766739]
462   - codegen: Fix array length of array returned by lambda [#761360]
463   - codegen: Fix emission of constant array length [#756376]
464   - codegen: Support deprecating properties and their accessors [#732449]
465   - codegen: Don't add static modifier to abstract property setters [#673389]
466   - codegen: Fix instance parameter property setter in SimpleType structs
467     [#657346]
468   - codegen: Fix base-access from within overriding struct-property-accessor
469     [#764481]
470   - vala: Check accessibility of default arguments [#648030]
471   - vala: Disallow private accessors in overridable properties [#603491]
472   - methodcall: Don't try to remove N_/NC_ while properly handled in C [#642350]
473   - vala: Check type arguments in DataType.equals [#641418]
474   - parser: Allow cast pointer expressions without enclosing parens [#590641]
475   - Don't initialize local variable if not requested
476   - codegen: Don't implicitly initialize local variables with initializer
477   - Check printf arguments of object creation expressions
478   - ccodefunction: Only add G_GNUC_DEPRECATED to declarations
479   - codegen: Avoid criticals while unconditionaly trying to chain-up to
480     non-existing property-accessors
481   - signalmodule: Add signal-emitter declaration if needed [#779609]
482   - signalmodule: Fix deprecation of signals
483   - codegen: Properly null-out source on ownership-transfer of delegates
484   - vala: Fix MemberAccess.is_non_null() for EnumValue constants [#780050]
486  * Contributors:
487     Abderrahim Kitouni, Alistair Thomas, Andrea Del Signore, Carlos Garnacho,
488     Daniel Espinosa, Daniel Pfeifer, Dr. Michael Lauer, Evan Nemerson,
489     Florian Brosch, Francisco Serna, George Barrett, Jens Georg, Jordan Yelloz,
490     JĂ¼rg Billeter, Luca Bruno, Marvin W, Matthias Berndt, Michael James Gratton,
491     mrmacete, Nikolay Orlyuk, Niko Tyni, Ole AndrĂ© Vadla RavnĂ¥s,
492     Philip Withnall, Richard Wiedenhöft, Rico Tzschichholz, Sam Thursfield,
493     Severin Heiniger, Simon Werbeck, Timm Bäder, Vladislav, Yu Feng
495 Vala 0.34.0
496 ===========
498  * Bug fixes and binding updates.
500 Vala 0.33.1
501 ===========
503  * Bug fixes and binding updates.
505 Vala 0.32.0
506 ===========
508  * Bug fixes and binding updates.
510 Vala 0.31.1
511 ===========
513  * Introduce [Version] attribute.
514  * Require and target GLib >= 2.32.
515  * Bug fixes and binding updates.
517 Vala 0.30.0
518 ===========
520  * Binding updates.
522 Vala 0.29.3
523 ===========
525  * Add --shared-library option for GIR files.
526  * Bug fixes and binding updates.
528 Vala 0.29.2
529 ===========
531  * Bug fixes and binding updates.
533 Vala 0.29.1
534 ===========
536  * Binding updates.
538 Vala 0.28.0
539 ===========
541  * Binding updates.
543 Vala 0.27.2
544 ===========
546  * Bug fixes and binding updates.
548 Vala 0.27.1
549 ===========
551  * Print compiler messages in color.
552  * Add clutter-gdk-1.0 bindings.
553  * Add clutter-gst-3.0 bindings.
554  * Add clutter-x11-1.0 bindings.
555  * Add rest-extras-0.7 bindings.
556  * Bug fix and binding updates.
558 Vala 0.26.0
559 ===========
561  * Bug fix and binding updates.
563 Vala 0.25.4
564 ===========
566  * Add option --vapi-comments.
567  * Bug fixes and binding updates.
569 Vala 0.25.3
570 ===========
572  * Bug fixes and binding updates.
574 Vala 0.25.2
575 ===========
577  * Require and target GLib >= 2.24.
578  * Report warning for private struct fields.
579  * Replace webkit2gtk-3.0 bindings with webkit2gtk-4.0 bindings.
580  * Always build vapigen.
581  * Bug fixes and binding updates.
583 Vala 0.25.1
584 ===========
586  * Support explicit interface method implementation.
587  * Support (unowned type)[] syntax.
588  * Support non-literal length in fixed-size arrays.
589  * Mark regular expression literals as stable.
590  * GIR parser updates.
591  * Add webkit2gtk-3.0 bindings.
592  * Add gstreamer-allocators-1.0 and gstreamer-riff-1.0 bindings.
593  * Bug fixes and binding updates.
595 Vala 0.24.0
596 ===========
598  * Bug fixes and binding updates.
600 Vala 0.23.3
601 ===========
603  * Bug fixes and binding updates.
605 Vala 0.23.2
606 ===========
608  * Bind GDK event structures as compact classes.
609  * Switch gdk-x11-3.0 bindings to .gir.
610  * Switch librsvg-2.0 bindings to .gir.
611  * Bug fixes and binding updates.
613 Vala 0.23.1
614 ===========
616  * GIR parser updates.
617  * Switch libnotify bindings to .gir.
618  * Add libpeas-gtk-1.0 bindings.
619  * Add xcb-icccm bindings.
620  * Bug fixes and binding updates.
622 Vala 0.22.0
623 ===========
625  * Support chain up to constructv functions.
626  * Bug fixes and binding updates.
628 Vala 0.21.2
629 ===========
631  * Recognize ref/unref functions in .gir files.
632  * Add geocode-glib bindings.
633  * Bug fixes and binding updates.
635 Vala 0.21.1
636 ===========
638  * Support \uXXXX escape sequences.
639  * Support specifying vfunc order in interfaces to define ABI.
640  * Support GTK+ widget templates.
641  * Bug fixes and binding updates.
643 Vala 0.20.1
644 ===========
646  * Bug fixes.
648 Vala 0.20.0
649 ===========
651  * Bug fixes and binding updates.
653 Vala 0.19.0
654 ===========
656  * Support scope = "async" attribute for parameters.
657  * Add --api-version option.
658  * Add atspi-2 bindings.
659  * Add gstreamer-rtsp-server-1.0 bindings.
660  * Bug fixes and binding updates.
662 Vala 0.18.0
663 ===========
665  * Bug fixes.
667 Vala 0.17.7
668 ===========
670  * Add libgnome-menu-3.0 bindings.
671  * Bug fixes and binding updates.
673 Vala 0.17.6
674 ===========
676  * Bug fixes and binding updates.
678 Vala 0.17.5
679 ===========
681  * Support subclassing of GLib.Source.
682  * Switch pango bindings to .gir.
683  * Add gstreamer-1.0 core bindings.
684  * Add gst-plugins-base-1.0 bindings.
685  * Add gobject-introspection-1.0 bindings.
686  * Bug fixes and binding updates.
688 Vala 0.17.4
689 ===========
691  * Warn when accessing static members with an instance reference.
692  * Recompute length when casting between array types.
693  * Support [GenericAccessors] attribute for interfaces.
694  * Deprecate implicit .begin for async methods.
695  * Drop Dova profile.
696  * Drop POSIX profile.
697  * Bug fixes and binding updates.
699 Vala 0.17.3
700 ===========
702  * Require and target GLib >= 2.18.
703  * Support async creation methods.
704  * Bug fixes and binding updates.
706 Vala 0.17.2
707 ===========
709  * Bug fixes and binding updates.
711 Vala 0.17.1
712 ===========
714  * Improve assertion messages.
715  * Add --enable-gobject-tracing commandline option.
716  * Bug fixes and binding updates.
718 Vala 0.17.0
719 ===========
721  * Support simple method-level profiling.
722  * Add VALA_CHECK_MODULES and VALA_PROG_VAPIGEN to vala.m4.
723  * Bug fixes and binding updates.
725 Vala 0.16.0
726 ===========
728  * Add udisks2 bindings.
729  * Bug fixes and binding updates.
731 Vala 0.15.2
732 ===========
734  * Switch poppler-glib bindings to .gir.
735  * Many bug fixes and binding updates.
737 Vala 0.15.1
738 ===========
740  * Support arrays with nullable elements.
741  * Add <doc> support to .gir reader and writer.
742  * Switch clutter-gtk-1.0 bindings to .gir.
743  * Switch gio-2.0 bindings to .gir.
744  * Add cogl-pango-1.0 bindings.
745  * Add gdl-3.0 bindings.
746  * Add libnl-3.0 bindings.
747  * Add packagekit-glib2 bindings.
748  * Add xtst bindings.
749  * Many bug fixes and binding updates.
751 Vala 0.15.0
752 ===========
754  * Manage memory of GQueue elements.
755  * Switch atk bindings to .gir.
756  * Switch gdk-pixbuf-2.0 bindings to .gir.
757  * Switch gdk-3.0 bindings to .gir.
758  * Add libwnck-3.0 bindings.
759  * Many bug fixes and binding updates.
761 Vala 0.14.0
762 ===========
764  * Bug fixes and binding updates.
766 Vala 0.13.4
767 ===========
769  * Switch gudev-1.0 bindings to .gir.
770  * Switch mx-1.0 bindings to .gir.
771  * Many bug fixes and binding updates.
773 Vala 0.13.3
774 ===========
776  * Switch pangocairo bindings to .gir.
777  * Bug fixes.
779 Vala 0.13.2
780 ===========
782  * Enable flow analysis for out parameters.
783  * Refactor attribute handling.
784  * Add gedit-3.0 bindings.
785  * Add gtksourceview-3.0 bindings.
786  * Add rest-0.7 bindings.
787  * Add vte-2.90 bindings.
788  * Switch clutter-1.0 bindings to .gir.
789  * Switch libgdata bindings to .gir.
790  * Switch libsoup bindings to .gir.
791  * Many bug fixes and binding updates.
793 Vala 0.13.1
794 ===========
796  * Many bug fixes and binding updates.
798 Vala 0.13.0
799 ===========
801  * More refactoring in the code generator.
802  * Improvements to the .gir reader.
803  * Switch JSON-GLib bindings to .gir.
804  * Drop deprecated support for D-Bus GLib in favor of GDBus.
805  * Many bug fixes and binding updates.
807 Vala 0.12.0
808 ===========
810  * Add get_next_char to string class.
811  * Many bug fixes and binding updates.
813 Vala 0.11.7
814 ===========
816  * Add support for async signal handlers (Frederik Sdun).
817  * More refactoring in the code generator (Luca Bruno).
818  * Improvements to the .gir writer (Michal Hruby).
819  * Many bug fixes and binding updates.
821 Vala 0.11.6
822 ===========
824  * Add parse and try_parse methods to boolean and numeric types.
825  * Add clutter-gtk-1.0 bindings.
826  * Add pixmap-1 bindings (Evan Nemerson).
827  * Many bug fixes and binding updates.
829 Vala 0.11.5
830 ===========
832  * Add last_index_of and last_index_of_char to string class.
833  * More refactoring in the code generator (Luca Bruno).
834  * Improvements to the .gir writer (Michal Hruby).
835  * Many bug fixes and binding updates.
837 Vala 0.11.4
838 ===========
840  * Add index_of, index_of_char, and char_count to string class.
841  * Many bug fixes and binding updates.
843 Vala 0.11.3
844 ===========
846  * Support BusName sender parameter in GDBus servers.
847  * More refactoring in the code generator.
848  * Many bug fixes and binding updates.
850 Vala 0.11.2
851 ===========
853  * Update libnotify bindings to 0.7.0.
854  * Improvements to the .gir reader.
855  * Bug fixes and binding updates.
857 Vala 0.11.1
858 ===========
860  * Require and target GLib >= 2.16.
861  * Guard access to out parameters to allow null arguments.
862  * Add support for local constants.
863  * Support file descriptor passing with GDBus.
864  * Support cached property values in GDBus clients.
865  * Support Cancellable parameter in GDBus clients.
866  * Support no-reply methods in GDBus clients and servers.
867  * More refactoring in the code generator.
868  * Many bug fixes and binding updates.
870 Vala 0.11.0
871 ===========
873  * Use byte indices for strings.
874  * Use uint8[] for binary data in bindings.
875  * Add support for parallel compilation.
876  * Improve compiler performance.
877  * More refactoring in the code generator.
878  * Many bug fixes and binding updates.
880 Vala 0.10.0
881 ===========
883  * Port GIR parser and writer to GIR version 1.2.
884  * Update GLib bindings to 2.26 branch.
885  * Bug fixes.
887 Vala 0.9.8
888 ==========
890  * Add --fatal-warnings commandline option.
891  * Deprecate string.len () in favor of string.length.
892  * Deprecate use of D-Bus GLib in favor of GDBus.
893  * Many bug fixes and binding updates.
895 Vala 0.9.7
896 ==========
898  * Fix regression introduced by codegen refactoring.
900 Vala 0.9.6
901 ==========
903  * Drop deprecated support for assigning to construct properties.
904  * Some refactoring in the code generator.
905  * Bug fixes in bindings and vapigen.
907 Vala 0.9.5
908 ==========
910  * Add version suffix to support parallel installation.
911  * Define VALA_X_Y according to compiler version.
912  * Enable version header by default.
913  * Add vala.m4 with VALA_CHECK_PACKAGES macro.
914  * Add gedit-2.20 bindings (Andrea Del Signore).
915  * Add tokyocabinet bindings (Evan Nemerson).
916  * Various improvements to the Dova profile.
917  * Many bug fixes and binding updates.
919 Vala 0.9.4
920 ==========
922  * Append documentation comments to generated C files.
923  * Skip <doc> tags in .gir files.
924  * Various improvements to the Dova profile.
925  * Many bug fixes and binding updates.
927 Vala 0.9.3
928 ==========
930  * Support newlines in double quoted string literals.
931  * Add experimental support for main blocks.
932  * Add experimental vala tool to compile and run code.
933  * Initial support for generic delegates.
934  * Support using GClosure for delegate parameters.
935  * Support GBoxed-based memory management.
936  * Improvements to the .gir reader and writer.
937  * Various improvements to the Dova profile.
938  * Many bug fixes and binding updates.
940 Vala 0.9.2
941 ==========
943  * Initial support for GDBus-based clients and servers.
944  * Support implicit and explicit GVariant casts.
945  * Add support for [Deprecated] attribute.
946  * Add GenericArray as alternative binding to GPtrArray.
947  * Add gdk-pixbuf-3.0, gdk-3.0, gdk-x11-3.0, and gtk+-3.0 bindings.
948  * Updates to the GLib bindings.
949  * Many bug fixes.
951 Vala 0.9.1
952 ==========
954  * Support constants in enums.
955  * Deprecate +=/-= syntax to connect/disconnect signal handlers.
956  * Add experimental support for Dova profile.
957  * Update Genie parser (Jamie McCracken).
958  * Add clutter-gst-1.0 bindings (Ali Sabil).
959  * Add gdu and gdu-gtk bindings.
960  * Add libesmtp bindings (Adrien Bustany).
961  * Add mx-1.0 bindings (Evan Nemerson).
962  * Add orc-0.4 bindings (Fabian Deutsch).
963  * Add rest-extras-0.6 bindings (Adrien Bustany).
964  * Updates to the GLib, GStreamer, Linux, SQLite, and other bindings.
965  * Many bug fixes.
967 Vala 0.8.0
968 ==========
970  * Infer type arguments when calling generic methods.
971  * Support `in' operator for arrays.
972  * Add experimental support for regular expression literals.
973  * Add experimental support for chained relational expressions.
974  * Add va_list support.
975  * Add clutter-gtk-0.10 bindings (Gordon Allott).
976  * Add gdl-1.0 bindings (Nicolas Joseph).
977  * Add gstreamer-app-0.10 bindings (Sebastian Dröge).
978  * Add gstreamer-cdda-0.10 bindings (Sebastian Dröge).
979  * Add gudev-1.0 bindings (Jim Nelson).
980  * Add libgda-report-4.0 bindings (Shawn Ferris).
981  * Add libgvc (graphviz) bindings (Martin Olsson).
982  * Add purple bindings (Adrien Bustany).
983  * Many bug fixes and binding updates.
985 Vala 0.7.10
986 ===========
988  * Support coalescing operator ??.
989  * Support to_string and bitwise complement with enums.
990  * Return handler id when connecting signal handlers.
991  * Support struct comparison.
992  * Support constructor chaining in structs.
993  * Enforce protected member restrictions.
994  * Improve performance of flow analysis.
995  * Support automatic line continuations in Genie.
996  * Improvements to the .gir reader and writer.
997  * Add --enable-mem-profiler commandline option.
998  * Many bug fixes and binding updates.
1000 Vala 0.7.9
1001 ==========
1003  * Support array and string slicing.
1004  * Add --symbols commandline option.
1005  * Add avahi-gobject bindings (Sebastian Noack).
1006  * Add ccss-1 bindings (Ali Sabil).
1007  * Add libarchive bindings (Julian Andres Klode).
1008  * Add libmagic bindings (Jens Georg).
1009  * Add readline bindings (Jukka-Pekka Iivonen).
1010  * Add twitter-glib-1.0 bindings (Adrien Bustany).
1011  * Many bug fixes and binding updates.
1013 Vala 0.7.8
1014 ==========
1016  * Support constructor chain up to GObject using Object (...).
1017  * Add syntax for string templates.
1018  * Support (!) non-null casts.
1019  * Many bug fixes and binding updates.
1021 Vala 0.7.7
1022 ==========
1024  * Support `using' directives inside namespaces.
1025  * Use const only for immutable structs.
1026  * Support string marshalling for enums in D-Bus (Didier Ptitjes).
1027  * Update Genie parser (Jamie McCracken).
1028  * Add libgda-4.0 bindings (Shawn Ferris).
1029  * Many bug fixes for closures and async methods.
1031 Vala 0.7.6
1032 ==========
1034  * Add support for closures.
1035  * Improve support for asynchronous methods.
1036  * Support async methods in D-Bus servers.
1037  * Add clutter-1.0 bindings (Rob Taylor).
1038  * Add GVariant, GSettings, and dconf bindings (Ryan Lortie).
1039  * Add linux, libnl-1, and libasound bindings (Michael 'Mickey' Lauer).
1040  * Add gnutls bindings (JiÅ™Ă­ ZĂ¡revĂºcky).
1041  * Add librest bindings (Adrien Bustany).
1042  * Many bug fixes and binding updates.
1044 Vala 0.7.5
1045 ==========
1047  * Add support for static properties.
1048  * Add support for delegate properties.
1049  * Support virtual default handler for signals.
1050  * Add limited support for derived compact classes.
1051  * Add libgdata bindings (VĂ­ctor Manuel JĂ¡quez Leal).
1052  * Add libusb-1.0 bindings (Evan Nemerson).
1053  * Many bug fixes and binding updates.
1055 Vala 0.7.4
1056 ==========
1058  * Add support for array properties.
1059  * Support implicit and explicit GValue casts.
1060  * Add initial support for generic methods.
1061  * Add postgres bindings.
1062  * Many bug fixes and binding updates.
1064 Vala 0.7.3
1065 ==========
1067  * Add initial support for POSIX profile.
1068  * Add --vapi and --gir commandline options.
1069  * Add initial x11, xcb, and cairo-xcb bindings.
1070  * Many bug fixes and binding updates.
1072 Vala 0.7.2
1073 ==========
1075  * Improvements to the .gir reader and writer (Didier Ptitjes).
1076  * Many bug fixes and binding updates.
1078 Vala 0.7.1
1079 ==========
1081  * Introduce new syntax to connect/disconnect signal handlers.
1082  * Add experimental support for fixed-length arrays.
1083  * Update Genie parser (Jamie McCracken).
1084  * Updates to the GLib, Cairo, GTK+, GStreamer, and POSIX bindings.
1085  * Many bug fixes.
1087 Vala 0.7.0
1088 ==========
1090  * Do not generate header files unless requested by the -H commandline
1091    option. This requires changes in the build system of Vala projects.
1092  * Support conditional compilation.
1094 Vala 0.6.0
1095 ==========
1097  * Improvements to the .gir reader and writer (Didier Ptitjes).
1098  * Add librsvg-2.0 bindings (Evan Nemerson).
1099  * Add Maemo libosso bindings (Jukka-Pekka Iivonen).
1100  * Add V4L2 bindings (MatĂ­as De la Puente).
1101  * Many bug fixes.
1103 Vala 0.5.7
1104 ==========
1106  * Support signals in static D-Bus clients.
1107  * Various improvements to asynchronous method support (Ryan Lortie).
1108  * Report unused internal methods.
1109  * Extend POSIX bindings.
1110  * Add FUSE bindings (John Carr).
1111  * Add libdaemon bindings (Jukka-Pekka Iivonen).
1112  * Many bug fixes.
1114 Vala 0.5.6
1115 ==========
1117  * Do not require libgee for custom indexer access.
1118  * Add Log.FILE, Log.LINE, and Log.METHOD constants.
1119  * Various improvements to the .gir reader.
1120  * Add Lua bindings (pancake and Phil Housley).
1121  * Add MySQL bindings (Jukka-Pekka Iivonen).
1122  * Add partial POSIX bindings.
1123  * Many bug fixes.
1125 Vala 0.5.5
1126 ==========
1128  * Improve syntax of owned property getters.
1129  * Add --enable-deprecated and --enable-experimental commandline options.
1130  * Remove --disable-non-null commandline option.
1131  * Many bug fixes.
1133 Vala 0.5.4
1134 ==========
1136  * Support array initializers as expressions.
1137  * Support += to efficiently append elements to arrays.
1138  * Calculate length for null-terminated arrays.
1139  * Support initializers for multi-dimensional arrays.
1140  * Add `owned' keyword to replace `#'.
1141  * Various fixes in coroutine support.
1142  * Support boxed structs as GObject properties.
1143  * Many bug fixes.
1145 Vala 0.5.3
1146 ==========
1148  * Rewrite D-Bus server support to directly use libdbus.
1149  * Register structs as boxed types.
1150  * Improve error reporting on invalid code.
1151  * Support private class fields and class destructors.
1152  * Add partial raptor and rasqal bindings.
1153  * Drop vala-gen-project, moved to vtg.
1154  * Many bug fixes.
1156 Vala 0.5.2
1157 ==========
1159  * Report uninitialized local variables.
1160  * Report unused fields, methods, and local variables.
1161  * Fix error handling in complex statements.
1162  * Improve support for generic types.
1163  * Support parameter arrays in bindings.
1164  * Do not require libgee for foreach statements.
1165  * Support enums in D-Bus clients and servers.
1166  * Support structs in hash tables in D-Bus servers.
1167  * Experimental static D-Bus client support.
1168  * Add --dump-tree commandline option to write code tree to file.
1169  * Many bug fixes.
1171 Vala 0.5.1
1172 ==========
1174  * Support type checks for error domains and error codes.
1175  * Experimental support for yield statements and coroutines.
1176  * Support GValue and GHashTable in D-Bus clients.
1177  * Various improvements to the .gir reader.
1178  * Drop deprecated support for static classes.
1179  * Modularize code generator.
1180  * Many bug fixes.
1182 Vala 0.4.0
1183 ==========
1185  * Support more flexible constructors.
1186  * Partial support for reading and writing .gir files.
1187  * Improve compiler performance.
1188  * Copy arrays where necessary.
1189  * Basic support for static properties.
1190  * Partial support for struct holding object references.
1191  * Add tracker indexer bindings (Roberto Majadas)
1192  * Updates to the GLib, GTK+, and GStreamer bindings.
1193  * Many bug fixes.
1195 Vala 0.3.5
1196 ==========
1198  * Notify on property changes by default (Jared Moore)
1199  * Add unique-1.0 bindings (Phil Housley)
1200  * Updates to the GLib, GTK+, and GStreamer bindings.
1201  * Many bug fixes.
1203 Vala 0.3.4
1204 ==========
1206  * Various improvements to D-Bus client and service support.
1207  * Basic support for detailed signals.
1208  * Check types of printf arguments.
1209  * Support `in' operator for Gee.Collection and Gee.Map (Jamie McCracken)
1210  * Add libgsf-1 bindings (Michael Lawrence)
1211  * Add loudmouth-1.0 bindings (Ali Sabil)
1212  * Updates to the GLib, GTK+, and GStreamer bindings.
1213  * Many bug fixes.
1215 Vala 0.3.3
1216 ==========
1218  * Support overriding default method handlers of signals.
1219  * Support dynamic access to properties and signals of GObjects.
1220  * Experimental support for nullable value types.
1221  * Improve support for classes not deriving from GLib.Object.
1222  * Support """verbatim strings""".
1223  * Add parser for Genie (Jamie McCracken)
1224  * Experimental support for arrays of arrays.
1225  * Documentation improvements (Phil Housley)
1226  * Improvements to D-Bus support (Ali Sabil, Philip Van Hoof, Yu Feng)
1227  * Add libepc-1.0 bindings (Ali Sabil)
1228  * Add libtiff bindings (Christian Meyer)
1229  * Updates to the GStreamer bindings (Ali Sabil and Jaap A. Haitsma)
1230  * Many bug fixes and performance improvements.
1232 Vala 0.3.2
1233 ==========
1235  * Add support for class constructors, class fields, and class methods.
1236  * Various improvements to methods in D-Bus services.
1237  * Add support for properties and signals in D-Bus services (Yu Feng)
1238  * Add Time API to GLib bindings.
1239  * Documentation improvements (Phil Housley)
1240  * Updates to the GLib and GTK+ bindings.
1241  * Many bug fixes.
1243 Vala 0.3.1
1244 ==========
1246  * Enable non-null types by default.
1247  * Add --disable-non-null commandline option.
1248  * New handwritten parser.
1249  * Support virtual methods in interfaces.
1250  * Add `dynamic' type modifier for D-Bus client support.
1251  * Add experimental support for writing D-Bus services.
1252  * Don't require `new' operator for structs.
1253  * Warn when using deprecated syntax.
1254  * Add libsexy bindings (Evan Nemerson)
1255  * Updates to the GLib and GTK+ bindings.
1256  * Many bug fixes.
1258 Vala 0.2.0
1259 ==========
1261  * Support nested namespaces.
1262  * Support static constructors.
1263  * Register enums with GType (Marc-AndrĂ© Lureau)
1264  * Small syntax change for default values of properties.
1265  * Add --verbose commandline option (Daniel Silverstone)
1266  * Improve pointer support.
1267  * Add GNOME Keyring bindings (Andrea Del Signore)
1268  * Add SDL bindings (Levi Bard)
1269  * Add libftdi bindings (Evan Nemerson)
1270  * Updates to the GLib, GTK+, GStreamer, and SQLite bindings.
1271  * Many bug fixes all over the place.
1273 Vala 0.1.7
1274 ==========
1276  * Support private property accessors.
1277  * Support default values for properties.
1278  * Improve support for array length and delegate target parameters.
1279  * Improve delegate and signal handler support.
1280  * Introduce new syntax to declare errordomains.
1281  * Improve exception support.
1282  * Report errors for missing return statements.
1283  * Report warnings for unreachable code.
1284  * Improve support for generic types.
1285  * Support pointer member access and pointer element access.
1286  * Support pointer arithmetic.
1287  * Add --quiet commandline option (Emmanuele Bassi)
1288  * Add WebKit bindings.
1289  * Add JSON-GLib bindings (Ali Sabil)
1290  * Add goocanvas bindings (Roberto Majadas)
1291  * Add hildon-fm-2 bindings (Levi Bard)
1292  * Add taglib bindings (Andreas Brauchli)
1293  * Add libusb bindings (Evan Nemerson)
1294  * Add bzip2 bindings (Maciej Piechotka)
1295  * Updates to the GLib, GTK+, GStreamer, and libsoup bindings.
1296  * Fixes for Windows.
1297  * Many bug fixes.
1299 Vala 0.1.6
1300 ==========
1302  * Add support for instance delegates.
1303  * Support conditional method compilation.
1304  * Add support for nested generic types.
1305  * Add size_t and ssize_t.
1306  * Use non-null types by default with --enable-non-null option.
1307  * Limited support for nullable types.
1308  * Add basic support for method pre- and postconditions.
1309  * Improve pointer support.
1310  * Always enable memory management.
1311  * Add libgnome-menu bindings (Roberto Majadas)
1312  * Add liboobs-1 bindings (Roberto Majadas)
1313  * Updates to the GLib, GTK+, GStreamer, SQLite, and libxml2 bindings.
1314  * Small documentation improvements.
1315  * Many bug fixes.
1317 Vala 0.1.5
1318 ==========
1320  * Add Vala Project Generator.
1321  * Support `in` operator for enums.
1322  * Support typeof for generic type parameters.
1323  * Replace gidlgen by vala-gen-introspect with a real C parser.
1324  * Update all bindings to use vala-gen-introspect.
1325  * Fix many gcc warnings.
1326  * Fix build with Cygwin and MinGW (Yaakov Selkowitz).
1327  * Many bug fixes.
1329 Vala 0.1.4
1330 ==========
1332  * Use .vapi as file extension for bindings.
1333  * Add Vala Reference Manual.
1334  * Add support for object initializers.
1335  * Emit #line directives in debug mode.
1336  * Add --basedir option.
1337  * Support creation methods in structs.
1338  * Add support for [Notify] attribute for properties.
1339  * Add experimental support for registering new fundamental classed types.
1340  * Improve support for non-GObject classes.
1341  * Improve error reporting.
1342  * Add vapicheck to verify generated bindings (Mathias Hasselmann).
1343  * Drop xml_pp dependency (Alberto Ruiz).
1344  * Many bug fixes.
1346 Vala 0.1.3
1347 ==========
1349  * Convert reference-type structs to classes for a more consistent type system.
1350  * Support `as` operator (Mathias Hasselmann).
1351  * Improve array support.
1352  * Experimental D-Bus client support.
1353  * Add GConf bindings.
1354  * Add libgnome and libgnomeui bindings.
1355  * Add Glade bindings.
1356  * Add libnotify bindings (Nicolas Christener, Roland Hostettler).
1357  * Add GnomeVFS bindings.
1358  * Add GtkSourceView bindings.
1359  * Add Panel Applet bindings.
1360  * Add GNOME Desktop Library bindings.
1361  * Add libsoup bindings.
1362  * Add libwnck bindings.
1363  * Add GtkMozEmbed bindings (Alberto Ruiz).
1364  * Add Poppler bindings (Alberto Ruiz).
1365  * Add Enchant bindings (Mathias Hasselmann).
1366  * Add Hildon bindings (Marcelo Lira).
1367  * Add SQLite bindings.
1368  * Add curses bindings (Ed Schouten).
1369  * Build system fixes (Nicolas Trangez).
1370  * Add manual pages for gidlgen and vapigen (Kumar Appaiah).
1371  * Many bug fixes all over the place.
1373 Vala 0.1.2
1374 ==========
1376  * Use and support libgee collection library (internal copy for now).
1377  * Performance improvements.
1378  * Improve support for generic types.
1379  * Many memory management fixes.
1380  * Add support for inner classes.
1381  * Add --cc and -X commandline options to control the C compiler.
1382  * Use GSlice for reference-type structs.
1383  * Add experimental GStreamer bindings.
1385 Vala 0.1.1
1386 ==========
1388  * Support simple exception handling.
1389  * Improve array and string support.
1390  * Support multi-dimensional arrays.
1391  * Add --thread commandline option.
1392  * Improve bindings.
1393  * Bug fixes.
1395 Vala 0.1.0
1396 ==========
1398  * Add commandline options for running the C compiler and linker.
1399  * Use # modifier for reference transfer in method parameters.
1400  * Replace callback keyword by delegate.
1401  * Improve and update GLib and GTK+ bindings.
1402  * Add experimental GVFS binding.
1403  * C89/MSVC portability fixes (Hans Breuer).
1404  * Refactor code generator.
1405  * Add experimental bindings generator.
1406  * Many bug fixes.
1408 Vala 0.0.9
1409 ==========
1411  * Add support for defining new generic classes.
1412  * Improve array support.
1413  * Memory management fixes.
1414  * Improve abstract property support.
1415  * Add basic support for flags types.
1416  * Improve GLib binding.
1417  * Add VTE binding.
1418  * Many bug fixes.
1420 Vala 0.0.8
1421 ==========
1423  * Add support for overridden properties.
1424  * Support properties and signals in interfaces.
1425  * Improve interface runtime suport.
1426  * Verify that classes implement all abstract and interface methods.
1427  * Basic compile-time support for generic types.
1428  * Default to strong references for return values and local variables.
1429  * Improve signal support.
1430  * Add support for pointers.
1431  * Improve support for numeric types.
1432  * Support writing GTypeModule-based plug-ins.
1433  * Improve manual memory management support.
1434  * Improve GTK+ bindings.
1435  * Many bug fixes.
1437 Vala 0.0.7
1438 ==========
1440  * New object construction syntax.
1441  * Interface implementations don't have to specify override anymore.
1442  * Improve interface support.
1444 Vala 0.0.6
1445 ==========
1447  * Improve interface support.
1448  * Support do loops.
1449  * Improve array support.
1450  * Improve enum support.
1451  * Add automated testing infrastructure.
1452  * Fixes for prefix and postfix operators.
1453  * Add more types to GLib bindings.
1454  * Many bug fixes.
1456 Vala 0.0.5
1457 ==========
1459  * Support base access.
1460  * Support typeof expressions.
1461  * Improve array support.
1462  * Fix possible memory leak in foreach statements.
1463  * Fix many warnings during C compilation.
1464  * Improve GTK+ bindings.
1466 Vala 0.0.4
1467 ==========
1469  * Support + operator in strings.
1470  * Support unicode character literals.
1471  * Add implicit conversions for numeric types.
1472  * Improve interface support.
1473  * Improve array support.
1474  * Support arbitrary signal parameters.
1475  * Add threading support.
1476  * Support lock statements.
1477  * Many improvements to the GTK+ bindings.
1479 Vala 0.0.3
1480 ==========
1482  * Interface fixes.
1483  * Support namespace constants.
1484  * Support switch statements.
1485  * Array creation support.
1486  * Provide complete but experimental bindings for GTK+ 2.10 and Cairo 1.2.
1487  * Add implicit array length parameter.
1488  * Follow package dependencies.
1489  * Support hexadecimal and octal integer literals and hexadecimal escape
1490    sequences.
1491  * Install libvala as shared library.
1493 Vala 0.0.2
1494 ==========
1496  * Support named construction methods.
1497  * Basic interface support.
1498  * Improve error handling.
1499  * Many bug fixes.
1502 Vala 0.0.1
1503 ==========
1505  * Initial release.