diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md new file mode 100644 index 000000000..4c2b13ebe --- /dev/null +++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.jwt.md @@ -0,0 +1,19 @@ +--- +title: JWT +description: Documentation for the JWT node in n8n, a workflow automation platform. Includes guidance on usage, and links to examples. +contentType: integration +--- + +# JWT + +Work with JSON web tokens in your n8n workflows. + +/// note | Examples and templates +For usage examples and templates to help you get started, refer to n8n's [JWT integrations](https://n8n.io/integrations/jwt/){:target=_blank .external-link} page. +/// + +## Operations + +* Decode +* Sign +* Verify diff --git a/docs/release-notes.md b/docs/release-notes.md index c48ec1b6a..e616894ff 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -28,6 +28,31 @@ n8n uses [semantic versioning](https://semver.org/){:target=_blank .external-lin * MINOR version when adding functionality in a backward-compatible manner. * PATCH version when making backward-compatible bug fixes. +## n8n@1.37.0 + +View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.1...n8n@1.37.0){:target=_blank .external-link} for this version.
+**Release date:** 2024-04-10 + +/// warning | Breaking change +Please note that this version contains a breaking change for self-hosted n8n. It removes the `--file` flag for the `execute` CLI command. If you have scripts relying on the `--file` flag, update them to first import the workflow and then execute it using the `--id` flag. Refer to [CLI commands](/hosting/cli-commands/) for more information on CLI options. +/// + +This release contains a new node, improvements to error handling and messaging, node enhancements, and bug fixes. + +
+ +#### New node: JWT + +This release adds the [JWT core node](/integrations/builtin/core-nodes/n8n-nodes-base.jwt/). + +
+ +For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub. + +### Contributors + +[Miguel Prytoluk](https://github.com/mprytoluk){:target=_blank .external-link} + ## n8n@1.36.1 View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.36.0...n8n@1.36.1){:target=_blank .external-link} for this version.
diff --git a/document-templates/app-nodes.md b/document-templates/app-nodes.md index 7905520d6..d01385e01 100644 --- a/document-templates/app-nodes.md +++ b/document-templates/app-nodes.md @@ -19,6 +19,7 @@ Set the meta title and meta description in the frontmatter --- title: _Name_ description: Documentation for the _Name_ node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information. +contentType: integration ---