Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP]: add v8.5.0 release notes #19336

Draft
wants to merge 34 commits into
base: master
Choose a base branch
from
Draft

Conversation

qiancai
Copy link
Collaborator

@qiancai qiancai commented Nov 5, 2024

First-time contributors' checklist

What is changed, added or deleted? (Required)

Which TiDB version(s) do your changes apply to? (Required)

Tips for choosing the affected version(s):

By default, CHOOSE MASTER ONLY so your changes will be applied to the next TiDB major or minor releases. If your PR involves a product feature behavior change or a compatibility change, CHOOSE THE AFFECTED RELEASE BRANCH(ES) AND MASTER.

For details, see tips for choosing the affected versions.

  • master (the latest development version)
  • v8.4 (TiDB 8.4 versions)
  • v8.3 (TiDB 8.3 versions)
  • v8.2 (TiDB 8.2 versions)
  • v8.1 (TiDB 8.1 versions)
  • v7.5 (TiDB 7.5 versions)
  • v7.1 (TiDB 7.1 versions)
  • v6.5 (TiDB 6.5 versions)
  • v6.1 (TiDB 6.1 versions)
  • v5.4 (TiDB 5.4 versions)
  • v5.3 (TiDB 5.3 versions)

What is the related PR or file link(s)?

  • This PR is translated from:
  • Other reference link(s):

Do your changes match any of the following descriptions?

  • Delete files
  • Change aliases
  • Need modification after applied to another branch
  • Might cause conflicts after applied to another branch

Copy link

ti-chi-bot bot commented Nov 5, 2024

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please ask for approval from qiancai, ensuring that each of them provides their approval before proceeding. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ti-chi-bot ti-chi-bot bot added missing-translation-status This PR does not have translation status info. size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Nov 5, 2024
@qiancai qiancai added v8.5 translation/doing This PR's assignee is translating this PR. and removed missing-translation-status This PR does not have translation status info. labels Nov 5, 2024
@qiancai qiancai marked this pull request as draft November 5, 2024 10:00
@ti-chi-bot ti-chi-bot bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Nov 5, 2024
@qiancai qiancai changed the title add v8.5.0 release notes [WIP]: add v8.5.0 release notes Nov 5, 2024
@qiancai qiancai self-assigned this Nov 5, 2024
releases/release-8.5.0.md Show resolved Hide resolved
releases/release-8.5.0.md Show resolved Hide resolved
releases/release-8.5.0.md Show resolved Hide resolved
@ti-chi-bot ti-chi-bot bot added size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. and removed size/L Denotes a PR that changes 100-499 lines, ignoring generated files. labels Nov 11, 2024
releases/release-8.5.0.md Show resolved Hide resolved
Copy link

ti-chi-bot bot commented Nov 11, 2024

@niubell: adding LGTM is restricted to approvers and reviewers in OWNERS files.

In response to this:

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
Copy link
Member

@YangKeao YangKeao left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
<tr>
<td rowspan="2"> SQL </td>
<td><a href="https://docs.pingcap.com/tidb/v8.5/foreign-key">Foreign key</a> (GA in v8.5.0) **tw@lilin90 1894**</td>
<td>Foreign keys are constraints in a database that establish relationships between tables, ensuring data consistency and integrity. They restrict the data referenced in a child table to exist in the parent table, preventing the insertion of invalid data. Foreign keys also support cascading operations (such as automatic synchronization during deletion or update), simplifying business logic implementation and reducing the complexity of manually maintaining data relationships.</td>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<td>Foreign keys are constraints in a database that establish relationships between tables, ensuring data consistency and integrity. They restrict the data referenced in a child table to exist in the parent table, preventing the insertion of invalid data. Foreign keys also support cascading operations (such as automatic synchronization during deletion or update), simplifying business logic implementation and reducing the complexity of manually maintaining data relationships.</td>
<td>Foreign keys are constraints in a database that establish relationships between tables, ensuring data consistency and integrity. They ensure that the data referenced in a child table exist in the parent table, preventing the insertion of invalid data. Foreign keys also support cascading operations (such as automatic synchronization during deletion or update), simplifying business logic implementation and reducing the complexity of manually maintaining data relationships.</td>


The foreign key feature becomes generally available (GA) in v8.5.0. Foreign key constraints help ensure data consistency and integrity. You can easily establish foreign key relationships between tables, with support for cascading updates and deletions, simplifying data management. This feature enhances support for applications with complex data relationships.

For more information, see [Documentation](/foreign-key.md).
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
For more information, see [Documentation](/foreign-key.md).
For more information, see [documentation](/foreign-key.md).

releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
releases/release-8.5.0.md Outdated Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. size/XL Denotes a PR that changes 500-999 lines, ignoring generated files. translation/doing This PR's assignee is translating this PR. v8.5
Projects
None yet
Development

Successfully merging this pull request may close these issues.