From bc1158f1fc920e4dee06a12a8d93a71dd385c9cc Mon Sep 17 00:00:00 2001 From: Ramya Parimi Date: Fri, 1 Oct 2021 16:22:35 -0500 Subject: [PATCH 1/9] Update triage automation to check doc team member (#21856) * to check if team members * check for doc team member * remove duplicate check for team members * delete/readd step Co-authored-by: skedwards88 --- .github/workflows/os-ready-for-review.yml | 45 +++++++++++------------ 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/.github/workflows/os-ready-for-review.yml b/.github/workflows/os-ready-for-review.yml index 02cc40ff19..543031d337 100644 --- a/.github/workflows/os-ready-for-review.yml +++ b/.github/workflows/os-ready-for-review.yml @@ -18,31 +18,30 @@ jobs: if: github.event.label.name == 'waiting for review' && github.repository == 'github/docs' runs-on: ubuntu-latest steps: - - name: Exit if not triggered by a docs team member - env: - GITHUB_TOKEN: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }} - run: | - members="$( gh api graphql -f query=' - query { - organization(login: "github") { - team(slug: "docs") { - members { - nodes { - login - } - } - } - } + - name: Check if this run was triggered by a member of the docs team + uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d + id: triggered-by-member + with: + github-token: ${{secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES}} + result-encoding: string + script: | + const triggerer_login = context.payload.sender.login + const teamMembers = await github.request( + `/orgs/github/teams/docs/members?per_page=100` + ) + const logins = teamMembers.data.map(member => member.login) + if (logins.includes(triggerer_login)) { + console.log(`This workflow was triggered by ${triggerer_login} (on the docs team).`) + return 'true' } - ' --jq '.data.organization.team.members.nodes | [(.[].login)]')" + console.log(`This workflow was triggered by ${triggerer_login} (not on the docs team), so no action will be taken.`) + return 'false' - isMember=$(echo ${members[@]} | grep -ow $GITHUB_ACTOR | wc -w) - - if [ $isMember -eq 0 ] - then - echo "$GITHUB_ACTOR is not a docs team member. exiting..." - exit 1 - fi + - name: Exit if not triggered by a docs team member + if: steps.triggered-by-member.outputs.result == 'false' + run: | + echo Aborting. This workflow must be triggered by a member of the docs team. + exit 1 - name: Check out repo content uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f From 962a67f26ce35f17443a31dd2f433ba2176f63cc Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Fri, 1 Oct 2021 18:31:43 -0400 Subject: [PATCH 2/9] webhooks: document the undocumented pieces of the push webhook (#21792) Co-authored-by: Sarah Edwards --- .../webhooks/webhook-events-and-payloads.md | 9 +++-- lib/webhooks/static/dotcom/push.payload.json | 36 +++++++++++++++---- 2 files changed, 36 insertions(+), 9 deletions(-) diff --git a/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md index c77f1bc3e1..5cb4310557 100644 --- a/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md +++ b/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md @@ -1032,10 +1032,15 @@ Deliveries for `review_requested` and `review_request_removed` events will have Key | Type | Description ----|------|------------- -`ref`|`string` | The full [`git ref`](/rest/reference/git#refs) that was pushed. Example: `refs/heads/main`. +`ref`|`string` | The full [`git ref`](/rest/reference/git#refs) that was pushed. Example: `refs/heads/main` or `refs/tags/v3.14.1`. `before`|`string` | The SHA of the most recent commit on `ref` before the push. `after`|`string` | The SHA of the most recent commit on `ref` after the push. -`commits`|`array` | An array of commit objects describing the pushed commits. (The array includes a maximum of 20 commits. If necessary, you can use the [Commits API](/rest/reference/repos#commits) to fetch additional commits. This limit is applied to timeline events only and isn't applied to webhook deliveries.) +`created`|`boolean` | Whether this push created the `ref`. +`deleted`|`boolean` | Whether this push deleted the `ref`. +`forced`|`boolean` | Whether this push was a force push of the `ref`. +`head_commit`|`object` | For pushes where `after` is or points to a commit object, an expanded representation of that commit. For pushes where `after` refers to an annotated tag object, an expanded representation of the commit pointed to by the annotated tag. +`compare`|`string` | URL that shows the changes in this `ref` update, from the `before` commit to the `after` commit. For a newly created `ref` that is directly based on the default branch, this is the comparison between the head of the default branch and the `after` commit. Otherwise, this shows all commits until the `after` commit. +`commits`|`array` | An array of commit objects describing the pushed commits. (Pushed commits are all commits that are included in the `compare` between the `before` commit and the `after` commit.) The array includes a maximum of 20 commits. If necessary, you can use the [Commits API](/rest/reference/repos#commits) to fetch additional commits. This limit is applied to timeline events only and isn't applied to webhook deliveries. `commits[][id]`|`string` | The SHA of the commit. `commits[][timestamp]`|`string` | The ISO 8601 timestamp of the commit. `commits[][message]`|`string` | The commit message. diff --git a/lib/webhooks/static/dotcom/push.payload.json b/lib/webhooks/static/dotcom/push.payload.json index 720a5eca65..00594b4e79 100644 --- a/lib/webhooks/static/dotcom/push.payload.json +++ b/lib/webhooks/static/dotcom/push.payload.json @@ -1,16 +1,38 @@ { "ref": "refs/tags/simple-tag", - "before": "6113728f27ae82c7b1a177c8d03f9e96e0adf246", - "after": "0000000000000000000000000000000000000000", - "created": false, - "deleted": true, + "before": "0000000000000000000000000000000000000000", + "after": "6113728f27ae82c7b1a177c8d03f9e96e0adf246", + "created": true, + "deleted": false, "forced": false, - "base_ref": null, - "compare": "https://github.com/Codertocat/Hello-World/compare/6113728f27ae...000000000000", + "base_ref": "refs/heads/main", + "compare": "https://github.com/Codertocat/Hello-World/compare/simple-tag", "commits": [ ], - "head_commit": null, + "head_commit": { + "id": "6113728f27ae82c7b1a177c8d03f9e96e0adf246", + "tree_id": "4b825dc642cb6eb9a060e54bf8d69288fbee4904", + "distinct": true, + "message": "Adding a .gitignore file", + "timestamp": "2019-05-15T15:20:41Z", + "url": "https://github.com/Codertocat/Hello-World/commit/6113728f27ae82c7b1a177c8d03f9e96e0adf246", + "author": { + "name": "Codertocat", + "email": "21031067+Codertocat@users.noreply.github.com", + "username": "Codertocat" + }, + "committer": { + "name": "Codertocat", + "email": "21031067+Codertocat@users.noreply.github.com", + "username": "Codertocat" + }, + "added": [ + ".gitignore" + ], + "removed": [ ], + "modified": [ ] + }, "repository": { "id": 186853002, "node_id": "MDEwOlJlcG9zaXRvcnkxODY4NTMwMDI=", From fa12f1bba68ca44535566aef6dd8fcdeb4648e41 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 2 Oct 2021 01:59:28 +0000 Subject: [PATCH 3/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 2 +- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 143 insertions(+), 143 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 167b928224..9bfb40771b 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e9698275492f63b8af0cbccfb4a0b6e678b50775db2b3902cc6a79bb69b5269 -size 507383 +oid sha256:837c624b21fda60bfe10ad576d2ad1a708b2692bdb564f4b90f1c8fc2fc9a19c +size 525554 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index d0b3b54efc..b4e848db66 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c52576c99e5722a4931c4438f3e0a499bf1bb19dd9059b0976d30e5facae90a -size 804114 +oid sha256:29b042fe4212a9069207252728888a3e3017dd6138724828a336f42430881ab3 +size 868981 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index f450ea0382..e186542393 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe538cbcf51d081a52b1bc037d24d1a78050212ec25289a93fa3fe0330de2f2b -size 469969 +oid sha256:d9a5853c5065dec0d8d5470be7079a20d8c440170b392a3e53a21a13bb267956 +size 479499 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 5c0f1e7f15..bc7b7ce7e6 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4168579a33869f6deb6214e577a0652f7f908990bb6a2adc2112ee3094104298 -size 2080383 +oid sha256:6389c2990b6d63ce2d3d9ffc6c1b50db4dbf29bb2fd9315a4a5f9a79fb84fe50 +size 2127677 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index ce6d0187e2..6ed8fa247f 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:386075d35f7a3ecd3d49146f062f14396ffedddcb1129c5deea3dc2635eb1421 -size 433764 +oid sha256:f4fadfb7bbd5bb60f0431039caffdd45e9174d04397a19c070c9f29b2c0dd759 +size 433285 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 09b6228cf9..82049fb1d0 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ad5d64468f2dc9aed15511683bf00b2aa77f60415ea21dcead3178f5d058600 -size 1692169 +oid sha256:042ac929e1f832e8ea2ef75bc6c7437e605e036f5421b12f8635f8fb3be6ab40 +size 1692420 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 89c58ef754..e4a46b4dc0 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ff91fe82b516ea4dccc92e1aa2d1ba1654e56c2b5bdf9091e0e66a10616d543 -size 280837 +oid sha256:2dfebae570a77c3fcdd95328d442cb3530dbc6c23c24f709396a05ecbc50e6ab +size 195099 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 66d7a4eb48..368fe7f7a1 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a52b08cd0555cb5195b818a78be41a1f264bacb592fc344fd020e11fa001787f -size 1068983 +oid sha256:db97b947e509c7d7c33ce0f5cd9e7c9a61000a8d70c175498fa80490d80954a7 +size 702761 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index ff570b0cca..faa466c896 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a200df10e28b09742433e7c0c6be5f0836eca507509f7dfcff430f238954f608 -size 529859 +oid sha256:0dbc4b236545849b7a9e88aed2b0590544809d005eb607e24b6f01e454bd7650 +size 545301 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 988180ad4b..511ea6a6d1 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c5be3e99c19ed71bce929fe77c8668f50f9abd06b5d712fba93b0c1f86faf60 -size 2803173 +oid sha256:0e78fdc59819f09c62580dad28555beed4ffd9164ab21f80eef5f3fb81dfcef0 +size 2881071 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index 89aa838ed0..ded4e77ace 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:647ad2d2eba52fb9c1fdbb416e81f47ddb9e1a95fb951cb25e7214e2e1f03996 -size 443905 +oid sha256:59f57fe1067bf08f55c974dc064139846c51d960bcd0c68f066c7622faacd6d9 +size 456790 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 39a69b78ce..2658dfb3d2 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58dc188dfa93492223a88b684a6483da98aa3b90c94ee244e00520a0c7a70d42 -size 1852982 +oid sha256:5cf91412ee805028e85ebf0c80dfaf9ddabb89c6351ce806963789a86e5d4fb6 +size 1905878 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index ea8756731d..a95f9459dc 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f8448f3faf3a3d1887450198d9ecc944245130239a3fdba082ba038557ef4c4 -size 525439 +oid sha256:8ffa06c9d4def3f58a1629f91074cd17f5a4a10ce99281382ef6d93406c10673 +size 544860 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index f84d62849c..a9b54332ef 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af30c1981396fe205b5586e56b6d0a3a7791b42fe1085cf753dd7cabe5551931 -size 834973 +oid sha256:cd5e155c52637869a13fd5bbe51a45b72ec720cfc72043dc48c5ae64156e5f5d +size 906423 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 51d8b7b929..26a1b5c994 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0b5ea4c13795d55637373b96478be43ce122e7a56892d79df289a5f598c483a -size 491075 +oid sha256:844749e7d50c61d524103d3c880569cb1093ae213687947f23d7b9a03f80b0bb +size 499784 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 46dae55913..afa87c8c4a 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:399c4e5cd55c6781555b42f3db3932e943c19d1db12500e24cc54d8bf1813947 -size 2181632 +oid sha256:326d270a59c7f661b5b9243f6420c5f6b4448db221ff6f5ee0964eac06552135 +size 2232991 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index 6e5069dedd..e8eb69503a 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6043eec76f6d6ae9792125a807532d8550ba26001adb2addd96b3c5a75d17505 -size 453554 +oid sha256:7ae9b6651a00698fc9d9f179d63badb845c7c1cba98a62cfa8e530d3ff7930c5 +size 453628 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 4300aeb3f8..c803cb7b07 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe1317d86d7cca5b3c8386c2f0754ba353934c64f51ac010ae9094a32e09edc0 -size 1766992 +oid sha256:0b9bac2651d1662472901c1427e66a20fdffb758c9c101d334f3b732c649e3ac +size 1766990 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index c0911dd59a..326444f312 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b4b6867e1cd5dfbe42692f33a1d32dee6c8535ca316cb14358ee587b11188c9 -size 278615 +oid sha256:167e9fa0e942aecc82a92d93f481182273c158d9730f671934119e8fce065433 +size 193968 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index 81ce37eda4..f614876e8b 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77435052495b0b75f53501c3a6de31ae4575c67f1098370459c3f2c84c73e0fb -size 1057156 +oid sha256:22a7e7bed0e84b1f57724a3ef45b83be014f07aa2678bb459e7f8f616ace96d8 +size 694450 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index cdb5a01f77..97602a5a80 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4767cecefec13f464159415a5c481f053098c3dc554bfdc167f175b1b89bbda -size 551445 +oid sha256:6719d7e5704c29a129b00c09ea897fc2bf2f2a9b4fa7b98b4302d08b95a39d88 +size 567946 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 98a09db8ce..1f2e4c0255 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7afd7b8a5002ceeeb9f1d505e2487caa4a90066b39e6329de0ef520b6212300c -size 2915471 +oid sha256:61170cb000dfc227fb0ca97824dbb2c064e03f0d0d45c5d20f370a818899ad04 +size 3006963 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 1f73a4ef6a..b43eac73a2 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f863338f538827a2c8ccbee7a12a563e7ce2cffb238bc66e6b539c2d5eb6ca2 -size 465173 +oid sha256:6f40f1bf771272aa3f5cc2df5cdb7627589af2f3c7b660278eadbd180e0bf197 +size 477733 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 77db64cdef..319734f81d 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14d0aa4353ae9394aa71b68d27e60d905c1507d21357ef5f384a184de3baf0a7 -size 1938976 +oid sha256:11c5ada29bb714d904e63d4a25fca1159897f634c15b9c8bf69a3bb299836341 +size 1993384 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index a425259175..08a77fd30c 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7207522573506c2a4ee02763f17fc66d01c1f93cb90f80852cefaa764e55d603 -size 534746 +oid sha256:b2dcf3804f23945a56802d93fc29adc7350fab74a4310a667a67734b9503f2eb +size 557453 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 4df306036f..05ae422708 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5bd82859e2c260a0aba64d42344bba1bc62e5fd3a9344c6c13357d00cef39045 -size 847693 +oid sha256:0b5813e694454683a14dd3e6394e0de7ab9fca232f0943cc0af53b434875f52a +size 929771 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index 42508fba2f..ee4eb6fa79 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a918725646a93eb919f4c017d8ba5e6089aed8b8fbb4561dcb16ca2e653cbef5 -size 497922 +oid sha256:416bcff46a661ad48c136d422bc43602ca1eed15f3c9e7379494da671a8413f6 +size 508609 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 4c46edd4d7..af78a3ed00 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35a7fd100bce3348304683cc70e4976a89688ce03bd4a6e3e8bb6e0b876957a9 -size 2223739 +oid sha256:a91432822b728c6bd2207a07094503d539e51bcedd2e7cefbe2c5bfd95c002d7 +size 2284235 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 076d1b022a..1b8f924f08 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80fb7b7d52887624812763ec2d805a2aa62259bf8061261e5910ca60838d75f1 -size 461931 +oid sha256:cf481f6ae8c70654650b23f7e8d56faa7eb8d0d1fb2c37b3baf0b5934e140578 +size 463069 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index fd06547ecf..e7af864d59 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:931d38f2e2ac01556b005c7c1b6954bcbf5798487ff2e2cf7fd0ade33121a871 -size 1805847 +oid sha256:dc06d7f8ffb0b264a391ce1fcb48310c5fffcfb961c49697a2c5dcd28687b097 +size 1806651 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index de4d244fbd..8aa0e91742 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ae28c3c1f1fec25127f14a93dce724637288715fcc7aeadd1caf68f0ba44af7 -size 278749 +oid sha256:b36daf1b9382a86588659672c6e1b4a6b5bcb144d43edb2d0f477068bc48d96e +size 193679 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 0794c0ebe7..58e9ca65c6 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1fce30ad34fc69021736b866af172ef0a4d603211a72f28e24432f769ce56ad8 -size 1059254 +oid sha256:ba15e4ef79872606dd0d8a6fcdd96e475b9e70d5d7b54f106e7f53df5f8c6ab8 +size 694389 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 3f2e39216b..a71d80cb95 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db1c5c0cf6e46fa82baf2e5e57fb546c2d7e638a1b2fe027440e133a59bdfbcc -size 559749 +oid sha256:eeabf754905309bee10b6844b556b4ce2f4a106b08eb9d6530121fba6f3a6cb1 +size 579931 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 707d23a704..4fa8d5c361 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7760356041d3419ef757e2eb9a24594a1c3f27195482d6a7c9862ffc596af866 -size 2968989 +oid sha256:fcc2911c625208cfc9b51313293ef1788c6425711fcde4fc909e042636508e97 +size 3072911 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 549b01a91b..fd68e70ea1 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:84bee42bc8e76c98e14d219cc1cf34359d827a2996eeb6e9d45f4295a911afb1 -size 472799 +oid sha256:a223aff1f31d50ca9fbec7ef18e5f9dd22cd179b00b89a0ecb92406055c8eb89 +size 487066 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index f53479695b..ddb80a268f 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71b339e1b554e8b1896aa22dca69d432ce5d661d6ba150e7b789391455088674 -size 1973636 +oid sha256:cf527a5e0682ae653019e6ff79ee4fb28deee2196f2b53bc4d6241c58d372623 +size 2037046 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 6a68c9393b..02612f8fcb 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f8fbb8d7b8546527cd75b8636b5292c347f7af30bc4d56a478bf9055f8d9f87 -size 540164 +oid sha256:12a5cb63d86047e91816957b75b1da36ab86f7f49e390b42a41ab86089a6978c +size 568027 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 954b438736..7477df9a68 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89709f0aae23b6b90619a96ac991e45f25a348bee0b3d24380b547e732814b96 -size 854675 +oid sha256:c9eb10afc0135b7f80064f3088b6c077fd4af5f4c010eecb33d19321e56e8693 +size 949290 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index ae8a777953..4d39bab412 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6d36a6c79062bc424a734413857215bdf964a6c7558639af92992d7d3d6f68ca -size 502250 +oid sha256:eb2239354c2877f676e51b57ac0d57009144ef19c4b6f3576ada95f32614ca8d +size 517481 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index 897e24a441..053169098e 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33177744ad891d7125cf008bf4cb169ac655727476e72114602d9846ae62457c -size 2244481 +oid sha256:e2c7428c7c161f3ce7bbd757fe211567546e35a9a4cccbea75fab0bd80841143 +size 2333746 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 871f9692ec..2149f05897 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:671c2ab2eb7a42747aaa0c23e60abe55134fb8aa75a647855d36f090a770e4a0 -size 470459 +oid sha256:c8686a10277266fd427f6d0179729ec05cbe3dd08414fd1fcd849c0af5504d14 +size 471346 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 948dced092..21a6c84e04 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5897ab16494a168c2510eb957118915b0876f05d0a2f4d735a19368ea0d26f8 -size 1837481 +oid sha256:472809dc961f02690f8803d0288d7d785fb46e13f0d13e4d9676e3b74e90bf06 +size 1838044 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 872bf48a82..79d642edf0 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b44340977f21e0249d09c03761a00f52d9687222827108f08b9bc102ad4c56ca -size 278823 +oid sha256:44415a2181f57a2a3cc652b969453906feb14c840b92bbf45cf32cde20ca3540 +size 193556 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 116d94242b..a3a9383b95 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2fecda3d9858b35b7b30bbd1c4d8638592fb10a8438cc86d94492ca83a48b317 -size 1059601 +oid sha256:acdc282c4fa4634429f18715331f33aa7331dd3f6e386da0d7e67da7076a977a +size 694165 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 6b61cc6658..8c45358bec 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90ee13768bf4251c75873b8de6905d00c3b731f293bdfa7a51552ce966985525 -size 565624 +oid sha256:b06e70a5ff213b3d6d999638a38a1663bdcb9c65b3619078e76a49026bb5fa01 +size 590364 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index aa94b9fce4..6ba02558f5 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31d925c132008d6dcfe844c63c6d2551c9e06425d9e4984813fc5455e2d16399 -size 3000467 +oid sha256:a9835455821f6ab958b29b50afe893acfb0d579d0c47a6a16ece91f131088cec +size 3140963 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index e76e35fb1e..f817b94f90 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a5fbf2cf395024d70f6d570c14f62e3a599623002000bd3ea3c5c4e4d1eadf06 -size 477889 +oid sha256:8c5b61bcc15210f80720aa2a6f1fcfa31c07eb74164400df271f2154f51fa369 +size 496652 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index 0af4a6743e..b4b5131200 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d312477f4c9a8e211c40acad6630d2d9a464142194bcc4f6426ea49a832ebfa6 -size 1997926 +oid sha256:7dd67a5f2c1231bce5ad6c8609b2eef01cc75b7204337693ac5609f5e11c4b04 +size 2079315 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index 1ee5b3fecb..91d7aed99e 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:097adb150e337199f44f283600464f4c3a8ed20a1303cbe73887670ccb1f0288 -size 696616 +oid sha256:f24f8af84f5b0b0695c635d414bc1d1361406fb8c59bbbcadb024ee0b498f5ab +size 770756 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 8c38e9c292..e5732e04e6 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67f7dabe847ef42f777f41369dee5499aaa6b4632894022354a7a941017d537f -size 948475 +oid sha256:33f3e75005c27503c26b34de9d9e352b67d368d1e96c1046abe806cb372a9468 +size 1170877 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 8a7b35b5c9..8f1bcc8369 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:48b1ea23dc77d57d43d8580c496331cc2dd80275653c17f1076a84ebc19fa63f -size 635107 +oid sha256:f95e0822e755c7edd2ba6f2b87d7eebc137d5f21e4ce59ec9ec985155ee039e9 +size 691188 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 81fffaec80..2129b6d1c9 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ea429075158b0c9505cc036f4674074845197c3fbedf8e1d420867de62ef3c48 -size 2822770 +oid sha256:1c25eafdfb367b6514c8e5d36457730b604bf69f7296c55358539699cb5bf39d +size 3125406 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 465d1f1e70..1fd9a618ad 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ef6bc45a49dedbdd06ee9dddc882e45b3e7d10099f500725c24ef847d40a57df -size 632010 +oid sha256:0ce69140468b69a89e703f37d00e72674f18a750d02f72d508c1a14034d9de7f +size 636913 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 0909a5e6dc..9fcb77fc3d 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14cc0034f7f727b7909ab8387ba97a9173c167219ae24271011de3286a51d022 -size 2398400 +oid sha256:5a1e1a0c684bac88cd48a9a7008ea98d9e004dedebbe69ed2bcc6b6b65d52570 +size 2418985 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index 7f0e9a5ff0..f721d8214c 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4d71ee50f587b0019da465087d3c14a8f8c182fca80e2beac8f23bdabfc8352 -size 307032 +oid sha256:4c6aaf984c2b7831084f3f1e1688d3501a680f0897769ed1addb22f97b6d3030 +size 205179 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 212f22fb9d..b940240790 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff22c91925c6dd34c0780cb7675f97c93028d7316337324f0485fd2c8fc84bce -size 1089542 +oid sha256:f79513eb6b5bd73c2a87ee9cc0a09347893f565994805b3a717b1567f2797fce +size 651168 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 7c3f01d0f8..34fe9f474c 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a80187e7b07a2d79c02b8f0e0573deed862ef0f0b69c5982eccd6893989c6803 -size 724435 +oid sha256:1ae89747f4d3c7a7b9c3d5cac7f7b845f130967ca9352eb78d61c7dcf22b9efb +size 795636 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 53c43d7a2a..1493777e75 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fba673a56cdf981660d38be10abe91d3a8c20c5066f21cdb2d351e54856491ac -size 3759874 +oid sha256:4b02d3e754aa48285edbe82a6307db2d72f2f724d155db10fbae0892eaa1a518 +size 4153511 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 96a5a26ec7..d61dd16f78 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed799040e01aac673bdab632b3c7b21ec8e9e8a3f6c0c2cda36f61e52b5355c1 -size 609015 +oid sha256:9c56f24192072fe57a738d712b9746f3fd912c817092254b2853e41db41fe9ea +size 669901 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 7a3060bca9..c569a42e89 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0979e179037f36891fd1a12e5a13742e4a1dfe3003cdd409da3c34412b3203c -size 2492685 +oid sha256:4138cbc7dbf64314bd30e2c10449390e8870fd866a5845864dd7ed0809aa2fa7 +size 2752252 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 68ba8ca55a..606ccc58a1 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10147f3abcdff2ad7ac225cda01be7ec5fcb6413a4792f90eec9d7b5d59db0bd -size 414801 +oid sha256:9f1f8a95cdf8fd9d84606bec392287cc22f9f414cf2821a8a04b5ce631e60444 +size 433797 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 2197985721..519315cb76 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:741545a05de9421476e4933f085451527f94da5bf28e57ca79d56425733b6b57 -size 631864 +oid sha256:b8e52bdf29f415339f69569b02378d9547abbab50042befc23d22b4837480df5 +size 692863 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 118072163c..436202a2fe 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2bcf60c54e5a01578493b73c430bd2ba945a597044df78bdd7c8268fc7e95351 -size 391477 +oid sha256:dd93a87b37329b7a5886a27d37fd0f38adc23f4685c64e1f8630e25ae71d5539 +size 400580 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index a1b515066e..048e7b6861 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f80f2204d75206a72f339ac02e1fa8126f72f2ccf31234c370ef32dc44927eee -size 1699750 +oid sha256:05863bb4dab7cc6f9e6342c03ba97b007da5a62139472e9c1963aa81007b70cb +size 1744774 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 5f6cad4d57..bd0764b79a 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c540923078bf670e6036474a87a21e04fc398c599b86d73453c4726aed68acfa -size 363532 +oid sha256:adfe9c073a18f62aadec6d3037c8b48e3f8491a1ed0e5487db829033ec2b2d8b +size 363552 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index a67348f060..ab03a88d84 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88e6eaf02b738de2ff65520fac465219b97a24acbb8abe66b5e54d15de6f59a6 +oid sha256:262dcf9b6a06b19a294c36458865dccbfc70c379797ab42903145dffdab5bcef size 1353073 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 6251b1fb04..ad368d6551 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0adc5b5581af6b41dabe7dc03a989e5b5972197c32861ae4c5a696bd4fc73ce -size 201423 +oid sha256:eb6aac5a79f2ecf7fd5497ed4a990dca5e3725f7193e0a15c6b7c4df630d9512 +size 130840 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 7a384d2562..4d002270ad 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f72c5303dc43f9cebab3dfa8ad6690994f864fa68de5358aa7a5bdc68b68f86 -size 718775 +oid sha256:053b64e34b962087a8aafdfac4920f3e6ee271b9713212d920f03383815565fa +size 420329 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 2c6887e1dc..5e8ae4d4be 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93bdd491f7d1250beb365d7ab8cd33b8c48d28b5e6df90fa98bac36e7f52ab50 -size 435874 +oid sha256:9e06e1e52b01f95f4405f9709d9629c8e2dc73f2165ed9709431e42e2a6f0eb8 +size 453104 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index dbd97eda69..ce467d1cf6 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca54ae6c2d37f8b3e2578b9d7ce6be2bfdb68b3cab3ce0fdfdd1c16004e1fd91 -size 2219079 +oid sha256:b307e1b0a939fb2fdfb21badf36a38ff0ef1e4ac2bbe51e225b248a53eccd750 +size 2299176 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index d0a9c9ac95..329f9baa3b 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc782b03bab8071db7a8d05aed5f71a154129307e69ba60e29497c04776b4230 -size 372236 +oid sha256:3cab989f11fa1ac3561bceef114bc76b2857d3fc4777caa56b07449fab8aa05b +size 384666 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index d3b75186e1..cb117d0cf5 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c274a0572ce8f7e6ef8763a7715403f7a63156e28b8f28a9b148e9fc930f6711 -size 1498574 +oid sha256:e8ce46b140469fb4164f6243677089827f2ad9702bd0c130d266adba0aa8f9e1 +size 1539371 From ee5e29a6f201dfb03fcde2982f4201c6d12ffbfe Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 2 Oct 2021 09:52:59 +0000 Subject: [PATCH 4/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 9bfb40771b..6cb6c5c914 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:837c624b21fda60bfe10ad576d2ad1a708b2692bdb564f4b90f1c8fc2fc9a19c -size 525554 +oid sha256:64fd4741b03d97fb27124f0a8e370cb45252cd36912dec15336c8bdb2a200397 +size 525485 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index b4e848db66..43f61af637 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29b042fe4212a9069207252728888a3e3017dd6138724828a336f42430881ab3 -size 868981 +oid sha256:0f7e0c06e988ceb5644d3ae50ceb392fde9b3b1db3b294af15cf4d4e22c8ebe2 +size 868798 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index e186542393..14c8416cdf 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9a5853c5065dec0d8d5470be7079a20d8c440170b392a3e53a21a13bb267956 -size 479499 +oid sha256:7cd267379e945a28c672c33ed1afbc300c5ba476e6147a2169b122ca76e9eb99 +size 479502 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index bc7b7ce7e6..024b26f5e4 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6389c2990b6d63ce2d3d9ffc6c1b50db4dbf29bb2fd9315a4a5f9a79fb84fe50 -size 2127677 +oid sha256:8df03cf56c5f8c3e267195abab6f0cb9b9f47b3fccb1f4e56bbe476c7b29cd18 +size 2127692 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index 6ed8fa247f..478c1aebb4 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4fadfb7bbd5bb60f0431039caffdd45e9174d04397a19c070c9f29b2c0dd759 -size 433285 +oid sha256:9663f95e6da4e1827a6b0697cab61fa0665f4a93c4d631f622f5231bc584727d +size 433161 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 82049fb1d0..57eb3559f6 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:042ac929e1f832e8ea2ef75bc6c7437e605e036f5421b12f8635f8fb3be6ab40 -size 1692420 +oid sha256:2270105425b5380fe7140383141b69bdebfad37e8d18a9911c8fc794a966f1f8 +size 1692251 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index e4a46b4dc0..e480f2fd3a 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2dfebae570a77c3fcdd95328d442cb3530dbc6c23c24f709396a05ecbc50e6ab -size 195099 +oid sha256:cda9898d6614b6a28f23c38eaecede2268a67ce3072a691d169b4d0ece18b25d +size 194879 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 368fe7f7a1..d0c84c2061 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:db97b947e509c7d7c33ce0f5cd9e7c9a61000a8d70c175498fa80490d80954a7 -size 702761 +oid sha256:9de95e3ea0dbd1d3c9701ead92e5f390ed5293e68d6eedc63d8e6911a19fcaf1 +size 702690 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index faa466c896..8d3bba2d31 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0dbc4b236545849b7a9e88aed2b0590544809d005eb607e24b6f01e454bd7650 -size 545301 +oid sha256:1696666b3d89a2b721f2744ca455c0cc72455f0c100c6fb579292d76ac7c6d5e +size 545210 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 511ea6a6d1..0c5da9df85 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e78fdc59819f09c62580dad28555beed4ffd9164ab21f80eef5f3fb81dfcef0 -size 2881071 +oid sha256:36042b14bb05d97a79b7707d524943e93e4d9edd32195183a27f398671398206 +size 2880926 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index ded4e77ace..e353ba31ae 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59f57fe1067bf08f55c974dc064139846c51d960bcd0c68f066c7622faacd6d9 -size 456790 +oid sha256:eb68aea3622712751b05c2b02ba5017d8ffa63a7a998527077013d24693bcea0 +size 456819 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 2658dfb3d2..8e2df662df 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cf91412ee805028e85ebf0c80dfaf9ddabb89c6351ce806963789a86e5d4fb6 -size 1905878 +oid sha256:dfcbaec36674ac6cc333dc384c82b20843b8937c34f9d50b5492110b65e2abab +size 1905893 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index a95f9459dc..2f3f5431d1 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ffa06c9d4def3f58a1629f91074cd17f5a4a10ce99281382ef6d93406c10673 -size 544860 +oid sha256:4f89afc7ecf134e3f1f5c6f7283935c113472e3fa249004a08b281eaf099df46 +size 544900 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index a9b54332ef..832af6d70b 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd5e155c52637869a13fd5bbe51a45b72ec720cfc72043dc48c5ae64156e5f5d -size 906423 +oid sha256:d8e02f9c400e4421a86d100229e9d0a91c027549e2fb2925e1c397686af36d28 +size 906846 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 26a1b5c994..ac590423bd 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:844749e7d50c61d524103d3c880569cb1093ae213687947f23d7b9a03f80b0bb -size 499784 +oid sha256:421f3d4ba07d50ef1f40b30a932327dbc4b3c3bde20b1a6ea776a9650d7de0b8 +size 499830 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index afa87c8c4a..4f86a758b8 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:326d270a59c7f661b5b9243f6420c5f6b4448db221ff6f5ee0964eac06552135 -size 2232991 +oid sha256:187d2f2758519be9e87277571be3e8882707ba1ff26d1fed41721574dd55999f +size 2232830 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index e8eb69503a..89dbcb70fd 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7ae9b6651a00698fc9d9f179d63badb845c7c1cba98a62cfa8e530d3ff7930c5 -size 453628 +oid sha256:339efdc818f1275c7d7e51b18345affb30af7cf6e904df92c71b4c3708135acc +size 453509 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index c803cb7b07..1ad2c476b7 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b9bac2651d1662472901c1427e66a20fdffb758c9c101d334f3b732c649e3ac -size 1766990 +oid sha256:2a1da5de7aea23e6d7ce934c8cb63abc18d61c3c2cf201723c9ad34a953020bf +size 1766438 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 326444f312..5138e72638 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:167e9fa0e942aecc82a92d93f481182273c158d9730f671934119e8fce065433 -size 193968 +oid sha256:51efa14e91f167dfdb92cbd90a184efa4d21d440e9008b337592af2c76450b49 +size 193605 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index f614876e8b..2a7bb32f01 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22a7e7bed0e84b1f57724a3ef45b83be014f07aa2678bb459e7f8f616ace96d8 -size 694450 +oid sha256:6be805c984417258114050ca80289a28e279f26325bd8047078149c56df61bd2 +size 693857 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 97602a5a80..61c496729d 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6719d7e5704c29a129b00c09ea897fc2bf2f2a9b4fa7b98b4302d08b95a39d88 -size 567946 +oid sha256:824e901ae25a9668d621b8aaed36ebf7a6554d4d7d255756a3f96c0e100be886 +size 567923 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 1f2e4c0255..1e3a985a0c 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61170cb000dfc227fb0ca97824dbb2c064e03f0d0d45c5d20f370a818899ad04 -size 3006963 +oid sha256:8dfd45bfd128304bd4db92887b4f9e00b199eaa1d1e5d39d3778518dbdb1c384 +size 3008185 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index b43eac73a2..b3a6a35a3e 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f40f1bf771272aa3f5cc2df5cdb7627589af2f3c7b660278eadbd180e0bf197 -size 477733 +oid sha256:304e8a3ffd46da2ece0ae988c3ef7d63f89bdf9f2ee5cf74808632379ad1c67b +size 477515 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 319734f81d..488748e1a8 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11c5ada29bb714d904e63d4a25fca1159897f634c15b9c8bf69a3bb299836341 -size 1993384 +oid sha256:d958e3fa147d054131da7faba1f592b7d47c4d0a4b8f727946dca2ba99b352a0 +size 1993020 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 08a77fd30c..fd3b6bbcaf 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2dcf3804f23945a56802d93fc29adc7350fab74a4310a667a67734b9503f2eb -size 557453 +oid sha256:ff6c9313a08f1cdc071de7214ba5a37e29b0cc7eaba4bd12e6ed4ee30b0cee7b +size 557141 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 05ae422708..787adab5ab 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b5813e694454683a14dd3e6394e0de7ab9fca232f0943cc0af53b434875f52a -size 929771 +oid sha256:a35943928c8bbaa9dd03f471769f2a34f06b9d2f97b2289deebd342fcc2bff48 +size 929648 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index ee4eb6fa79..c99e2b29a5 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:416bcff46a661ad48c136d422bc43602ca1eed15f3c9e7379494da671a8413f6 -size 508609 +oid sha256:053e6696a3d65ed3b565657b0ba344f7854fc77177e894459e88b6bae02d02ca +size 508726 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index af78a3ed00..77826250d2 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a91432822b728c6bd2207a07094503d539e51bcedd2e7cefbe2c5bfd95c002d7 -size 2284235 +oid sha256:1542f379fd9236173df8d5ff98f5f1863f9c936f922224a68bcc6eea2c3fac6c +size 2285045 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 1b8f924f08..668060c3f8 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf481f6ae8c70654650b23f7e8d56faa7eb8d0d1fb2c37b3baf0b5934e140578 -size 463069 +oid sha256:719d96f7ae64505a7356e1e6b040b8c6a7d5bd4d0a0247e7035010d402030dcf +size 462967 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index e7af864d59..12a63af787 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dc06d7f8ffb0b264a391ce1fcb48310c5fffcfb961c49697a2c5dcd28687b097 -size 1806651 +oid sha256:a63b81390f1c887eb616bc5d53e0bf78f35033336412fc55d1c103b49e6accce +size 1805259 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 8aa0e91742..e2f1a4b0ef 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b36daf1b9382a86588659672c6e1b4a6b5bcb144d43edb2d0f477068bc48d96e -size 193679 +oid sha256:b4336edd6ba0926b6c4ef285829db060ed3128a648cd275c51c9cfee1a7b5e96 +size 193696 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 58e9ca65c6..fba410c6d7 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba15e4ef79872606dd0d8a6fcdd96e475b9e70d5d7b54f106e7f53df5f8c6ab8 -size 694389 +oid sha256:529dba16feb7d0632cd94e75d0eab8b8592c44bd14f99f0453e377a6c26709da +size 694247 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index a71d80cb95..7f47a30042 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eeabf754905309bee10b6844b556b4ce2f4a106b08eb9d6530121fba6f3a6cb1 -size 579931 +oid sha256:cd7a825d6b715be3eb7abe5dc1ab1b00a6d6ad58325a81d4ed301c8da5c8e825 +size 579829 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 4fa8d5c361..9062b75593 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcc2911c625208cfc9b51313293ef1788c6425711fcde4fc909e042636508e97 -size 3072911 +oid sha256:dab233a9245b52101729454502424cab2bef52c5268ca3e8699271a0768a22a5 +size 3073327 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index fd68e70ea1..4cc368a2fc 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a223aff1f31d50ca9fbec7ef18e5f9dd22cd179b00b89a0ecb92406055c8eb89 -size 487066 +oid sha256:7e809f0372235a3a667fde5731fb2b20b96f2dfe913b22dab87b29e8149bc3cb +size 487194 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index ddb80a268f..7917b59e27 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf527a5e0682ae653019e6ff79ee4fb28deee2196f2b53bc4d6241c58d372623 -size 2037046 +oid sha256:7cfdadc90446ced652b230a66bcf670330c0b1336576618b1ac33499e00bce7b +size 2037155 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 02612f8fcb..1785bb1cfa 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12a5cb63d86047e91816957b75b1da36ab86f7f49e390b42a41ab86089a6978c -size 568027 +oid sha256:63d04aab7c90468e1d478bcffb36416f6bba39738ac01be3be43ab74f357011e +size 567808 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 7477df9a68..d1d0428db1 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9eb10afc0135b7f80064f3088b6c077fd4af5f4c010eecb33d19321e56e8693 -size 949290 +oid sha256:a38f7716a23f1e84475243f3dce180fbae45e3e2266ea1612a6ad1bce284bce1 +size 948419 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index 4d39bab412..97e4c8dec6 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb2239354c2877f676e51b57ac0d57009144ef19c4b6f3576ada95f32614ca8d -size 517481 +oid sha256:bd6d2d8fe706cf74e4eb99f779daece831268b951434b2e3de6c32bbfb57ed5e +size 517470 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index 053169098e..2c1bdbdcb3 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2c7428c7c161f3ce7bbd757fe211567546e35a9a4cccbea75fab0bd80841143 -size 2333746 +oid sha256:085d85f872525a23066b8564e8c8fd8a5a82c2044090777a4811b3e641cac3c4 +size 2332565 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 2149f05897..48e1243eab 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8686a10277266fd427f6d0179729ec05cbe3dd08414fd1fcd849c0af5504d14 -size 471346 +oid sha256:6536d9bf043f5cb170c7ae437cce867c213f41b6be565327eeb3be9b97b6d7c6 +size 471286 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 21a6c84e04..4266db5a05 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:472809dc961f02690f8803d0288d7d785fb46e13f0d13e4d9676e3b74e90bf06 -size 1838044 +oid sha256:45af6f4fbd0bcd3a96658c7b6d5dbdabc5ce812b9f01880ef89af8f9ae5b1ebb +size 1837883 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 79d642edf0..d31c966d6e 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44415a2181f57a2a3cc652b969453906feb14c840b92bbf45cf32cde20ca3540 -size 193556 +oid sha256:ff0e03fdfb65c54bee5ea06dbf37ce99cfdebdbbd9aec3cf528af7b3b4936212 +size 193578 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index a3a9383b95..65b5b61df5 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acdc282c4fa4634429f18715331f33aa7331dd3f6e386da0d7e67da7076a977a -size 694165 +oid sha256:9cee392d6f0080a7b2c796cdecaeb6fc3fb34c2c375bb31b295e606ad5acf3d2 +size 694168 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 8c45358bec..4b84e947ba 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b06e70a5ff213b3d6d999638a38a1663bdcb9c65b3619078e76a49026bb5fa01 -size 590364 +oid sha256:697aec86f8695db0b858e075773f06d179964f49ec07561330cdc49c33c09ca9 +size 590522 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 6ba02558f5..1fb5ab8a08 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9835455821f6ab958b29b50afe893acfb0d579d0c47a6a16ece91f131088cec -size 3140963 +oid sha256:31b62749ae67c005d759adba43796ca706f2ca8c7382473ea1fee860a3af4737 +size 3141636 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index f817b94f90..078dc7903c 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c5b61bcc15210f80720aa2a6f1fcfa31c07eb74164400df271f2154f51fa369 -size 496652 +oid sha256:65bf870778a458b9f5b338c6c71c0ff44437e18ceceeba30013d731943b02c98 +size 496627 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index b4b5131200..e0ee489009 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7dd67a5f2c1231bce5ad6c8609b2eef01cc75b7204337693ac5609f5e11c4b04 -size 2079315 +oid sha256:9fb2e79fab5b95f4fdc8b3d7c83013e66fd30be7f1f5707d0218f61fde830cd2 +size 2077987 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index 91d7aed99e..ecbfe9a98f 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f24f8af84f5b0b0695c635d414bc1d1361406fb8c59bbbcadb024ee0b498f5ab -size 770756 +oid sha256:0ae0742a297730e67b8a57b76b6cea8917114b650240ef2361f3595230c02ee2 +size 770996 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index e5732e04e6..0a58aae016 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33f3e75005c27503c26b34de9d9e352b67d368d1e96c1046abe806cb372a9468 -size 1170877 +oid sha256:90b8378cbb0808eecca39a215aa1a1e04a84bd06c0178e7a936ad95a5396c7a2 +size 1171790 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 8f1bcc8369..65149eb937 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f95e0822e755c7edd2ba6f2b87d7eebc137d5f21e4ce59ec9ec985155ee039e9 -size 691188 +oid sha256:224e5d6d7fbbe5665aa70badcc000475ddb59d14227064b81eb1bd67a69a7edb +size 690140 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 2129b6d1c9..266e9b8732 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c25eafdfb367b6514c8e5d36457730b604bf69f7296c55358539699cb5bf39d -size 3125406 +oid sha256:060146119a311c0b4d9c127436355c1c7f1b8d25b5c4efbaf580ee57f6cce1dc +size 3123302 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 1fd9a618ad..c827d3f642 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ce69140468b69a89e703f37d00e72674f18a750d02f72d508c1a14034d9de7f -size 636913 +oid sha256:094e7b2025d79fa86b5439d48929bd75e1e65d98559cf362d4d845b977a91abd +size 636937 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 9fcb77fc3d..ac3d99e4ea 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a1e1a0c684bac88cd48a9a7008ea98d9e004dedebbe69ed2bcc6b6b65d52570 -size 2418985 +oid sha256:aaca1f6faf5d803be7338bd127eec3ffa20d1ae3939621bfa6d838bbae54c0e4 +size 2419199 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index f721d8214c..f3b23f87c0 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c6aaf984c2b7831084f3f1e1688d3501a680f0897769ed1addb22f97b6d3030 -size 205179 +oid sha256:c1a129aed0829fffa670b7a4f445c3426a56f11e88f471536c9e050d1346e604 +size 205267 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index b940240790..8f7093d39b 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f79513eb6b5bd73c2a87ee9cc0a09347893f565994805b3a717b1567f2797fce -size 651168 +oid sha256:b71b7882404ff8464cb34772135fbbf7091f0d1b08408bf058df5e4d2485ce4e +size 651740 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 34fe9f474c..fb3569a142 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ae89747f4d3c7a7b9c3d5cac7f7b845f130967ca9352eb78d61c7dcf22b9efb -size 795636 +oid sha256:26cedfd83b08934eebe04503704e6a43aba8a83fb9b6289ec3570d119fdbb44a +size 795574 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 1493777e75..674d3e0707 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b02d3e754aa48285edbe82a6307db2d72f2f724d155db10fbae0892eaa1a518 -size 4153511 +oid sha256:d2d44ca809140dac9dc535609835183d4a895d7499446c5e95dbf3e7d23fc330 +size 4151054 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index d61dd16f78..8bcabbbe22 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c56f24192072fe57a738d712b9746f3fd912c817092254b2853e41db41fe9ea -size 669901 +oid sha256:a19ca956c0ef44270ff516060aab622f48106701d927bf42d06f033b6eb22771 +size 669725 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index c569a42e89..fbf5e7af80 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4138cbc7dbf64314bd30e2c10449390e8870fd866a5845864dd7ed0809aa2fa7 -size 2752252 +oid sha256:8a38837d7fead2825b658c2a74980eae1c6e65f585c4d4945c7831ea4c9b5e7a +size 2751160 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 606ccc58a1..ec66574d1b 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f1f8a95cdf8fd9d84606bec392287cc22f9f414cf2821a8a04b5ce631e60444 -size 433797 +oid sha256:2309ff85c6b18c401f81af2b1f199b227c8bac25e7daf12d875d042327bfdd1a +size 433705 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 519315cb76..102f3b4524 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8e52bdf29f415339f69569b02378d9547abbab50042befc23d22b4837480df5 -size 692863 +oid sha256:54b0d3f604478bcbc3f229004d81b6de882187ae96f9803ef67e8ff94de41b86 +size 692377 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 436202a2fe..44c23f4f01 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd93a87b37329b7a5886a27d37fd0f38adc23f4685c64e1f8630e25ae71d5539 -size 400580 +oid sha256:7088f081542300ddefcb8815eda524e9831021751d4230599bbb5108486de96c +size 400561 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index 048e7b6861..4c80d6a5fb 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05863bb4dab7cc6f9e6342c03ba97b007da5a62139472e9c1963aa81007b70cb -size 1744774 +oid sha256:33f84258753770ae605ccc0cea8f799bd2fee80939c6aaeed5fc018e502ad4d8 +size 1744672 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index bd0764b79a..27a0335aaa 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adfe9c073a18f62aadec6d3037c8b48e3f8491a1ed0e5487db829033ec2b2d8b -size 363552 +oid sha256:cf66a1cc64e807fb481933aab508db111ed0a8138cd3fa1073e316681b8f859d +size 363496 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index ab03a88d84..0c5abfc0a8 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:262dcf9b6a06b19a294c36458865dccbfc70c379797ab42903145dffdab5bcef -size 1353073 +oid sha256:9db75a6f57e7a7055d259e11dc1036118a465da89171e519c23ef86a6799c2d6 +size 1352673 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index ad368d6551..7d487e7697 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb6aac5a79f2ecf7fd5497ed4a990dca5e3725f7193e0a15c6b7c4df630d9512 -size 130840 +oid sha256:a1225687ae5413b8925f89594c625d400e9a552a0408f63f86996142115345b6 +size 130832 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 4d002270ad..3847ef4bad 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:053b64e34b962087a8aafdfac4920f3e6ee271b9713212d920f03383815565fa -size 420329 +oid sha256:39d07c9ee30b09f47ddc8631c00812c59e7554e499515dc08bfc38ab92e7da9e +size 420561 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 5e8ae4d4be..17f3b8e635 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e06e1e52b01f95f4405f9709d9629c8e2dc73f2165ed9709431e42e2a6f0eb8 -size 453104 +oid sha256:e93e0a570566b0ebc5d14d0abd98c2c6e3d8f784206e8a1a9c9f08171d4902a1 +size 453114 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index ce467d1cf6..58fdf072dc 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b307e1b0a939fb2fdfb21badf36a38ff0ef1e4ac2bbe51e225b248a53eccd750 -size 2299176 +oid sha256:5ae504837a2c95c143d4ec9cd3569e6d2be7d81c65c99afa4d1bc0c6c5c3194d +size 2299016 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 329f9baa3b..42c31a300c 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3cab989f11fa1ac3561bceef114bc76b2857d3fc4777caa56b07449fab8aa05b -size 384666 +oid sha256:e330e0e14b58210f9819fc62a8f7ebc5052692bd0e1ab3fdd3eba2d4d49ae12f +size 384695 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index cb117d0cf5..7f4987efdd 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8ce46b140469fb4164f6243677089827f2ad9702bd0c130d266adba0aa8f9e1 -size 1539371 +oid sha256:097053680738532e9114544aec49e9b18a9398d799f49c07dd6a2872229bda86 +size 1539414 From 5f57f79133b2f7275d38360b48dc46bbe00cec1a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 2 Oct 2021 17:54:02 +0000 Subject: [PATCH 5/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 2 +- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 143 insertions(+), 143 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 6cb6c5c914..7a6d526f44 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64fd4741b03d97fb27124f0a8e370cb45252cd36912dec15336c8bdb2a200397 -size 525485 +oid sha256:04d67194b2d8ae33e33011b9233aec0247541cf72f86174e5c0ed310eebe46fa +size 525418 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 43f61af637..549ae68e72 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f7e0c06e988ceb5644d3ae50ceb392fde9b3b1db3b294af15cf4d4e22c8ebe2 -size 868798 +oid sha256:30ffc7041ad90edb6f2c6881634b00ac1b78b6b9a6c56d6b8bb1ca1bbde4d876 +size 869281 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index 14c8416cdf..aa2229ea54 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7cd267379e945a28c672c33ed1afbc300c5ba476e6147a2169b122ca76e9eb99 -size 479502 +oid sha256:ba7693c9b19b0d63f74e7442f808f8cba84c6af2c7d34bc8abe0c170c3e81507 +size 479231 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 024b26f5e4..5427bafd2c 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8df03cf56c5f8c3e267195abab6f0cb9b9f47b3fccb1f4e56bbe476c7b29cd18 -size 2127692 +oid sha256:d84a55f90c9fa224fbbff2e9b1d06654aa6fe18ffcca36e039e26b273405ad2b +size 2127325 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index 478c1aebb4..b86f6a3f80 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9663f95e6da4e1827a6b0697cab61fa0665f4a93c4d631f622f5231bc584727d -size 433161 +oid sha256:66780609c473484d5ac1f76b66339b155445a95df3eac5c44a98f8769a15a169 +size 433122 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 57eb3559f6..43c26b2fce 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2270105425b5380fe7140383141b69bdebfad37e8d18a9911c8fc794a966f1f8 -size 1692251 +oid sha256:ebf4b1e8973d84fac60f65ce117f4280c4b884d23d77840df964f8234d7a7cf4 +size 1692887 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index e480f2fd3a..9df07475ad 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cda9898d6614b6a28f23c38eaecede2268a67ce3072a691d169b4d0ece18b25d -size 194879 +oid sha256:7557af3304b97e04cb3951e2e24e1364a7f60696741c506d53c8bf38d4a8c7e3 +size 194928 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index d0c84c2061..8647e1cf5f 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9de95e3ea0dbd1d3c9701ead92e5f390ed5293e68d6eedc63d8e6911a19fcaf1 -size 702690 +oid sha256:a0fb4a026d9a9e88120e824c5bd60eeefdd8f49ed2b9010f39d04bfdb876bfa8 +size 702651 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 8d3bba2d31..376d09bd19 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1696666b3d89a2b721f2744ca455c0cc72455f0c100c6fb579292d76ac7c6d5e -size 545210 +oid sha256:15636bd1ec0344323cf23d6b82d87f6d74111b36929817cbf6edc6c15b0c752a +size 545380 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 0c5da9df85..fed1c39a9b 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36042b14bb05d97a79b7707d524943e93e4d9edd32195183a27f398671398206 -size 2880926 +oid sha256:4d07eb66874629c3b2a623a5e85aae681eb039d8170609f37b1e6b1b5856196b +size 2881684 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index e353ba31ae..dbb352aaf4 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb68aea3622712751b05c2b02ba5017d8ffa63a7a998527077013d24693bcea0 -size 456819 +oid sha256:3b04739ea34522f6fba31a6f084d0da3e476edf9b3fac9b0fa6320152c2f2d83 +size 456889 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 8e2df662df..aff23c0a92 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dfcbaec36674ac6cc333dc384c82b20843b8937c34f9d50b5492110b65e2abab -size 1905893 +oid sha256:e2f0c96c67fa81e5543457726d0d0db45fa6f14f6531c2f98d1dddb575427c9f +size 1905724 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 2f3f5431d1..f45c865779 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4f89afc7ecf134e3f1f5c6f7283935c113472e3fa249004a08b281eaf099df46 -size 544900 +oid sha256:2821b940e1b3027307d0ef4b8a5eb51d281909a05f800d25014dbd20d8b01513 +size 544733 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 832af6d70b..56bd116d36 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8e02f9c400e4421a86d100229e9d0a91c027549e2fb2925e1c397686af36d28 -size 906846 +oid sha256:4929ee1e774f4ace2e621ab544773bf4cb8a1d783a4322ef96a78ef5926a27b8 +size 906880 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index ac590423bd..9f39a8afba 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:421f3d4ba07d50ef1f40b30a932327dbc4b3c3bde20b1a6ea776a9650d7de0b8 -size 499830 +oid sha256:0e945ab0365c2241e02978731da6dd3b9e549cabd9f06cb6c12228d0b23d9a85 +size 499801 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 4f86a758b8..4bef5ee7c9 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:187d2f2758519be9e87277571be3e8882707ba1ff26d1fed41721574dd55999f -size 2232830 +oid sha256:8a1c46c1268b972333dc2944f4def02802d1ae73e93f00f99358f36e76a0d36c +size 2233561 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index 89dbcb70fd..dc466a3e20 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:339efdc818f1275c7d7e51b18345affb30af7cf6e904df92c71b4c3708135acc -size 453509 +oid sha256:c52b9ba9f991e37b165359f21db539885c49918006ae89072de1e534fca52572 +size 453512 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 1ad2c476b7..739671cd6c 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a1da5de7aea23e6d7ce934c8cb63abc18d61c3c2cf201723c9ad34a953020bf -size 1766438 +oid sha256:afdad517a70da8ac2285da1bdecafef373e13551ba3cb5e34eb4068120318870 +size 1768547 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 5138e72638..a36a1e1c6b 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51efa14e91f167dfdb92cbd90a184efa4d21d440e9008b337592af2c76450b49 -size 193605 +oid sha256:b8830107444478a34b10b27786cd73b184220967dc3285af32e79e16c521bde1 +size 193485 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index 2a7bb32f01..bef5b8d6b3 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6be805c984417258114050ca80289a28e279f26325bd8047078149c56df61bd2 -size 693857 +oid sha256:1577b96db10ff0ef7af7d261c67e36f6a937cae19b2c693fa0d568c857bd0539 +size 694313 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 61c496729d..41b18df78e 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:824e901ae25a9668d621b8aaed36ebf7a6554d4d7d255756a3f96c0e100be886 -size 567923 +oid sha256:98333a415483ab90439bc22829f72d5fdc78663150e43716e52c6eaf25d967ae +size 567728 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 1e3a985a0c..898af10bad 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8dfd45bfd128304bd4db92887b4f9e00b199eaa1d1e5d39d3778518dbdb1c384 -size 3008185 +oid sha256:99b47d71a466dfb77230d9c9c3a486163cc32e675f6232854fab3ab2dc443e82 +size 3007124 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index b3a6a35a3e..0b99b1b6a2 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:304e8a3ffd46da2ece0ae988c3ef7d63f89bdf9f2ee5cf74808632379ad1c67b -size 477515 +oid sha256:a07a14cc918a9c4702c2ba82924ed1523b48fb9409f92b667f1fc50e9977c8a8 +size 477576 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 488748e1a8..5d499c517f 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d958e3fa147d054131da7faba1f592b7d47c4d0a4b8f727946dca2ba99b352a0 -size 1993020 +oid sha256:3f9244b2a551aef89d524c5c0d9480b4671e5b4548b1274aa67f193c71c7ffb0 +size 1994623 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index fd3b6bbcaf..3d55e97556 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff6c9313a08f1cdc071de7214ba5a37e29b0cc7eaba4bd12e6ed4ee30b0cee7b -size 557141 +oid sha256:5c2ba8fc94efbb49c2e3fa404d452f935098e3a4bc93cfc869306e4c13ab7f88 +size 557422 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 787adab5ab..04b255afcc 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a35943928c8bbaa9dd03f471769f2a34f06b9d2f97b2289deebd342fcc2bff48 -size 929648 +oid sha256:78f0caac77c9cd4f409269b2df0ab01161f156299275556beeebced4394e9585 +size 929498 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index c99e2b29a5..653888d6b9 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:053e6696a3d65ed3b565657b0ba344f7854fc77177e894459e88b6bae02d02ca -size 508726 +oid sha256:af38e7a0c643e63065220b6b23a89e9f45d52ae9bac642ffcd71b79308179555 +size 508538 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 77826250d2..183e305d8c 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1542f379fd9236173df8d5ff98f5f1863f9c936f922224a68bcc6eea2c3fac6c -size 2285045 +oid sha256:8e613524fa3134d890b700207ccd77590dc5bf7ec2ae6f0626c1e0bd4a8658b8 +size 2284506 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 668060c3f8..57bb9c0296 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:719d96f7ae64505a7356e1e6b040b8c6a7d5bd4d0a0247e7035010d402030dcf -size 462967 +oid sha256:b80b90ce6f44a0ad6140ac326598d4057da95fcfd8e4bcff0f6800769535bbd4 +size 462994 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 12a63af787..7410dd9074 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a63b81390f1c887eb616bc5d53e0bf78f35033336412fc55d1c103b49e6accce -size 1805259 +oid sha256:65202d477c0afbb9a2e105d4147c99049f1e572a3bc150d6ac615b858d2bc4bb +size 1806253 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index e2f1a4b0ef..3fe2357864 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4336edd6ba0926b6c4ef285829db060ed3128a648cd275c51c9cfee1a7b5e96 -size 193696 +oid sha256:7e2c19fae15ee5925c816d24df482e38f708564b3ea2256c7abbca424ecdc2ab +size 193631 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index fba410c6d7..bd95e4c3a2 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:529dba16feb7d0632cd94e75d0eab8b8592c44bd14f99f0453e377a6c26709da -size 694247 +oid sha256:b23501ac50b2899ac16ec9dc0a30657bc73489fd1e9a719c760f3b32c6b441a9 +size 694297 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 7f47a30042..ffb879dd40 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd7a825d6b715be3eb7abe5dc1ab1b00a6d6ad58325a81d4ed301c8da5c8e825 -size 579829 +oid sha256:e444553e134479241b9a8a15b6024661f2963a7d70874e98ba6edf20b024dbe6 +size 579944 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 9062b75593..92f124f8e2 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dab233a9245b52101729454502424cab2bef52c5268ca3e8699271a0768a22a5 -size 3073327 +oid sha256:566c178a3d492cc5c5e772b7ea633c3a8e463ecea6e9379c5e30476947fe06f5 +size 3073865 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 4cc368a2fc..a51551ac04 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e809f0372235a3a667fde5731fb2b20b96f2dfe913b22dab87b29e8149bc3cb -size 487194 +oid sha256:ee00987f5eb9175589cad726af3ea5391fe0447550591a7919c1261d7f2d2b91 +size 487203 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 7917b59e27..543ee21ca7 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7cfdadc90446ced652b230a66bcf670330c0b1336576618b1ac33499e00bce7b -size 2037155 +oid sha256:1a3903cbcdb323c59488682f6d444419b83983966bdb693d48d13c35237157e0 +size 2037212 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 1785bb1cfa..e26d07bfeb 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:63d04aab7c90468e1d478bcffb36416f6bba39738ac01be3be43ab74f357011e -size 567808 +oid sha256:57cc3e08e8c4b7ac7e32dbcc0358fadc85bbdaa8fb3e62e796d2f5128f5dcc13 +size 567896 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index d1d0428db1..37ef60a94e 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a38f7716a23f1e84475243f3dce180fbae45e3e2266ea1612a6ad1bce284bce1 -size 948419 +oid sha256:17db8c130cf89945aaf2e5cbee5bcc87a6b503a34d377cbec04967742147e204 +size 949146 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index 97e4c8dec6..acb76e34b0 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bd6d2d8fe706cf74e4eb99f779daece831268b951434b2e3de6c32bbfb57ed5e +oid sha256:f5c20df5d47de5cac15910845cbc268ea025c0aead9a92f61e73004529b509fa size 517470 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index 2c1bdbdcb3..fcf5f720d8 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:085d85f872525a23066b8564e8c8fd8a5a82c2044090777a4811b3e641cac3c4 -size 2332565 +oid sha256:fc8938f551df296a06c0bbe7aa04cab1b4013050b013de0577e8698b24e35c79 +size 2332093 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 48e1243eab..5dab28750a 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6536d9bf043f5cb170c7ae437cce867c213f41b6be565327eeb3be9b97b6d7c6 -size 471286 +oid sha256:252d78184e993ed35e2e5083cbf1ab67c585bc5c7dcd9806b52d5fd51a7cf8e9 +size 471266 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 4266db5a05..28e7b8e73d 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45af6f4fbd0bcd3a96658c7b6d5dbdabc5ce812b9f01880ef89af8f9ae5b1ebb -size 1837883 +oid sha256:18083e1d9941f0fa4f3d11808f0754a67b08173d7b7199cd2ea73dec2b1d020b +size 1837697 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index d31c966d6e..f9018b235b 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff0e03fdfb65c54bee5ea06dbf37ce99cfdebdbbd9aec3cf528af7b3b4936212 -size 193578 +oid sha256:7227971b99e780f8a3f37b53c778a4ca117d65ffbfc028509de5ef75aad63813 +size 193813 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 65b5b61df5..115b4280b3 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9cee392d6f0080a7b2c796cdecaeb6fc3fb34c2c375bb31b295e606ad5acf3d2 -size 694168 +oid sha256:93b16ec32e7e89dd5651c7becf59a1d68d3594b266fedbc2cc597cd6851ed914 +size 694110 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 4b84e947ba..1628787520 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:697aec86f8695db0b858e075773f06d179964f49ec07561330cdc49c33c09ca9 -size 590522 +oid sha256:ae18f9189232d5b3b9aaa8a470347a547b481f4fcb168bc94ded4c56467b2046 +size 590611 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 1fb5ab8a08..a64d979ed0 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31b62749ae67c005d759adba43796ca706f2ca8c7382473ea1fee860a3af4737 -size 3141636 +oid sha256:12215f3e04259308f82a5aa00874b3e4ff2033e5fa3aeac5305c6f901fb5bb6c +size 3140964 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 078dc7903c..0508f176de 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65bf870778a458b9f5b338c6c71c0ff44437e18ceceeba30013d731943b02c98 -size 496627 +oid sha256:8ffcc7f01f26d9144e1214777180487920de5350ed7a5307ad603d588fabded9 +size 496698 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index e0ee489009..3b9725a82f 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9fb2e79fab5b95f4fdc8b3d7c83013e66fd30be7f1f5707d0218f61fde830cd2 -size 2077987 +oid sha256:6ee9ee221a12ab6656ac429556d9e3875654e4f37cb36c08ca5063b7ab322478 +size 2079070 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index ecbfe9a98f..b5671ef31c 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ae0742a297730e67b8a57b76b6cea8917114b650240ef2361f3595230c02ee2 -size 770996 +oid sha256:349f8a9d6352f1bd768ed3901638fa15156684f1a3a20a52686a2cc91c6d4ffb +size 770979 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 0a58aae016..ae2113e4d1 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90b8378cbb0808eecca39a215aa1a1e04a84bd06c0178e7a936ad95a5396c7a2 -size 1171790 +oid sha256:d7c7e52e2b50df77b8f1375879a332ce95e1ef270042a46097c79a89ff3386c8 +size 1171889 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 65149eb937..6caa020ea0 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:224e5d6d7fbbe5665aa70badcc000475ddb59d14227064b81eb1bd67a69a7edb -size 690140 +oid sha256:927d005273c6c9ecca413e553140dc2776d9d919a659437e71d2d94e05ffea25 +size 690975 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 266e9b8732..a3b5ebcbca 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:060146119a311c0b4d9c127436355c1c7f1b8d25b5c4efbaf580ee57f6cce1dc -size 3123302 +oid sha256:aec5d27fabe916915410004ab5420e1550519a94036db9e6f00f98c19e9a6a30 +size 3125873 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index c827d3f642..8dee19936c 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:094e7b2025d79fa86b5439d48929bd75e1e65d98559cf362d4d845b977a91abd -size 636937 +oid sha256:ff9ad1b2f2ab5825f88fa998d9e4665e4ba9e5984dec0cf2cc263e75fb10e057 +size 636939 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index ac3d99e4ea..f1dd8bb781 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aaca1f6faf5d803be7338bd127eec3ffa20d1ae3939621bfa6d838bbae54c0e4 -size 2419199 +oid sha256:bc7655c3d095e22d698546b807601d6ea2924b6c460cf2abd526c5dce3004bd4 +size 2419822 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index f3b23f87c0..36f3d1118d 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1a129aed0829fffa670b7a4f445c3426a56f11e88f471536c9e050d1346e604 -size 205267 +oid sha256:6cbbb9061b3c3493aab5ae1df96d238de0ea0183121a229b4003077092ff3649 +size 205277 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 8f7093d39b..1ed3a6cfc5 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b71b7882404ff8464cb34772135fbbf7091f0d1b08408bf058df5e4d2485ce4e -size 651740 +oid sha256:503e86ea5db7a5cb22b140ce44ba0e4f5dca0a07d2862aee5fab61e55444efa1 +size 651180 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index fb3569a142..f71b671809 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26cedfd83b08934eebe04503704e6a43aba8a83fb9b6289ec3570d119fdbb44a -size 795574 +oid sha256:4dc8ffbae69eab1ef4a561459407a4837305f3c84075fc7d060897465229cb94 +size 795703 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 674d3e0707..3f0eef14fb 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d2d44ca809140dac9dc535609835183d4a895d7499446c5e95dbf3e7d23fc330 -size 4151054 +oid sha256:3a2b4f85695fec0f0bce34cb430b2560e16f08bfa16b9df61887f224c02475a1 +size 4151754 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 8bcabbbe22..a7b83c4f0c 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a19ca956c0ef44270ff516060aab622f48106701d927bf42d06f033b6eb22771 -size 669725 +oid sha256:d0c2eaf82fffc1e0ebb8de32e2ca8224512498dc946a4efb92f5714dfef77185 +size 669939 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index fbf5e7af80..1eef3ce6cf 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a38837d7fead2825b658c2a74980eae1c6e65f585c4d4945c7831ea4c9b5e7a -size 2751160 +oid sha256:144d76f4ec000417b7efe82fdaec653a4b342ddecf0e6039eb96c1d200dd59ed +size 2751993 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index ec66574d1b..d95e4fa4bd 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2309ff85c6b18c401f81af2b1f199b227c8bac25e7daf12d875d042327bfdd1a -size 433705 +oid sha256:57a5136de48ddbf93bde949862b33e3ed0217baff5feb3ac219633c225f0c96a +size 433822 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 102f3b4524..a02315529d 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:54b0d3f604478bcbc3f229004d81b6de882187ae96f9803ef67e8ff94de41b86 -size 692377 +oid sha256:e342903b876ab7721930362d7a233353a53b19af0647de69327de7a2bd7aadd4 +size 692733 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 44c23f4f01..447c567873 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7088f081542300ddefcb8815eda524e9831021751d4230599bbb5108486de96c -size 400561 +oid sha256:99a39dddf42d0f8f10eef088daec6bb2cd75f0dc823bccd2f49ad1289ac8510e +size 400491 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index 4c80d6a5fb..e7a4266777 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33f84258753770ae605ccc0cea8f799bd2fee80939c6aaeed5fc018e502ad4d8 -size 1744672 +oid sha256:9648f6052b959f2e3d1b22d35d76411fbcecede04d2f661705a240279bc3c5d7 +size 1744733 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 27a0335aaa..f1720da8e6 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cf66a1cc64e807fb481933aab508db111ed0a8138cd3fa1073e316681b8f859d -size 363496 +oid sha256:f8f672de0a2ff462365394e45d0df2a2bb85c6095bc68c6ae1b82e9979262174 +size 363647 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 0c5abfc0a8..6a95c602e3 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9db75a6f57e7a7055d259e11dc1036118a465da89171e519c23ef86a6799c2d6 -size 1352673 +oid sha256:11bdd001408d4e9f7212eaafb6c67d5a173dae73636ef0b5757f2a7b7610ffd9 +size 1352998 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 7d487e7697..82ff52c740 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a1225687ae5413b8925f89594c625d400e9a552a0408f63f86996142115345b6 -size 130832 +oid sha256:be86f5fe545b1a77fe265b0cf3afbaa0cb72a0cb64043b6acae4d9ad89d25966 +size 130911 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 3847ef4bad..296cc9bd1c 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39d07c9ee30b09f47ddc8631c00812c59e7554e499515dc08bfc38ab92e7da9e -size 420561 +oid sha256:4e60fec363c25a93d8998a59c10cd415bc57bd4a6e65f847d9bda98e5c6479fe +size 420310 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 17f3b8e635..13dd97461a 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e93e0a570566b0ebc5d14d0abd98c2c6e3d8f784206e8a1a9c9f08171d4902a1 -size 453114 +oid sha256:c9c2d0d5e0a9c9356870702f2ea000fae998d2e97f75d944c9d36948e81e5976 +size 453217 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 58fdf072dc..6440cc7aed 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5ae504837a2c95c143d4ec9cd3569e6d2be7d81c65c99afa4d1bc0c6c5c3194d -size 2299016 +oid sha256:6beaf68ab130b897467ceaa6488898a34ae8cc6356cf57596f1bf6577ec85502 +size 2300022 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 42c31a300c..776bccbaa1 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e330e0e14b58210f9819fc62a8f7ebc5052692bd0e1ab3fdd3eba2d4d49ae12f -size 384695 +oid sha256:37a1f10b3070987953a444b304314df13eea31cd9918362f852ac022b1bd7acf +size 384749 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 7f4987efdd..d95ed3f9dd 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:097053680738532e9114544aec49e9b18a9398d799f49c07dd6a2872229bda86 -size 1539414 +oid sha256:fb9f949605402263245de69a580bb3f5ab5180dfb76f3750a4a1a1190723b1df +size 1539430 From 2910aaf449a66ad6f8d8241ae8df365d1e1ca88f Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sun, 3 Oct 2021 02:02:02 +0000 Subject: [PATCH 6/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 7a6d526f44..d2409a3a33 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:04d67194b2d8ae33e33011b9233aec0247541cf72f86174e5c0ed310eebe46fa -size 525418 +oid sha256:61812d8c1586b9778184b02c078dcda2ed9530679d51c141e613720e55a5f584 +size 525482 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 549ae68e72..f84fbe71a8 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:30ffc7041ad90edb6f2c6881634b00ac1b78b6b9a6c56d6b8bb1ca1bbde4d876 -size 869281 +oid sha256:8e07c844d338a08f92395b770938406b02f535701ac7ac9cfdb0e3962b6e0fc5 +size 869020 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index aa2229ea54..a1b2db8ff9 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba7693c9b19b0d63f74e7442f808f8cba84c6af2c7d34bc8abe0c170c3e81507 -size 479231 +oid sha256:1d717af5873424fe8faf9b74c4dcda82cd44f90d5baef950005a8abfe13983d7 +size 479278 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 5427bafd2c..f0e8ffb684 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d84a55f90c9fa224fbbff2e9b1d06654aa6fe18ffcca36e039e26b273405ad2b -size 2127325 +oid sha256:6dd562b1a6067f1e36a227014d5cbf98fbad8b0899529905fbada80fa79f7332 +size 2127869 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index b86f6a3f80..336a156894 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66780609c473484d5ac1f76b66339b155445a95df3eac5c44a98f8769a15a169 -size 433122 +oid sha256:fbd5a34e1be031ef2fdf9d9da1741972b7bf6e89bd787f6c47f36dd438dc2382 +size 433150 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 43c26b2fce..b5509ec82a 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ebf4b1e8973d84fac60f65ce117f4280c4b884d23d77840df964f8234d7a7cf4 -size 1692887 +oid sha256:aaedc42a4ec47228a3d8b9f37c9019c4d5c73323510ffc5232267e32878e4389 +size 1692639 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 9df07475ad..ab95bea9b7 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7557af3304b97e04cb3951e2e24e1364a7f60696741c506d53c8bf38d4a8c7e3 -size 194928 +oid sha256:6df1cbec1c5dc13da423ec5a21955135836aedee04b8b13349f9ed0ea3a0a63c +size 195119 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 8647e1cf5f..99a6417dab 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0fb4a026d9a9e88120e824c5bd60eeefdd8f49ed2b9010f39d04bfdb876bfa8 -size 702651 +oid sha256:f7c38390d07b1841331305df413b5b74fdca8c53c70be24586763cd5889d8029 +size 702698 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 376d09bd19..9eb4b8998a 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:15636bd1ec0344323cf23d6b82d87f6d74111b36929817cbf6edc6c15b0c752a -size 545380 +oid sha256:d9aa72760f42c7f0765ae0fa2930d2a787510c3a6dff3d875e75fe09bdcfd622 +size 545359 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index fed1c39a9b..39efb6e4f7 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d07eb66874629c3b2a623a5e85aae681eb039d8170609f37b1e6b1b5856196b -size 2881684 +oid sha256:4b241142edc3e32d2a699d2f468c4067828f3b77a5b8f46bba4263b24fb77b6a +size 2879811 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index dbb352aaf4..7b47fac3d7 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b04739ea34522f6fba31a6f084d0da3e476edf9b3fac9b0fa6320152c2f2d83 -size 456889 +oid sha256:71d58a6aebcd7e3c500e14b87f52e8c731b4611ed872ddebe5b4856e46c9bcec +size 456907 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index aff23c0a92..795d717060 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e2f0c96c67fa81e5543457726d0d0db45fa6f14f6531c2f98d1dddb575427c9f -size 1905724 +oid sha256:055febfc642ddad69fe94017d70852c8352d6dc537ebef88fb5aeb162edfa8d8 +size 1905615 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index f45c865779..42612442a9 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2821b940e1b3027307d0ef4b8a5eb51d281909a05f800d25014dbd20d8b01513 -size 544733 +oid sha256:9a152c4909c3aa7824d5bb921c8911105a7514767568f204e288e3fa0e7dad4d +size 544916 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 56bd116d36..2bd2402be0 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4929ee1e774f4ace2e621ab544773bf4cb8a1d783a4322ef96a78ef5926a27b8 -size 906880 +oid sha256:27303dc3a6d6a746bdedcac81ba34b54e04f7631502fd46ab934d57ea25ba627 +size 907407 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 9f39a8afba..9777ae5d83 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e945ab0365c2241e02978731da6dd3b9e549cabd9f06cb6c12228d0b23d9a85 -size 499801 +oid sha256:88e115e4032109ce9b252880a693d2bae1e1c555c53c7ee96694864a984acd06 +size 499874 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 4bef5ee7c9..33903f0858 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8a1c46c1268b972333dc2944f4def02802d1ae73e93f00f99358f36e76a0d36c -size 2233561 +oid sha256:ad4b80f2a24e0899a4432946eba517cfa0854029df1a6a72eb0e6f741fe695bd +size 2232890 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index dc466a3e20..9890d79b3a 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c52b9ba9f991e37b165359f21db539885c49918006ae89072de1e534fca52572 -size 453512 +oid sha256:ff50178108107b49b99c24a34f21bc85d812798ac4fdf52432ec155074089a04 +size 453553 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 739671cd6c..c823971b20 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:afdad517a70da8ac2285da1bdecafef373e13551ba3cb5e34eb4068120318870 -size 1768547 +oid sha256:c79f2dd53956e9b77ea292645c68586dfd8ba43572c4ea98afc5352dd527f64d +size 1767318 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index a36a1e1c6b..a1e98793bb 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8830107444478a34b10b27786cd73b184220967dc3285af32e79e16c521bde1 -size 193485 +oid sha256:300add86065847c4a86dd8f752a75d62807e38620d1fff8a4078840b5ce43896 +size 193636 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index bef5b8d6b3..bddd4fd06a 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1577b96db10ff0ef7af7d261c67e36f6a937cae19b2c693fa0d568c857bd0539 -size 694313 +oid sha256:23cc7c8e3c6afc1a65f57cdb21a6a354e7bce910996d0eccf6bab61ea918dbcd +size 694256 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 41b18df78e..877314d812 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98333a415483ab90439bc22829f72d5fdc78663150e43716e52c6eaf25d967ae -size 567728 +oid sha256:ff87c08a5e6ccb224e9cafde64eacbe76c431d8eb7cf616c267a23c356104f85 +size 567815 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 898af10bad..ac3a1eb471 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99b47d71a466dfb77230d9c9c3a486163cc32e675f6232854fab3ab2dc443e82 -size 3007124 +oid sha256:eeaa32e0e58e7e81f02c347bca6fcc658ca5b6090ff0c73c53849809647ac780 +size 3007537 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 0b99b1b6a2..7462a71f9f 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a07a14cc918a9c4702c2ba82924ed1523b48fb9409f92b667f1fc50e9977c8a8 -size 477576 +oid sha256:f7a6cf205781dd5c57935343fb81062f8681dfbcc2ed767d6e54ba6d07e26182 +size 477742 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 5d499c517f..6baaac1709 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3f9244b2a551aef89d524c5c0d9480b4671e5b4548b1274aa67f193c71c7ffb0 -size 1994623 +oid sha256:2c9985da0e1031634e4d3b592edcd754a447825f55668e4e6e202a8d8948d465 +size 1993783 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 3d55e97556..de4d494e67 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c2ba8fc94efbb49c2e3fa404d452f935098e3a4bc93cfc869306e4c13ab7f88 -size 557422 +oid sha256:2b7320e1cca4f8af036c09a688e7f65eac7ef7495ab4734754a0296fb18ad6c9 +size 557376 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 04b255afcc..f7a7e767be 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:78f0caac77c9cd4f409269b2df0ab01161f156299275556beeebced4394e9585 -size 929498 +oid sha256:585b04e813c597a85887809a61f51ba0d6519a52d33319b980da4a1fbf2699b8 +size 929500 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index 653888d6b9..e07466451a 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af38e7a0c643e63065220b6b23a89e9f45d52ae9bac642ffcd71b79308179555 -size 508538 +oid sha256:85a4f61d03c42bb25cdd689abeac4557c338a9c2524a3a16a6dd41451fca9fbf +size 508309 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 183e305d8c..b65fef3e79 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e613524fa3134d890b700207ccd77590dc5bf7ec2ae6f0626c1e0bd4a8658b8 -size 2284506 +oid sha256:36fc060dc8a92ea96be1c7261c85ca7bd07b20c93e54828c51842abc82ba8931 +size 2284947 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 57bb9c0296..51be9db72b 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b80b90ce6f44a0ad6140ac326598d4057da95fcfd8e4bcff0f6800769535bbd4 -size 462994 +oid sha256:10f781acbb224d67606fd66a9104f7d96b4fecaaf2bd44d04df005a55e819c86 +size 463099 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 7410dd9074..0acf9f56c1 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65202d477c0afbb9a2e105d4147c99049f1e572a3bc150d6ac615b858d2bc4bb -size 1806253 +oid sha256:eb163c34ee60d015da1c5daab6e08aea0b7d4a9afe14e51587eb17e5d475c598 +size 1805856 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 3fe2357864..fec9de245d 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7e2c19fae15ee5925c816d24df482e38f708564b3ea2256c7abbca424ecdc2ab -size 193631 +oid sha256:58a7d9cbef71afc32f315dd72486c7e6dead27794df22eb478151237b387380f +size 193652 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index bd95e4c3a2..538e2e471c 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b23501ac50b2899ac16ec9dc0a30657bc73489fd1e9a719c760f3b32c6b441a9 -size 694297 +oid sha256:cdf17c2501863d8f2da4f7d5a11ce169c95908176fef7ef957c2ba71262f2a7b +size 693963 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index ffb879dd40..1f8cc13161 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e444553e134479241b9a8a15b6024661f2963a7d70874e98ba6edf20b024dbe6 -size 579944 +oid sha256:d0e34cebac12d169ed69069bcae00d18fe7b6136bc910238345f6425bd850313 +size 580157 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 92f124f8e2..d0c148fd32 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:566c178a3d492cc5c5e772b7ea633c3a8e463ecea6e9379c5e30476947fe06f5 -size 3073865 +oid sha256:ce673ce5b5a9278c544cc94564aa404cdd07555130de1f187c9356d499428944 +size 3074883 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index a51551ac04..277a068353 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ee00987f5eb9175589cad726af3ea5391fe0447550591a7919c1261d7f2d2b91 -size 487203 +oid sha256:420b62b1c5c44f7d2167d03d799d6355bf5a2dabe8b653ed96acdbf8acb099bc +size 487204 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 543ee21ca7..2e957315ea 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a3903cbcdb323c59488682f6d444419b83983966bdb693d48d13c35237157e0 -size 2037212 +oid sha256:22f28cd6909e783901377408f0cd7da5f4e9be56e859793c399205142c2ed5a0 +size 2036565 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index e26d07bfeb..79e90fc544 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57cc3e08e8c4b7ac7e32dbcc0358fadc85bbdaa8fb3e62e796d2f5128f5dcc13 -size 567896 +oid sha256:5a9ff065a097517b6d550533a001f30bfbb5e3462dc65bb7de0484f736436aeb +size 568162 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 37ef60a94e..2a3c8a55e0 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17db8c130cf89945aaf2e5cbee5bcc87a6b503a34d377cbec04967742147e204 -size 949146 +oid sha256:efa712d6420b8c40ecb6450253e749ab09bfd70ddd398f5a84bffb20e3e34ab8 +size 949243 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index acb76e34b0..e84ffc9509 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f5c20df5d47de5cac15910845cbc268ea025c0aead9a92f61e73004529b509fa -size 517470 +oid sha256:22d6b084895a98dbd6d1291cb0fbf44ae6bf96caeed9deddab885095eab952b2 +size 517316 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index fcf5f720d8..37ce1567ce 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc8938f551df296a06c0bbe7aa04cab1b4013050b013de0577e8698b24e35c79 -size 2332093 +oid sha256:5b95ec085e6b2aeac783cdc32ec9f34c2698891df48b4b3e639c33b88aa2df5e +size 2332689 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 5dab28750a..561ac58dd8 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:252d78184e993ed35e2e5083cbf1ab67c585bc5c7dcd9806b52d5fd51a7cf8e9 -size 471266 +oid sha256:e9adc25d94ae03f2a58fffdc05b9c1cdb38d69ccfa33c280e80fdb1369efbb4c +size 471445 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 28e7b8e73d..6194c5176c 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18083e1d9941f0fa4f3d11808f0754a67b08173d7b7199cd2ea73dec2b1d020b -size 1837697 +oid sha256:f7cfecac9bf9e028dcf767e16cbb81605dbf963fc55e4e651f5d388ea6144eca +size 1838165 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index f9018b235b..9946a8574a 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7227971b99e780f8a3f37b53c778a4ca117d65ffbfc028509de5ef75aad63813 -size 193813 +oid sha256:d87092ed7eda84554b866986bf550dead0731358fa9f18194de54dd92683a59d +size 193627 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 115b4280b3..861862a9a3 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93b16ec32e7e89dd5651c7becf59a1d68d3594b266fedbc2cc597cd6851ed914 -size 694110 +oid sha256:02776ba6e709b2ee2dd13ae6cc2d7d43e6e37b7f5c91f90434655bd100ac1d3a +size 694075 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 1628787520..a5d388f54e 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae18f9189232d5b3b9aaa8a470347a547b481f4fcb168bc94ded4c56467b2046 -size 590611 +oid sha256:fe92acbb8ab8cb27714077e917bab381db07e42c0f76fde53cdd5f62d9f340ff +size 590157 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index a64d979ed0..8bc39730fb 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:12215f3e04259308f82a5aa00874b3e4ff2033e5fa3aeac5305c6f901fb5bb6c -size 3140964 +oid sha256:94adaba842020817d57753318e13f17bbbd8be4c64acaa7067d342987f8401c4 +size 3140693 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 0508f176de..ce90b14339 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ffcc7f01f26d9144e1214777180487920de5350ed7a5307ad603d588fabded9 -size 496698 +oid sha256:44ab0959f6d6ab35586fdd5d238cda845ac9705a652a0f4a1a42d39cc842f8b4 +size 496598 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index 3b9725a82f..fb5c59c50d 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ee9ee221a12ab6656ac429556d9e3875654e4f37cb36c08ca5063b7ab322478 -size 2079070 +oid sha256:f39687f2186e75ca9c22471e7bac2a785b74b98dc37060276acb1edce554ff84 +size 2079009 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index b5671ef31c..dbd24eb38c 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:349f8a9d6352f1bd768ed3901638fa15156684f1a3a20a52686a2cc91c6d4ffb -size 770979 +oid sha256:7eae9bf30986a256a79c9218eec6a82fcb21b91ab9c260c303fb4e4dc69e8568 +size 770716 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index ae2113e4d1..134cb260a4 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7c7e52e2b50df77b8f1375879a332ce95e1ef270042a46097c79a89ff3386c8 -size 1171889 +oid sha256:81dca2362d2f5a92c3590d08739a4b9275088b2fc229cd495bf75b33e09d305c +size 1171457 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 6caa020ea0..1302365c23 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:927d005273c6c9ecca413e553140dc2776d9d919a659437e71d2d94e05ffea25 -size 690975 +oid sha256:20dce260ffae06c14d28ce49a6d398286fb44420903541ca8a54e8e68d26a410 +size 690737 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index a3b5ebcbca..1397e0a300 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aec5d27fabe916915410004ab5420e1550519a94036db9e6f00f98c19e9a6a30 -size 3125873 +oid sha256:96418bd3a763cfad36c410fde036712565e85006c2c43fa909f05f620cf24dd3 +size 3125378 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 8dee19936c..da4a9193b6 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff9ad1b2f2ab5825f88fa998d9e4665e4ba9e5984dec0cf2cc263e75fb10e057 -size 636939 +oid sha256:b937d44a43fc6bce0a9256a093446414ec4203bfa91688f57c1be3d7b22e075b +size 637033 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index f1dd8bb781..a03af11bae 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc7655c3d095e22d698546b807601d6ea2924b6c460cf2abd526c5dce3004bd4 -size 2419822 +oid sha256:26deee5f5d5919bf80ddf8081c8f2e4c3aee56256b924d49eb9f38be9d3489c2 +size 2419294 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index 36f3d1118d..f9de43e927 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6cbbb9061b3c3493aab5ae1df96d238de0ea0183121a229b4003077092ff3649 -size 205277 +oid sha256:121f0b09b737f22d3a3c8748ecdabd94ea8d0c36403ca23b650ef31443c5d8d9 +size 205268 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 1ed3a6cfc5..9afab75957 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:503e86ea5db7a5cb22b140ce44ba0e4f5dca0a07d2862aee5fab61e55444efa1 -size 651180 +oid sha256:0df8810791925650ec803dcd660a852cfbb6fb44961cc9177f22b128d76f38c9 +size 651340 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index f71b671809..916e8aacba 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4dc8ffbae69eab1ef4a561459407a4837305f3c84075fc7d060897465229cb94 -size 795703 +oid sha256:3ba552b3c24cebdcf8c74660dea2a687508e1efeefd31d2a9afc231e721b6f20 +size 795580 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 3f0eef14fb..4d98bc8056 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a2b4f85695fec0f0bce34cb430b2560e16f08bfa16b9df61887f224c02475a1 -size 4151754 +oid sha256:0b3a07f1bdc1a7c8db4884a847fbcb236bf1acd1fb0b00f7062f8d3bbb06adfb +size 4151804 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index a7b83c4f0c..16a4539208 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0c2eaf82fffc1e0ebb8de32e2ca8224512498dc946a4efb92f5714dfef77185 -size 669939 +oid sha256:2693af559851371cabc190d0ad581aa8769665d076b5c3a7f4fe1d85a6db518a +size 669968 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 1eef3ce6cf..044775f0fe 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:144d76f4ec000417b7efe82fdaec653a4b342ddecf0e6039eb96c1d200dd59ed -size 2751993 +oid sha256:017c1bd3a5f0a8d6a946ac3bb05406c9f9db0ddf89f0a6d7ad5cf1a1267df923 +size 2752079 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index d95e4fa4bd..ba69dc2e53 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57a5136de48ddbf93bde949862b33e3ed0217baff5feb3ac219633c225f0c96a -size 433822 +oid sha256:21f4d977a4de68c19afec1ae7111d733c2a838ecc19a624bb0f61781d73f9801 +size 433604 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index a02315529d..a908b972af 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e342903b876ab7721930362d7a233353a53b19af0647de69327de7a2bd7aadd4 -size 692733 +oid sha256:967c8689610b1d050cbc0496833ee63d3b03303d1eec995cefbf37a26dfde457 +size 692577 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 447c567873..0b16a4fffe 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:99a39dddf42d0f8f10eef088daec6bb2cd75f0dc823bccd2f49ad1289ac8510e -size 400491 +oid sha256:abefd507f2d7b560c625db91605246a9450d9259c21efa6942e88fdf2bd3b676 +size 400510 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index e7a4266777..bb2c78c44a 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9648f6052b959f2e3d1b22d35d76411fbcecede04d2f661705a240279bc3c5d7 -size 1744733 +oid sha256:304d6c4f2f14e3bdeba1759449366cdbb2146bedbb39b88abbdf940c74d671d6 +size 1744389 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index f1720da8e6..ec707a9ed8 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8f672de0a2ff462365394e45d0df2a2bb85c6095bc68c6ae1b82e9979262174 -size 363647 +oid sha256:2b6a6c36052ea080ea9954a1dfb3df8e46a37c97baf8782529ac6de17584178a +size 363526 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 6a95c602e3..8177a1dab3 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:11bdd001408d4e9f7212eaafb6c67d5a173dae73636ef0b5757f2a7b7610ffd9 -size 1352998 +oid sha256:cc592db954367da9719510475dd06e0397dbdee8b1ece01221b462875642d662 +size 1353051 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 82ff52c740..6eab80ae19 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be86f5fe545b1a77fe265b0cf3afbaa0cb72a0cb64043b6acae4d9ad89d25966 -size 130911 +oid sha256:8cdfc19b3af5666bd0463a897a59e93a40dbaeaf47a71dcaa9e0e9dd9d676066 +size 130871 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 296cc9bd1c..dedb6d5fbe 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e60fec363c25a93d8998a59c10cd415bc57bd4a6e65f847d9bda98e5c6479fe -size 420310 +oid sha256:ca89582ec7dd7341386d11195e3c3a9896122e608cf60aef2e551b96a2ccec83 +size 420343 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 13dd97461a..30380419f7 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c9c2d0d5e0a9c9356870702f2ea000fae998d2e97f75d944c9d36948e81e5976 -size 453217 +oid sha256:212b815348edba4e861db5d06af133b68a2a8c9e68dc8535413f3a9d1f3df830 +size 453168 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 6440cc7aed..73c896a88d 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6beaf68ab130b897467ceaa6488898a34ae8cc6356cf57596f1bf6577ec85502 -size 2300022 +oid sha256:96e034eec2c440eda678e815121d5237d5c4b10f0215d7ff5c80b5f1951231f8 +size 2299024 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 776bccbaa1..d3f811543b 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37a1f10b3070987953a444b304314df13eea31cd9918362f852ac022b1bd7acf -size 384749 +oid sha256:59ca426b0ad83bdec52d15b3586d7aee190864b16da755ada716908a0ced2715 +size 384603 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index d95ed3f9dd..b34847fd07 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb9f949605402263245de69a580bb3f5ab5180dfb76f3750a4a1a1190723b1df -size 1539430 +oid sha256:6533553bb1122a162ebbbd6ac08ca660286edc83299860ffd5a2740700a7b209 +size 1539880 From 6d935f1c3aadf48bb4330438c21330631541fee5 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sun, 3 Oct 2021 09:47:54 +0000 Subject: [PATCH 7/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index d2409a3a33..23e626a528 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61812d8c1586b9778184b02c078dcda2ed9530679d51c141e613720e55a5f584 -size 525482 +oid sha256:964c6c9884a5f3dc5e0fe10a896124fdea3c205876e919d51210dc3174a6676c +size 525450 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index f84fbe71a8..3748e7ab3b 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e07c844d338a08f92395b770938406b02f535701ac7ac9cfdb0e3962b6e0fc5 -size 869020 +oid sha256:3bb3e8a326b8df3256ba7159b3b84de254f7de010b0cb51716bbccd034217110 +size 868913 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index a1b2db8ff9..ad6f86f4c3 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d717af5873424fe8faf9b74c4dcda82cd44f90d5baef950005a8abfe13983d7 -size 479278 +oid sha256:9bb3e249d6ec2d1075650b6653c4969bbbeee0eba5a543ded8bcfd1e9ac2cbf3 +size 479305 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index f0e8ffb684..2e8f4dbe43 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6dd562b1a6067f1e36a227014d5cbf98fbad8b0899529905fbada80fa79f7332 -size 2127869 +oid sha256:4bd1b76e736293d036515093dd5b8920750a252b8e0ec7ccf35280ed83f8c15a +size 2127268 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index 336a156894..a63965656b 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbd5a34e1be031ef2fdf9d9da1741972b7bf6e89bd787f6c47f36dd438dc2382 -size 433150 +oid sha256:d743779b11c29b0db5f68d38acedd01af7ef97fc0f9e4e901cc0a357d05def62 +size 433127 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index b5509ec82a..d9a15f3419 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aaedc42a4ec47228a3d8b9f37c9019c4d5c73323510ffc5232267e32878e4389 -size 1692639 +oid sha256:0837f825642570886afbc3cf4126f5e92191c769d00430ed302571a36b021a50 +size 1692241 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index ab95bea9b7..a759b47d0e 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6df1cbec1c5dc13da423ec5a21955135836aedee04b8b13349f9ed0ea3a0a63c -size 195119 +oid sha256:bc27508a4d48dcb15c95730373ebf3877e9c499312ff5b27b6a0fde0734f67e9 +size 195020 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index 99a6417dab..f8f7b70106 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7c38390d07b1841331305df413b5b74fdca8c53c70be24586763cd5889d8029 -size 702698 +oid sha256:0bec3c3407e452a64ea951d7b1afeba8f3df62c96f22f46fd7f00b281626b41d +size 702649 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 9eb4b8998a..a4bb325eff 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9aa72760f42c7f0765ae0fa2930d2a787510c3a6dff3d875e75fe09bdcfd622 -size 545359 +oid sha256:26afd7456e78f1154448d924ec21b798ae3443c0e47ebe86baad33de8292db42 +size 545268 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 39efb6e4f7..933e5036f6 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b241142edc3e32d2a699d2f468c4067828f3b77a5b8f46bba4263b24fb77b6a -size 2879811 +oid sha256:38617a6d842b7e7546af9ccedd7fb49b5c61a70796a46a83a84f9f7f0e515d89 +size 2879585 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index 7b47fac3d7..28dda6c822 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71d58a6aebcd7e3c500e14b87f52e8c731b4611ed872ddebe5b4856e46c9bcec -size 456907 +oid sha256:29b7a398356cdcc086809810f0d88abc6d97853af6368589358aca0cc505c735 +size 456819 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 795d717060..5b137f888c 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:055febfc642ddad69fe94017d70852c8352d6dc537ebef88fb5aeb162edfa8d8 -size 1905615 +oid sha256:fe56f658c55f79365cdf64209357e69a58249055a38837ff97c05b2c0c9f3a72 +size 1906279 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 42612442a9..af3e72ea8f 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a152c4909c3aa7824d5bb921c8911105a7514767568f204e288e3fa0e7dad4d -size 544916 +oid sha256:3be2d90e9dc295cd312b3de45ffdf2e3e2bb1441521262fa2bb9d44e8a281faf +size 544992 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 2bd2402be0..663de38d44 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27303dc3a6d6a746bdedcac81ba34b54e04f7631502fd46ab934d57ea25ba627 -size 907407 +oid sha256:f003171ac10fc3562f845a27c042058c07a5547d9c6cb798ab385477100a403f +size 907683 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 9777ae5d83..81a2088ad4 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88e115e4032109ce9b252880a693d2bae1e1c555c53c7ee96694864a984acd06 -size 499874 +oid sha256:49988e7789ef24c78c03204fde58c6d32e5b1957e9dd98ff8fe951dca2c73591 +size 499882 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 33903f0858..32e6ea859c 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad4b80f2a24e0899a4432946eba517cfa0854029df1a6a72eb0e6f741fe695bd -size 2232890 +oid sha256:c32709b0a6be47dd119923c9a2568f57592463026f618d5b0b7eeaf373886661 +size 2233290 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index 9890d79b3a..63a3a5adf3 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff50178108107b49b99c24a34f21bc85d812798ac4fdf52432ec155074089a04 -size 453553 +oid sha256:3b0f90fe29caeac9786da5b2bc391972a195a06ff5f3bd09614faad60526408c +size 453726 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index c823971b20..122ae9235a 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c79f2dd53956e9b77ea292645c68586dfd8ba43572c4ea98afc5352dd527f64d -size 1767318 +oid sha256:1240b296e21c1b1cd7796ecf5aadf5ce91c8b625bf9b3f38ae69523706754046 +size 1767718 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index a1e98793bb..7a97130c03 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:300add86065847c4a86dd8f752a75d62807e38620d1fff8a4078840b5ce43896 -size 193636 +oid sha256:1ba5ba4332ee0209849f38c6fc3643acc6342bee5d6a5d2186c980edba46a7b1 +size 193675 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index bddd4fd06a..bf18592fdf 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23cc7c8e3c6afc1a65f57cdb21a6a354e7bce910996d0eccf6bab61ea918dbcd -size 694256 +oid sha256:dafa7132a31895fdfef4d4d57c4a7b757fd8c414098d889405109566e321fa15 +size 694248 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 877314d812..2909a8aead 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff87c08a5e6ccb224e9cafde64eacbe76c431d8eb7cf616c267a23c356104f85 -size 567815 +oid sha256:c0a0c5419e189f3c270eed41e61a08b282f32616541402d4990710996f3ba1d3 +size 567950 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index ac3a1eb471..1e17205ebd 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eeaa32e0e58e7e81f02c347bca6fcc658ca5b6090ff0c73c53849809647ac780 -size 3007537 +oid sha256:449dd5211c8594dc8fc374e5c94c8ef10f16b3da7e0a72f75eb0dbf69e66b245 +size 3007177 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 7462a71f9f..cb5c44c04b 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7a6cf205781dd5c57935343fb81062f8681dfbcc2ed767d6e54ba6d07e26182 -size 477742 +oid sha256:60a73045e2f0006462bab6468e794fec507a345bbc12e9cb325bb00702ed99db +size 477605 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 6baaac1709..ad2e85d828 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2c9985da0e1031634e4d3b592edcd754a447825f55668e4e6e202a8d8948d465 -size 1993783 +oid sha256:d51b9dd23e99469336bc4633d479dd04c086f7c6fe1e9d5a2d1cf8ae65cef181 +size 1993274 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index de4d494e67..d8e3cc59ae 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b7320e1cca4f8af036c09a688e7f65eac7ef7495ab4734754a0296fb18ad6c9 -size 557376 +oid sha256:9a95cb910ee932288ae44711babd44bf673ea934697a9be63c350164a74dbedc +size 557382 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index f7a7e767be..ff9d80077b 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:585b04e813c597a85887809a61f51ba0d6519a52d33319b980da4a1fbf2699b8 -size 929500 +oid sha256:6c909ebb2749f144c236432870cc1a39a054774c20eedd9fd9e676a1b50055c4 +size 929464 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index e07466451a..b5b805674b 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:85a4f61d03c42bb25cdd689abeac4557c338a9c2524a3a16a6dd41451fca9fbf -size 508309 +oid sha256:b54fe410e35b9caa33e6d38f7489da1dd3ce3103f8c467851987ae5a90cc90f0 +size 508441 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index b65fef3e79..e9614bb3eb 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36fc060dc8a92ea96be1c7261c85ca7bd07b20c93e54828c51842abc82ba8931 -size 2284947 +oid sha256:9abac3f66a10507e7a9c030fd346a4153dc6b4412f940b7f8baed271dcb4df64 +size 2283996 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 51be9db72b..863e402202 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:10f781acbb224d67606fd66a9104f7d96b4fecaaf2bd44d04df005a55e819c86 -size 463099 +oid sha256:f792f197efc557095fe21b89ac0c66c6a07718cdf9a02de6a429d8aba7af05d5 +size 463114 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 0acf9f56c1..be8d164479 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb163c34ee60d015da1c5daab6e08aea0b7d4a9afe14e51587eb17e5d475c598 -size 1805856 +oid sha256:e892a136d5ad3224e27178e9d82059088d5fab38fa451231e27d3fa4441c32ac +size 1805888 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index fec9de245d..c3a48ca951 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:58a7d9cbef71afc32f315dd72486c7e6dead27794df22eb478151237b387380f -size 193652 +oid sha256:07c3865bcfbf1145ea5e2b15b722e4b78d2128bc880b596282658cab58470217 +size 193691 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index 538e2e471c..ab3b006fb5 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cdf17c2501863d8f2da4f7d5a11ce169c95908176fef7ef957c2ba71262f2a7b -size 693963 +oid sha256:fde70d09aca1d1b00b8ba7a501eaa4d9f77a9c8f5f3988624ff76baf89e21fc0 +size 694320 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 1f8cc13161..6ec8b56b8c 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0e34cebac12d169ed69069bcae00d18fe7b6136bc910238345f6425bd850313 -size 580157 +oid sha256:5b269d829dc9c37ff42705ae794210fe7a561ec9b0520be8408283e8426788be +size 579904 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index d0c148fd32..82b1a95f85 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ce673ce5b5a9278c544cc94564aa404cdd07555130de1f187c9356d499428944 -size 3074883 +oid sha256:1c63062312cc0c3015ec086691cfc0d4c57ac81aba3e30f14cd090f26d3f6cee +size 3074306 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 277a068353..fabe234fa2 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:420b62b1c5c44f7d2167d03d799d6355bf5a2dabe8b653ed96acdbf8acb099bc -size 487204 +oid sha256:9e7404770256fb0b195942ab4f98f5367c63a4c0cff30e067440df2d666b3108 +size 487024 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 2e957315ea..dac6ff73a3 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22f28cd6909e783901377408f0cd7da5f4e9be56e859793c399205142c2ed5a0 -size 2036565 +oid sha256:faeed9399320f29521f67f2b8b1c87f58710b837acae38144ab337e5b6dba08b +size 2036156 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 79e90fc544..1929203163 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a9ff065a097517b6d550533a001f30bfbb5e3462dc65bb7de0484f736436aeb -size 568162 +oid sha256:ba285a1ac591c45186eec5b8db5bdd09ae8a1da4d8dd96b875096defd38478dd +size 567938 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 2a3c8a55e0..6dffc80f70 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efa712d6420b8c40ecb6450253e749ab09bfd70ddd398f5a84bffb20e3e34ab8 -size 949243 +oid sha256:372eaf82dbd304aeaab6d6e4078afbf0e7d597992c212cc7b765cb84db93d5f4 +size 949214 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index e84ffc9509..00448ab1ee 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:22d6b084895a98dbd6d1291cb0fbf44ae6bf96caeed9deddab885095eab952b2 -size 517316 +oid sha256:6de191373eb4c77c0e0eb3dd6ee3a2a86fdea54c1645f2b6963f0a4c75e2f337 +size 517615 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index 37ce1567ce..d56727c953 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b95ec085e6b2aeac783cdc32ec9f34c2698891df48b4b3e639c33b88aa2df5e -size 2332689 +oid sha256:0dab54f876a3ef1793595e5820da2ad9c8386bc003c60d63c5690c97e53bf9a2 +size 2333480 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 561ac58dd8..b80a21250f 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9adc25d94ae03f2a58fffdc05b9c1cdb38d69ccfa33c280e80fdb1369efbb4c -size 471445 +oid sha256:be0f0667d78d74d81d8c4a98183e60b0863803ba2d8b3e78bbd06260a8d9ccfc +size 471251 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index 6194c5176c..c1ca5d6964 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7cfecac9bf9e028dcf767e16cbb81605dbf963fc55e4e651f5d388ea6144eca -size 1838165 +oid sha256:6c333f6e2ffe50ce364ac1d311543126b2ff894ff358033221bb651da88e4835 +size 1838137 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 9946a8574a..294b42bac5 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d87092ed7eda84554b866986bf550dead0731358fa9f18194de54dd92683a59d -size 193627 +oid sha256:e0259187f5ae6399f0df583081997c66db9ef1d9c7e4fe0e168c8ac229153300 +size 193608 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 861862a9a3..975186fe30 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:02776ba6e709b2ee2dd13ae6cc2d7d43e6e37b7f5c91f90434655bd100ac1d3a -size 694075 +oid sha256:cd6ac7651ada1300b414dc958a0c1f5efe8abc2a22b4814c899178e3fb6e4181 +size 694381 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index a5d388f54e..f98c127730 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe92acbb8ab8cb27714077e917bab381db07e42c0f76fde53cdd5f62d9f340ff -size 590157 +oid sha256:ad5a4777088830059797b2bfc8193d9f1c70410e77ba047d5ededda45f9fc400 +size 590369 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 8bc39730fb..9236f349cc 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94adaba842020817d57753318e13f17bbbd8be4c64acaa7067d342987f8401c4 -size 3140693 +oid sha256:8e128217a078aa25573602ebac26f944df9e316f75083759221e918db62e96f0 +size 3143171 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index ce90b14339..5c7c4c6c0e 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44ab0959f6d6ab35586fdd5d238cda845ac9705a652a0f4a1a42d39cc842f8b4 -size 496598 +oid sha256:00ec12e3fa7b265a3425ef4f2ded7ab64d91d212388c1b0b50466ee6d9a27bd1 +size 496566 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index fb5c59c50d..e5dda1c13f 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f39687f2186e75ca9c22471e7bac2a785b74b98dc37060276acb1edce554ff84 -size 2079009 +oid sha256:23661f3316581f68f0b9a819e520bc11037d7550f1858136ef7cfb2e8a044dc2 +size 2078383 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index dbd24eb38c..de618bb15f 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7eae9bf30986a256a79c9218eec6a82fcb21b91ab9c260c303fb4e4dc69e8568 -size 770716 +oid sha256:2350b01523bcaa39c2ea13dd68cab37d07c4ba1585c73e04c92db87197729561 +size 770979 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 134cb260a4..24287bc9ff 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:81dca2362d2f5a92c3590d08739a4b9275088b2fc229cd495bf75b33e09d305c -size 1171457 +oid sha256:71adfdca0997363e3b73abede6c60f254fc505ac08ebda49b6584c17802ee9ee +size 1171784 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 1302365c23..ca110667b3 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20dce260ffae06c14d28ce49a6d398286fb44420903541ca8a54e8e68d26a410 -size 690737 +oid sha256:13406c213ac27a87a64c05a9c84f6cd0828d4f5aebde0ff6efb1edeb9d44af90 +size 690711 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 1397e0a300..e603be0942 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96418bd3a763cfad36c410fde036712565e85006c2c43fa909f05f620cf24dd3 -size 3125378 +oid sha256:82c5643cd2925f2746772057b72db6b4b12121cdeb091504d94cfc89eaa36945 +size 3124426 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index da4a9193b6..d4ad1b1760 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b937d44a43fc6bce0a9256a093446414ec4203bfa91688f57c1be3d7b22e075b -size 637033 +oid sha256:9631af779a28af1f26ee25e919348d93116f102965d9e392b9f79751bbd313e7 +size 637427 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index a03af11bae..bbbf54ee8d 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26deee5f5d5919bf80ddf8081c8f2e4c3aee56256b924d49eb9f38be9d3489c2 -size 2419294 +oid sha256:da5a2178dcea346fffe23f25b4a0bd1a40ffd1010a13124265edeed069870df1 +size 2419687 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index f9de43e927..e7808a4645 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:121f0b09b737f22d3a3c8748ecdabd94ea8d0c36403ca23b650ef31443c5d8d9 -size 205268 +oid sha256:a32c8115466986a47a0a1079ea34141285adedb1ed15b494ab80919313a4e092 +size 205344 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 9afab75957..ef08150212 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0df8810791925650ec803dcd660a852cfbb6fb44961cc9177f22b128d76f38c9 -size 651340 +oid sha256:17706263e87d4804619e453b15d61793b982ab6ecd99ffd7aab79a69605c9941 +size 651306 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 916e8aacba..5718b4b872 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ba552b3c24cebdcf8c74660dea2a687508e1efeefd31d2a9afc231e721b6f20 -size 795580 +oid sha256:03402696d6c6c5799fc64e40884074a065f4974e7d165936e93aa0d2c00c247e +size 795780 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 4d98bc8056..53cd8411b1 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b3a07f1bdc1a7c8db4884a847fbcb236bf1acd1fb0b00f7062f8d3bbb06adfb -size 4151804 +oid sha256:5cf15a9ca4cb042dba72e5e71d3883f7fff611859522af640a2597cb681206b0 +size 4151419 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 16a4539208..8d10186f89 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2693af559851371cabc190d0ad581aa8769665d076b5c3a7f4fe1d85a6db518a -size 669968 +oid sha256:9866f172283ba3e5f52d51c3b6ee888a711fb8a563f354ec5fedff3577ad32ad +size 669816 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 044775f0fe..09a8805798 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:017c1bd3a5f0a8d6a946ac3bb05406c9f9db0ddf89f0a6d7ad5cf1a1267df923 -size 2752079 +oid sha256:d91649bee00a49c14f0337656576936ccda96cc8c967a4f62c93ff7f5e5fe0ee +size 2751785 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index ba69dc2e53..a0dff8b1a2 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:21f4d977a4de68c19afec1ae7111d733c2a838ecc19a624bb0f61781d73f9801 -size 433604 +oid sha256:23593c25a03ef993723c0450f2f7431e9dc708a05a66ba5d302410101823050e +size 433745 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index a908b972af..4ba3235c53 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:967c8689610b1d050cbc0496833ee63d3b03303d1eec995cefbf37a26dfde457 -size 692577 +oid sha256:a3885a6fc1dbe56da91ce38acff893f73c4df9f57460987a4d929c445c06b03c +size 692753 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 0b16a4fffe..c108fe613b 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:abefd507f2d7b560c625db91605246a9450d9259c21efa6942e88fdf2bd3b676 -size 400510 +oid sha256:236c524ab47ccf20627c015043a85b26e183dad29b2086b711fbbfdab7b437cd +size 400555 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index bb2c78c44a..539cbbd7b5 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:304d6c4f2f14e3bdeba1759449366cdbb2146bedbb39b88abbdf940c74d671d6 -size 1744389 +oid sha256:a2366a28ea89432ca825feca07ea563530cc9717420dd17b9a5d102abb90df9d +size 1744766 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index ec707a9ed8..f032829553 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2b6a6c36052ea080ea9954a1dfb3df8e46a37c97baf8782529ac6de17584178a -size 363526 +oid sha256:a17c0f6682ddd180de3d1ace3abb23e2827d6ee9a0e40e975a9804de1aadec93 +size 363555 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 8177a1dab3..86653c0f51 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc592db954367da9719510475dd06e0397dbdee8b1ece01221b462875642d662 -size 1353051 +oid sha256:83e250e15efbede04fa84a3c57f4a9fe9af41d613218b262ae4f4f130cea2401 +size 1352877 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 6eab80ae19..c374b4bd65 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8cdfc19b3af5666bd0463a897a59e93a40dbaeaf47a71dcaa9e0e9dd9d676066 -size 130871 +oid sha256:5b3fb0ca3ebd5cd5c1d22858834fd546dfd2b682bd9d83b731942f905ae90f99 +size 130851 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index dedb6d5fbe..b269e0e386 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca89582ec7dd7341386d11195e3c3a9896122e608cf60aef2e551b96a2ccec83 -size 420343 +oid sha256:2813ac0f558da83f8d7de19ab4f4285785873a9c0fdb3c4bc2d6b4402022f1f2 +size 420441 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 30380419f7..693509f4b3 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:212b815348edba4e861db5d06af133b68a2a8c9e68dc8535413f3a9d1f3df830 -size 453168 +oid sha256:400fc3ea22bafb1b063fc2d951a8bbb2f5dd59211945a796e28cc7f3d6b24ed7 +size 453036 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 73c896a88d..74e21f258f 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:96e034eec2c440eda678e815121d5237d5c4b10f0215d7ff5c80b5f1951231f8 -size 2299024 +oid sha256:df9e932ea152419a3623c7a0279e9d3af8a130ed95ce3c92fc06b7db0c5c97ed +size 2299022 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index d3f811543b..fece883f3a 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:59ca426b0ad83bdec52d15b3586d7aee190864b16da755ada716908a0ced2715 -size 384603 +oid sha256:14da51ff5e9df9d61d3e2f8d810222f506868951201e67ac69194209c4c57c73 +size 384687 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index b34847fd07..e1a02c5476 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6533553bb1122a162ebbbd6ac08ca660286edc83299860ffd5a2740700a7b209 -size 1539880 +oid sha256:57a73e3f6f3982559567cde2225803543e0e0b966465424d1054ba9e5a1248cc +size 1539537 From 6e3c65575d8ece8e1b07f940bea8edb9f8730625 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sun, 3 Oct 2021 17:53:06 +0000 Subject: [PATCH 8/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index 23e626a528..b561ba5bd7 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:964c6c9884a5f3dc5e0fe10a896124fdea3c205876e919d51210dc3174a6676c -size 525450 +oid sha256:a6628f43e49f57c63cd9367d7ad755c222485a5e66c279ac2c106766531d7c7f +size 525332 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index 3748e7ab3b..d2b7bc29f6 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3bb3e8a326b8df3256ba7159b3b84de254f7de010b0cb51716bbccd034217110 -size 868913 +oid sha256:9c3e8efdf94fbbb1ff8b5115a42691e202a547926a275625c83e2f4c8e3511de +size 868849 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index ad6f86f4c3..53294fc775 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9bb3e249d6ec2d1075650b6653c4969bbbeee0eba5a543ded8bcfd1e9ac2cbf3 -size 479305 +oid sha256:d5abea92b17ed841b7f121843e7724928a31b556128c925a684b68bd3c061705 +size 479249 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 2e8f4dbe43..42e80ebb64 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4bd1b76e736293d036515093dd5b8920750a252b8e0ec7ccf35280ed83f8c15a -size 2127268 +oid sha256:fbef702a4441436bcad7e58f9377d30155a466050b294d04707a5b4815f893e0 +size 2127450 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index a63965656b..a14e5bdb8a 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d743779b11c29b0db5f68d38acedd01af7ef97fc0f9e4e901cc0a357d05def62 -size 433127 +oid sha256:4b81f1e3eda221895d064d585434566ecdf757416d810ebbbfd5df58cc634a86 +size 433403 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index d9a15f3419..bbdbf6cc30 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0837f825642570886afbc3cf4126f5e92191c769d00430ed302571a36b021a50 -size 1692241 +oid sha256:dbaa3da6424fb4a4426888344c2a0a12c1a3c0f35ea59a2986bc8afac6cbedab +size 1693058 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index a759b47d0e..96aa6a9db7 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc27508a4d48dcb15c95730373ebf3877e9c499312ff5b27b6a0fde0734f67e9 -size 195020 +oid sha256:eb8da2afc90675a5eb0e371c701b3b5e14c882248b805d60b7cc14396af6f38c +size 194958 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index f8f7b70106..c7bd2a2f78 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0bec3c3407e452a64ea951d7b1afeba8f3df62c96f22f46fd7f00b281626b41d -size 702649 +oid sha256:b46f7327f54b777907348954f9cdee462df223b6e79541b4f1723fbc5c1e31db +size 702823 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index a4bb325eff..02bbc817c6 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26afd7456e78f1154448d924ec21b798ae3443c0e47ebe86baad33de8292db42 -size 545268 +oid sha256:88fcb3ab62147c1953cc05f8bbf6eac473b70a6b79f19f78e896dff182fc05ba +size 545366 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 933e5036f6..aadcbc54df 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:38617a6d842b7e7546af9ccedd7fb49b5c61a70796a46a83a84f9f7f0e515d89 -size 2879585 +oid sha256:d062eb5b80a873f5b6d9cdbecd94f81472075decc17e16d2d24c97b69aa3fb6e +size 2880065 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index 28dda6c822..51f6a25bd4 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29b7a398356cdcc086809810f0d88abc6d97853af6368589358aca0cc505c735 -size 456819 +oid sha256:64c79fcfd4d6f50f983cc90037cd714835aab1f16190644fa68a461d50e6141b +size 456834 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 5b137f888c..26c4ab307c 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe56f658c55f79365cdf64209357e69a58249055a38837ff97c05b2c0c9f3a72 -size 1906279 +oid sha256:c4a996d1b2c25dd154bfb17eea3e318e1b064cf111747c1158147da44a8cb7a6 +size 1906080 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index af3e72ea8f..5c8b1b0286 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3be2d90e9dc295cd312b3de45ffdf2e3e2bb1441521262fa2bb9d44e8a281faf -size 544992 +oid sha256:8d5cbdd74f03fb01d672493f2c10da03badc855e565a7960cc1fa3fdfa40fd78 +size 544925 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 663de38d44..04083eacdd 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f003171ac10fc3562f845a27c042058c07a5547d9c6cb798ab385477100a403f -size 907683 +oid sha256:856b622324895c52333bf28b08e6ce2395cef79955c44a2f55d3a2d1a51a7f21 +size 906640 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 81a2088ad4..aeb62399d9 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49988e7789ef24c78c03204fde58c6d32e5b1957e9dd98ff8fe951dca2c73591 -size 499882 +oid sha256:2fdd729cf81e744c747075cbc998101d13c5c06cb4f6dfb0ac560190358b5781 +size 499738 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 32e6ea859c..0e4126ba2b 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c32709b0a6be47dd119923c9a2568f57592463026f618d5b0b7eeaf373886661 -size 2233290 +oid sha256:69a4ddc1c34fd5ed34110155854b88dc9274bac077d28ca6428484c259349821 +size 2232521 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index 63a3a5adf3..3af8fe967f 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b0f90fe29caeac9786da5b2bc391972a195a06ff5f3bd09614faad60526408c -size 453726 +oid sha256:239bb4d278a3420ed412b8d2d5bfe97f944b4928b49396de2dbc564b2ee37a76 +size 453685 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 122ae9235a..59494e8677 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1240b296e21c1b1cd7796ecf5aadf5ce91c8b625bf9b3f38ae69523706754046 -size 1767718 +oid sha256:d38aebaa04f83ce4d168230c9efff71a95bbd3d8eee7fff982552e94ee1e3daa +size 1767434 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 7a97130c03..f0ef9bc89b 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1ba5ba4332ee0209849f38c6fc3643acc6342bee5d6a5d2186c980edba46a7b1 -size 193675 +oid sha256:7414533ce2dc9e32031e1fab54e7cc3271f121b0fe7e905bfad48c116fc2ec24 +size 193702 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index bf18592fdf..ede69db1c1 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dafa7132a31895fdfef4d4d57c4a7b757fd8c414098d889405109566e321fa15 -size 694248 +oid sha256:06d30aa404d64796df50c1c3dc687067492420c9f57dadadf41feee1c2676f9c +size 694309 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 2909a8aead..867b3aa0aa 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c0a0c5419e189f3c270eed41e61a08b282f32616541402d4990710996f3ba1d3 -size 567950 +oid sha256:7d587dbb32fc974c5242792b76892d15a5691b67553d7e9e2c8392be5a0dd124 +size 567915 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 1e17205ebd..abb8c650d8 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:449dd5211c8594dc8fc374e5c94c8ef10f16b3da7e0a72f75eb0dbf69e66b245 -size 3007177 +oid sha256:4c917c03f0bdc7965456dbe30425ed13d180cc4b11055ad9eacbec5ce2ab1d14 +size 3007955 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index cb5c44c04b..8379f47e9f 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60a73045e2f0006462bab6468e794fec507a345bbc12e9cb325bb00702ed99db -size 477605 +oid sha256:e92a13281dc761f29b456ed01c0473cbb42dd3220761281b810530dfc9bed2db +size 477584 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index ad2e85d828..1eebc32631 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d51b9dd23e99469336bc4633d479dd04c086f7c6fe1e9d5a2d1cf8ae65cef181 -size 1993274 +oid sha256:4961809cbccb77bcb890b16103b112b1f8e9a188abeac794626e65fbc397979b +size 1993053 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index d8e3cc59ae..91e6e91bcc 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a95cb910ee932288ae44711babd44bf673ea934697a9be63c350164a74dbedc -size 557382 +oid sha256:e02c5ede7bd906e38064bf045d39cd3b5656d4565931a00b5ea5ac5e1db1b18b +size 557503 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index ff9d80077b..6145c465c8 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c909ebb2749f144c236432870cc1a39a054774c20eedd9fd9e676a1b50055c4 -size 929464 +oid sha256:990be2535eb5db02f0f2d0c0676f56dcaa53e9d63e7bee160fd049aadf245b7c +size 929625 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index b5b805674b..da4f6097ff 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b54fe410e35b9caa33e6d38f7489da1dd3ce3103f8c467851987ae5a90cc90f0 -size 508441 +oid sha256:d0b8c98ed640cb7a40b2637599937734dbcee60c13cb4c9deb9db4413c32d180 +size 508730 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index e9614bb3eb..797961b7af 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9abac3f66a10507e7a9c030fd346a4153dc6b4412f940b7f8baed271dcb4df64 -size 2283996 +oid sha256:9660c3900fa15882cd62052e40f9dbf228688501c0b39d8863be4ed6a85e0c42 +size 2284985 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 863e402202..85aef19bb8 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f792f197efc557095fe21b89ac0c66c6a07718cdf9a02de6a429d8aba7af05d5 -size 463114 +oid sha256:77d996e926c0b17676d1d029d843f8c5ed7c8087cf8492dd6717473849d9ecbd +size 462855 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index be8d164479..398b8b6504 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e892a136d5ad3224e27178e9d82059088d5fab38fa451231e27d3fa4441c32ac -size 1805888 +oid sha256:47c1ad235145eb03c638ea40f77cb6cff5ff4e4ac5201ea9605d98fef11852c4 +size 1806024 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index c3a48ca951..03b963cc88 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07c3865bcfbf1145ea5e2b15b722e4b78d2128bc880b596282658cab58470217 -size 193691 +oid sha256:4d99745e5aafe0455081c50b839e0acfdabff0b272b667211df4d6e3863be2f5 +size 193660 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index ab3b006fb5..c494917885 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fde70d09aca1d1b00b8ba7a501eaa4d9f77a9c8f5f3988624ff76baf89e21fc0 -size 694320 +oid sha256:a481dc11ccc7bb6bf4ce9ae335dafe972031644cc3adaa3380559fbfb3763d42 +size 694020 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 6ec8b56b8c..f708b0d0d7 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b269d829dc9c37ff42705ae794210fe7a561ec9b0520be8408283e8426788be -size 579904 +oid sha256:681df86b63f038bef78c03a31879eb28653f2ff655f358c7f215032a5722e09e +size 580010 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 82b1a95f85..36ddf98afc 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c63062312cc0c3015ec086691cfc0d4c57ac81aba3e30f14cd090f26d3f6cee -size 3074306 +oid sha256:a7b7ffeac84c208dc1135994b2ed9da34334ce8dcb9b9947aff389747bc4c38f +size 3073655 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index fabe234fa2..46dd3626a8 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e7404770256fb0b195942ab4f98f5367c63a4c0cff30e067440df2d666b3108 -size 487024 +oid sha256:4975d4b27dc65fce2fff60d335d269434e6c1cc898e6df00a0db66fc93e1fd53 +size 487245 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index dac6ff73a3..1d9f219b4b 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:faeed9399320f29521f67f2b8b1c87f58710b837acae38144ab337e5b6dba08b -size 2036156 +oid sha256:1aab28335186b8570d851eb73027eb58c12662f12085de2240a884e81073c1ff +size 2037137 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 1929203163..9cee35792b 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba285a1ac591c45186eec5b8db5bdd09ae8a1da4d8dd96b875096defd38478dd -size 567938 +oid sha256:13d34faa0fdabf5338565e84f490c2b1c0cfe70e0d701bf0ea55b568a92d2f3e +size 567758 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 6dffc80f70..644e12edbd 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:372eaf82dbd304aeaab6d6e4078afbf0e7d597992c212cc7b765cb84db93d5f4 -size 949214 +oid sha256:b0bac5bc73556a5efe28f3e7cbf5028ee441b027b8f78e7e5cfe5e36c8d840d6 +size 949178 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index 00448ab1ee..ac1ed7c928 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6de191373eb4c77c0e0eb3dd6ee3a2a86fdea54c1645f2b6963f0a4c75e2f337 -size 517615 +oid sha256:3182bc7e900f399bbf49b794e54df717055e368333a837792178aae5ef36b761 +size 517572 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index d56727c953..a1597c0a65 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0dab54f876a3ef1793595e5820da2ad9c8386bc003c60d63c5690c97e53bf9a2 -size 2333480 +oid sha256:585f01336663fbefa6f3f1fe1ff85b12d84db25a915f8b88d91aa587f2677b51 +size 2333824 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index b80a21250f..9d8c7ffcef 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be0f0667d78d74d81d8c4a98183e60b0863803ba2d8b3e78bbd06260a8d9ccfc -size 471251 +oid sha256:f1f0ed4432b3b4f41f78ca643ad025bfa03d05bca0b92aef340aaa9028603a8b +size 471486 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index c1ca5d6964..d5a7de2cc2 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c333f6e2ffe50ce364ac1d311543126b2ff894ff358033221bb651da88e4835 -size 1838137 +oid sha256:c7c99f38b5e08b30714158f37c69208a8d408f5ea5efe27e5484e05e5638f795 +size 1838041 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index 294b42bac5..a0fd732999 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0259187f5ae6399f0df583081997c66db9ef1d9c7e4fe0e168c8ac229153300 -size 193608 +oid sha256:522847b31a1868e019713bd1be77a1ad7f2f6b7dbc92a9c7fd86754ab8101f84 +size 193543 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 975186fe30..95c92d985b 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd6ac7651ada1300b414dc958a0c1f5efe8abc2a22b4814c899178e3fb6e4181 -size 694381 +oid sha256:9937048d734494e96b0dc466e6b6a58a22ffd8281beadb726a5948f67d4b71ba +size 694142 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index f98c127730..49faaaf4a8 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad5a4777088830059797b2bfc8193d9f1c70410e77ba047d5ededda45f9fc400 -size 590369 +oid sha256:b9c98d325bfdc2d6624b6a851e794e73d3c2cb96b1080e3e44cbd50ca74783e4 +size 590378 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 9236f349cc..96b25bed00 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e128217a078aa25573602ebac26f944df9e316f75083759221e918db62e96f0 -size 3143171 +oid sha256:925ec5e0dd2948d9205e79395e231390dbbea3e2a08a6b2144308188400c1e7d +size 3141510 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 5c7c4c6c0e..0a0ce3d3cd 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:00ec12e3fa7b265a3425ef4f2ded7ab64d91d212388c1b0b50466ee6d9a27bd1 -size 496566 +oid sha256:9fc98f36a6516be3ade0228e172ae9da5511e1c8f5eed88c268d6c6741b30336 +size 496774 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index e5dda1c13f..c97d4d55cc 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23661f3316581f68f0b9a819e520bc11037d7550f1858136ef7cfb2e8a044dc2 -size 2078383 +oid sha256:285c504ff58bb3887384e4ca5c78ed862abb0bd0697eb5594508afc2cdc45e8d +size 2079490 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index de618bb15f..f4bf0aa8e1 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2350b01523bcaa39c2ea13dd68cab37d07c4ba1585c73e04c92db87197729561 -size 770979 +oid sha256:a991b65b89c321df71a1b0141210bf3810b7dce62b055717f67f5c26f7853c04 +size 770661 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 24287bc9ff..deae6e2305 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71adfdca0997363e3b73abede6c60f254fc505ac08ebda49b6584c17802ee9ee -size 1171784 +oid sha256:7939b9d96cd8668b51e3d22198b76b416abb8428c668c2be5280ae2824c5fe29 +size 1171351 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index ca110667b3..546669d30e 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13406c213ac27a87a64c05a9c84f6cd0828d4f5aebde0ff6efb1edeb9d44af90 -size 690711 +oid sha256:1a859a152641b6a341d87e4383f0c3c206e8a88bc9b397c603d3f7a4dac9a664 +size 690584 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index e603be0942..5ed50ceaeb 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:82c5643cd2925f2746772057b72db6b4b12121cdeb091504d94cfc89eaa36945 -size 3124426 +oid sha256:39347e9ca7116abcec14dd97c0407c5b9982cb81b841d099dfb0954092815084 +size 3125179 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index d4ad1b1760..f00299023e 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9631af779a28af1f26ee25e919348d93116f102965d9e392b9f79751bbd313e7 -size 637427 +oid sha256:2a51719426062e9b0566be2129efd146629344658ed637e7f1373b293b5f320a +size 637390 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index bbbf54ee8d..07847512fa 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:da5a2178dcea346fffe23f25b4a0bd1a40ffd1010a13124265edeed069870df1 -size 2419687 +oid sha256:fb8a77e333161f19f01be78e598cc777ac3a9c85f535acec6581f06135067e1e +size 2419155 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index e7808a4645..4824a4dac1 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a32c8115466986a47a0a1079ea34141285adedb1ed15b494ab80919313a4e092 -size 205344 +oid sha256:5de52e1e7af6489b722b3a7e8cd2497bbdc516435ede3f64ea2c1f2000c23df5 +size 205338 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index ef08150212..9e5bb28b80 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:17706263e87d4804619e453b15d61793b982ab6ecd99ffd7aab79a69605c9941 -size 651306 +oid sha256:77a01cb39250236b18839be154247fe1174e1ab704e5e6e4fbd8f35e3a4fc6e1 +size 651379 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 5718b4b872..9241d45340 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:03402696d6c6c5799fc64e40884074a065f4974e7d165936e93aa0d2c00c247e -size 795780 +oid sha256:3ce56fc0e4e789428c6ba2c6e1079ebec5c0de79f5b38ef644711e9a82e7bb9f +size 795413 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 53cd8411b1..6393c6d456 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cf15a9ca4cb042dba72e5e71d3883f7fff611859522af640a2597cb681206b0 -size 4151419 +oid sha256:bba324002e0a5a4f39b58997530d968d827876bb681785fcebc4b123b530eea4 +size 4150960 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 8d10186f89..37a10224e2 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9866f172283ba3e5f52d51c3b6ee888a711fb8a563f354ec5fedff3577ad32ad -size 669816 +oid sha256:993440001bfb227b3a7baa7d296904d7e7a6c51acdb632cd4ed1bbe4fe8531bf +size 669784 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 09a8805798..dd777b8352 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d91649bee00a49c14f0337656576936ccda96cc8c967a4f62c93ff7f5e5fe0ee -size 2751785 +oid sha256:a9ac6a9a633a32bf4da81a37ad08add15831ac2dfa1f04cc870d0f2cf4f793cd +size 2751590 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index a0dff8b1a2..95fcc908f0 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23593c25a03ef993723c0450f2f7431e9dc708a05a66ba5d302410101823050e -size 433745 +oid sha256:aca8048ae80a2ed434a7e91d85886f3b27ab1f2cc75eee5ef3482f35b4237cf8 +size 433815 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 4ba3235c53..c0516b9cde 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a3885a6fc1dbe56da91ce38acff893f73c4df9f57460987a4d929c445c06b03c -size 692753 +oid sha256:b93b8c53a48bf844eabb1aea8bf775a98bae05e56a076b7b8aaeaf46e0a23ca0 +size 692456 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index c108fe613b..1cff77abf3 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:236c524ab47ccf20627c015043a85b26e183dad29b2086b711fbbfdab7b437cd -size 400555 +oid sha256:7674ab2d59d3cea1782411b66a92840ded5cced8e6ea14fbbf96a9b65ae4d0eb +size 400423 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index 539cbbd7b5..4289cd2464 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a2366a28ea89432ca825feca07ea563530cc9717420dd17b9a5d102abb90df9d -size 1744766 +oid sha256:2fb6e4679d29a2dbe563506377b7a6a28c4623a7e1b77d95c104dc4b3cce842b +size 1744204 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index f032829553..c990165425 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a17c0f6682ddd180de3d1ace3abb23e2827d6ee9a0e40e975a9804de1aadec93 -size 363555 +oid sha256:7aecc0eac493754612233318e14d3960bb967fa7508669f7e0fe07fd165339b0 +size 363698 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 86653c0f51..5925ed6e76 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:83e250e15efbede04fa84a3c57f4a9fe9af41d613218b262ae4f4f130cea2401 -size 1352877 +oid sha256:4a57a0b5592ad0d58228336b44d1dcb4d3a9c08a78c44e40d6046e8aad373813 +size 1352436 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index c374b4bd65..93c9381472 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5b3fb0ca3ebd5cd5c1d22858834fd546dfd2b682bd9d83b731942f905ae90f99 -size 130851 +oid sha256:d9eebbddf8a826773413203fd30a382cfb1c43243043d1cb607c2be71fd63a45 +size 130807 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index b269e0e386..7500620c97 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2813ac0f558da83f8d7de19ab4f4285785873a9c0fdb3c4bc2d6b4402022f1f2 -size 420441 +oid sha256:35daa7ab40093a50ea9da12109a2227287352bbe7b09a91823267c9284381605 +size 420300 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 693509f4b3..a6b633ddec 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:400fc3ea22bafb1b063fc2d951a8bbb2f5dd59211945a796e28cc7f3d6b24ed7 -size 453036 +oid sha256:d66d59d43b4f170f0a220ca3bb77f119139269791b74d9a0cc13e987cbd865e4 +size 453119 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 74e21f258f..55ed4b5091 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:df9e932ea152419a3623c7a0279e9d3af8a130ed95ce3c92fc06b7db0c5c97ed -size 2299022 +oid sha256:b5cb3df35c342b3db0d6d196ce21105ed8a6919325b3db8e3c346df33143eaec +size 2299101 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index fece883f3a..35a806bb2a 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:14da51ff5e9df9d61d3e2f8d810222f506868951201e67ac69194209c4c57c73 -size 384687 +oid sha256:16a82ba05cb27504104d378c39ce1e8c57796f3dcece7e5cd683433019b20b1b +size 384625 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index e1a02c5476..d863322144 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57a73e3f6f3982559567cde2225803543e0e0b966465424d1054ba9e5a1248cc -size 1539537 +oid sha256:0ff29c474e4c7fa099503af2fd23a374839c63ba1aa0730bdf1e8431bdb3d400 +size 1539177 From a51e5ab99527fc4239a7527a23fdcb13e72715cf Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 4 Oct 2021 02:16:49 +0000 Subject: [PATCH 9/9] update search indexes --- lib/search/indexes/github-docs-2.22-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-cn.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-de.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-en.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-es.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-ja.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-2.22-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-de.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-de.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-de.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- 72 files changed, 144 insertions(+), 144 deletions(-) diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index b561ba5bd7..0ca676fa9f 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a6628f43e49f57c63cd9367d7ad755c222485a5e66c279ac2c106766531d7c7f -size 525332 +oid sha256:47e8662c57128f2a5992efc510aff747f46ac071d001d61616900afcff444522 +size 525434 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index d2b7bc29f6..10e83001b8 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c3e8efdf94fbbb1ff8b5115a42691e202a547926a275625c83e2f4c8e3511de -size 868849 +oid sha256:a520172457b29d150fe352261bcc6b57e89e7618f61df79c93ef1f8acd6c60e0 +size 868682 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index 53294fc775..8b98ca0f78 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d5abea92b17ed841b7f121843e7724928a31b556128c925a684b68bd3c061705 -size 479249 +oid sha256:11675dfbe1b55a031cd9497a712ee11477c8483cebc668b527ae4f7f957482c4 +size 479321 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 42e80ebb64..f71859660e 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbef702a4441436bcad7e58f9377d30155a466050b294d04707a5b4815f893e0 -size 2127450 +oid sha256:94180c979585f2ade49ad14626eeb4be982fd1fe50ee30f6394a14d066f632ab +size 2127330 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index a14e5bdb8a..a8bc7ab06a 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4b81f1e3eda221895d064d585434566ecdf757416d810ebbbfd5df58cc634a86 -size 433403 +oid sha256:b9dbf120b12b04be4659a9da1388131f9e1c2f4663f5ed9c4bf15ae6f22961e2 +size 433170 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index bbdbf6cc30..a93ec72d3b 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dbaa3da6424fb4a4426888344c2a0a12c1a3c0f35ea59a2986bc8afac6cbedab -size 1693058 +oid sha256:707da713265e514f9507d15702787c831fc71364a2a12e82cfd26e16b6ba89c0 +size 1691664 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 96aa6a9db7..bc41065697 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb8da2afc90675a5eb0e371c701b3b5e14c882248b805d60b7cc14396af6f38c -size 194958 +oid sha256:916e8d3558463b5ffe4c4b0b0f6ee30f9ebb44083a3e027ac80d4dca992590e9 +size 194963 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index c7bd2a2f78..b3b4fe0197 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b46f7327f54b777907348954f9cdee462df223b6e79541b4f1723fbc5c1e31db -size 702823 +oid sha256:0bbb8e5a911fd48e0d2c2edd8dbbb85aa1785fe431d8e366c2024a9edb820ba8 +size 702741 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 02bbc817c6..b9a4dac2a2 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88fcb3ab62147c1953cc05f8bbf6eac473b70a6b79f19f78e896dff182fc05ba -size 545366 +oid sha256:30566cfdab0a852e722bbe27be3d11192d809ceadb74abb4c581c8510d929aef +size 545230 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index aadcbc54df..2229e35960 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d062eb5b80a873f5b6d9cdbecd94f81472075decc17e16d2d24c97b69aa3fb6e -size 2880065 +oid sha256:5e9772bd891678d17b38a454882dc3577ebf2a35c78a3c9c5d891d168c9d0b54 +size 2881358 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index 51f6a25bd4..64382a2047 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:64c79fcfd4d6f50f983cc90037cd714835aab1f16190644fa68a461d50e6141b -size 456834 +oid sha256:4c33b82f54201bb8b52c987376a251f899b9495ca60fcd6c895f80557250aec9 +size 456865 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 26c4ab307c..ab9164e638 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4a996d1b2c25dd154bfb17eea3e318e1b064cf111747c1158147da44a8cb7a6 -size 1906080 +oid sha256:a77e5025f6376bf55422b5c53a06414aafb43d0ea02c26c128b3b4e790892974 +size 1906361 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 5c8b1b0286..d732f37024 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d5cbdd74f03fb01d672493f2c10da03badc855e565a7960cc1fa3fdfa40fd78 -size 544925 +oid sha256:6bfe721ade426030944f7bb0fa742164105d57f96907790424f64eca2170ab22 +size 544858 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 04083eacdd..90666383b9 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:856b622324895c52333bf28b08e6ce2395cef79955c44a2f55d3a2d1a51a7f21 -size 906640 +oid sha256:8b5929fc471c5976bd9b087856761e72b34ec349602c10d91d587b30909d378c +size 906883 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index aeb62399d9..45be94e6bf 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2fdd729cf81e744c747075cbc998101d13c5c06cb4f6dfb0ac560190358b5781 -size 499738 +oid sha256:7f18806f04c5ca96afd36e1cef91a41e8b1d8437b1302ebf1dbdf7c9a8545089 +size 499846 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 0e4126ba2b..1e2e8f14f1 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:69a4ddc1c34fd5ed34110155854b88dc9274bac077d28ca6428484c259349821 -size 2232521 +oid sha256:c87cbc97e1bd9a3f8b9c5524321665841fa45176a3c6db90d715f60f575417e5 +size 2232663 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index 3af8fe967f..fcd52cc07d 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:239bb4d278a3420ed412b8d2d5bfe97f944b4928b49396de2dbc564b2ee37a76 -size 453685 +oid sha256:ad658160f972e75b3272cbfecd21d5259e90e03a71ffcfb3cb343c1b4809a516 +size 453475 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 59494e8677..3227f21c97 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d38aebaa04f83ce4d168230c9efff71a95bbd3d8eee7fff982552e94ee1e3daa -size 1767434 +oid sha256:98dff4bb8dc178d211abf44dcdf411d9928efcde7adff5704652e1fbe5dbfc39 +size 1767144 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index f0ef9bc89b..a17d76ca45 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7414533ce2dc9e32031e1fab54e7cc3271f121b0fe7e905bfad48c116fc2ec24 -size 193702 +oid sha256:8e32ee36d8f08362a21d1fe1ce9a8d023d3c4b460b5659bcb88200e4d21875a6 +size 193664 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index ede69db1c1..c606bf5038 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:06d30aa404d64796df50c1c3dc687067492420c9f57dadadf41feee1c2676f9c -size 694309 +oid sha256:77a660e85313aa6a6e4efb7d7125e09aab7f78c8b6312802acd1d268d2f5b3b5 +size 694240 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index 867b3aa0aa..64d76b5ff8 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7d587dbb32fc974c5242792b76892d15a5691b67553d7e9e2c8392be5a0dd124 -size 567915 +oid sha256:ca886b499a3bab7bf15af8a677b2a7237b40fee062bc1b5feac3f21513c50481 +size 567877 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index abb8c650d8..2d83c84baa 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4c917c03f0bdc7965456dbe30425ed13d180cc4b11055ad9eacbec5ce2ab1d14 -size 3007955 +oid sha256:59af139f6dda786504d7f8df4b45f72ef9a14db2e660e7ab078f2b777e8f96a9 +size 3007561 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 8379f47e9f..5e0ebba2c5 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e92a13281dc761f29b456ed01c0473cbb42dd3220761281b810530dfc9bed2db -size 477584 +oid sha256:a5dc7c8826bdb75ab3c19307f44e9907c89769b10cee45f1025575723032fda1 +size 477604 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 1eebc32631..5b86676147 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4961809cbccb77bcb890b16103b112b1f8e9a188abeac794626e65fbc397979b -size 1993053 +oid sha256:ace1e593d3bfcb6b1f79676bc0a24a9116acbca01f7fdb5912aac715ccb68254 +size 1992879 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 91e6e91bcc..8f02909e6e 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e02c5ede7bd906e38064bf045d39cd3b5656d4565931a00b5ea5ac5e1db1b18b -size 557503 +oid sha256:e1bd0afdd4895e6d6e4e548d6468c8967f478ec35a39bc829f548e906e29cf30 +size 557305 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index 6145c465c8..09b73c2347 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:990be2535eb5db02f0f2d0c0676f56dcaa53e9d63e7bee160fd049aadf245b7c -size 929625 +oid sha256:2d2d0811ad29fdba447f73092abf46ad59a9893db749e35820065c1973edfe63 +size 929542 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index da4f6097ff..bc5028da17 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d0b8c98ed640cb7a40b2637599937734dbcee60c13cb4c9deb9db4413c32d180 -size 508730 +oid sha256:981b2f14700b182a03498f1aec771bf527c166331492412f68cd7e81fe4af00e +size 508492 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 797961b7af..af7e433ea8 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9660c3900fa15882cd62052e40f9dbf228688501c0b39d8863be4ed6a85e0c42 -size 2284985 +oid sha256:ec07e630140905d74a8225fce3b60fc3e7bbb4405106abfd8a91d1b50398bbc3 +size 2284765 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index 85aef19bb8..daf12e4b4a 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77d996e926c0b17676d1d029d843f8c5ed7c8087cf8492dd6717473849d9ecbd -size 462855 +oid sha256:49d616b971a7b6b3af3ea0024ba21e70177609153b4addd13ef206532c782101 +size 462899 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 398b8b6504..7a6250b020 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47c1ad235145eb03c638ea40f77cb6cff5ff4e4ac5201ea9605d98fef11852c4 -size 1806024 +oid sha256:c8554bf634ee7a3d0a3208490862f7f8cbb7b1901500d5ec623eaf3eb6697fa1 +size 1805194 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index 03b963cc88..d42d84d67f 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d99745e5aafe0455081c50b839e0acfdabff0b272b667211df4d6e3863be2f5 -size 193660 +oid sha256:37d9537e926db48f5b9cd3f28eb5f86e1b1c1a510df95ca111d0e107c449fe25 +size 193599 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index c494917885..fd39946f86 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a481dc11ccc7bb6bf4ce9ae335dafe972031644cc3adaa3380559fbfb3763d42 -size 694020 +oid sha256:b656ef7c70b4ca941aa4c1a0a30308fd246c8759b5eba3fe75f1fc57d4a423e0 +size 694213 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index f708b0d0d7..892d412b9c 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:681df86b63f038bef78c03a31879eb28653f2ff655f358c7f215032a5722e09e -size 580010 +oid sha256:f6ee0da07dcf29cce873d86feec2253107e7beb337ca03bcf86c9322b27c5782 +size 580117 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 36ddf98afc..5b7300a0c0 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a7b7ffeac84c208dc1135994b2ed9da34334ce8dcb9b9947aff389747bc4c38f -size 3073655 +oid sha256:d63334c5a0d32ac978ba2cc3502d9ea7b43b7e80b67ca403dc00d75ccd282f33 +size 3073691 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 46dd3626a8..ce4c8c69cb 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4975d4b27dc65fce2fff60d335d269434e6c1cc898e6df00a0db66fc93e1fd53 -size 487245 +oid sha256:f64273ac4f2462fdb387a451d01e5ad4b179bcc2db247feaa04187416c0c8c71 +size 487251 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index 1d9f219b4b..ba228a0429 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1aab28335186b8570d851eb73027eb58c12662f12085de2240a884e81073c1ff -size 2037137 +oid sha256:14059ed797e6f9c2908d1d536c61e3ab3b6d6857c3eccf20b995190590f079fb +size 2036910 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index 9cee35792b..a040f46aa0 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:13d34faa0fdabf5338565e84f490c2b1c0cfe70e0d701bf0ea55b568a92d2f3e -size 567758 +oid sha256:17aae0d11eeeec0b2e9891da8064793eb2b9f8bb1a6469cce829f73b2aa9c81b +size 567936 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 644e12edbd..4eef32ff08 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b0bac5bc73556a5efe28f3e7cbf5028ee441b027b8f78e7e5cfe5e36c8d840d6 -size 949178 +oid sha256:de69d0d7cd46bb1c93b511abce27749eacce197e78b04b724b864e5b432919e3 +size 949086 diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br index ac1ed7c928..e10fbdc44a 100644 --- a/lib/search/indexes/github-docs-3.2-de-records.json.br +++ b/lib/search/indexes/github-docs-3.2-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3182bc7e900f399bbf49b794e54df717055e368333a837792178aae5ef36b761 -size 517572 +oid sha256:4ea9e928e9abd4b722c07c0577189c561522a5aa75bdba8b97611ac416498976 +size 517530 diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br index a1597c0a65..e17640bbfb 100644 --- a/lib/search/indexes/github-docs-3.2-de.json.br +++ b/lib/search/indexes/github-docs-3.2-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:585f01336663fbefa6f3f1fe1ff85b12d84db25a915f8b88d91aa587f2677b51 -size 2333824 +oid sha256:093ae94765f10a33efa8cad9f6505954e2fb9235e5abf385fc1bcf54cab75636 +size 2332966 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 9d8c7ffcef..ab7aa547b3 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f1f0ed4432b3b4f41f78ca643ad025bfa03d05bca0b92aef340aaa9028603a8b -size 471486 +oid sha256:fbd09bf77b92ad6e9acd15e554356294d697ddef5e8cf6f03a53721042bcbdf7 +size 471379 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index d5a7de2cc2..bf4b8764fe 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7c99f38b5e08b30714158f37c69208a8d408f5ea5efe27e5484e05e5638f795 -size 1838041 +oid sha256:5e787d3375d42d703a41de426122deeebbccbd0951e369aada42754a0fb582c2 +size 1837817 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index a0fd732999..8093c3d070 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:522847b31a1868e019713bd1be77a1ad7f2f6b7dbc92a9c7fd86754ab8101f84 -size 193543 +oid sha256:d87e1f600553442e1327a8ca7f332dd8341bf44ff0a6ac3951e8c6c28e87f672 +size 193629 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 95c92d985b..bb0a54b781 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9937048d734494e96b0dc466e6b6a58a22ffd8281beadb726a5948f67d4b71ba -size 694142 +oid sha256:940e53d03b92038403b61f6ece6a13be7ec2b4a45bc0fe64460de2108f7d9541 +size 694112 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 49faaaf4a8..c72fedeb6b 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b9c98d325bfdc2d6624b6a851e794e73d3c2cb96b1080e3e44cbd50ca74783e4 -size 590378 +oid sha256:63e2e516a9d11b5331a255cc2c2a760c10bd23a0296f4c9a48bb5100d2b840ac +size 590358 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 96b25bed00..6b4dadfc9a 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:925ec5e0dd2948d9205e79395e231390dbbea3e2a08a6b2144308188400c1e7d -size 3141510 +oid sha256:88abc1473bf0835fe891f360238beae3e25151004bee1697a3b066a56005215f +size 3141066 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 0a0ce3d3cd..7f768ffc1e 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9fc98f36a6516be3ade0228e172ae9da5511e1c8f5eed88c268d6c6741b30336 -size 496774 +oid sha256:1c89843908322e61ab63edf1ce67c8513e2d6db3c36a06260c324e43c48d73ea +size 496634 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index c97d4d55cc..83936d853d 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:285c504ff58bb3887384e4ca5c78ed862abb0bd0697eb5594508afc2cdc45e8d -size 2079490 +oid sha256:fa9e9f9a420ff844f36f2eaebb6cb5ad8ee10e973b3082f1032ebdc4f3bd063b +size 2079151 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index f4bf0aa8e1..e27600cb08 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a991b65b89c321df71a1b0141210bf3810b7dce62b055717f67f5c26f7853c04 -size 770661 +oid sha256:cdb511b78f33a30444b6147d3450b36685315619862a2ddd128eef6396421eb8 +size 770789 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index deae6e2305..015ebbc450 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7939b9d96cd8668b51e3d22198b76b416abb8428c668c2be5280ae2824c5fe29 -size 1171351 +oid sha256:c0b624517754b1d531337b4f982d48bee5f877e87691d1551d4fbd2758c4c51e +size 1171528 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 546669d30e..9478aaa2eb 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a859a152641b6a341d87e4383f0c3c206e8a88bc9b397c603d3f7a4dac9a664 -size 690584 +oid sha256:9e4bd1805f7249806f1557d0ce62ff5467e8fbe659e87bbb97c4d24de03ed449 +size 690886 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 5ed50ceaeb..7a891c18b2 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39347e9ca7116abcec14dd97c0407c5b9982cb81b841d099dfb0954092815084 -size 3125179 +oid sha256:c59bf3956dc8b4066bd55061cf4c3c13356720da8d54c016cf1971bf76a62953 +size 3125237 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index f00299023e..e15ca69641 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2a51719426062e9b0566be2129efd146629344658ed637e7f1373b293b5f320a -size 637390 +oid sha256:0f9b00bc1043a65946c93af460d8dbb61a699ef1d2f1f6de7f86ed8fdb5ef157 +size 637100 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 07847512fa..449094ca5a 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fb8a77e333161f19f01be78e598cc777ac3a9c85f535acec6581f06135067e1e -size 2419155 +oid sha256:7373b0f499fe8435876e7ec61d3fc273c38b34f3c2caae827397828953bf9da2 +size 2418133 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index 4824a4dac1..d72044e531 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5de52e1e7af6489b722b3a7e8cd2497bbdc516435ede3f64ea2c1f2000c23df5 -size 205338 +oid sha256:f816f6895540cf5c17cd8a7d89d373a7179f3011608fb58acc86c3417332ddd7 +size 205247 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 9e5bb28b80..853f5b04ac 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:77a01cb39250236b18839be154247fe1174e1ab704e5e6e4fbd8f35e3a4fc6e1 -size 651379 +oid sha256:3b3531d80fc09aa9dabb1c3f406435f56a4ec5afa85b23538156a9b141222693 +size 651028 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 9241d45340..1459740dc3 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3ce56fc0e4e789428c6ba2c6e1079ebec5c0de79f5b38ef644711e9a82e7bb9f -size 795413 +oid sha256:99a1084b825888ff766ea23581c7a70f44eac9902fa74f68ff05cba63c549126 +size 795139 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 6393c6d456..50c7d48cb5 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bba324002e0a5a4f39b58997530d968d827876bb681785fcebc4b123b530eea4 -size 4150960 +oid sha256:c52ff8677c6033434aa537c4c82ee10437406bff1916620d2a4d9b0d6a6d4891 +size 4151485 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 37a10224e2..fed0825c94 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:993440001bfb227b3a7baa7d296904d7e7a6c51acdb632cd4ed1bbe4fe8531bf -size 669784 +oid sha256:4c9f6bdde5d5aff75cf009d5130d28ad8ffce425f5d710cb80f4a403eddcdec5 +size 669644 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index dd777b8352..872a8e036b 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9ac6a9a633a32bf4da81a37ad08add15831ac2dfa1f04cc870d0f2cf4f793cd -size 2751590 +oid sha256:64133d604a6d816e0042700f60e9ab1f100c6b6442e53ac0e707c39cd5455dbb +size 2749977 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index 95fcc908f0..035b280a58 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aca8048ae80a2ed434a7e91d85886f3b27ab1f2cc75eee5ef3482f35b4237cf8 -size 433815 +oid sha256:bf26c75fdc3ae1e31d0dca29e01251a5330af98d737d708a40ba7638d6aaf7d2 +size 433796 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index c0516b9cde..3ace8c3569 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b93b8c53a48bf844eabb1aea8bf775a98bae05e56a076b7b8aaeaf46e0a23ca0 -size 692456 +oid sha256:c5934ca796c47092866304c0752eab9b442a023bbde983fa16cefaaefbccbee0 +size 692595 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index 1cff77abf3..989303b304 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7674ab2d59d3cea1782411b66a92840ded5cced8e6ea14fbbf96a9b65ae4d0eb -size 400423 +oid sha256:5b01124c6e0ae87718751792c7b13f05444e24b4681a64b98604c385cb65b7cc +size 400513 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index 4289cd2464..7ea789ff07 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2fb6e4679d29a2dbe563506377b7a6a28c4623a7e1b77d95c104dc4b3cce842b -size 1744204 +oid sha256:b11496d68c293e686a8dae6d539e65885f4323cd71e3e29edc417cdec702e603 +size 1744338 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index c990165425..e9b2da2f67 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7aecc0eac493754612233318e14d3960bb967fa7508669f7e0fe07fd165339b0 -size 363698 +oid sha256:35294892ab952152a745619bece7ec868a96d9fe325e2356d152079e182b33ea +size 363462 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 5925ed6e76..2d8bbfe4f1 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a57a0b5592ad0d58228336b44d1dcb4d3a9c08a78c44e40d6046e8aad373813 -size 1352436 +oid sha256:9da5ac8d50faaa1c9ce5befd1316e603e9c3d9a3511b8b8ae1ddb6a426ee3861 +size 1352826 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index 93c9381472..ce77b904a3 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9eebbddf8a826773413203fd30a382cfb1c43243043d1cb607c2be71fd63a45 -size 130807 +oid sha256:78984536a6c594fb5de749efc1086599fcf351b52752df6c85fdae33f44d0af4 +size 130885 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 7500620c97..1ae6bd4cd1 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:35daa7ab40093a50ea9da12109a2227287352bbe7b09a91823267c9284381605 -size 420300 +oid sha256:8acbe8122c37121fadfd664c3ceae4d7eb249da4c9627873e56888451d8c2838 +size 420248 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index a6b633ddec..0cb0b54792 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d66d59d43b4f170f0a220ca3bb77f119139269791b74d9a0cc13e987cbd865e4 -size 453119 +oid sha256:bf3c3c2a8203cbdb9dfb97a46fa75e83c6bda58668d9a01e4b5ffdb5deccd6fd +size 453107 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 55ed4b5091..b38ea918ea 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5cb3df35c342b3db0d6d196ce21105ed8a6919325b3db8e3c346df33143eaec -size 2299101 +oid sha256:4b37d3853dce43e74324ad18cbb8816244d603bfbfe8d02c78efbac08d1762e0 +size 2298795 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 35a806bb2a..f7178aae22 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:16a82ba05cb27504104d378c39ce1e8c57796f3dcece7e5cd683433019b20b1b -size 384625 +oid sha256:f793e329d776cbe374335556ae9676c1ed63bfb4e7371732898718d484bdc4d3 +size 384769 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index d863322144..89dd00af19 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ff29c474e4c7fa099503af2fd23a374839c63ba1aa0730bdf1e8431bdb3d400 -size 1539177 +oid sha256:afadf7e101d8aa1a9b4bd3b55c98689b3245161a7338b25a852aa88ea6f45d1c +size 1539531