Skip to content

Latest commit

 

History

History
99 lines (62 loc) · 3.73 KB

CHANGES.md

File metadata and controls

99 lines (62 loc) · 3.73 KB

v0.3.27

  • bogart.middleware.session assumed that req.env would be unique per request; however, it is not. Corrected issues caused by this.

v0.3.26

  • bogart.middleware.bodyAdapter now adapts responses that are of type Buffer or Stream to JSGI responses.
  • Fixed a bug in bogart.middleware.bodyAdatper where Stream returns were not being handled properly.
  • Added bogart.config. The default environment is 'development' and may be overridden with the BOGART_ENV environment variable.
  • Expose DefaultIdProvider and DefaultDataProvider as properties of bogart.middleware.session.

v0.3.25

  • No longer reject a return that does not include all properties of a valid JSGI response. This change facilitates Bogart as a middleware platform.
  • Added bogart.middleware.batteries, a batteries included JSGI stack for rapid application development.
  • The deprecated bogart.app has been reclaimed for the purpose of creating application stacks more easily than chaining JSGI middleware manually or using bogart.build.
  • bogart.build is deprecated.
  • Added bogart.q which exposes the promise implementation used by Bogart.
  • Added bogart.promisify which adapts node-style asynchronous functions to promises.
  • Added bogart.proxy, a helper to create a JSGI response that proxies a URL.
  • Added viewEngine.share, a helper for serializing JavaScript to views. See the new example in 'examples/share-javascript'.

v0.3.24

  • Bug fixes in Session middleware.

v0.3.23

  • Added support for string-based paths with * for splat like /foo/*
  • Before callbacks may now return promises that must be resolved before the route handler is executed.
  • After callbacks may now return promises that must be resolved before the response from the route handler is returned.

v0.3.22

  • ViewEngine is now an EventEmitter.
  • the built-in Mustache view engine now emits beforeRender and afterRender events.
  • Fixed bugs in Flash middleware.

v0.3.21

  • after had been left off of the public API of router, added it.

v0.3.20

  • Simplified and corrected code for pipe method on the request object for the Parted middleware.
  • Added Session middleware.

v0.3.19

  • Updated Parted dependency to 0.8.0.

v0.3.18

  • Mustache partials now work properly when using layouts.

v0.3.17

  • Routes now match in order added instead of longest-first.
  • Added Flash middleware to emulate the flash method of Rails.

v0.3.16

  • Added Error middleware to translate rejected promises and thrown errors into an error response.
  • Error middleware is included by default in JSGI stacks constructed with bogart.build.
  • ParseForm and ParseJson have been replaced with Parted in JSGI middleware stacks constructed with bogart.build.

v0.3.15

  • Added Parted middleware to take advantage of the excellent streaming parsers provided by Parted.
  • Added multipart-form example to the examples directory to demonstrate usage of the Parted middleware.

v0.3.14

  • use Buffer.byteLength to determine the value for Content-Length headers, resolves Issue #11

v0.3.13

  • bogart.redirect now accepts a 2nd optional parameter which if present will be merged into the returned response object

v0.3.12

  • Add before method to the return from bogart.router

v0.3.10

  • Added support for mustache partials to the mustache template engine. This is unrelated to Bogart partials.
  • Match pathInfo of "" to "/" if no route found for ""
  • Support dot in named parameters

v0.3.9

  • Made view engines registerable.
  • Moved 'jade' and 'haml' renderers to their own packages: 'bogart-jade' and 'bogart-haml'.

v0.3.8

  • Removed node-deflate dependency becuase it was sometimes failing to compile when installed with npm.