diff --git a/content/developers/overview/secret-scanning-partner-program.md b/content/developers/overview/secret-scanning-partner-program.md index c1967ee2cc90..c6591020ba2d 100644 --- a/content/developers/overview/secret-scanning-partner-program.md +++ b/content/developers/overview/secret-scanning-partner-program.md @@ -66,18 +66,34 @@ POST / HTTP/2 Host: HOST Accept: */* Content-Type: application/json -GITHUB-PUBLIC-KEY-IDENTIFIER: 90a421169f0a406205f1563a953312f0be898d3c7b6c06b681aa86a874555f4a -GITHUB-PUBLIC-KEY-SIGNATURE: MEQCIA6C6L8ZYvZnqgV0zwrrmRab10QmIFV396gsba/WYm9oAiAI6Q+/jNaWqkgG5YhaWshTXbRwIgqIK6Ru7LxVYDbV5Q== -Content-Length: 0123 +GITHUB-PUBLIC-KEY-IDENTIFIER: f9525bf080f75b3506ca1ead061add62b8633a346606dc5fe544e29231c6ee0d +GITHUB-PUBLIC-KEY-SIGNATURE: MEUCIQDfLvT8/zM8F1aB3cM0ZwyeWF1m5YR6IhcUIv1OKQYL0wIgBZ5lVXB3gHK+dT8+xt0WgRVLqvsTPFiDO9QP/7eJ4yE= +Content-Length: 187 -[{"token":"NMIfyYncKcRALEXAMPLE","type":"mycompany_api_token","url":"https://github.com/octocat/Hello-World/blob/12345600b9cbe38a219f39a9941c9319b600c002/foo/bar.txt"}] +[{"token":"NMIfyYncKcRALEXAMPLE","type":"mycompany_api_token","url":"https://github.com/octocat/Hello-World/blob/12345600b9cbe38a219f39a9941c9319b600c002/foo/bar.txt","source":"content"}] ``` The message body is a JSON array that contains one or more objects with the following contents. When multiple matches are found, {% data variables.product.prodname_dotcom %} may send a single message with more than one secret match. Your endpoint should be able to handle requests with a large number of matches without timing out. -* **Token**: The value of the secret match. -* **Type**: The unique name you provided to identify your regular expression. -* **URL**: The public commit URL where the match was found. +* **token**: The value of the secret match. +* **type**: The unique name you provided to identify your regular expression. +* **url**: The public URL where the match was found (may be empty) +* **source**: Where the token was found on GitHub. + +The list of valid values for `source` are: + +* content +* commit +* pull_request_description +* pull_request_comment +* issue_description +* issue_comment +* discussion_body +* discussion_comment +* commit_comment +* gist_content +* gist_comment +* unknown ### Implement signature verification in your secret alert service @@ -106,11 +122,11 @@ POST / HTTP/2 Host: HOST Accept: */* content-type: application/json -GITHUB-PUBLIC-KEY-IDENTIFIER: 90a421169f0a406205f1563a953312f0be898d3c7b6c06b681aa86a874555f4a -GITHUB-PUBLIC-KEY-SIGNATURE: MEUCIQDKZokqnCjrRtw0tni+2Ltvl/uiMJ1EGumEsp1BsNr32AIgQY1YXD2nlj+XNfGK4rBfkMJ1JDOQcYXxa2sY8FNkrKc= -Content-Length: 0000 +GITHUB-PUBLIC-KEY-IDENTIFIER: f9525bf080f75b3506ca1ead061add62b8633a346606dc5fe544e29231c6ee0d +GITHUB-PUBLIC-KEY-SIGNATURE: MEUCIFLZzeK++IhS+y276SRk2Pe5LfDrfvTXu6iwKKcFGCrvAiEAhHN2kDOhy2I6eGkOFmxNkOJ+L2y8oQ9A2T9GGJo6WJY= +Content-Length: 83 -[{"token":"some_token","type":"some_type","url":"some_url"}] +[{"token":"some_token","type":"some_type","url":"some_url","source":"some_source"}] ``` **Validation sample in Go** @@ -133,11 +149,11 @@ import ( ) func main() { - payload := `[{"token":"some_token","type":"some_type","url":"some_url"}]` + payload := `[{"token":"some_token","type":"some_type","url":"some_url","source":"some_source"}]` - kID := "90a421169f0a406205f1563a953312f0be898d3c7b6c06b681aa86a874555f4a" + kID := "f9525bf080f75b3506ca1ead061add62b8633a346606dc5fe544e29231c6ee0d" - kSig := "MEUCIQDKZokqnCjrRtw0tni+2Ltvl/uiMJ1EGumEsp1BsNr32AIgQY1YXD2nlj+XNfGK4rBfkMJ1JDOQcYXxa2sY8FNkrKc=" + kSig := "MEUCIFLZzeK++IhS+y276SRk2Pe5LfDrfvTXu6iwKKcFGCrvAiEAhHN2kDOhy2I6eGkOFmxNkOJ+L2y8oQ9A2T9GGJo6WJY=" // Fetch the list of GitHub Public Keys req, err := http.NewRequest("GET", "https://api.github.com/meta/public_keys/secret_scanning", nil) @@ -252,14 +268,14 @@ require 'json' require 'base64' payload = <<-EOL -[{"token":"some_token","type":"some_type","url":"some_url"}] +[{"token":"some_token","type":"some_type","url":"some_url","source":"some_source"}] EOL payload = payload -signature = "MEUCIQDKZokqnCjrRtw0tni+2Ltvl/uiMJ1EGumEsp1BsNr32AIgQY1YXD2nlj+XNfGK4rBfkMJ1JDOQcYXxa2sY8FNkrKc=" +signature = "MEUCIFLZzeK++IhS+y276SRk2Pe5LfDrfvTXu6iwKKcFGCrvAiEAhHN2kDOhy2I6eGkOFmxNkOJ+L2y8oQ9A2T9GGJo6WJY=" -key_id = "90a421169f0a406205f1563a953312f0be898d3c7b6c06b681aa86a874555f4a" +key_id = "f9525bf080f75b3506ca1ead061add62b8633a346606dc5fe544e29231c6ee0d" url = URI.parse('https://api.github.com/meta/public_keys/secret_scanning') 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 69d4e5e6800b..077831d063c4 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:dc9aefa161aead7b5df5a227d40b52f01c6cafd59f4a1f2e1005e62659eb9aa4 -size 788345 +oid sha256:d59f2da11f90d9344fae0d9785c754b0579ec58140628518330189ca6834604d +size 788317 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 7d9d927bf441..85288c985ed5 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:f1898117e79676fe5b79c34b41ee96346b4cdfcefd1f22206fceb38e52157e73 -size 1515942 +oid sha256:b5b2307b6a70071d1b11bc2016df3bf76bfabb45740d13a43fbf71416b3aa257 +size 1516308 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 01b2f2b12acf..dac80674c3f2 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:a1fbced053ba2244f3e50ba61658c49590dadeb8ea7b6e1335791d6893f4e947 -size 1100334 +oid sha256:eb9619065a73679fe30cdc60d16bf4b093b19e948a53df81c4445575b3da8d95 +size 1100404 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 73f121adc605..c6b0a5f24e1d 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:57b08006f77e43b97b2a06ba6a117b81d5c641aab483427fe4d501abb871e645 -size 4459008 +oid sha256:c140de978189884a23babb108d9306c03bf8743d7318565a576f5583cbeb924a +size 4458658 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 16acfc195189..49f9bb8bb744 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:f9370e830987106473d189a3001069da229d9ff242f81d87f4bd57e474a64021 -size 740048 +oid sha256:dcab735fece42626445f09b2c2f2b4155aa9fe375b375068cdd1f9678d061c17 +size 740100 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 2a89a731dcb2..20c69ad1e3c7 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:b349ba00d4ac5f506da2b911f7d6d4a9542453d108a26d0aabb0c91f04602e61 -size 3073629 +oid sha256:71823df713278d08f41e75bdd0e317a33dc1de0cca65b69b2a17ceebfbe0f58a +size 3073724 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 2aee68dc046a..a9afbecb86b0 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:9c2bf9e45abbe980f1f14ddfc0dbbdc1dd7d95b40de1343c0307c07c31c4724c -size 830739 +oid sha256:c76ae9b4a0c8a0c4be34bc84bf1c14d302edf92f946e161bf40a91a1dd8288f4 +size 830721 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 8909976beac2..e67742608a20 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:6c65c1d363f52b1a4036629d79ddb724d0a0b4e9f79c05cc5622c90fade0bcd1 -size 4377350 +oid sha256:0bb1a507d9d674a89b54d4919be623f942dbee6233a6edc09c8f4a8ba7c7ff7f +size 4377232 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 64b9caa2c0bb..0b249e9f9186 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:8e9405d8203f7d142df19c020dc9d4e7269880f6861c1cce12e9df4187db465f -size 727372 +oid sha256:57775f54b2cc550fa32c5644809082abcb9f9007d6cfba190767700e088bf6fe +size 727369 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 f1d2f058f868..74b5b09c8e7f 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:d99190ac991f85b8e050abbc73e27faa7e8d79d661d7d405335e308b6c769fbe -size 3061889 +oid sha256:1682c34841a6d13af8ddeeefe3a7be01eb42ec1bc77f5c9dbcd89730d85204c1 +size 3061672 diff --git a/lib/search/indexes/github-docs-3.3-cn-records.json.br b/lib/search/indexes/github-docs-3.3-cn-records.json.br index b0399da886aa..1a510f78ab13 100644 --- a/lib/search/indexes/github-docs-3.3-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.3-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9419362c41612a5da9d8000e2c96dfd0007c90029f9989dcae32f9a36fa92461 -size 813798 +oid sha256:c27c8064ca16b58f4bb4177cd2c0738481bc0361638d5d56e9a035121a3f995d +size 813813 diff --git a/lib/search/indexes/github-docs-3.3-cn.json.br b/lib/search/indexes/github-docs-3.3-cn.json.br index c50b2676cd39..3126147eb97f 100644 --- a/lib/search/indexes/github-docs-3.3-cn.json.br +++ b/lib/search/indexes/github-docs-3.3-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b90d6e0db3d00e3af76a7e95a9e389a7661ec93b1e74d21ce42dc4c816e40442 -size 1565692 +oid sha256:0626e15dfd82e006c8f0b9c9f56bba7a13e6495e96cd70e67a7dc2fc52991eec +size 1565967 diff --git a/lib/search/indexes/github-docs-3.3-en-records.json.br b/lib/search/indexes/github-docs-3.3-en-records.json.br index d9b97befc21d..b760a484ea78 100644 --- a/lib/search/indexes/github-docs-3.3-en-records.json.br +++ b/lib/search/indexes/github-docs-3.3-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f1734c934ad7dd310f6428a2d6e2c7d125a07a46a2c044e5defcd873d9bb8de -size 1135933 +oid sha256:39013c6451801ef57cb0e6d10c991a0a2b57acefd42aeb702d57f5982408c8df +size 1135988 diff --git a/lib/search/indexes/github-docs-3.3-en.json.br b/lib/search/indexes/github-docs-3.3-en.json.br index ec5ac53b1578..5fd912722034 100644 --- a/lib/search/indexes/github-docs-3.3-en.json.br +++ b/lib/search/indexes/github-docs-3.3-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c306a5b02d001db065f36beb72fc7f755c8cfa9f6f6d67be6637c9bc525d4ee9 -size 4564116 +oid sha256:ef9f3e2998f2129f36c5188d24974107e9904e070d98156ec31f266073cf5744 +size 4565814 diff --git a/lib/search/indexes/github-docs-3.3-es-records.json.br b/lib/search/indexes/github-docs-3.3-es-records.json.br index 7488ca6b3b42..897fd72be4c1 100644 --- a/lib/search/indexes/github-docs-3.3-es-records.json.br +++ b/lib/search/indexes/github-docs-3.3-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc22c5c6b6642da9396d2417033b053871b6f77aa6dd478b553935d9802b902a -size 762183 +oid sha256:1286323bc30bde7a8a1c346b4af86b5e32004f93634c11976d04a918fa064f01 +size 762186 diff --git a/lib/search/indexes/github-docs-3.3-es.json.br b/lib/search/indexes/github-docs-3.3-es.json.br index 9301405fdf6a..fd2e7035f9b3 100644 --- a/lib/search/indexes/github-docs-3.3-es.json.br +++ b/lib/search/indexes/github-docs-3.3-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8f59feec7111f939f1117e8b058211d05e88b0ae96f1734750b4b3235673fbcc -size 3164791 +oid sha256:210d124dbb8a622136f968259b8c107e9441e3d43864512f62749182c8dc0467 +size 3165183 diff --git a/lib/search/indexes/github-docs-3.3-ja-records.json.br b/lib/search/indexes/github-docs-3.3-ja-records.json.br index ffb838f0602c..bed106b5ef68 100644 --- a/lib/search/indexes/github-docs-3.3-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.3-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8250121b32c9a37fcf22fa4720c81e06448518382ea8468d78ea8f137e38e6ad -size 855933 +oid sha256:1e9fd969e730e00a459e845fc7721a55ed83b0e19aa39dab3f3c3de22c44a38b +size 855919 diff --git a/lib/search/indexes/github-docs-3.3-ja.json.br b/lib/search/indexes/github-docs-3.3-ja.json.br index a581dc8f6e14..6af0d5e515ab 100644 --- a/lib/search/indexes/github-docs-3.3-ja.json.br +++ b/lib/search/indexes/github-docs-3.3-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efeed840cb8cb5226e87f71eac2f879d91ca02187beb46ca00a82e8845749dc5 -size 4510921 +oid sha256:8611342f3f09b63b17a86d2fcf83c601888277ed8d7d9883ed5b4a4a7dce9311 +size 4511120 diff --git a/lib/search/indexes/github-docs-3.3-pt-records.json.br b/lib/search/indexes/github-docs-3.3-pt-records.json.br index e56d7a71b067..1e80787533eb 100644 --- a/lib/search/indexes/github-docs-3.3-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.3-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1b0923cc30f2a621cd305ef690415923b2a75ca51c8011abbe2221145dff4165 -size 749354 +oid sha256:3536f479da4566337b97785e88854fdced0aeeb8e01a50b6811d133fe36b73e2 +size 749318 diff --git a/lib/search/indexes/github-docs-3.3-pt.json.br b/lib/search/indexes/github-docs-3.3-pt.json.br index 2b1759ccedd4..7f1065c5389e 100644 --- a/lib/search/indexes/github-docs-3.3-pt.json.br +++ b/lib/search/indexes/github-docs-3.3-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4dcadb1c9ae710e279cfe85161940bcd5d8a206fac44ded395edfb743c4c062d -size 3154358 +oid sha256:338e5e80963a1ffae2460ebb2174b70c19660593bbaf31fce531b06473890cb4 +size 3154589 diff --git a/lib/search/indexes/github-docs-3.4-cn-records.json.br b/lib/search/indexes/github-docs-3.4-cn-records.json.br index 6b0a199af82b..60fc56d13f2a 100644 --- a/lib/search/indexes/github-docs-3.4-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.4-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31486b04a40044e9c2e92cd1ce44ca62d1da2de1f1de4d164971055af7920cbc -size 816199 +oid sha256:5d21c4b280547b4181dad6e9b0b4481858e4e9e6c425504526ae2503d355775d +size 816191 diff --git a/lib/search/indexes/github-docs-3.4-cn.json.br b/lib/search/indexes/github-docs-3.4-cn.json.br index 0815c6747a25..c306466d280a 100644 --- a/lib/search/indexes/github-docs-3.4-cn.json.br +++ b/lib/search/indexes/github-docs-3.4-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71a8e51021a69ab4f1a33e9d49482af7b62df86d01bc57c54e7539b198a4f2fc -size 1577637 +oid sha256:23eaf4d6bf933b39aa9ed1634f29078f19ab4d05496ad548e80bc14a43d77bdf +size 1577651 diff --git a/lib/search/indexes/github-docs-3.4-en-records.json.br b/lib/search/indexes/github-docs-3.4-en-records.json.br index 71de9d1e96df..68ec5edc7bd7 100644 --- a/lib/search/indexes/github-docs-3.4-en-records.json.br +++ b/lib/search/indexes/github-docs-3.4-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e0ff741ae06ca2aac56bf116e96605dcac550fedde0e01ad1ae57c54d1668961 -size 1147563 +oid sha256:5343763f434c0e3340e495ef86c117d4efadf2f292f4a4690e7b7c370d6a52fb +size 1147622 diff --git a/lib/search/indexes/github-docs-3.4-en.json.br b/lib/search/indexes/github-docs-3.4-en.json.br index bb2af3bf0193..d06056a9a297 100644 --- a/lib/search/indexes/github-docs-3.4-en.json.br +++ b/lib/search/indexes/github-docs-3.4-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e53ab7904577e41125a338a93e17cf13026d1b94c97509e55dc3c29b6961f157 -size 4624010 +oid sha256:b6262e8476fba9c64a707047f4dfa9e574e16061956c42beefc7226e34937f38 +size 4623564 diff --git a/lib/search/indexes/github-docs-3.4-es-records.json.br b/lib/search/indexes/github-docs-3.4-es-records.json.br index be0041db8d81..333ee5092f27 100644 --- a/lib/search/indexes/github-docs-3.4-es-records.json.br +++ b/lib/search/indexes/github-docs-3.4-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d8e8b672b9dd577d23afd88da78629856c5e41544bbdc70a8d2bb95014640a2d -size 766586 +oid sha256:3e8d8e3c56a3cdb7fb854748a29d79ef255aa766e90d54cfd2a2df17bef14924 +size 766564 diff --git a/lib/search/indexes/github-docs-3.4-es.json.br b/lib/search/indexes/github-docs-3.4-es.json.br index c090e149bc3e..8bf9709bcbb5 100644 --- a/lib/search/indexes/github-docs-3.4-es.json.br +++ b/lib/search/indexes/github-docs-3.4-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ed8844cca61b4fb36d9765b8d99edeed6312a18b171e42681590ff6876f50bcf -size 3192992 +oid sha256:87972c83fc4f9eadb7222046b03844769fdef48e682b9b53a2631e8276e9cfcc +size 3192110 diff --git a/lib/search/indexes/github-docs-3.4-ja-records.json.br b/lib/search/indexes/github-docs-3.4-ja-records.json.br index bcada860c180..84d57d4bbe08 100644 --- a/lib/search/indexes/github-docs-3.4-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.4-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfe37b793067420e83aedb323477e4085ddb3f5fc04f58d70e6580a9d1d727fc -size 858667 +oid sha256:7bc1c73777c7156c9ee0f57057e937df43a277b2b6fa263981c13186286084bb +size 858584 diff --git a/lib/search/indexes/github-docs-3.4-ja.json.br b/lib/search/indexes/github-docs-3.4-ja.json.br index 01c927bd4206..0c4e4fc6876c 100644 --- a/lib/search/indexes/github-docs-3.4-ja.json.br +++ b/lib/search/indexes/github-docs-3.4-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5bd8fe11a7a386b0f998fb4c32a0af12514e1343fb4e8912dea590db140a1803 -size 4539510 +oid sha256:9b962357063b14aa7231593b64b76fd8565108f12fea4636a0f0a0f305c4768b +size 4539586 diff --git a/lib/search/indexes/github-docs-3.4-pt-records.json.br b/lib/search/indexes/github-docs-3.4-pt-records.json.br index de7cfd7e22a1..87a7e8556498 100644 --- a/lib/search/indexes/github-docs-3.4-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.4-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d43e34ec764caa3c7d9d022d736ff79fc15a9f0a24379608afbd9f27d59abbdd -size 753772 +oid sha256:9db4077d21ba0958d15e38878c626d0653b7500d1c51fc237b689ca8266bdfb9 +size 753795 diff --git a/lib/search/indexes/github-docs-3.4-pt.json.br b/lib/search/indexes/github-docs-3.4-pt.json.br index 0b303fde8a13..3cacda78333f 100644 --- a/lib/search/indexes/github-docs-3.4-pt.json.br +++ b/lib/search/indexes/github-docs-3.4-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8e02fe834833514f0d1521ce636dc0a117551c3757cf6a53b7df2a3005a54fe -size 3180589 +oid sha256:d6831529f0f8260ba6bd2d12ba7e3a5a86a0ab5ef8660f4237e03afa2daf6f2d +size 3180906 diff --git a/lib/search/indexes/github-docs-3.5-cn-records.json.br b/lib/search/indexes/github-docs-3.5-cn-records.json.br index 6f5fe03d8c78..e059128a26b0 100644 --- a/lib/search/indexes/github-docs-3.5-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.5-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:47680cad8f1a7966bc0ba5be96bd65fb5f661068e4ccd35a7aa11a1d0e454067 -size 847202 +oid sha256:616552be0fe2b11d3f4ac037825fe642649d344d0fb358a4386a96f8f2fb285d +size 847139 diff --git a/lib/search/indexes/github-docs-3.5-cn.json.br b/lib/search/indexes/github-docs-3.5-cn.json.br index 4ca257c3281c..d4b66ed16663 100644 --- a/lib/search/indexes/github-docs-3.5-cn.json.br +++ b/lib/search/indexes/github-docs-3.5-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e93a62e2791cd3d843df3788812bba1e8338b72f9989bc4c5d8154fe25805b0f -size 1639326 +oid sha256:9c6151bbd412dacdf3dc924dbdca0d2fde5ae3974d347732ab7e36c87535212a +size 1638929 diff --git a/lib/search/indexes/github-docs-3.5-en-records.json.br b/lib/search/indexes/github-docs-3.5-en-records.json.br index 62b144ccda52..0888f64eea9c 100644 --- a/lib/search/indexes/github-docs-3.5-en-records.json.br +++ b/lib/search/indexes/github-docs-3.5-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c29a9efbe53151b8d7523a7ff66b3e0e23f37d989d75648b9430457e29618d01 -size 1188578 +oid sha256:2cfab83838481bf94b094b2fa992a049699e4ec0a4f71da48a5c49d1c0f5ec5a +size 1189172 diff --git a/lib/search/indexes/github-docs-3.5-en.json.br b/lib/search/indexes/github-docs-3.5-en.json.br index 533cd2ef3dec..3f54aa3eabc3 100644 --- a/lib/search/indexes/github-docs-3.5-en.json.br +++ b/lib/search/indexes/github-docs-3.5-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3a63055d15aa474beff52c9806603ba78e69aaba3e7c38e955ce0cd47536451 -size 4790473 +oid sha256:791dd52bbe5f2f73f5b74e77aaa81ca867e0ae08e8af46455bb95603ff873e9c +size 4791584 diff --git a/lib/search/indexes/github-docs-3.5-es-records.json.br b/lib/search/indexes/github-docs-3.5-es-records.json.br index 5e0d2a1bbd1f..760bffe92c9f 100644 --- a/lib/search/indexes/github-docs-3.5-es-records.json.br +++ b/lib/search/indexes/github-docs-3.5-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:284a14787505590c3d8ddf4104216d94b32ea648673a74daa583fcec7c8366a9 -size 791539 +oid sha256:b923ef79ac64f7c37ba86959f19c71eb81131679af8b7b1c1fff439d3398e3a6 +size 791548 diff --git a/lib/search/indexes/github-docs-3.5-es.json.br b/lib/search/indexes/github-docs-3.5-es.json.br index fa21ce171eff..b812cbdbbb55 100644 --- a/lib/search/indexes/github-docs-3.5-es.json.br +++ b/lib/search/indexes/github-docs-3.5-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:747bc18b991f14bce8336cd6c1dd689dfa0bb2c601b98f9245f652679309f672 -size 3307160 +oid sha256:60bb3bd5fae3b404f3f40519285670b1de52d53e28737b75fc6802d7561805e6 +size 3307333 diff --git a/lib/search/indexes/github-docs-3.5-ja-records.json.br b/lib/search/indexes/github-docs-3.5-ja-records.json.br index fa13953877d6..afda3e27573f 100644 --- a/lib/search/indexes/github-docs-3.5-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.5-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7cf291e1af28b7c0a14c86e0b2ec462bc1b516143cd7f66fc5b6355fdfc745d -size 888941 +oid sha256:52c93b419f2e65f7bb07385f7a6d3033baaae9d26b8ddb9d94dd1a790dab1183 +size 888882 diff --git a/lib/search/indexes/github-docs-3.5-ja.json.br b/lib/search/indexes/github-docs-3.5-ja.json.br index bea2c68640eb..02d702a0284a 100644 --- a/lib/search/indexes/github-docs-3.5-ja.json.br +++ b/lib/search/indexes/github-docs-3.5-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe379f803be49fc2d9325a3f8a54dd03147c5b511f622fd43667e410b0faa786 -size 4711209 +oid sha256:de0c3c86cca2dfaca95a9f63ff807080a8526b6f26b07ee28446db637c81627a +size 4711980 diff --git a/lib/search/indexes/github-docs-3.5-pt-records.json.br b/lib/search/indexes/github-docs-3.5-pt-records.json.br index 728a080da7d5..f3f8e3981330 100644 --- a/lib/search/indexes/github-docs-3.5-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.5-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e44ce09c4ff430a793432ab11a54eb39817afcb7149b8ee1ece2efa48f8105e7 -size 778807 +oid sha256:80961b935051d91a76d946f704cf37b48b1b502f3ad7ed7c8ed1c24091a484ec +size 778737 diff --git a/lib/search/indexes/github-docs-3.5-pt.json.br b/lib/search/indexes/github-docs-3.5-pt.json.br index 21ec2fa37657..edd43b749ef9 100644 --- a/lib/search/indexes/github-docs-3.5-pt.json.br +++ b/lib/search/indexes/github-docs-3.5-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:532732e1f886127d18b82e6f8d6da487d222e13be2ed1c5dea4ef93ac7045fcd +oid sha256:049238cd53277e2cbe4145aa336c8071c5454b5379154cd7118bbef84312e213 size 3296432 diff --git a/lib/search/indexes/github-docs-3.6-cn-records.json.br b/lib/search/indexes/github-docs-3.6-cn-records.json.br index 255927a8b094..8a7f7246319f 100644 --- a/lib/search/indexes/github-docs-3.6-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.6-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:56c3223826a50211335a3939d73fbbd4d5d4bcfc33e2567eb54be72deb377016 -size 868870 +oid sha256:158a7c986c65d48c9a603ff449d08cb061d024aad9d3db67ec25bd7526870df2 +size 868815 diff --git a/lib/search/indexes/github-docs-3.6-cn.json.br b/lib/search/indexes/github-docs-3.6-cn.json.br index 304bc70c28d7..a30b9048363d 100644 --- a/lib/search/indexes/github-docs-3.6-cn.json.br +++ b/lib/search/indexes/github-docs-3.6-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0a98404506f7a43eb9102116057d0810d8eedac6c695cfe683302f94b89ef464 -size 1676933 +oid sha256:8155e19fea1536076ad99f3aeab92c1bf2a9467f9a6ea12b53d28c4d5c424ea3 +size 1676861 diff --git a/lib/search/indexes/github-docs-3.6-en-records.json.br b/lib/search/indexes/github-docs-3.6-en-records.json.br index e8bdf4a7567c..0b80c11a2e00 100644 --- a/lib/search/indexes/github-docs-3.6-en-records.json.br +++ b/lib/search/indexes/github-docs-3.6-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fe158628aed5414b932144da7ddb68dd3a06a1b51b0256105d274db128df9c65 -size 1220930 +oid sha256:c3e06230f3a882aebb7567b3fee45bca774b0ae98e6e646d1c5ff68ecca64496 +size 1221097 diff --git a/lib/search/indexes/github-docs-3.6-en.json.br b/lib/search/indexes/github-docs-3.6-en.json.br index d647ad2a76aa..b428aa9e940a 100644 --- a/lib/search/indexes/github-docs-3.6-en.json.br +++ b/lib/search/indexes/github-docs-3.6-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:71f6e7f76df4102c798ee115f6918da9cf7728c0fc2496c38005692f630bea08 -size 4923594 +oid sha256:29d1d9661bb95572450432df422762339b662264a54a2dd2ae35f9378312da1e +size 4923718 diff --git a/lib/search/indexes/github-docs-3.6-es-records.json.br b/lib/search/indexes/github-docs-3.6-es-records.json.br index e857b77294ea..f308a2982c4d 100644 --- a/lib/search/indexes/github-docs-3.6-es-records.json.br +++ b/lib/search/indexes/github-docs-3.6-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a5781f34792ac551e48b48365c24a9339e0bc242ffafbadc48886e9cf73c856f -size 813768 +oid sha256:e82fce18e24fb5bfbc3bf4c3be1e7b92f4b3211ed90b15e3c5d2e95c4d2b0e03 +size 813781 diff --git a/lib/search/indexes/github-docs-3.6-es.json.br b/lib/search/indexes/github-docs-3.6-es.json.br index 8378dbeb930c..2986055abfa1 100644 --- a/lib/search/indexes/github-docs-3.6-es.json.br +++ b/lib/search/indexes/github-docs-3.6-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:49fb2bc78da1f67dfc1d75fbf818fa67a2d5e5fa5f24724e40f465eca0308e1e -size 3405428 +oid sha256:3232862bb31e08ca5865b3d962006f344bcb534d0fc0b73760a9e04c65e6adbc +size 3405256 diff --git a/lib/search/indexes/github-docs-3.6-ja-records.json.br b/lib/search/indexes/github-docs-3.6-ja-records.json.br index 8049da76d77a..52f6e98325fe 100644 --- a/lib/search/indexes/github-docs-3.6-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.6-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0ab5053e05d937bd3afa295c5cedc1af7eead9ad3101509cd3f874b7434db5a1 -size 913826 +oid sha256:54900ff9448a45a698a82868330b33c082c99e3545f329e24e632459e1822e49 +size 913691 diff --git a/lib/search/indexes/github-docs-3.6-ja.json.br b/lib/search/indexes/github-docs-3.6-ja.json.br index cbdc89278759..963da78297c9 100644 --- a/lib/search/indexes/github-docs-3.6-ja.json.br +++ b/lib/search/indexes/github-docs-3.6-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6981142524fb65a2067d2d2cec8ee024b5b36c8c104079e21222c092c0d1e1fd -size 4846092 +oid sha256:5db04b23c683e01693b241ad6ff2da6a052629279945641f98e6bc903a92e4a6 +size 4846105 diff --git a/lib/search/indexes/github-docs-3.6-pt-records.json.br b/lib/search/indexes/github-docs-3.6-pt-records.json.br index b2161806b3ac..750c85e35292 100644 --- a/lib/search/indexes/github-docs-3.6-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.6-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9393c4f3b4e3dd653b6b89517751e487aa19b0671893977932582e0bd3251092 -size 800277 +oid sha256:aece3d897db492a624c7a21e8b60f08dfc1fdba310f1498ac9711e433b9f32ad +size 800262 diff --git a/lib/search/indexes/github-docs-3.6-pt.json.br b/lib/search/indexes/github-docs-3.6-pt.json.br index 99e89b13b7c6..9fe01f1e9cb3 100644 --- a/lib/search/indexes/github-docs-3.6-pt.json.br +++ b/lib/search/indexes/github-docs-3.6-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:31135e6a55e818a69ac44ceaed629c3042e4fe4362b74be866b5f96f725e1246 -size 3393478 +oid sha256:568252d84d8ea90e829f8731f44809f3db1ff452f959c1ea74db7721825691b1 +size 3393939 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 cc13faf885f4..ac5c5a825364 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:c8cd6394706fdaed8f7931de0d2c923f6c396dd815221b3d63f3c2e5c0a58868 -size 1014856 +oid sha256:864a44a44dbfd6facc6540ebf6d34760fd9ab93b027869a3429c7cdbdd62652f +size 1014886 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index cfe6fea83474..86a1dc6f920f 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:b0af7012a61c4c22b32c65107d9cd8a9d55a5a741c8eee86099d838ce176b9f6 -size 1767554 +oid sha256:4fe4ccff1a99dbd8db26f0cbe7a387453b7b1e023dacfa315e1c3f72fba841dd +size 1767111 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 1742154c49df..90a9440ef43f 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:5cb115c60d2a66205fa183a1228eedd38f384a15ed29004761c252162dd288d0 -size 1469165 +oid sha256:e20315001a7ed191270a021e0c673d48ca54b301fc01825bf1833998f72979d2 +size 1470134 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 2e3c35e36101..89205ffc67d4 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:1508b7cc751e1789a3ca248d3bdc2d391764eb4f31aa477a22463370e0faa8e6 -size 5658471 +oid sha256:73ea0a7d42b9ca275ad16b34c6480aa6f1bc3810f9882256bc7989fafc452b99 +size 5663289 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 97edb40254a6..eecbe8b23e65 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:dceb612fe1083bbcb1b4532a9f653ae64c9aa27853a8be0b678f17562cbba0c1 -size 943239 +oid sha256:19aec4910c0c7df532366fd6d63ed2c55b07b5063db1785c9c0f5188612e7e27 +size 943199 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 09b674f432be..84c05bc79a5f 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:0bab4822fe4fb07ea6c8790d580cf4d850c5f42ff05d7f8c1310b44f7d03dfc4 -size 3869903 +oid sha256:6c340f553baf375b5c1519282ee6196e0c0fc9d5ab9d41b6415df99ed7ff544f +size 3869917 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 a62276ae17e7..ce931a776b88 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:4f34f8d5fba149f3f18c15a54d6a17c7336e8bc8be150b3b354f0ecff3f3e652 -size 1066203 +oid sha256:896b27c7b8ee2547c5d4f2e09e7a87ea0e6f9802fb749557efad72df41e12419 +size 1066232 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index b5b8bfcd455f..75163fce1d4e 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:8db955190c8e65d5f5fb9a502fdb868de2fe1709ab1b09538abab68ab5455318 -size 5499662 +oid sha256:bd8bedde3581335aaf215faad6fd64e4b4bfe3f43da6f35b4ca6e56c4a204c63 +size 5499360 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 262c20a2bc31..7840da0b39d9 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:0aeee06d893b24d2a8de8bf95aa60999067553401eb872c981dbf7219455b905 -size 926722 +oid sha256:45c0d32c930ba9a0fa6e50afe90c4ec0f9da5412c848e02d7b780c8edbd29e61 +size 926672 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index e6f9771b6aaa..c3f1d0b50cf9 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:ffdb64122355540842c0d087b66608dad0e633fdf8fbbe80d6a380f2eb0b7563 -size 3832072 +oid sha256:f7dc804f11eb6c0deeea66492c0a61bcc511790a09ae865e7dfe9e0b19bab403 +size 3832368 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 6d930a7697d3..fb7ef16ad8c2 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:b32f3495151f5d8683d72150cd67b3e019b96591f27d94cb67f92ae203ea43df -size 653727 +oid sha256:16ba4e35e189796355ede264a422e838ba9819f7701f56a5dec4a34b893ec654 +size 653582 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 2146c18dc926..06ca16ad6553 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:774f62c39a0ce2f587fcdf2cd78c0b12ea53f25b72172fea6e20516418903f31 -size 1275698 +oid sha256:34a883e5297c67cdece29faec8a3fc963389a78e5acfdaea2c0c79bd5471f7a0 +size 1275699 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 96b7f1abee33..e66553065c51 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:70d896751cbf797c4fa3ae6333320cf5c921bdc490553e4648475febac7b97ec -size 945834 +oid sha256:a0eaa969646d647dd7538e54009d61fd8b9005d45e9daee8053d35ced8270296 +size 945938 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index cdbed3a758c5..b0613c8b7042 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:362fb69b4dccfde037f3645ce40fa9d2eaaa2e56238a2d87eb619492f1eda7e9 -size 3748632 +oid sha256:e3177ce94df75507ed974c0cfde44c0ac32f63a4362c0fe33f6bb65034f024b0 +size 3749518 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 72451bf31f2c..0cefa54fde36 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:0309543729ae1d091fdefd38e34dba7eee1cb9938a5e578af8f2981a512f412d -size 622435 +oid sha256:0663b2eb71ea6de8b6ccc826642c2899bcd968e1bde0f5737e3287d27a1c57b0 +size 622398 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 6fdcfe0304a5..ede5cb378695 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:ed6e9274cd30a5e6d637b26bb81eab91f4ede7f570bbfbc6e3839457499633f1 -size 2513935 +oid sha256:a19a1e8946718806d924cfae52dbd88ee3901577a19f4d3b09f397a9bc4eb3d5 +size 2514507 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 0c7091a89881..6c5a211be770 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:28b92082db10de841d27a67eb89f81ee8a72bf106b059635d1c3c921753e2ddf -size 687390 +oid sha256:582f6737d10de7dfe39cf3c4f5be118bf8b3b7973b381bdcb87deec7471a3354 +size 687285 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 5eec7e7a6328..2850e34c56b2 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:1446ad99d3d5c080468690ce3e81bd046abd3a9843a5ea78690bb1c05113663e -size 3543098 +oid sha256:3556a77ba8987886ed5b2d655060567aa81cde4a86af22d965c952070584f8a5 +size 3543242 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 6c130e2552f8..334ded00a9c8 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:8f231b5003a20c5624aa2daec2f3b10a1cad1def8a5fb5c3c0629f02f2ed3418 -size 612470 +oid sha256:278028422654ce38c0bfbba9e56f0532eaf66f9319edfca713f1b16463eb1c11 +size 612414 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 69d948a5e09a..29254a791e6a 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:a1ade6bd2353ae6109b15cc8cbd2b962478a19cf4d1c685f647088adbfb80015 -size 2505162 +oid sha256:4f178700d30a8e5cdfc98a7a6bc9e34e4b72194308ab814506af19821bab64d5 +size 2505426 diff --git a/lib/search/indexes/github-docs-ghec-cn-records.json.br b/lib/search/indexes/github-docs-ghec-cn-records.json.br index 43468fb9c4c9..ad28781fee81 100644 --- a/lib/search/indexes/github-docs-ghec-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghec-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c5a95c59a1ad1d877d90dc73994999810d6f9ee370b7e9a3ba7e45cc62014508 -size 997093 +oid sha256:ca3f14f073bae50f2fa916d16b562fb2387355bbc5d08b4056a4bad9ebb58e2d +size 997158 diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br index c7d44894e6c1..7238c74fb3e7 100644 --- a/lib/search/indexes/github-docs-ghec-cn.json.br +++ b/lib/search/indexes/github-docs-ghec-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:be69f45e68e3edda31a7d5f9d5caa6bc95786a52f3bca55914a95dc6ef1cb526 -size 1906057 +oid sha256:16d085d80b578979d68908526d1a5c25d0ca5f4979c34df457774568480df164 +size 1905858 diff --git a/lib/search/indexes/github-docs-ghec-en-records.json.br b/lib/search/indexes/github-docs-ghec-en-records.json.br index 0a4fb6ba153e..64f13a96e452 100644 --- a/lib/search/indexes/github-docs-ghec-en-records.json.br +++ b/lib/search/indexes/github-docs-ghec-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:efc09b7dded31418a5212ca50afcd587ad99c60bbdb21d968abd367de37897e2 -size 1412858 +oid sha256:540b4008c9f868d833c978f1d446c4fc8bfd6e265dbd0411ff46966ea5d308b2 +size 1407949 diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br index 25b564b8e5ca..82995dd8ee97 100644 --- a/lib/search/indexes/github-docs-ghec-en.json.br +++ b/lib/search/indexes/github-docs-ghec-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:709b13a6ea4a5a89f53285c624ece133ae1c1bd290af626fd7813b421604597a -size 5720042 +oid sha256:0f0ccfc0e411fbb9953bef3f6dd06a463e3d39461aa78e1dd6b61634ebfa42c7 +size 5722295 diff --git a/lib/search/indexes/github-docs-ghec-es-records.json.br b/lib/search/indexes/github-docs-ghec-es-records.json.br index 4185b82eb85f..4c373298372b 100644 --- a/lib/search/indexes/github-docs-ghec-es-records.json.br +++ b/lib/search/indexes/github-docs-ghec-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:26f507c163f0cd7f78c7581e2730226fbad4d60ec1a161e707a766d2646acc79 -size 946630 +oid sha256:dfef9dd56e6ce1ed7e9ce164e90d0b869ef2ba37bb4db1632cb8c204f5fcd96f +size 946577 diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br index 1de7881a9717..df239bd0c86e 100644 --- a/lib/search/indexes/github-docs-ghec-es.json.br +++ b/lib/search/indexes/github-docs-ghec-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d1e84906bfd8303ba16f4aad89977c76493e4aa1bef8fbe3f581673e923d8083 -size 4027155 +oid sha256:256b0f44b2339278cdd55034f8c10ca8b00c1a81674c3ae1dc66d8061b4ba6e4 +size 4027735 diff --git a/lib/search/indexes/github-docs-ghec-ja-records.json.br b/lib/search/indexes/github-docs-ghec-ja-records.json.br index 4c5517047280..7d0ae7565d76 100644 --- a/lib/search/indexes/github-docs-ghec-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghec-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ffba7ad58e9bf0784ad786d3411867ad62951deb47d7ab25a7d95ca8944a6b9c -size 1056643 +oid sha256:5851dddab705153abfd57b454a693b9b5a1765e0b4a07ca92608a16185e57b5c +size 1056594 diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br index 50003ce32b41..2530718aed89 100644 --- a/lib/search/indexes/github-docs-ghec-ja.json.br +++ b/lib/search/indexes/github-docs-ghec-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:acda5e867780fac4dddc287f2b72602aa4d8007bd4f1bae01b04b30d1d95646f -size 5640134 +oid sha256:a00ce087a447580e9f62d094e43ba138bf1de766d5e5ca1e1bcbad2d9ce8e656 +size 5640407 diff --git a/lib/search/indexes/github-docs-ghec-pt-records.json.br b/lib/search/indexes/github-docs-ghec-pt-records.json.br index eb3af099f0f8..0cd4d9fd6fe8 100644 --- a/lib/search/indexes/github-docs-ghec-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghec-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e74d7b636e9349b40b17252af7475fdda6d56bb299fc383a87f3a99d4f7f86a -size 930410 +oid sha256:9476dec18a0cd914a7b03af1b77c51462f9fdd0657146d4e7b7bbde3a886e68a +size 930366 diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br index ee3fa1bbca5b..188a4ea22878 100644 --- a/lib/search/indexes/github-docs-ghec-pt.json.br +++ b/lib/search/indexes/github-docs-ghec-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:417732d46bbb3aaed640c1ca407fa3f9f1b9a79b3d9bd2569c020b4672c79393 -size 3982654 +oid sha256:838e672dfdd680040f52c7e58ff8fcb7df42c42a8474672fe6634a26488cc1a9 +size 3982500