Skip to content

Commit e33cb88

Browse files
authored
update version to latest (#31875)
* use latest * switch from _build to build * update ignores * fixes due to version * cache * update * update yarn release * update lock * update lang * update * withdeploy * more specific ignores * undo sidenav cache for now * pin
1 parent 8ec0830 commit e33cb88

File tree

21 files changed

+6631
-7055
lines changed

21 files changed

+6631
-7055
lines changed

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 0 additions & 541 deletions
This file was deleted.

.yarn/releases/yarn-3.6.1.cjs

Lines changed: 0 additions & 874 deletions
This file was deleted.

.yarn/releases/yarn-4.10.3.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1+
compressionLevel: mixed
2+
enableGlobalCache: false
13
nodeLinker: node-modules
2-
3-
plugins:
4-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5-
spec: "@yarnpkg/plugin-interactive-tools"
6-
7-
yarnPath: .yarn/releases/yarn-3.6.1.cjs
4+
yarnPath: .yarn/releases/yarn-4.10.3.cjs

config/_default/config.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ pygmentsCodeFences: true
66
enableRobotsTXT: true
77

88
# don't publish cdocs source files
9-
ignoreFiles: ["\\.mdoc\\.md$"]
9+
ignoreFiles:
10+
- "\\.mdoc\\.md$"
11+
- "^integrations_data/"
12+
- "^hugpython/"
13+
- "^examples/"
14+
- "^local/"
1015

1116
publishDir: "./public"
1217

content/en/observability_pipelines/legacy/reference/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Reference
33
disable_toc: true
44
disable_sidebar: true
55
type: reference
6-
_build:
6+
build:
77
render: false
88
cascade:
99
disable_toc: false

content/es/observability_pipelines/legacy/reference/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
_build:
2+
build:
33
render: false
44
cascade:
55
disable_sidebar: false

content/ja/observability_pipelines/legacy/reference/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
_build:
2+
build:
33
render: false
44
cascade:
55
disable_sidebar: false

content/ko/observability_pipelines/legacy/reference/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
_build:
2+
build:
33
render: false
44
cascade:
55
disable_sidebar: false

layouts/actioncatalog/list.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@
2323
{{/* Using INTEGRATION logo */}}
2424
<img src="{{ .logo_path }}" height="17" alt="{{ .workflow_title }}"/>
2525
{{ else if and .icon_name (eq .icon_type "ICON") }}
26-
{{/*
27-
Using ICON from iconfont
26+
{{/*
27+
Using ICON from iconfont
2828
1. Change icon name to kebab case to match our iconfont names (e.g. SecurityPlatform --> security-platform)
2929
2. Icon Verfication
3030
3. Conditionally render icon or default datadog integration logo
3131
*/}}
3232
{{ $kebab_icon_name := (replaceRE `(.)([A-Z][a-z]+)` (print "$1" "-" "$2") .icon_name) | lower }}
33-
{{ partial "partials/verify-icon" (dict "name" $kebab_icon_name) }}
33+
{{ partial "verify-icon" (dict "name" $kebab_icon_name) }}
3434

3535
<span x-data="{showIcon: false}" x-init='$nextTick(() => {
3636
// Evaluate value set in `verify-icon` partial
3737
const icon = document.getElementById("icon-{{$kebab_icon_name}}")
3838
showIcon = icon.dataset.iconExists === "true";
39-
})'>
39+
})'>
4040
<template x-if="showIcon">
4141
{{ partial "icon" (dict "name" $kebab_icon_name "size" "17px" "vertical_align" "-5px") }}
4242
</template>
@@ -89,7 +89,7 @@ <h1 id="pagetitle">{{ .Title }}</h1>
8989
{{ $icon_id := .icon.id }}
9090
{{ $icon_name := .icon.name }}
9191
{{ $icon_type := .icon.type }}
92-
92+
9393
{{ $logo_path := partialCached "integrations-logo.html" (dict "context" $dot "basename" $icon_id "variant" "avatar" "fallback" "cloud") $icon_id "avatar" }}
9494
{{ $default_dd_logo_path := partialCached "integrations-logo.html" (dict "context" $dot "basename" "_datadog" "variant" "avatar" "fallback" "cloud") "_datadog" "avatar" }}
9595
<div class="js-group js-group-{{ $workflow_title | anchorize }}" id="{{ $workflow_title | anchorize }}">

0 commit comments

Comments
 (0)