grunt-contrib-connect
Advanced tools
Comparing version 0.7.0 to 0.7.1
{ | ||
"name": "grunt-contrib-connect", | ||
"description": "Start a connect web server.", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-connect", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -1,2 +0,2 @@ | ||
# grunt-contrib-connect v0.7.0 [![Build Status](https://travis-ci.org/gruntjs/grunt-contrib-connect.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-connect) | ||
# grunt-contrib-connect v0.7.1 [![Build Status](https://travis-ci.org/gruntjs/grunt-contrib-connect.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-connect) | ||
@@ -311,2 +311,3 @@ > Start a connect web server. | ||
* 2014-02-27 v0.7.1 Fixes issue with the '*' hostname option. | ||
* 2014-02-18 v0.7.0 Update connect to ~2.13.0. Default hostname switched to '0.0.0.0'. Modified options.middleware to accept an array or a function. | ||
@@ -330,2 +331,2 @@ * 2013-12-29 v0.6.0 Open options.hostname if provided. Update connect-livereload to ~0.3.0. Update connect to ~2.12.0. Use well-formed ssl certificates. Support all options of open. Make directory browseable when base is a string. | ||
*This file was generated on Fri Feb 21 2014 20:22:31.* | ||
*This file was generated on Thu Feb 27 2014 15:45:07.* |
@@ -71,3 +71,3 @@ /* | ||
if (options.hostname === '*') { | ||
options.hostname = null; | ||
options.hostname = ''; | ||
} | ||
@@ -151,3 +151,3 @@ | ||
var address = server.address(); | ||
var hostname = options.hostname || 'localhost'; | ||
var hostname = options.hostname || '0.0.0.0'; | ||
var target = options.protocol + '://' + hostname + ':' + address.port; | ||
@@ -154,0 +154,0 @@ |
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
27248
331
2