Skip to content

Commit

Permalink
#259 Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
odedfos committed Jan 24, 2017
1 parent 639d794 commit ebc12e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,6 +13,11 @@

**Fixes**:

- [#259](https://github.com/alecthomas/voluptuous/issues/259):
Fixed a performance issue of exponential complexity where all of the dict keys were matched against all keys in the schema.
This resulted in O(n*m) complexity where n is the number of keys in the dict being validated and m is the number of keys in the schema.
The fix ensures that each key in the dict is matched against the relevant schema keys only. It now works in O(n).

## 0.9.3 (2016-08-03)

Changelog not kept for 0.9.3 and earlier releases.

0 comments on commit ebc12e4

Please sign in to comment.