Skip to content

Commit bb59c66

Browse files
authored
chore(package.json): bump 0.19.0 (#294)
* chore(package.json): bump 0.19.0 * ci(travis): add node 9
1 parent 0497805 commit bb59c66

11 files changed

+2192
-2762
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: node_js
22
node_js:
33
- 'stable'
4+
- '9'
45
- '8'
56
- '7'
67
- '6'

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [v0.19.0](https://github.com/chimurai/http-proxy-middleware/releases/tag/v0.19.0)
4+
- feat(http-proxy): bump to v1.17.0 ([#261](https://github.com/chimurai/http-proxy-middleware/pull/261))
5+
36
## [v0.18.0](https://github.com/chimurai/http-proxy-middleware/releases/tag/v0.18.0)
47
- fix(vulnerability): update micromatch to v3.x ([npm:braces:20180219](https://snyk.io/test/npm/http-proxy-middleware?tab=issues&severity=high&severity=medium&severity=low#npm:braces:20180219
58
))

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -474,4 +474,4 @@ $ npm run cover
474474
475475
The MIT License (MIT)
476476
477-
Copyright (c) 2015-2017 Steven Chim
477+
Copyright (c) 2015-2018 Steven Chim

lib/config-factory.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function createConfig (context, opts) {
2626
var target = [oUrl.protocol, '//', oUrl.host].join('')
2727

2828
config.context = oUrl.pathname || '/'
29-
config.options = _.assign(config.options, {target: target}, opts)
29+
config.options = _.assign(config.options, { target: target }, opts)
3030

3131
if (oUrl.protocol === 'ws:' || oUrl.protocol === 'wss:') {
3232
config.options.ws = true

0 commit comments

Comments
 (0)