Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0 #60

Merged
merged 36 commits into from
Sep 9, 2024
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9342ada
Drop support for Node.js below 0.10
dougwilson Jul 19, 2018
7cf14ea
deps: [email protected]
dougwilson Jul 19, 2018
4d786f0
build: [email protected]
dougwilson Jul 19, 2018
dff0a94
build: [email protected]
dougwilson Jul 19, 2018
f0c4c70
build: use nyc for test coverage
dougwilson Jul 19, 2018
d2bce0c
Add basic support for returned, rejected Promises
leebyron Aug 14, 2016
dbaa56e
2.0.0-alpha.1
dougwilson Jul 27, 2018
a2ba4ca
Merge tag 'v1.3.4'
dougwilson Jan 25, 2020
e0bbb53
build: [email protected]
wesleytodd Jan 5, 2020
4acf108
deps: [email protected]
wesleytodd Jan 5, 2020
e1733bd
Internalize private router.process_params method
dougwilson Mar 13, 2020
2b12ec8
Merge tag 'v1.3.5'
dougwilson Mar 25, 2020
f358983
lint: use camel case for identifiers
dougwilson Mar 25, 2020
5a43471
lint: apply standard 14 style
dougwilson Mar 26, 2020
0b5a0a6
Remove debug dependency
dougwilson Mar 30, 2020
ca507ee
2.0.0-beta.1
dougwilson Mar 30, 2020
fe99e20
Merge tag 'v1.3.6'
dougwilson Nov 16, 2021
46d05d7
docs: fix typo in history
nfantone Nov 15, 2021
83dc504
Add support for returned, rejected Promises to router.param
jonchurch Apr 19, 2020
f175698
Merge tag 'v1.3.7'
dougwilson May 7, 2022
63ae94f
build: [email protected]
dougwilson Jun 11, 2022
6c5090d
docs: fix typo in history
nfantone Nov 15, 2021
2ae1045
build: [email protected]
dougwilson Jun 11, 2022
efd112a
tests: add test for capture group regexp
dougwilson Jul 21, 2022
7ddcab5
tests: add test for unnamed capture group regexp
dougwilson Jul 21, 2022
c67be54
docs: add capture group change to history
nfantone Nov 30, 2021
17086e6
Merge branch 'master' into 2.0-v1-sync
wesleytodd Mar 16, 2024
d40e4b0
build: legacy-peer-deps in new node
wesleytodd Mar 16, 2024
4835526
lint: fix lint in ci
wesleytodd Mar 16, 2024
e14430a
2.0.0-beta.2
wesleytodd Mar 21, 2024
11dd0b9
fix(ci)!: drop support for node <18
wesleytodd Sep 1, 2024
04f8c3b
fix(ci): replace after with run-series to address flaky superagent be…
wesleytodd Sep 1, 2024
95b5cb5
fix(lint): replace broken eslint config with standard
wesleytodd Sep 1, 2024
a57f761
fix: add .git-blame-ignore-revs file for lint change
wesleytodd Sep 1, 2024
f5a99b0
fix(ci): remove legacy peer deps flag
wesleytodd Sep 1, 2024
30b42cb
feat!: path-to-regexp@^8.0.0
wesleytodd Aug 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge tag 'v1.3.7'
dougwilson committed May 7, 2022

Verified

This commit was signed with the committer’s verified signature.
jrjohnson Jon Johnson
commit f175698f863bce0012798e1fd0a4c80f3ae06731
7 changes: 6 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
2.x
===

This incorporates all changes after 1.3.5 up to 1.3.6.
This incorporates all changes after 1.3.5 up to 1.3.7.

* Add support for returned, rejected Promises to `router.param`

@@ -40,6 +40,11 @@ This incorporates all changes after 1.3.3 up to 1.3.5.
- Remove `DEBUG_FD` environment variable support
- Support 256 namespace colors

1.3.7 / 2022-04-28
==================

* Fix hanging on large stack of sync routes

1.3.6 / 2021-11-15
==================

10 changes: 3 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
@@ -290,16 +290,12 @@ Router.prototype.handle = function handle (req, res, callback) {
if (err) {
next(layerError || err)
} else if (route) {
layer.handle_request(req, res, next)
layer.handleRequest(req, res, next)
} else {
trim_prefix(layer, layerError, layerPath, path)
trimPrefix(layer, layerError, layerPath, path)
}

if (route) {
return layer.handleRequest(req, res, next)
}

trimPrefix(layer, layerError, layerPath, path)
sync = 0
})
}

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -26,8 +26,8 @@
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"finalhandler": "1.1.2",
"mocha": "9.1.3",
"finalhandler": "1.2.0",
"mocha": "9.2.2",
"nyc": "15.1.0",
"safe-buffer": "5.2.1",
"supertest": "6.2.3"
You are viewing a condensed version of this merge commit. You can view the full changes here.