Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into chrisnas/udpate_dotnet_pro…
Browse files Browse the repository at this point in the history
…filing
  • Loading branch information
chrisnas committed Jan 28, 2025
2 parents f319b28 + e77ef43 commit 853595c
Show file tree
Hide file tree
Showing 718 changed files with 139,130 additions and 52,925 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-14 16:00:39.158429",
"spec_repo_commit": "0457044b"
"regenerated": "2025-01-27 19:29:43.883160",
"spec_repo_commit": "4a99b1d3"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-14 16:00:47.230514",
"spec_repo_commit": "0457044b"
"regenerated": "2025-01-27 19:29:52.030961",
"spec_repo_commit": "4a99b1d3"
}
}
}
14 changes: 7 additions & 7 deletions .github/workflows/bump_synthetics_worker_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ jobs:
id: write-synthetics-worker-version
run: |
python local/bin/py/version_getter.py
- name: echo new version
run: echo ${{ steps.write-synthetics-worker-version.outputs.new_version }}

- uses: actions/checkout@v4
with:
persist-credentials: false
persist-credentials: true
- name: Write version
if: steps.write-synthetics-worker-version.outputs.new_version == 'true'
run: |-
git config user.name documentation-ci
git config user.email documentation-ci@datadoghq.com
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add ./data/synthetics_worker_versions.json
git commit -m "(Automated) Bump synthetics-worker version"
git push -f origin HEAD:refs/heads/synthetics-worker/versions
- uses: actions/github-script@v7
name: Propose change with latest versions
if: steps.write-synthetics-worker-version.outputs.new_version == 'true'
Expand All @@ -57,4 +57,4 @@ jobs:
base: "master",
maintainer_can_modify: true
})
11 changes: 6 additions & 5 deletions .github/workflows/bump_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,17 @@ jobs:
return {client: repo, version: releases.data[0]["tag_name"]}
}))
console.log(versions)
return JSON.stringify(versions)
return JSON.stringify(versions, null, 2)
- uses: actions/checkout@v4
with:
persist-credentials: false
persist-credentials: true
- name: Write version
run: |-
echo '${{steps.set-versions.outputs.result}}' | jq > ./data/sdk_versions.json
mkdir -p ./data
echo '${{steps.set-versions.outputs.result}}' > ./data/sdk_versions.json
git add ./data/sdk_versions.json
git config user.name packages
git config user.email packages@datadoghq.com
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Bump SDK"
git push -f origin HEAD:refs/heads/sdk/versions
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/vale_linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/[email protected]
with:
python-version: '3.11'
- run: pip install vale
- run: pip install vale==3.9.1

- name: Edit StylesPath in Vale config file
run: sed -i 's/\.\.\/datadog-vale\/styles/datadog-vale\/styles/' .vale.ini
Expand All @@ -43,15 +43,17 @@ jobs:
uses: hestonhoffman/changed-lines@v1
with:
file_filter: '.md, .html'

- name: Run vale on changed files
if: steps.changed_lines.outputs.changed_files
env:
CHANGED_FILES: ${{ steps.changed_lines.outputs.changed_files }}
run: |
vale "${CHANGED_FILES}" \
--output=local/bin/py/vale/vale_template.tmpl --no-exit > vale_output.log
- name: Parse Vale output
if: steps.changed_lines.outputs.changed_files
env:
CHANGED_LINES: ${{ steps.changed_lines.outputs.changed_lines }}
run: |
Expand Down
9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,17 @@ content/en/continuous_testing/cicd_integrations/azure_devops_extension.md
content/en/continuous_testing/cicd_integrations/bitrise_upload.md
content/en/continuous_testing/cicd_integrations/bitrise_run.md

# Code Analysis

# Old code_analysis locations
content/en/code_analysis/static_analysis/github_actions.md
content/en/code_analysis/software_composition_analysis/github_actions.md
content/en/code_analysis/static_analysis/circleci_orbs.md
content/en/code_analysis/static_analysis_rules/*
!content/en/code_analysis/static_analysis_rules/_index.md
content/en/code_analysis/static_analysis_rules/_index.md

# New code_security locations
content/en/security/code_security/static_analysis/static_analysis_rules/*
!content/en/security/code_security/static_analysis/static_analysis_rules/_index.md

# Let's keep these so we don't accidentally re-add them to repo
content/en/continuous_integration/static_analysis/github_actions.md
Expand Down
9 changes: 9 additions & 0 deletions assets/scripts/config/regions.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,15 @@ export default {
ap1: 'http-intake.logs.ap1.datadoghq.com',
gov: 'http-intake.logs.ddog-gov.com'
},

http_endpoint_full: {
us: 'https://http-intake.logs.datadoghq.com',
us3: 'https://http-intake.logs.us3.datadoghq.com',
us5: 'https://http-intake.logs.us5.datadoghq.com',
eu: 'https://http-intake.logs.datadoghq.eu',
ap1: 'https://http-intake.logs.ap1.datadoghq.com',
gov: 'https://http-intake.logs.ddog-gov.com'
},
http_port: {
us: '443',
us3: '443',
Expand Down
6 changes: 6 additions & 0 deletions assets/styles/pages/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,12 @@ table,
}
}

.table-fixed {
@include media-breakpoint-up(xl) {
table-layout: fixed;
}
}

.break-word {
table {
td {
Expand Down
6 changes: 0 additions & 6 deletions assets/styles/pages/_standard-attributes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,17 @@
@include media-breakpoint-up(xl) {
.table-wrapper {
overflow-x: unset;

table {
table-layout: fixed;

thead > tr {
th:nth-child(1) {
width: 8%;
}

th:nth-child(2) {
width: 14%;
}

th:nth-child(3) {
width: 30%;
}

th:nth-child(4) {
width: 8%;
}
Expand Down
2 changes: 2 additions & 0 deletions config/_default/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ module:
lang: en
- source: data
target: data
- source: assets
target: assets

mounts:
# default mounts
Expand Down
Loading

0 comments on commit 853595c

Please sign in to comment.