Skip to content

Releases: delvedor/find-my-way

v4.0.0

09 Feb 13:54
Compare
Choose a tag to compare

Breaking changes:

  • Removed version constraint in favor of generic constraint. - #170
    There is still support for version constraint:
    // before
    findMyWay.on('GET', '/', { version: '1.0.0' }, (req, res) => {
      res.end('ok')
    })
    
    // now
    findMyWay.on('GET', '/', { constraints: { version: '1.0.0' } }, (req, res) => {
      res.end('ok')
    })

Features:

  • Added support for generic constraints, ships by default version and host - #170
  • Add double colon handling (support for paths with colons) - #176

v3.0.5

06 Nov 17:52
Compare
Choose a tag to compare

Fixes:

  • Enable versioning on demand - #172
    This fix disables the automatic route versioning unless a user has configured at least once a route with the version option.
  • Switch to using one tree per method instead of a map - #168

v2.2.5

06 Nov 17:51
Compare
Choose a tag to compare

Fixes:

  • Enable versioning on demand - #172
    This fix disables the automatic route versioning unless a user has configured at least once a route with the version option.

v2.2.4

24 Aug 09:07
1bcedc7
Compare
Choose a tag to compare

📚 PR:

  • Fix path params match issue (#159) (#160)

v3.0.4

22 Aug 12:49
Compare
Choose a tag to compare

Fixes:

  • Fix path params match issue - #159

v3.0.3

14 Aug 15:40
Compare
Choose a tag to compare

Fixes:

  • Relax version check - #158

v3.0.2

14 Aug 15:00
Compare
Choose a tag to compare

Fixes:

  • Version validation - #155

v3.0.1

18 May 12:40
Compare
Choose a tag to compare

Fixes:

  • Wildcard route should not be blocked by Parametric with a different method - #152

v2.2.3

18 May 12:39
Compare
Choose a tag to compare

Fixes:

  • Wildcard route should not be blocked by Parametric with a different method - #152

v3.0.0

13 Apr 13:26
Compare
Choose a tag to compare

Dropped Node v6 and v8 - #148