From d963a25b3b20de5536d8aa617ab18b24a735b31c Mon Sep 17 00:00:00 2001 From: Deborah Barnard Date: Tue, 14 Feb 2023 10:44:02 +0000 Subject: [PATCH] move release notes up and boost in search --- docs/_redirects | 2 + .../get-workflow-static-data.md | 2 + .../app-nodes/n8n-nodes-base.sentryio.md | 46 +++---------------- docs/{reference => }/release-notes.md | 14 +++++- mkdocs.yml | 2 +- 5 files changed, 24 insertions(+), 42 deletions(-) rename docs/{reference => }/release-notes.md (99%) diff --git a/docs/_redirects b/docs/_redirects index ba996785c..1e739e9df 100644 --- a/docs/_redirects +++ b/docs/_redirects @@ -1,3 +1,5 @@ + +/reference/release-notes/ /release-notes/ /integrations/builtin/core-nodes/n8n-nodes-base.htmlextract/ /integrations/builtin/core-nodes/n8n-nodes-base.html/ # License release 2022/2023 diff --git a/docs/code-examples/methods-variables-examples/get-workflow-static-data.md b/docs/code-examples/methods-variables-examples/get-workflow-static-data.md index 4e95aa03e..950bae804 100644 --- a/docs/code-examples/methods-variables-examples/get-workflow-static-data.md +++ b/docs/code-examples/methods-variables-examples/get-workflow-static-data.md @@ -2,6 +2,8 @@ tags: - static data - global variables +hide: + - tags --- # `$getWorkflowStaticData(type)` diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md index ddfb3b48e..36f73fc77 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.sentryio.md @@ -1,12 +1,12 @@ # Sentry.io -[Sentry.io](https://sentry.io) is a service that helps you monitor and fix crashes in realtime. Sentry's platform helps every developer diagnose, fix, and optimize the performance of their code. +[Sentry.io](https://sentry.io){:target=_blank .external-link} is a service that helps you monitor and fix crashes in realtime. Sentry's platform helps every developer diagnose, fix, and optimize the performance of their code. !!! note "Credentials" You can find authentication information for this node [here](/integrations/builtin/credentials/sentryio/). -## Basic Operations +## Operations * Event * Get event by ID @@ -40,43 +40,9 @@ * Get all teams * Update a team -## Example Usage - -This workflow allows you to create a release and get all releases using the Sentry.io node. You can also find the [workflow](https://n8n.io/workflows/643) on n8n.io. This example usage workflow would use the following nodes. -- [Start](/integrations/builtin/core-nodes/n8n-nodes-base.start/) -- [Sentry.io]() - -The final workflow should look like the following image. - -![A workflow with the Sentry.io node](/_images/integrations/builtin/app-nodes/sentryio/workflow.png) - -### 1. Start node - -The start node exists by default when you create a new workflow. - -### 2. Sentry.io node (create: release) - -1. First of all, you'll have to enter credentials for the Sentry.io node. You can find out how to do that [here](/integrations/builtin/credentials/sentryio/). -2. Select 'Release' from the ***Resource*** dropdown list. -3. Select 'Create' from the ***Operation*** dropdown list. -4. Select the organization from the ***Organization Slug*** dropdown list. -5. Enter the version in the ***Version*** field. -6. Enter the URL that points to the release in the ***URL*** field. -7. Select the project from ***Projects*** dropdown list. -8. Click on ***Execute Node*** to run the node. - -![Using the Sentry.io node to create a release](/_images/integrations/builtin/app-nodes/sentryio/sentry.io_node.png) +## Related resources - -### 2. Sentry.io node (getAll: release) - -1. Select the credentials that you entered in the previous Sentry.io node. -2. Select 'Release' from the ***Resource*** dropdown list. -3. Select 'Get All' from the ***Operation*** dropdown list. -4. Select the organization from the ***Organization Slug*** dropdown list. -5. Toggle ***Return All*** to true. -6. Click on ***Execute Node*** to run the node. - - -![Using the Sentry.io node to get all releases](/_images/integrations/builtin/app-nodes/sentryio/sentry.io1_node.png) +Refer to [Sentry.io's documentation](https://docs.sentry.io/api/){:target=_blank .external-link} for more information about the service. + +View [example workflows and related content](https://n8n.io/integrations/sentryio/){:target=_blank .external-link} on n8n's website. diff --git a/docs/reference/release-notes.md b/docs/release-notes.md similarity index 99% rename from docs/reference/release-notes.md rename to docs/release-notes.md index 9c2fd15e5..744cf7a8b 100644 --- a/docs/reference/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,17 @@ +--- +title: Release notes +description: Release notes detailing new features and bug fixes for n8n. +tags: + - release + - release notes + - changelog +hide: + - tags +--- + # Release notes +New features and bug fixes for n8n.
@@ -4171,7 +4183,7 @@ For a comprehensive list of changes, check out the [commits](https://github.com/ ### Core Functionality - Templates from the [n8n Workflows](https://n8n.io/workflows) page can now be directly imported by appending `/workflows/templates/` to your instance base URL. For example, `localhost:5678/workflows/templates/1142`. -- Added new Editor UI shortcuts. See [Keyboard Shortcuts](keyboard-shortcuts.md) for details. +- Added new Editor UI shortcuts. See [Keyboard Shortcuts](/reference/keyboard-shortcuts/) for details. - Fixed an issue causing console errors when deleting a node from the canvas. ### Bug fixes diff --git a/mkdocs.yml b/mkdocs.yml index 428a86e7a..8c5161210 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -194,9 +194,9 @@ nav: - LDAP: user-management/ldap.md - Log streaming: log-streaming.md - Security audit: security-audit.md + - Release notes: release-notes.md - Reference: - reference/index.md - - Release notes: reference/release-notes.md - CLI commands: reference/cli-commands.md - Keyboard shortcuts: reference/keyboard-shortcuts.md - Update n8n: reference/update.md