diff --git a/_glossary/ai-glossary.md b/_glossary/ai-glossary.md
new file mode 100644
index 000000000..714b874cb
--- /dev/null
+++ b/_glossary/ai-glossary.md
@@ -0,0 +1,3 @@
+*[completion]: Completions are the responses generated by a model like GPT.
+*[hallucinations]: Hallucination in AI is when an LLM (large language model) mistakenly perceives patterns or objects that don't exist.
+
diff --git a/_glossary/main.md b/_glossary/main.md
new file mode 100644
index 000000000..e69de29bb
diff --git a/_snippets/integrations/builtin/cluster-nodes/langchain-sub-nodes/workflow-values.md b/_snippets/integrations/builtin/cluster-nodes/langchain-sub-nodes/workflow-values.md
new file mode 100644
index 000000000..908267da7
--- /dev/null
+++ b/_snippets/integrations/builtin/cluster-nodes/langchain-sub-nodes/workflow-values.md
@@ -0,0 +1,8 @@
+Set values to pass to the workflow you're calling.
+
+These values appear in the output data of the trigger node in the workflow you call. You can access these values in expressions in the workflow. For example, if you have:
+
+* **Workflow Values** with a **Name** of `myCustomValue`
+* A workflow with an Execute Workflow Trigger node as its trigger
+
+The expression to access the value of `myCustomValue` is `{{ $('Execute Workflow Trigger').item.json.myCustomValue }}`.
diff --git a/_snippets/self-hosting/installation/latest-next-version.md b/_snippets/self-hosting/installation/latest-next-version.md
index 90f32d70d..010dc87f5 100644
--- a/_snippets/self-hosting/installation/latest-next-version.md
+++ b/_snippets/self-hosting/installation/latest-next-version.md
@@ -2,5 +2,5 @@
n8n releases a new minor version most weeks. The `latest` version is for production use. `next` is the most recent release. You should treat `next` as a beta: it may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
Current `latest`: 1.20.0
-Current `next`: 1.21.0
+Current `next`: 1.21.1
///
diff --git a/docs/embed/white-labelling.md b/docs/embed/white-labelling.md
index 22c64c72f..73561c821 100644
--- a/docs/embed/white-labelling.md
+++ b/docs/embed/white-labelling.md
@@ -61,9 +61,6 @@ In the following example the primary color changes to
+**Release date:** 2023-12-15
+
+/// note | Next version
+This is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
+///
+
+This is a bug fix release.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
+
+## n8n@1.18.3
+
+View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.2...n8n@1.18.3){:target=_blank .external-link} for this version.
+**Release date:** 2023-12-15
+
+This is a bug fix release.
+
+For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
+
## n8n@1.21.0
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.20.0...n8n@1.21.0){:target=_blank .external-link} for this version.
**Release date:** 2023-12-13
-/// note | Next version
-This is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
-///
+
@@ -87,6 +108,8 @@ This is the `latest` version. n8n recommends using the `latest` version. The `ne
+
+
This release contains bug fixes, node enhancements, and ongoing new feature work.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
@@ -113,10 +136,6 @@ For full release details, refer to [Releases](https://github.com/n8n-io/n8n/rele
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.1...n8n@1.18.2){:target=_blank .external-link} for this version.
**Release date:** 2023-12-05
-
-
-
-
This is a bug fix release.
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
diff --git a/mkdocs.yml b/mkdocs.yml
index 8f45cc4ed..bb88a871f 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -28,6 +28,8 @@ theme:
- content.tabs.link
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#code-copy-button
- content.code.copy
+ # https://squidfunk.github.io/mkdocs-material/reference/tooltips/#improved-tooltips
+ - content.tooltips
- navigation.footer
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#section-index-pages
- navigation.indexes
@@ -60,7 +62,12 @@ extra_css:
# https://squidfunk.github.io/mkdocs-material/customization/?h=#additional-javascript
extra_javascript:
- _extra/javascript/extra.js
+watch:
+ - _glossary
+ - _snippets
markdown_extensions:
+ # used for https://squidfunk.github.io/mkdocs-material/reference/tooltips/
+ - abbr
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/?h=attr#attribute-lists attr_list is required for several other features. Always enable.
- attr_list
# https://squidfunk.github.io/mkdocs-material/reference/images/
@@ -87,7 +94,9 @@ markdown_extensions:
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#inlinehilite
- pymdownx.inlinehilite
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#snippets
- - pymdownx.snippets
+ - pymdownx.snippets:
+ auto_append:
+ - _glossary/main.md
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#superfences Superfences is required for several other features. Always enable.
- pymdownx.superfences:
# https://squidfunk.github.io/mkdocs-material/reference/diagrams/
diff --git a/styles/Vocab/default/accept.txt b/styles/Vocab/default/accept.txt
index 198b6b859..426e750b4 100644
--- a/styles/Vocab/default/accept.txt
+++ b/styles/Vocab/default/accept.txt
@@ -40,6 +40,7 @@ Nodelinter
npm
npx
Okta
+Ollama
onboarding
Pipedrive
Pinecone
@@ -68,4 +69,5 @@ URIs
URL
Venafi
Vuex
+Xata
Zep