New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-contrib-connect

Package Overview
Dependencies
Maintainers
5
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-contrib-connect - npm Package Compare versions

Comparing version 0.7.0 to 0.7.1

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc