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

@nuxt/http

Package Overview
Dependencies
Maintainers
3
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxt/http - npm Package Compare versions

Comparing version 0.5.12 to 0.5.13

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [0.5.13](https://github.com/nuxt/http/compare/v0.5.12...v0.5.13) (2020-09-26)
### Bug Fixes
* use regex to avoid falsely replacing ports starting with 80 ([#124](https://github.com/nuxt/http/issues/124)) ([e981e62](https://github.com/nuxt/http/commit/e981e622891a347ad0ba651bf7c48db29a989f84))
### [0.5.12](https://github.com/nuxt/http/compare/v0.5.11...v0.5.12) (2020-09-01)

@@ -7,0 +14,0 @@

2

lib/module.js

@@ -118,3 +118,3 @@ const path = require('path')

// Remove port 80 when http
if (options.baseURL.includes('http://')) {
if (/^http:\/\/.*:80(\/|$)/.test(options.baseURL)) {
options.baseURL = options.baseURL.replace(':80', '')

@@ -121,0 +121,0 @@ }

{
"name": "@nuxt/http",
"version": "0.5.12",
"version": "0.5.13",
"description": "Universal HTTP Module for Nuxt.js",

@@ -27,3 +27,3 @@ "repository": "nuxt/http",

"ky": "^0.23.0",
"node-fetch": "^2.6.0",
"node-fetch": "^2.6.1",
"web-streams-polyfill": "^3.0.0"

@@ -30,0 +30,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