Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

dnsimple

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dnsimple - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

16

CHANGELOG.md
# Changelog
### Release 3.0.1
## Release 3.0.2
- Drops dependency on `npm`
- CHANGED: User-agent format has been changed to prepend custom token before default token.
### Release 3.0.0
## Release 3.0.1
- CHANGED: Dropped dependency on `npm`
## Release 3.0.0
- NEW: Updates to support Node v8. Node v6 is deprecated.
### Release 2.9.0
## Release 2.9.0
- NEW: Added WHOIS privacy renewal (GH-17)
### Release 2.8.0
## Release 2.8.0
- NEW: Added zone distribution and zone record distribution (GH-16)
#### Release 2.7.0
## Release 2.7.0

@@ -21,0 +25,0 @@ - NEW: Added Let's Encrypt certificate methods (GH-14)

@@ -22,3 +22,3 @@ 'use strict';

Dnsimple.VERSION = '3.0.1';
Dnsimple.VERSION = '3.0.2';
Dnsimple.DEFAULT_TIMEOUT = require('http').createServer().timeout;

@@ -78,3 +78,3 @@ Dnsimple.DEFAULT_BASE_URL = 'https://api.dnsimple.com';

} else {
this._api.userAgent = Dnsimple.DEFAULT_USER_AGENT + ' ' + userAgent;
this._api.userAgent = userAgent + ' ' + Dnsimple.DEFAULT_USER_AGENT;
}

@@ -81,0 +81,0 @@ },

@@ -72,3 +72,3 @@ 'use strict';

* @param {Object} attributes Attributes of the registration
* @param {number} attributes.registrantId The registrant ID number.
* @param {number} attributes.registrant_id The registrant ID number.
* @param {boolean} [attributes.private_whois] Set to true to enable whois privacy (additional charge)

@@ -75,0 +75,0 @@ * @param {boolean} [attributes.auto_renew] Set to true to automatically renew the domain

The MIT License (MIT)
Copyright (c) 2016-2018 Aetrion LLC
Copyright (c) 2016-2020 DNSimple Corporation

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "dnsimple",
"version": "3.0.1",
"version": "3.0.2",
"description": "A Node.JS client for the DNSimple API.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -107,1 +107,6 @@ # DNSimple Node.JS Client

The value you provide will be appended to the default `User-Agent` the client uses. For example, if you use `my-app`, the final header value will be `dnsimple-node/x.x.x my-app` (note that it will vary depending on the client version).
## License
Copyright (c) 2016-2020 DNSimple Corporation. This is Free Software distributed under the MIT license.
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