Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Linear Node): Fix issue creation priority #6813

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions packages/cli/BREAKING-CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

This list shows all the versions which include breaking changes and how to upgrade.

## 1.2.0

### What changed?

For the Linear node, priority in issue creation is `4` (previously incorrectly `3`) for `Low`.

### When is action necessary?

If you were using `Low`, you were setting a priority of `Normal`, so please double check you are setting the priority you intend.

## 1.0.0

### What changed?
Expand All @@ -22,8 +32,8 @@ Update the Node.js version to v18 or above.

This release introduces two irreversible changes:

* The n8n database will use strings instead of numeric values to identify workflows and credentials
* Execution data is split into a separate database table
- The n8n database will use strings instead of numeric values to identify workflows and credentials
- Execution data is split into a separate database table

### When is action necessary?

Expand Down
7 changes: 3 additions & 4 deletions packages/nodes-base/nodes/Linear/IssueDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,9 @@ export const issueFields: INodeProperties[] = [
default: '',
},
{
displayName: 'Priority Name/ID',
displayName: 'Priority',
name: 'priorityId',
type: 'options',
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
options: [
{
name: 'Urgent',
Expand All @@ -127,12 +126,12 @@ export const issueFields: INodeProperties[] = [
value: 2,
},
{
name: 'Medium',
name: 'Normal',
value: 3,
},
{
name: 'Low',
value: 3,
value: 4,
},
{
name: 'No Priority',
Expand Down
Loading