# develop # v0.8.0 - 2012-01-06 * Feature: Expose Blather's connection timeout config when creating a Connection::XMPP * Bugfix: Remove some deprecated Tropo extension components * Bugfix: Remove reconnection logic since it really belongs in the consumer * Feature: Raise a DisconnectedError when a disconnection is detected # v0.7.2 - 2011-12-28 * Feature: Allow sending commands to mixers easily * Feature: Allow configuration of Rayo XMPP domains (root, call and mixer) * Feature: Log Blather messages to the trace log level * Feature: Return an error when trying to execute an Output on Asterisk with unsupported options set * Feature: Add basic support for media output via MRCPSynth on Asterisk * API change: Rename mixer_id to mixer_name to align with change to Rayo * Bugfix: Handle and expose RubySpeech GRXML documents on Input/Ask properly * Bugfix: Compare ProtocolErrors correctly * Bugfix: Asterisk media output should default to Asterisk native output (STREAM FILE) * Bugfix: An Output node's default max_time value should be nil rather than zero # v0.7.1 - 2011-11-24 * [FEATURE] Add `Connection#not_ready!`, to instruct the server not to send any more offers. * [BUGFIX] Translate all exceptions raised by the XMPP connection into a ProtocolError * [UPDATE] Blather dependency to >= 0.5.9 # v0.7.0 - 2011-11-22 * Bugfix: Some spec mistakes * Feature: Allow execution of actions against global components on Asterisk * API change: The console has been removed * API change: Components no longer expose a FutureResource at #complete_event, and instead wrap its API in the same way as #response and #response=. Any consumer code which does some_component.complete_event.resource or some_component.complete_event.resource= should now use some_component.complete_event and some_component.complete_event= * Feature: Added the max-silence attribute to the Input component * Bugfix: Bump the Celluloid dependency to avoid spec failures on JRuby and monkey-patching for mockability * API change: Event handlers registered on components are no longer triggered by incoming events internally to Punchblock. These events must be consumed via a Client's event handlers or event queue and manually triggered on a component using ComponentNode#trigger_event_handler # v0.6.2 # Feature: Added basic support for running Punchblock apps on Asterisk. Calls coming in to AsyncAGI result in the client receiving an Offer, hangup events are sent, and accept/answer/hangup commands work. # API change: The logger is now set using Punchblock.logger= rather than as a hash key to Connection.new # v0.6.1 * Feature: Allow instructing the connection we are ready. An XMPP connection will send initial presence with a status of 'chat' to the rayo domain * Bugfix: When running on Asterisk, two FullyBooted events will now trigger a connected event * Bugfix: No longer ignore offers from the specified rayo domain on XMPP connections * Feature: Tag all event objects with the XMPP domain they came from # v0.6.0 * API change: Punchblock consumers now need to instantiate both a Connection and a Client (see the punchblock-console gem for an example) * Feature: Added a Connection for Asterisk, utilising RubyAMI to open an AMI connection to Asterisk, and allowing AMI actions to be executed. AMI events are handled by the client event handler. * Deprecation: The punchblock-console and the associated DSL are now deprecated and the punchblock-console gem should be used instead # v0.5.1 API change: Connections now raise a Punchblock::Connection::Connected instance as an event, rather than the class itself # v0.5.0 * Refactoring/API change: Client and connection level concerns are now separated, and one must create a Connection to be passed to a Client on creation. Client now has the choice between an event queue and guarded event handlers. # v0.4.3 * Feature: Support for meta-data on recordings (size & duration) * Feature: Allow specifying all of Blather's setup options (required to use PB as an XMPP component) * Bugfix: Rayo events are discarded if they don't come from the specified domain * Bugfix: Component execution in the sample DSL now doesn't expect events on the main queue # v0.4.2 * Bugfix: Conference complete event was not being handled # v0.4.1 * Feature/API change: Components no longer have an event queue, but instead it is possible to define guarded event handlers via #register_event_handler # v0.4.0 * First public release