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

jira-connector

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jira-connector - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

9

api/issue.js

@@ -231,8 +231,9 @@ "use strict";

this.assignIssue = function (opts, callback) {
if (!opts.assignee) {
if (typeof opts.assignee === "string" && opts.assignee.length || opts.assignee === null) {
var options = this.buildRequestOptions(opts, '/assignee', 'PUT', {name: opts.assignee});
this.jiraClient.makeRequest(options, callback, 'Issue Assigned');
} else {
throw new Error(errorStrings.NO_ASSIGNEE_ERROR);
}
var options = this.buildRequestOptions(opts, '/assignee', 'PUT', {name: opts.assignee});
this.jiraClient.makeRequest(options, callback, 'Issue Assigned');
};

@@ -239,0 +240,0 @@

{
"name": "jira-connector",
"version": "1.0.0",
"version": "1.1.0",
"description": "Easy to use NodeJS wrapper for the Jira REST API.",

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

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