diff --git a/.github/workflows/js-lint.yml b/.github/workflows/js-lint.yml index f07b6d22f2..e63401b867 100644 --- a/.github/workflows/js-lint.yml +++ b/.github/workflows/js-lint.yml @@ -10,6 +10,15 @@ on: branches: - main pull_request: + paths: + - '**.js' + - '**.mjs' + - '**.ts' + - '**.tsx' + # In case something like eslint or tsc or prettier upgrades + - 'package-lock.json' + # Ultimately, for debugging this workflow itself + - .github/workflows/js-lint.yml jobs: lint: diff --git a/Dockerfile b/Dockerfile index 3f12945609..c23095bf3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,8 +50,6 @@ COPY next.config.js ./next.config.js COPY tsconfig.json ./tsconfig.json COPY next-env.d.ts ./next-env.d.ts -RUN npx tsc --noEmit - RUN npm run build # -------------------------------------------------------------------------------- @@ -94,9 +92,10 @@ COPY --chown=node:node package*.json ./ COPY --chown=node:node feature-flags.json ./ COPY --chown=node:node next.config.js ./ -EXPOSE 80 -EXPOSE 443 -EXPOSE 4000 +# This makes sure server.mjs always picks up the preferred port +ENV PORT=4000 +EXPOSE $PORT + CMD ["node", "server.mjs"] diff --git a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md index 0155d6f285..af36775458 100644 --- a/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md +++ b/content/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services.md @@ -72,7 +72,7 @@ The `aws-actions/configure-aws-credentials` action receives a JWT from the {% da - ``: Add the name of your S3 bucket here. - ``: Replace the example with your AWS role. -- ``: Add the name of your AWs region here. +- ``: Add the name of your AWS region here. ```yaml{:copy} # Sample workflow to access AWS resources when workflow is tied to branch diff --git a/content/get-started/getting-started-with-git/managing-remote-repositories.md b/content/get-started/getting-started-with-git/managing-remote-repositories.md index 678c2f8733..3ffdb947b4 100644 --- a/content/get-started/getting-started-with-git/managing-remote-repositories.md +++ b/content/get-started/getting-started-with-git/managing-remote-repositories.md @@ -172,7 +172,7 @@ $ git remote -v ### Troubleshooting: Could not rename config section 'remote.[old name]' to 'remote.[new name]' -This error means that the remote you tried the old remote name you typed doesn't exist. +This error means that the old remote name you typed doesn't exist. You can check which remotes currently exist with the `git remote -v` command: diff --git a/data/reusables/secret-scanning/partner-secret-list-private-repo.md b/data/reusables/secret-scanning/partner-secret-list-private-repo.md index b125d16884..aa481ab424 100644 --- a/data/reusables/secret-scanning/partner-secret-list-private-repo.md +++ b/data/reusables/secret-scanning/partner-secret-list-private-repo.md @@ -209,3 +209,5 @@ Tencent Cloud | Tencent Cloud Secret ID | tencent_cloud_secret_id Twilio | Twilio Access Token | twilio_access_token{% endif %} Twilio | Twilio Account String Identifier | twilio_account_sid Twilio | Twilio API Key | twilio_api_key +{%- ifversion fpt or ghec or ghes > 3.3 %} +Typeform | Typeform Personal Access Token | typeform_personal_access_token{% endif %} diff --git a/lib/failbot.js b/lib/failbot.js index 228683c95d..427fc57ac8 100644 --- a/lib/failbot.js +++ b/lib/failbot.js @@ -3,7 +3,6 @@ import fetch from 'node-fetch' export default class FailBot { constructor({ app, haystackURL, headers }) { this.app = app - this.haystackURL = haystackURL this.headers = headers // Since we're using `node-fetch` we can't rely on it deconstructing the @@ -13,7 +12,11 @@ export default class FailBot { // and it's not a bug. // The correct thing is to extract it manually and add an `Authorization` // header based on it from the URL. - const url = new URL(this.haystackURL) + const url = new URL(haystackURL) + + // remove the basic auth portion of the url since it throws an error in node-fetch + this.haystackURL = `${url.origin}${url.pathname}` + const { username, password } = url if (username || password) { this.headers.Authorization = `Basic ${Buffer.from(`${username}:${password}`).toString( diff --git a/lib/render-content/plugins/code-header.js b/lib/render-content/plugins/code-header.js index 419cebde6f..ad13c65948 100644 --- a/lib/render-content/plugins/code-header.js +++ b/lib/render-content/plugins/code-header.js @@ -93,7 +93,7 @@ export default function addCodeHeader(node) { // Display the language using the above map of `{ [shortCode]: language }` const language = LANGUAGE_MAP[node.lang] || node.lang || 'Code' - const btnIconHtml = octicons.paste.toSVG() + const btnIconHtml = octicons.copy.toSVG() const btnIconAst = parse5.parse(String(btnIconHtml), { sourceCodeLocationInfo: true }) const btnIcon = fromParse5(btnIconAst, { file: btnIconHtml }) diff --git a/lib/rest/static/dereferenced/api.github.com.deref.json b/lib/rest/static/dereferenced/api.github.com.deref.json index df061d7579..7faf596000 100644 --- a/lib/rest/static/dereferenced/api.github.com.deref.json +++ b/lib/rest/static/dereferenced/api.github.com.deref.json @@ -23390,6 +23390,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -38187,6 +38190,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -43913,6 +43919,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -64019,6 +64028,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -72961,6 +72973,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -218947,6 +218962,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -241983,6 +242001,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -244729,6 +244750,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -250602,6 +250626,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -254408,6 +254435,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -258096,6 +258126,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -260808,6 +260841,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -263557,6 +263593,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -266109,6 +266148,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -287256,6 +287298,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -412147,6 +412192,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -442482,6 +442530,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -445511,6 +445562,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -448532,6 +448586,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -459648,6 +459705,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -462669,6 +462729,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", diff --git a/lib/rest/static/dereferenced/ghes-3.0.deref.json b/lib/rest/static/dereferenced/ghes-3.0.deref.json index c291a190d6..910004e34f 100644 --- a/lib/rest/static/dereferenced/ghes-3.0.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.0.deref.json @@ -29770,6 +29770,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -44526,6 +44529,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -48007,6 +48013,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -66988,6 +66997,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -72985,6 +72997,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -184261,6 +184276,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -204361,6 +204379,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -207109,6 +207130,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -213010,6 +213034,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -216814,6 +216841,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -220500,6 +220530,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -223209,6 +223242,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -225949,6 +225985,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -228492,6 +228531,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -249662,6 +249704,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -338664,6 +338709,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -356171,6 +356219,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -359191,6 +359242,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -362203,6 +362257,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -368156,6 +368213,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -371168,6 +371228,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", diff --git a/lib/rest/static/dereferenced/ghes-3.1.deref.json b/lib/rest/static/dereferenced/ghes-3.1.deref.json index 64aba6fbe2..e7f7b01880 100644 --- a/lib/rest/static/dereferenced/ghes-3.1.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.1.deref.json @@ -29770,6 +29770,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -44551,6 +44554,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -48032,6 +48038,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -67303,6 +67312,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -73300,6 +73312,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -187248,6 +187263,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -207348,6 +207366,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -210096,6 +210117,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -215997,6 +216021,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -219801,6 +219828,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -223487,6 +223517,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -226196,6 +226229,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -228936,6 +228972,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -231479,6 +231518,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -252649,6 +252691,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -343566,6 +343611,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -361082,6 +361130,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -364102,6 +364153,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -367114,6 +367168,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -373067,6 +373124,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -376079,6 +376139,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", diff --git a/lib/rest/static/dereferenced/ghes-3.2.deref.json b/lib/rest/static/dereferenced/ghes-3.2.deref.json index 1a4dcfd36f..72744d3804 100644 --- a/lib/rest/static/dereferenced/ghes-3.2.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.2.deref.json @@ -30697,6 +30697,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -45497,6 +45500,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -48988,6 +48994,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -68343,6 +68352,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -75227,6 +75239,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -192900,6 +192915,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -214007,6 +214025,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -216764,6 +216785,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -222674,6 +222698,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -226487,6 +226514,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -230182,6 +230212,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -232900,6 +232933,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -235649,6 +235685,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -238201,6 +238240,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -259380,6 +259422,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -351508,6 +351553,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -369090,6 +369138,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -372119,6 +372170,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -375140,6 +375194,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -381102,6 +381159,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -384123,6 +384183,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", diff --git a/lib/rest/static/dereferenced/ghes-3.3.deref.json b/lib/rest/static/dereferenced/ghes-3.3.deref.json index 7b73d6aa53..4bb4a453b3 100644 --- a/lib/rest/static/dereferenced/ghes-3.3.deref.json +++ b/lib/rest/static/dereferenced/ghes-3.3.deref.json @@ -30928,6 +30928,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -45721,6 +45724,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -49201,6 +49207,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -68649,6 +68658,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -75533,6 +75545,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -199757,6 +199772,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -220864,6 +220882,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -223610,6 +223631,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -229483,6 +229507,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -233289,6 +233316,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -236977,6 +237007,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -239689,6 +239722,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -242438,6 +242474,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -244990,6 +245029,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -266137,6 +266179,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -358261,6 +358306,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -375826,6 +375874,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -378855,6 +378906,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -381876,6 +381930,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -387832,6 +387889,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -390853,6 +390913,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", diff --git a/lib/rest/static/dereferenced/github.ae.deref.json b/lib/rest/static/dereferenced/github.ae.deref.json index d30dffcca0..960cc6c338 100644 --- a/lib/rest/static/dereferenced/github.ae.deref.json +++ b/lib/rest/static/dereferenced/github.ae.deref.json @@ -29269,6 +29269,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -46710,6 +46713,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -160138,6 +160144,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -181244,6 +181253,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -183990,6 +184002,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -189863,6 +189878,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -193669,6 +193687,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -197357,6 +197378,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -200069,6 +200093,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -202818,6 +202845,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -205370,6 +205400,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -226517,6 +226550,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -314851,6 +314887,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -332233,6 +332272,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", @@ -335262,6 +335304,9 @@ "type": "string", "format": "date-time" }, + "draft": { + "type": "boolean" + }, "closed_by": { "title": "Simple User", "description": "Simple User", 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 78cf9c0cb5..68e5af01cc 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:9586a46a1597258f6121f6522cb6cf71c8a5e3458b6caa51d0141a0496d8af42 -size 617876 +oid sha256:407bc2ab32b350d933a7622460ac163ed086c7f305643c926aef70c49f928728 +size 617162 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 e35b516c03..97fd00a6d7 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:372071beefe4d24711b2606b3b4a7d18ea36b6d34547546f1e75f48d758586ee -size 1058328 +oid sha256:c8734227fddaacc4a86b7dc5d5dc082cdc0f2f4e9e2bc18b816f8fc5ed0cd0ff +size 1057286 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 dc50f5bea2..0cf3e65953 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:ffaed996c815780e7815c88c85689f3d978a08a25e2b07ebfca23a4e2db053b7 -size 939828 +oid sha256:b28b896a46c2b47a5bcfb40a26cbcf95325dc93d4fc7a16380dcd77a6d22c310 +size 939977 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 7ef96fd492..3be3dc67a3 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:a84c32375fdda6b79a5b960a0add789444143b2bc2a7ea8713af8d1f21246da6 -size 3841217 +oid sha256:3aa86ae86dd0e6741977df3565b997bd1279c2f5a1f7dea580abfd376a1d5ca0 +size 3841765 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 b68eda40c2..714e26c417 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:89ca14ae85bfd1b61ff933c3111c0fd4f19f4d7100687aeebab5ca0ee69132fa -size 546528 +oid sha256:dcb05bb1a228798ab7c3b1425c86c89673766d152c8b4c7ebd8b0404a6476542 +size 545569 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 1c21d7619d..eafd4a37f7 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:7bfe0dbe76b986a5d25837fab75e6c4614ab33b740f82f362a710667dad0232e -size 2167376 +oid sha256:cf61d624f4fcc7c4bd3c2769dba10cfc060474fd87b90bd94579353b39e3f854 +size 2165127 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 9624f5afe9..b17986da96 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:4b97bee584f808f88065e2298b56406a7f4143fa414133647a33dc63a1589c93 -size 639145 +oid sha256:c24ddc2385c12d43fd4f366e88708c493ad4cea915b9ba0843b2f8993dc7f7d7 +size 638312 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 14b4ee2a37..92abb44aeb 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:9cc873d28808b1de51a27b8b1b359b72b9ef593e8a8ed1f414051eff31be74fc -size 3285443 +oid sha256:e2afd39abb182dc0cbf0f125b47416a59dac7406fc904d5bb5f9636a4910c1c8 +size 3280895 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 36852b1cba..d9dc0959d6 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:5fa9a3ce674ca5cf4db6527082b3eaa540afc4e82c2f15a1ecd9fa35123cce1a -size 544259 +oid sha256:78c82bcfe47d20d8a91ccde6f415c00900a685cb29f50a27abfe98c2338f583e +size 543446 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 dd77cbe633..5b146dff87 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:c7538b9f89b856232a5ca8420899e310576195cd1108f19de8e40328398bb17c -size 2190228 +oid sha256:885e0bcfcb33e2ce2df3f4737e5c95cae657ab2dabbfc6cde958837a02c1d96d +size 2186557 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 61b3ad1864..df9c602566 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:227098af344ecca3cae32791b80f16032b6cd125a19b9b603c579d1df767ad65 -size 632146 +oid sha256:020205ab21a6b6b46a090fc122966a6b6dfe098d19609cde916d5fa0006b3dff +size 631312 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 e0ea996040..ce38f6b78e 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:4bbea24f26cfc00a317c9b7ffa3e09da86c0692a4a5a7434c7d98c04b58bdaeb -size 1090032 +oid sha256:d96bd2e13564649d99b9448ba27c8459135173e371baec2a52704901ddacff56 +size 1089011 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 975b72f4ad..97b69e02da 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:b14a67b0bfc9c485b0252129796977a75eaec7d75e477c2ec25cb3dab347eb11 -size 963748 +oid sha256:3d90dcf8aed33c038a66f992df1b3938f1891e51399d595a59c7fc507bdd1cbd +size 964260 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 f80d05c182..dad8411280 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:a20508d128b628a9fa6c791bcc49cdfd72037ee7338ecc1e3dd5065b5454eed1 -size 3933357 +oid sha256:e70346ac961f154f6cbe2c8c3e48714dc64c5a341310507848d432f522a96239 +size 3933586 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 27aa7a218a..95a339fec4 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:3bda4aad5a219fabfc0421ce63fb97aec4a17340b8dffc1e8f060a38611503b7 -size 557709 +oid sha256:0c171b97c3825ceee9201bd6d4f15b6bc58b1803732fa667240f9e122bb1f430 +size 556959 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 5a940cb2b2..07b4158d88 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:8401a754794b83ac7599b7c773cfacb69b3a72ee26a0a65e8b03366124e1501a -size 2218356 +oid sha256:e46b477535c6f07e1035361b3d9cf4b37f6be65a1a042c3f4432a80429e832c0 +size 2215496 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 48a9c93e42..a11c9cc004 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:c373affcbbb69cf57261e5729ad6fd83a544daac0b67b41a1a0953fbc218a9c9 -size 653504 +oid sha256:b760b20083d6682ae7e0456073fe80446fc07c24edcd760d9644098a5af50158 +size 652598 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 f4e2a14dc7..abe71b264c 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:912da390358957f83dafba43a56509fd4bf553ddbf42288c7df168779f8efbb8 -size 3365580 +oid sha256:8f12d119fa2a72f88f0ffbaeb5bb504ceda242004d8adc500fa85945fa324168 +size 3361568 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 eb92159c26..ad445f0e23 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:d150b4503917ff2d10fab6fcbe5e5437279717fa58a5437a492811f5627fb95c -size 555614 +oid sha256:b7f7e74f2120eb51f6b3cc1b81283d9898a1f67ba6688aaa895116708ed48933 +size 554764 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 d0d2749ed6..55accb3a7e 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:59d6915e5ac8aa2050b2cbf9b45a6fc9075bcae53d2fade41247af8ea9fe92e4 -size 2239068 +oid sha256:cae1f62af3a9099bff97967ebcf9332cfe3825a954dc607b290061dacace9b25 +size 2236761 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 1d5cf563fc..a9e23d7756 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:68489ab76a17003adaceaaddfe8ca10ca0c8b40172bb03942b8882d3a7b002d5 -size 643899 +oid sha256:badb1b04c9fbd6faf23b70efafd38a8ff9a42090802a1aa83008b9803e78943d +size 642852 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 5d78a17838..5aefd30f62 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:6dad9d462d555fb1e410c5c49646dae6e30a41ef8e706d77def6aee6dc89b401 -size 1112594 +oid sha256:fb8091b6fb745ad3bf8a8e1128556b1c06077a6a30110cb8bdd5fae448f6f76a +size 1111448 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 b5c2785159..f157023c2c 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:59f7ca4a71a8211fa720f1518888a3cba0504af509ae14a4733216d6e6092b78 -size 994809 +oid sha256:53b5cb7633a800f82683884a94c07b2211371863c1c269416996da4e081919d6 +size 995142 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 a5ac9075be..00b7868d04 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:01f34e6af67edb0873686ee4e5049cd110ff8553b838bb2b8a3eda91cf32d1be -size 4051588 +oid sha256:5a83ecf64f6118f5b1f1d7490c5f488a5e5bb265f7d35e20c1c8095bb19cc6fc +size 4053065 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 a9fa769eae..8eadcc39b0 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:77d84af7e01eb4c75339fb3f7230facab12c28a358d6886afdb2b78e57c21c63 -size 567100 +oid sha256:bfb930a839c5b2a5ea82816fdad41e963b483cc24e1c5fa53cbc632e7112aa15 +size 566155 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 d6294a8ca8..7bfa01f03b 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:74273d3ba56da93bad93c502cac18ad255308387d995021b8b02433c28d7ae76 -size 2256781 +oid sha256:91d83a39835d51874d5726ea1f05e50d226787157df8e0cbf89cd1cc9a22fa2a +size 2253263 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 60c7c906ea..fe0080a7aa 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:e222c18844403fb3ea42102b0f8574fb4369cfdf1b609c0c66fd32bdf2486a86 -size 664654 +oid sha256:8a56d94807e244899004eb992b2afd6a0233c5bc3b83e650290c5928205a5a7a +size 663927 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 b5c3f91248..424ecc2733 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:79527b903fc0bce30c55f23d6e6b19f3453c7f1e4c361ec347f58b1158c9bded -size 3427074 +oid sha256:6aa55d97a1b188ced437bdc35b2b3a6811303f1fd5dcbf1343e450263b9c90ae +size 3421327 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 2b4b4d7412..4e45f8d88c 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:dc80e56368f77b64d778e2e55d969b1f8c012ace5426f7891f59f7714102f237 -size 564941 +oid sha256:d152c9312095231f3a882709cad2e6241ea85b902190b313325b486920fe9161 +size 564145 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 fb91151fe5..69511cdf69 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:fd546862624cc345d4d7078d3a2867a606d633f9ee24ec7a32828c05bbe5ee74 -size 2278123 +oid sha256:9114e3d0728264b923dbf6be97f9bae0c71f1148e40f283ebfdbfbb47a677e7f +size 2274682 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 0c8099c7e6..d71a92b2c8 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:111948d3e65bcd53e55036fdeccf30d43f372f11eaa33d06b1b848ccfa814e5c -size 646344 +oid sha256:58b0b378221e3ac1154e5eabe64edb07044fe406fc4d6dd4623d47b4b9bfe8f4 +size 645628 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 af10549290..9e182b926f 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:72284936ac8a11b03e94de7c9e888afe3388092fb28c59299c51fe4a6f6b39a5 -size 1123995 +oid sha256:ab62ea71857a14ba81ae8f486de5521e02a0f8bf424c7396538fbe76c35e7f06 +size 1123186 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 14fad97f49..038792f8c1 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:583490657b71b037306a980e46c448dd04216a8b90bdbf831ea7a58a32e3c255 -size 1028239 +oid sha256:edc20e57ca96588ccac174e8d804aa246e7644f7eb9487bdb3e2656279c6a46e +size 1028057 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 f21ce01c0d..66eaf8c662 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:34b55961e331adb095e6a20c4df2b03c297ff06ed486ff7ad86ea8b1fe8ee84c -size 4148737 +oid sha256:271f22c5c14bf64aa9345d7fd311d838c4c9cf5789512ade436ef86b77821fdf +size 4149426 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 02242975b0..8d40ced6f4 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:fdccc178e766b093e82fe20182164ebf6aec78ce01e595d81e0c5abff320d315 -size 569931 +oid sha256:55e08ad3e1864918744fedf7c252f48d9651fb369d5f8186cfed966f62490bb0 +size 568917 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 b1fafbd23e..ce3aeacd35 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:92bc48cf452ce0fed54f794b6ea0a799b44dee92a28a20f6fd291f7dc0f86727 -size 2269395 +oid sha256:49b87bcd97208952487142e6d2f457aa31659b0f24e21785cff633f6c35650ff +size 2265780 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 eb68290e54..568ba293f6 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:621871c33fd594bfd553409d4aac6e19e58a100c61a52d57485c44bb866c077f -size 667378 +oid sha256:466a6fbf348fdf3f0cb3f2187823cb23a6c3cc27ce8cd163584a04cb47b69dce +size 666380 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 370dbee02b..9b48487af4 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:543be14bb3ae4bcb1e264b8399464d9381275bd1e7d8ce33f2ac30e16caca801 -size 3442904 +oid sha256:56542388fd4d5a05a02555f3ab6ea7ff44edccded6ad552c544000810107503e +size 3437974 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 396576cb37..77ef78b549 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:5cef93b7d41abef029d2eaccbb6003092fdba1cadee67c85c1edfd09f5089a90 -size 567414 +oid sha256:69135d56f791d45e910fe2b88636892c6210c1c5e1fe83c8a006bc5751a923b5 +size 566531 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 31bfd236d3..447e0de6fa 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:6dd1331ed5574e21004af021a9149c5694be870401af5bb44055fed9dec664da -size 2288346 +oid sha256:db0a85b64301b78fa89dc5b4ce8e6e2111f9f183ebfd9034048bb01ededf4c70 +size 2283415 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 7627a384c8..ed95c62769 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:8969df52eed7d705f94d2be10b1b5c69c77be53dcc84c97019cb8d0349a7ae85 -size 871083 +oid sha256:9b8ac601fef4eca561ee9ed4e8ef85451a114225976454a0336d2c212b2cad80 +size 868879 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index eb66c20c52..d67f9ff4ba 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:a89d3ad52a419108ae846f7dbf52ac93feb916675deba2d730c2bfa69ec2d388 -size 1363402 +oid sha256:f784a8a200b60a164e39d51a3a49cd6c0685ef33dda67ac65ef711fdc32279cb +size 1360816 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 c0945b6e8f..84508339d1 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:0f0e42b88dfb072fe74f1b51bd3007524eaf3e1cf459119049feeb988f7b8676 -size 1318636 +oid sha256:6684315ee5c1f85e27881df73a2901ff4a3ee1c62309c68250b7de30cf60c191 +size 1318778 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index e0303f8342..11a21cd42d 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:3742f8a29d94edd2e401f051f0fcc381edceda874aa6b0cc2658d753742f0ea7 -size 5058910 +oid sha256:1753d0e1d2a7f33f58eec24f43bcf9b238e7ebb78b94e74ad7941b0399ca3640 +size 5059540 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 59ec84d6ca..0a0468a0f0 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:7c1cf91eab28176331e7c26d755ef9f41b68343539baef3c4bc960e1aa71ac8f -size 756128 +oid sha256:6b1eaf3afdf573a6bb5f9287a2a70a4c9656c507e23017a877980180becf738a +size 754210 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 047978c87b..cc37caacb1 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:94e8bb0c2a4f86409f88a67122d0a7c9667ddc8f99af6e06ecf6b1dcc4d9c776 -size 2897083 +oid sha256:dd323366e32f0ee835a5b37fc2314467cafeb21fc906c37760d2745e185dd8b2 +size 2889036 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 aeaef700b1..b64b7b25f8 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:0c7863502051a87cfa95f699071e02571b2315fbe4b13700cd015d019331b789 -size 892258 +oid sha256:d8128a2d4ecbc1c564fd74cd32f57a5c141829f41208f3647fbff750e6e7860b +size 889749 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 5874d430e9..9362e175c1 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:13aa56aaef150754b5a5eb0bc4c569c5fd1270755385ac30e995208e5e8b7031 -size 4461113 +oid sha256:35b65ebbf16bde8741666a4dbe61eed7a612038dad2644546a20b759687163b4 +size 4447076 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 05dab046ca..bdb80b4094 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:0fa3449a3ac82bdb8a472b7f7456bc32d3dbad4a3f48ca1c4d682d670d3f8a7a -size 757032 +oid sha256:301fb508e4861cd83b7421104b35f1d1bf6db5a1718658a86fd483ec10b991a2 +size 755217 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index aafbf78c3b..ba49f4e821 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:7a7f0584fd26c5ce8529c9ff1ebc9cc3b19c4752631686eae183eb61ac72e5c0 -size 2944285 +oid sha256:35624496c22e0b67f90128db2c27ad9cea1bb6b20789c497d3a446bc74052f90 +size 2935046 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 36414d9bda..a8b875e941 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:bdef15194b953d75c76c16db9d83e9a6446d16560215f6295d3764362b5e6406 -size 494427 +oid sha256:3575eeb1b1b22964de93a5c3fac9110981abec7877d05dcfb41c0f2b5c563cbb +size 493443 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 20cf1cb4f1..d8e1220249 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:3aa3931ecac0fbfedce98b970a3ca5f8b35c8aec628e4311c8a754adc2daa287 -size 829852 +oid sha256:e9c75dd9abdc38bb50e924229b87c542ab4f79ae910ecdc750ee4e2684b0727c +size 828485 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 52d0ee5281..d0a6c731c3 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:f3f779eb14c30c1a92a2c8290526799d0127a3181175a4ab829fb7c64ee0cddc -size 794625 +oid sha256:73986735573ef506e39642d38eb7bd543aa4fd7687983298418e5730df0aa904 +size 794951 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index c58d47d5d6..a204243f71 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:422a3bbc928398f55e11abc89a4643b2707898ed22b995d35be44c2c8c01b260 -size 3194387 +oid sha256:692d08c9434709a145aaaf65462ef740566841bc814791de24707331ac04ee5a +size 3194534 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 1b555da941..1488e29123 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:b3215b88b7f0c478b5840b470b4d8649ff2722e800719d3b4f3861232be76037 -size 435920 +oid sha256:9360b6fd613e82b969b1c1313004732787645b8f44733d408a69adbe26887905 +size 435071 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index d804d7d9a1..2f1a23f291 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:a27c142bd7e984b00ff5deaa5d7269dc519af759ad4a566037a4b0b4b18b6dcb -size 1663506 +oid sha256:e7f7976f5d1d2c00fa6e139a579a11cb451af80385ec5788ae8d1dee0cba7572 +size 1660449 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 8688a60024..9a41fa85f2 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:e98de305011004baf733c5118cf00c6f95f9e3108d2f73522ee616d5e0d613d8 -size 510182 +oid sha256:d11db74f0fada8f0af04e93186e2644b79faab93ec75d881a0fb654870eb7d24 +size 509139 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index c3c946dff8..587bf7c7a4 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:5dc08857145da76e3152065fc3fcd23538c171cd8cd7d2b0fcdb81d5cd6cc741 -size 2523623 +oid sha256:5fb727d7d2aba357e7a7ac92aea1129f6b058706a98443208ef2beda380939e5 +size 2518790 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 6c1380b14f..03546f7b55 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:9884dfb67dcb5ddecc26d54b69ac8636f25afb2afd3714f5076076fbfd224d63 -size 435241 +oid sha256:55695e541d39e2d88dbe345fa80feadcc1ed483df12424a1340940340bbe12c5 +size 434452 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index e955a55172..60b2dd72ba 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:7618bfc5ed044ab2ae5836738915fb084bacd7c24fa38177fcd32bacbaaf6b35 -size 1681326 +oid sha256:ecd89363b146e322b5aa9c069e057bb0f1cef1aff19e6dce3f8a743c0378fb26 +size 1677792 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 a1e61506ba..5dbb0d8f44 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:514eae1a599026ad48aeefadc1d551a8a8ca7e1d2faba8b8ca755d000ab7b8ff -size 766050 +oid sha256:f56e147519136589b9d73c97bd151a5ea1fa4dea2dd68b324dc75ad78d749cc7 +size 764158 diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br index 8e2203bdb4..8753ed37d5 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:9a04266bc9658ae16f7ceb2aed0a03d66cccc1612bc3e6b24e3a723e03925ee2 -size 1353628 +oid sha256:553fcb8257e7955585f860f8c74f4efca17997bda7538d10e46bf49d30366ca6 +size 1351518 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 107411ef1a..1e0f0fe899 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:c5825a7515475841ef62c33db385f7b32cb99d497de809e8286a6a2a1b559a6e -size 1167947 +oid sha256:e39304c94b1e4ccd3ce9ebec4a04de787b9fd0c5b0f81e137b7acc2f22be8148 +size 1167834 diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br index b9ac7fab2a..201c04f685 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:ac33c23e25a522bd38cdd5f2133c02ac7fac07bf8edec19c33f214322e3527b6 -size 4713873 +oid sha256:f0f454adabcbe57a770c47781c492f639bcaf3fb032d4a380daca59a25ca22b2 +size 4714944 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 264d459269..4e47ab0d3e 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:28a0829dcd1fb59145c44e50e5086c73f46d580e7340d5e6b20632f439538685 -size 690236 +oid sha256:5fa4a0ff08d708362d69956eb4182d95d18f98927716f48309410fec3fcbac8f +size 688677 diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br index 4ac3de8e63..7fcacefd31 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:8b7d76ee78e46a9f2a1978b784685573be460e980da4b0a77bd40ebd6dee2b3e -size 2776595 +oid sha256:fb6f49e4a555e10a6005732d24896b282a52d4336d50811612d27671d0a5eea8 +size 2769584 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 376d1ea325..b0b1a33ebc 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:8f92de3e0d916c44d658e637e06e31b961dd889f10dab2a6e98ec448b336f942 -size 792259 +oid sha256:43d4b85f4b46aeb34449c8e5ed90f8c0b48d0962059bbca10094cefad562639b +size 790125 diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br index f071eeb420..b802c1ed1b 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:b61a2f60b1746fb8028d17c7b4f378002690ce126c9f494ca0af746c07d46cdb -size 4159989 +oid sha256:44a67eb1d1cf616e836b52f8b0459764ecf88d8550f857eb09e3e04b655e94a8 +size 4145903 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 848e2ab09a..e3809bac86 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:3b6ff0cc157164d890a44650ccc11952f4c7f976b79b9c869b77451172b3d18e -size 688783 +oid sha256:fa86d8e722ccbaa21fe864fe4a127ea939a1d6f42ef3be0aee3ac6661fd72c77 +size 687173 diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br index 5dce806499..1781d002c9 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:d0d48d88b28174d88b15fdb026850d12c4cd70c507c752bb9cd8461a0353ddc8 -size 2804372 +oid sha256:f0106fedcf5ef775c0816aca93a44ebf59f2536d5448ad828717c7df69d7171f +size 2796420 diff --git a/lib/search/lunr-search.js b/lib/search/lunr-search.js index f533e91860..75f02a863f 100644 --- a/lib/search/lunr-search.js +++ b/lib/search/lunr-search.js @@ -248,7 +248,7 @@ function field(matchData, record, name) { if (!positions.length) return text // Highlight the text - return positions + const highlighted = positions .map(([prev, start, end], i) => [ text.slice(prev, start), mark(text.slice(start, end)), @@ -257,6 +257,16 @@ function field(matchData, record, name) { .flat() .filter(Boolean) .join('') + + // We can't HTML escape the content until AFTER all the matchData positions + // have been processed otherwise, the positions should shift. + // The only HTML that is OK to keep is and . + return highlighted + .replace(/&/g, '&') + .replace(//g, '>') + .replace(/<mark>/g, '') + .replace(/<\/mark>/g, '') } function mark(text) {