mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
refactor(LoneScale List Node)!: Rename to LoneScale (#6337)
This commit is contained in:
parent
385b3e871a
commit
3a6af3b2a2
|
@ -7,6 +7,7 @@ This list shows all the versions which include breaking changes and how to upgra
|
|||
### What changed?
|
||||
|
||||
Due to Node.js/OpenSSL upgrade, the following crypto algorithms are not supported anymore.
|
||||
|
||||
- RSA-MD4
|
||||
- RSA-MDC2
|
||||
- md4
|
||||
|
@ -18,6 +19,18 @@ Due to Node.js/OpenSSL upgrade, the following crypto algorithms are not supporte
|
|||
|
||||
If you're using any of the above mentioned crypto algorithms in Crypto node in any of your workflows, then please update the algorithm property in the node to one of the supported values.
|
||||
|
||||
### What changed?
|
||||
|
||||
The `LoneScale List` node has been renamed to `LoneScale`.
|
||||
|
||||
### When is action necessary?
|
||||
|
||||
If you have used the `LoneScale List` node in any of your workflows.
|
||||
|
||||
### How to upgrade:
|
||||
|
||||
Update any workflows using `LoneScale List` to use the updated node.
|
||||
|
||||
## 0.226.0
|
||||
|
||||
### What changed?
|
||||
|
|
|
@ -10,17 +10,17 @@ import type {
|
|||
|
||||
import { lonescaleApiRequest } from './GenericFunctions';
|
||||
|
||||
export class LoneScaleList implements INodeType {
|
||||
export class LoneScale implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'LoneScale List',
|
||||
name: 'loneScaleList',
|
||||
displayName: 'LoneScale',
|
||||
name: 'loneScale',
|
||||
group: ['transform'],
|
||||
icon: 'file:lonescale-logo.svg',
|
||||
version: 1,
|
||||
description: 'Create List, add / delete items',
|
||||
subtitle: '={{$parameter["resource"] + ": " + $parameter["operation"]}}',
|
||||
defaults: {
|
||||
name: 'LoneScale List',
|
||||
name: 'LoneScale',
|
||||
},
|
||||
inputs: ['main'],
|
||||
outputs: ['main'],
|
|
@ -545,7 +545,7 @@
|
|||
"dist/nodes/LinkedIn/LinkedIn.node.js",
|
||||
"dist/nodes/LocalFileTrigger/LocalFileTrigger.node.js",
|
||||
"dist/nodes/LoneScale/LoneScaleTrigger.node.js",
|
||||
"dist/nodes/LoneScale/LoneScaleList.node.js",
|
||||
"dist/nodes/LoneScale/LoneScale.node.js",
|
||||
"dist/nodes/Magento/Magento2.node.js",
|
||||
"dist/nodes/Mailcheck/Mailcheck.node.js",
|
||||
"dist/nodes/Mailchimp/Mailchimp.node.js",
|
||||
|
|
Loading…
Reference in a new issue