- Fix NUMBER_VALUE cannot be converted to String on specialKeys
- remove connect dependency
- add initialized option to disable always checking if the sessions table exists (#89), Fix expiry based on TTL; fix error handling of dynamodb:DescribeTable (#87)
- Fix Bug Where Cookie's maxAge is Incorrectly Applied as Divided by 1000 to expires (#83)
- fix: exports and export assignments are not permitted and not use export default (#84)
- Update to V3 API
- Update to explicitly require aws-sdk 2.x version.
- add optional special keys that will be inserted directly into your table (in addition to remaining in the session)
- Don't crash on invalid session data stored in DDB (#44)
- Support passing express-session directly to the adapter (#54)
- fix to use the hashKey provided in config
- Make possible to use npm install --no-optional
- 1.0.12 had breaking change with dates
- Implemented touch as requested on #23 and changed the expires field to work on seconds units instead of millis to address #39. This way to use TTL we just need to enable it on the table and select the 'expires' field. (#43)
- Configurable ProvisionedThroughput read/write capacity units (#40)
- Set Consistent read by default (#37)
- Fix bug with reap method (#33)
- Fix issue with reap method (#27)
- Add ability to provide a JSON object to configure AWS, specify custom hashKey (#26)
- bug fix (#16)
- Change to allow loading of AWS credentials from environment vars (#15)
- Fix for default table name (#13)
- Change tests to should.js
- Properly handle errors in get (#12)
- Change expires check to a number (#11)
- Adding support for the 2012-08-10 API version of DynamoDB (#6)
- Specify API version because of breaking updates to aws-sdk-js (http://aws.amazon.com/releasenotes/JavaScript/3118686131819314)
- Fix expiry default if no sess.cookie.maxAge (#4)
- Fixed reap issue (#3)
- Cleanup of tests
- Switch to use aws-sdk instead of dynode
- Fix an error with dynode 0.5.0
- Added session table check/creation at init
- Added reap deletion of expired sessions
- Initial commit