mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(Linear Node): Fix issue creation priority (#6813)
This commit is contained in:
parent
803b1521fa
commit
fce8cc4275
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
This list shows all the versions which include breaking changes and how to upgrade.
|
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
|
## 1.0.0
|
||||||
|
|
||||||
### What changed?
|
### What changed?
|
||||||
|
@ -22,8 +32,8 @@ Update the Node.js version to v18 or above.
|
||||||
|
|
||||||
This release introduces two irreversible changes:
|
This release introduces two irreversible changes:
|
||||||
|
|
||||||
* The n8n database will use strings instead of numeric values to identify workflows and credentials
|
- The n8n database will use strings instead of numeric values to identify workflows and credentials
|
||||||
* Execution data is split into a separate database table
|
- Execution data is split into a separate database table
|
||||||
|
|
||||||
### When is action necessary?
|
### When is action necessary?
|
||||||
|
|
||||||
|
|
|
@ -113,10 +113,9 @@ export const issueFields: INodeProperties[] = [
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Priority Name/ID',
|
displayName: 'Priority',
|
||||||
name: 'priorityId',
|
name: 'priorityId',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
// eslint-disable-next-line n8n-nodes-base/node-param-options-type-unsorted-items
|
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Urgent',
|
name: 'Urgent',
|
||||||
|
@ -127,12 +126,12 @@ export const issueFields: INodeProperties[] = [
|
||||||
value: 2,
|
value: 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Medium',
|
name: 'Normal',
|
||||||
value: 3,
|
value: 3,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Low',
|
name: 'Low',
|
||||||
value: 3,
|
value: 4,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'No Priority',
|
name: 'No Priority',
|
||||||
|
|
Loading…
Reference in a new issue