From 79ccbd6c58d2f0abb8c75cdb3f0fbae29a8dce4b Mon Sep 17 00:00:00 2001 From: mc <42146119+mchammer01@users.noreply.github.com> Date: Tue, 17 Oct 2023 17:25:56 +0100 Subject: [PATCH 1/4] [Helpfulness survey]: Clarify docs about updating actions with Dependabot (#44337) --- .../keeping-your-actions-up-to-date-with-dependabot.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot.md b/content/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot.md index 3de8acbc430f..346372820092 100644 --- a/content/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot.md +++ b/content/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot.md @@ -27,7 +27,9 @@ shortTitle: Auto-update actions Actions are often updated with bug fixes and new features to make automated processes more reliable, faster, and safer. When you enable {% data variables.product.prodname_dependabot_version_updates %} for {% data variables.product.prodname_actions %}, {% data variables.product.prodname_dependabot %} will help ensure that references to actions in a repository's _workflow.yml_ file{% ifversion dependabot-updates-actions-reusable-workflows %} and reusable workflows used inside workflows{% endif %} are kept up to date. -For each action in the file, {% data variables.product.prodname_dependabot %} checks the action's reference (typically a version number or commit identifier associated with the action) against the latest version. If a more recent version of the action is available, {% data variables.product.prodname_dependabot %} will send you a pull request that updates the reference in the workflow file to the latest version. For more information about {% data variables.product.prodname_dependabot_version_updates %}, see "[AUTOTITLE](/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates)." For more information about configuring workflows for {% data variables.product.prodname_actions %}, see "[AUTOTITLE](/actions/learn-github-actions)." +For each action in the file, {% data variables.product.prodname_dependabot %} checks the action's reference (typically a version number or commit identifier associated with the action) against the latest version. For information about how action creators version their actions, see "[Using release management for your custom actions](/actions/learn-github-actions/finding-and-customizing-actions#using-release-management-for-your-custom-actions)." + +If a more recent version of the action is available, {% data variables.product.prodname_dependabot %} will send you a pull request that updates the reference in the workflow file to the latest version. For more information about {% data variables.product.prodname_dependabot_version_updates %}, see "[AUTOTITLE](/code-security/dependabot/dependabot-version-updates/about-dependabot-version-updates)." For more information about configuring workflows for {% data variables.product.prodname_actions %}, see "[AUTOTITLE](/actions/learn-github-actions)." {% ifversion dependabot-updates-actions-reusable-workflows %} {% data variables.product.prodname_dependabot %} also checks workflow files for uses of reusable workflows, and updates the git reference for these called reusable workflows. For more information about reusable workflows, see "[AUTOTITLE](/actions/using-workflows/reusing-workflows)." From 73cbcc880a4b4c220efd5ea59e8c020097559c8a Mon Sep 17 00:00:00 2001 From: Grace Park <gracepark@github.com> Date: Tue, 17 Oct 2023 09:35:37 -0700 Subject: [PATCH 2/4] REST examples: update to -F for non string arrays (#44540) --- src/rest/components/get-rest-code-samples.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rest/components/get-rest-code-samples.ts b/src/rest/components/get-rest-code-samples.ts index f72698faa715..5fa67089a4da 100644 --- a/src/rest/components/get-rest-code-samples.ts +++ b/src/rest/components/get-rest-code-samples.ts @@ -155,7 +155,7 @@ export function getGHExample(operation: Operation, codeSample: CodeSample) { } else if (Array.isArray(codeSample.request.bodyParameters[key])) { let cliLine = '' for (const value of codeSample.request.bodyParameters[key]) { - cliLine += `-f "${key}[]=${value}" ` + cliLine += `${typeof value === 'string' ? '-f' : '-F'} "${key}[]=${value}" ` } return cliLine } else { From c5f5619e38165a5dd09349fa4d3c9ed88cb2614e Mon Sep 17 00:00:00 2001 From: docs-bot <77750099+docs-bot@users.noreply.github.com> Date: Tue, 17 Oct 2023 09:38:18 -0700 Subject: [PATCH 3/4] GraphQL schema update (#44585) Co-authored-by: rachmari <rachmari@users.noreply.github.com> --- data/graphql/ghae/schema.docs-ghae.graphql | 5 +++++ data/graphql/ghec/schema.docs.graphql | 5 +++++ data/graphql/schema.docs.graphql | 5 +++++ src/graphql/data/fpt/changelog.json | 13 +++++++++++++ src/graphql/data/fpt/schema.json | 4 ++++ src/graphql/data/ghae/schema.json | 4 ++++ src/graphql/data/ghec/schema.json | 4 ++++ 7 files changed, 40 insertions(+) diff --git a/data/graphql/ghae/schema.docs-ghae.graphql b/data/graphql/ghae/schema.docs-ghae.graphql index 5c80b320bc83..06e328239040 100644 --- a/data/graphql/ghae/schema.docs-ghae.graphql +++ b/data/graphql/ghae/schema.docs-ghae.graphql @@ -36713,6 +36713,11 @@ enum RepositoryLockReason { The repository is locked due to a trade controls related reason. """ TRADE_RESTRICTION + + """ + The repository is locked due to an ownership transfer. + """ + TRANSFERRING_OWNERSHIP } """ diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index a676d338fd5c..9d5d2f70dcfb 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -44364,6 +44364,11 @@ enum RepositoryLockReason { The repository is locked due to a trade controls related reason. """ TRADE_RESTRICTION + + """ + The repository is locked due to an ownership transfer. + """ + TRANSFERRING_OWNERSHIP } """ diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index a676d338fd5c..9d5d2f70dcfb 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -44364,6 +44364,11 @@ enum RepositoryLockReason { The repository is locked due to a trade controls related reason. """ TRADE_RESTRICTION + + """ + The repository is locked due to an ownership transfer. + """ + TRANSFERRING_OWNERSHIP } """ diff --git a/src/graphql/data/fpt/changelog.json b/src/graphql/data/fpt/changelog.json index 9d4bddedb250..fdc61bbc7f04 100644 --- a/src/graphql/data/fpt/changelog.json +++ b/src/graphql/data/fpt/changelog.json @@ -1,4 +1,17 @@ [ + { + "schemaChanges": [ + { + "title": "The GraphQL schema includes these changes:", + "changes": [ + "<p>Enum value 'TRANSFERRING_OWNERSHIP<code>was added to enum</code>RepositoryLockReason'</p>" + ] + } + ], + "previewChanges": [], + "upcomingChanges": [], + "date": "2023-10-17" + }, { "schemaChanges": [ { diff --git a/src/graphql/data/fpt/schema.json b/src/graphql/data/fpt/schema.json index 03aee2a4774d..5f09eeed8e4c 100644 --- a/src/graphql/data/fpt/schema.json +++ b/src/graphql/data/fpt/schema.json @@ -82677,6 +82677,10 @@ { "name": "TRADE_RESTRICTION", "description": "<p>The repository is locked due to a trade controls related reason.</p>" + }, + { + "name": "TRANSFERRING_OWNERSHIP", + "description": "<p>The repository is locked due to an ownership transfer.</p>" } ] }, diff --git a/src/graphql/data/ghae/schema.json b/src/graphql/data/ghae/schema.json index 57333dd4ac8b..03571da8b8ec 100644 --- a/src/graphql/data/ghae/schema.json +++ b/src/graphql/data/ghae/schema.json @@ -68476,6 +68476,10 @@ { "name": "TRADE_RESTRICTION", "description": "<p>The repository is locked due to a trade controls related reason.</p>" + }, + { + "name": "TRANSFERRING_OWNERSHIP", + "description": "<p>The repository is locked due to an ownership transfer.</p>" } ] }, diff --git a/src/graphql/data/ghec/schema.json b/src/graphql/data/ghec/schema.json index 03aee2a4774d..5f09eeed8e4c 100644 --- a/src/graphql/data/ghec/schema.json +++ b/src/graphql/data/ghec/schema.json @@ -82677,6 +82677,10 @@ { "name": "TRADE_RESTRICTION", "description": "<p>The repository is locked due to a trade controls related reason.</p>" + }, + { + "name": "TRANSFERRING_OWNERSHIP", + "description": "<p>The repository is locked due to an ownership transfer.</p>" } ] }, From c4d1ae85eeca68a322cc314ae257b782546d20da Mon Sep 17 00:00:00 2001 From: Kensuke Nagae <kyanny@github.com> Date: Wed, 18 Oct 2023 01:41:13 +0900 Subject: [PATCH 4/4] Add known issue item about scheduled reminders on GHES 3.8 (#44558) Co-authored-by: Isaac Brown <101839405+isaacmbrown@users.noreply.github.com> --- data/release-notes/enterprise-server/3-10/0-rc1.yml | 2 ++ data/release-notes/enterprise-server/3-10/0.yml | 2 ++ data/release-notes/enterprise-server/3-10/1.yml | 2 ++ data/release-notes/enterprise-server/3-10/2.yml | 2 ++ data/release-notes/enterprise-server/3-8/0.yml | 2 ++ data/release-notes/enterprise-server/3-8/1.yml | 2 ++ data/release-notes/enterprise-server/3-8/10.yml | 2 ++ data/release-notes/enterprise-server/3-8/2.yml | 2 ++ data/release-notes/enterprise-server/3-8/3.yml | 2 ++ data/release-notes/enterprise-server/3-8/4.yml | 2 ++ data/release-notes/enterprise-server/3-8/5.yml | 2 ++ data/release-notes/enterprise-server/3-8/6.yml | 2 ++ data/release-notes/enterprise-server/3-8/7.yml | 2 ++ data/release-notes/enterprise-server/3-8/8.yml | 2 ++ data/release-notes/enterprise-server/3-8/9.yml | 2 ++ data/release-notes/enterprise-server/3-9/0-rc1.yml | 2 ++ data/release-notes/enterprise-server/3-9/0.yml | 2 ++ data/release-notes/enterprise-server/3-9/1.yml | 2 ++ data/release-notes/enterprise-server/3-9/2.yml | 2 ++ data/release-notes/enterprise-server/3-9/3.yml | 3 ++- data/release-notes/enterprise-server/3-9/4.yml | 2 ++ data/release-notes/enterprise-server/3-9/5.yml | 2 ++ .../release-notes/scheduled-reminders-unintentional.md | 1 + 23 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 data/reusables/release-notes/scheduled-reminders-unintentional.md diff --git a/data/release-notes/enterprise-server/3-10/0-rc1.yml b/data/release-notes/enterprise-server/3-10/0-rc1.yml index a4809d7cf953..630adbcb8509 100644 --- a/data/release-notes/enterprise-server/3-10/0-rc1.yml +++ b/data/release-notes/enterprise-server/3-10/0-rc1.yml @@ -284,6 +284,8 @@ sections: If the root site administrator is locked out of the Management Console after failed login attempts, the account will not unlock automatically after the defined lockout time. Someone with administrative SSH access to the instance must unlock the account using the administrative shell. For more information, see "[AUTOTITLE](/admin/configuration/administering-your-instance-from-the-management-console/troubleshooting-access-to-the-management-console#unlocking-the-root-site-administrator-account)." - | {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] deprecations: # https://github.com/github/releases/issues/2605 diff --git a/data/release-notes/enterprise-server/3-10/0.yml b/data/release-notes/enterprise-server/3-10/0.yml index 599931ac65bc..d5ede2904558 100644 --- a/data/release-notes/enterprise-server/3-10/0.yml +++ b/data/release-notes/enterprise-server/3-10/0.yml @@ -291,6 +291,8 @@ sections: {% data reusables.release-notes.cache-replica-servers-known-issue %} [Updated: 2023-09-26] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] deprecations: diff --git a/data/release-notes/enterprise-server/3-10/1.yml b/data/release-notes/enterprise-server/3-10/1.yml index 9b94d0a98427..d1c3ee7ae8dc 100644 --- a/data/release-notes/enterprise-server/3-10/1.yml +++ b/data/release-notes/enterprise-server/3-10/1.yml @@ -60,3 +60,5 @@ sections: {% data reusables.release-notes.cache-replica-servers-known-issue %} [Updated: 2023-09-26] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-10/2.yml b/data/release-notes/enterprise-server/3-10/2.yml index 6d047ad966d6..47edfd8dbb7d 100644 --- a/data/release-notes/enterprise-server/3-10/2.yml +++ b/data/release-notes/enterprise-server/3-10/2.yml @@ -37,3 +37,5 @@ sections: After an administrator enables maintenance mode from the instance's Management Console UI using Firefox, the administrator is redirected to the Settings page, but maintenance mode is not enabled. To work around this issue, use a different browser. - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/0.yml b/data/release-notes/enterprise-server/3-8/0.yml index 8301d4bb7a8b..ee2d0d531515 100644 --- a/data/release-notes/enterprise-server/3-8/0.yml +++ b/data/release-notes/enterprise-server/3-8/0.yml @@ -470,6 +470,8 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] deprecations: - heading: Unsecure algorithms disabled for administrative SSH connections diff --git a/data/release-notes/enterprise-server/3-8/1.yml b/data/release-notes/enterprise-server/3-8/1.yml index 3da225a9d3eb..dfc6e3b32c0d 100644 --- a/data/release-notes/enterprise-server/3-8/1.yml +++ b/data/release-notes/enterprise-server/3-8/1.yml @@ -65,3 +65,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/10.yml b/data/release-notes/enterprise-server/3-8/10.yml index a8a172bf2fff..9fac3f18eeb3 100644 --- a/data/release-notes/enterprise-server/3-8/10.yml +++ b/data/release-notes/enterprise-server/3-8/10.yml @@ -41,3 +41,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/2.yml b/data/release-notes/enterprise-server/3-8/2.yml index 31af75f9e9ae..bc0de77b75b6 100644 --- a/data/release-notes/enterprise-server/3-8/2.yml +++ b/data/release-notes/enterprise-server/3-8/2.yml @@ -46,3 +46,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/3.yml b/data/release-notes/enterprise-server/3-8/3.yml index ebeff7cb72c0..aa5bbd19e131 100644 --- a/data/release-notes/enterprise-server/3-8/3.yml +++ b/data/release-notes/enterprise-server/3-8/3.yml @@ -57,3 +57,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/4.yml b/data/release-notes/enterprise-server/3-8/4.yml index f1e1d92d707a..a0f0997576b2 100644 --- a/data/release-notes/enterprise-server/3-8/4.yml +++ b/data/release-notes/enterprise-server/3-8/4.yml @@ -41,3 +41,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/5.yml b/data/release-notes/enterprise-server/3-8/5.yml index 8c6115332b27..28dafa8ce33c 100644 --- a/data/release-notes/enterprise-server/3-8/5.yml +++ b/data/release-notes/enterprise-server/3-8/5.yml @@ -44,3 +44,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/6.yml b/data/release-notes/enterprise-server/3-8/6.yml index 46a95005a2c5..d34c9ac55475 100644 --- a/data/release-notes/enterprise-server/3-8/6.yml +++ b/data/release-notes/enterprise-server/3-8/6.yml @@ -104,3 +104,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/7.yml b/data/release-notes/enterprise-server/3-8/7.yml index 648507f3ddc5..a9aef0c2f540 100644 --- a/data/release-notes/enterprise-server/3-8/7.yml +++ b/data/release-notes/enterprise-server/3-8/7.yml @@ -25,6 +25,8 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] changes: - | diff --git a/data/release-notes/enterprise-server/3-8/8.yml b/data/release-notes/enterprise-server/3-8/8.yml index 090bafe634ad..390acf825f90 100644 --- a/data/release-notes/enterprise-server/3-8/8.yml +++ b/data/release-notes/enterprise-server/3-8/8.yml @@ -54,3 +54,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-08-24] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-8/9.yml b/data/release-notes/enterprise-server/3-8/9.yml index ec7b9d132330..5fb5ca4328b4 100644 --- a/data/release-notes/enterprise-server/3-8/9.yml +++ b/data/release-notes/enterprise-server/3-8/9.yml @@ -36,3 +36,5 @@ sections: {% data reusables.release-notes.2023-08-mssql-replication-known-issue %} [Updated: 2023-09-04] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-9/0-rc1.yml b/data/release-notes/enterprise-server/3-9/0-rc1.yml index 82bebe7cab13..e89b796a4272 100644 --- a/data/release-notes/enterprise-server/3-9/0-rc1.yml +++ b/data/release-notes/enterprise-server/3-9/0-rc1.yml @@ -413,6 +413,8 @@ sections: If the root site administrator is locked out of the Management Console after failed login attempts, the account will not unlock automatically after the defined lockout time. Someone with administrative SSH access to the instance must unlock the account using the administrative shell. For more information, see "[AUTOTITLE](/admin/configuration/administering-your-instance-from-the-management-console/troubleshooting-access-to-the-management-console#unlocking-the-root-site-administrator-account)." - | {% data reusables.release-notes.2023-09-ephemeral-self-hosted-runners-not-auto-upgrading %} [Updated: 2023-09-29] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] deprecations: # https://github.com/github/releases/issues/2826 diff --git a/data/release-notes/enterprise-server/3-9/0.yml b/data/release-notes/enterprise-server/3-9/0.yml index ce260b771ba3..63e0bf1b4357 100644 --- a/data/release-notes/enterprise-server/3-9/0.yml +++ b/data/release-notes/enterprise-server/3-9/0.yml @@ -436,6 +436,8 @@ sections: {% data reusables.release-notes.2023-10-resource-activity-queue-not-processed %} [Updated: 2023-10-10] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] deprecations: # https://github.com/github/releases/issues/2826 diff --git a/data/release-notes/enterprise-server/3-9/1.yml b/data/release-notes/enterprise-server/3-9/1.yml index 2e1c918bbf6e..ede556f6a86d 100644 --- a/data/release-notes/enterprise-server/3-9/1.yml +++ b/data/release-notes/enterprise-server/3-9/1.yml @@ -156,3 +156,5 @@ sections: {% data reusables.release-notes.2023-10-resource-activity-queue-not-processed %} [Updated: 2023-10-10] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-9/2.yml b/data/release-notes/enterprise-server/3-9/2.yml index 4f8861baa549..be9e61e89a33 100644 --- a/data/release-notes/enterprise-server/3-9/2.yml +++ b/data/release-notes/enterprise-server/3-9/2.yml @@ -71,3 +71,5 @@ sections: {% data reusables.release-notes.2023-10-resource-activity-queue-not-processed %} [Updated: 2023-10-10] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-9/3.yml b/data/release-notes/enterprise-server/3-9/3.yml index 3e5ba59b7fce..e73d8faf9cd5 100644 --- a/data/release-notes/enterprise-server/3-9/3.yml +++ b/data/release-notes/enterprise-server/3-9/3.yml @@ -65,4 +65,5 @@ sections: {% data reusables.release-notes.2023-10-resource-activity-queue-not-processed %} [Updated: 2023-10-10] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] - + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-9/4.yml b/data/release-notes/enterprise-server/3-9/4.yml index a7af01925fa2..7326bf651288 100644 --- a/data/release-notes/enterprise-server/3-9/4.yml +++ b/data/release-notes/enterprise-server/3-9/4.yml @@ -55,3 +55,5 @@ sections: {% data reusables.release-notes.2023-10-resource-activity-queue-not-processed %} [Updated: 2023-10-10] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/release-notes/enterprise-server/3-9/5.yml b/data/release-notes/enterprise-server/3-9/5.yml index afdb7f9d2b28..2fa317a67170 100644 --- a/data/release-notes/enterprise-server/3-9/5.yml +++ b/data/release-notes/enterprise-server/3-9/5.yml @@ -62,3 +62,5 @@ sections: {% data reusables.release-notes.2023-10-resource-activity-queue-not-processed %} [Updated: 2023-10-10] - | {% data reusables.release-notes.2023-10-support-bundle-p-flag-not-working %} [Updated: 2023-10-13] + - | + {% data reusables.release-notes.scheduled-reminders-unintentional %} [Updated: 2023-10-17] diff --git a/data/reusables/release-notes/scheduled-reminders-unintentional.md b/data/reusables/release-notes/scheduled-reminders-unintentional.md new file mode 100644 index 000000000000..dd1f40e8a5c1 --- /dev/null +++ b/data/reusables/release-notes/scheduled-reminders-unintentional.md @@ -0,0 +1 @@ +The settings for enabling scheduled reminders were added unintentionally to this release. Scheduled reminders are not officially supported.