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

v5.17.0 #5991

Merged
merged 40 commits into from
Sep 2, 2022
Merged

v5.17.0 #5991

merged 40 commits into from
Sep 2, 2022

Conversation

DanailH
Copy link
Member

@DanailH DanailH commented Sep 1, 2022

  • Compare the last tag with the branch upon which you want to release (next for the alpha / beta releases and master for the current stable version).
    To do so, use yarn release:changelog The options are the following:

    yarn release:changelog
       --githubToken   YOUR_GITHUB_TOKEN (needs "public_repo" permission)
       --lastRelease   The release to compare against (default: the last one)
       --release       The branch to release (default: master)

    You can also provide the github token by setting process.env.GITHUB_TOKEN variable.

    In case of a problem, another method to generate the changelog is available at the end of this page.

  • Clean the generated changelog, to match the format of https://github.com/mui/mui-x/releases.

  • Update the root package.json's version

  • Update the versions of the other package.json files and of the dependencies with yarn release:version.

  • Fix manually the package version in x-date-pickers/package.json and x-date-pickers-pro/package.json.

  • Open PR with changes and wait for review and green CI.

  • Merge PR once CI is green, and it has been approved.

Release the packages

  • Checkout the last version of the working branch
  • Make sure you have the latest dependencies installed: yarn.
  • Build the packages: yarn release:build.
  • Release the versions on npm: yarn release:publish (you need your 2FA device).
  • Create a new tag named with the release you just did git tag -a v4.0.0-alpha.30 -m "Version 4.0.0-alpha.30" && git push upstream --tag

Publish the documentation

The documentation must be updated on the docs-vX branch (docs-v4 for v4.X releases, docs-v5 for v5.X releases, ...)

  • Push the working branch on the documentation release branch to deploy the documentation with the latest changes.
git push upstream master:docs-v5 -f

You can follow the deployment process on the Netlify Dashboard
Once deployed, it will be accessible at https://material-ui-x.netlify.app/ for the docs-v5 deployment.

Publish GitHub release

CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
DanailH and others added 3 commits September 1, 2022 16:29
Co-authored-by: Lukas <llukas.tyla@gmail.com>
Co-authored-by: Lukas <llukas.tyla@gmail.com>
Co-authored-by: Lukas <llukas.tyla@gmail.com>
CHANGELOG.md Outdated Show resolved Hide resolved
Co-authored-by: Flavien DELANGLE <flaviendelangle@gmail.com>
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
@LukasTy
Copy link
Member

LukasTy commented Sep 1, 2022

Locally changed x-license-pro in pickers-pro and here is the updated yarn.lock:

--- a/yarn.lock
+++ b/yarn.lock
@@ -2769,7 +2769,7 @@
   resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.1.5.tgz#5e5cc49d719bc86522983359bc1f90eddcff0624"
   integrity sha512-HnRXrxgHJYJcT8ZDdDCQIlqk0s0skOKD7eWs9mJgBUu70hyW4iA6Kiv3yspJR474RFH8hysKR65VVSzUSzkuwA==
 
-"@mui/utils@^5.4.1", "@mui/utils@^5.9.3":
+"@mui/utils@^5.9.3":
   version "5.9.3"
   resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-5.9.3.tgz#a11e0824f00b7ea40257b390060ce167fe861d02"
   integrity sha512-l0N5bcrenE9hnwZ/jPecpIRqsDFHkPXoFUcmkgysaJwVZzJ3yQkGXB47eqmXX5yyGrSc6HksbbqXEaUya+siew==
@@ -2790,16 +2790,6 @@
     prop-types "^15.7.2"
     reselect "^4.0.0"
 
-"@mui/x-license-pro@5.12.1":
-  version "5.12.1"
-  resolved "https://registry.yarnpkg.com/@mui/x-license-pro/-/x-license-pro-5.12.1.tgz#c0c0a175ebacd1a017fcd9bc25afe205ff6bd1f7"
-  integrity sha512-loiYFPr709tvWpIDLkDuNwsRoGVAkW1MlKDiurPlQaizVaS4w9YGw+oSHro7DTkXehuhkF2g2QTKorynazDu/Q==
-  dependencies:
-    "@babel/runtime" "^7.17.2"
-    "@mui/utils" "^5.4.1"
-    esm "^3.2.25"
-    yargs "^17.5.1"
-
 "@next/env@12.2.5":
   version "12.2.5"
   resolved "https://registry.yarnpkg.com/@next/env/-/env-12.2.5.tgz#d908c57b35262b94db3e431e869b72ac3e1ad3e3"

@mui-bot
Copy link

mui-bot commented Sep 1, 2022

These are the results for the performance tests:

Test case Unit Min Max Median Mean σ
Filter 100k rows ms 475.6 811.2 534.2 594.02 130.286
Sort 100k rows ms 525.3 1,188 1,188 916.88 230.008
Select 100k rows ms 177.3 497.4 226.8 283.62 118.075
Deselect 100k rows ms 167.9 286.9 196.9 219.44 50.098

Generated by 🚫 dangerJS against c95151d

CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
CHANGELOG.md Outdated Show resolved Hide resolved
DanailH and others added 11 commits September 2, 2022 14:37
Co-authored-by: Matheus Wichman <matheushw@outlook.com>
Co-authored-by: José Rodolfo Freitas <joserodolfo.freitas@gmail.com>
Co-authored-by: Matheus Wichman <matheushw@outlook.com>
Co-authored-by: Flavien DELANGLE <flaviendelangle@gmail.com>
Co-authored-by: Matheus Wichman <matheushw@outlook.com>
Co-authored-by: Matheus Wichman <matheushw@outlook.com>
Co-authored-by: Flavien DELANGLE <flaviendelangle@gmail.com>
Co-authored-by: Flavien DELANGLE <flaviendelangle@gmail.com>
Co-authored-by: Flavien DELANGLE <flaviendelangle@gmail.com>
Co-authored-by: José Rodolfo Freitas <joserodolfo.freitas@gmail.com>
Co-authored-by: Alexandre Fauquette <45398769+alexfauquette@users.noreply.github.com>
CHANGELOG.md Outdated Show resolved Hide resolved
DanailH and others added 4 commits September 2, 2022 15:08
@DanailH DanailH enabled auto-merge (squash) September 2, 2022 13:42
@DanailH DanailH merged commit 0ea9329 into mui:master Sep 2, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release We are shipping :D
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants