-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "jira-client", | ||
"version": "6.21.1", | ||
"version": "6.22.0", | ||
"description": "Wrapper for the JIRA API", | ||
"author": "Steven Surowiec <[email protected]>", | ||
"contributors": [ | ||
|
75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this got published to NPM. Can you check, please?
75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@genio Oh indeed, it's published now https://www.npmjs.com/package/jira-client/v/6.22.0 Thank you!
75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, I am finding several inconsistencies between the code in the release 6.22.0 and the one is downloaded using yarn add jira-client.
For example:
value: function getIssuesForBacklog(boardId) {
has a different signature
getIssuesForBacklog(boardId, startAt = 0, maxResults = 50, jql, validateQuery = true, fields) {
The version I got described in the package.json seems to be the right one:
"jira-client": "^6.22.0"
Many thx!
75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@WyrmxD Can you test v6.23.0? I probably did a mistake before, I used
npm run release minor
this time.75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @pioug, thanks for the quick answer.
Still the same issue: version of the package has increased to 6.23.0 but the code is the old one.
package.json
{ "name": "jira-client", "version": "6.23.0",
lib/jira.js
key: "getIssuesForBacklog", value: function getIssuesForBacklog(boardId) {
75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@WyrmxD I don't think there is any issue with the release. It's simply how Babel transpiled the code:
75c59da
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @pioug, you are completely right sorry about all the confusion.
My problem was considering getEpics and getIssuesForBacklog returning the same, which is not true and my code was failing.
The first one is returning
isLast
as part of the chunk of epics while the second is returningtotal
, my problem was pagination.Sorry again and many thanks for the time answering my questions and maintaining the code :)