diff --git a/.circleci/config.yml b/.circleci/config.yml index 0ff7ef8603944f..2b00a64a8219ed 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -109,7 +109,7 @@ commands: key: v8-yarn-{{ checksum "yarn.lock" }} paths: # Keep path in sync with "Set yarn cache folder" - # Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui-org/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370) + # Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370) - /tmp/yarn-cache - when: condition: << parameters.browsers >> @@ -119,7 +119,7 @@ commands: key: v5-playwright-{{ arch }}-{{ checksum "/tmp/playwright_info.json" }} paths: # Keep path in sync with "PLAYWRIGHT_BROWSERS_PATH" - # Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui-org/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370) + # Can't use environment variables for `save_cache` paths (tested in https://app.circleci.com/pipelines/github/mui/material-ui/37813/workflows/5b1e207f-ac8b-44e7-9ba4-d0f9a01f5c55/jobs/223370) - /tmp/pw-browsers jobs: @@ -187,7 +187,10 @@ jobs: fi - run: name: Coverage - command: bash <(curl -s https://codecov.io/bash) -Z -F "$REACT_DIST_TAG-jsdom" + command: | + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov -t ${CODECOV_TOKEN} -Z -F "$REACT_DIST_TAG-jsdom" test_lint: <<: *defaults steps: @@ -360,7 +363,10 @@ jobs: fi - run: name: Coverage - command: bash <(curl -s https://codecov.io/bash) -Z -F "$REACT_DIST_TAG-browser" + command: | + curl -Os https://uploader.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov -t ${CODECOV_TOKEN} -Z -F "$REACT_DIST_TAG-browser" - store_artifacts: # hardcoded in karma-webpack path: /tmp/_karma_webpack_ diff --git a/.codesandbox/ci.json b/.codesandbox/ci.json index a3273dac647f9c..b5739bdfeab878 100644 --- a/.codesandbox/ci.json +++ b/.codesandbox/ci.json @@ -36,9 +36,9 @@ }, "sandboxes": [ "material-ui-issue-latest-s2dsx", - "github/mui-org/material-ui/tree/HEAD/examples/create-react-app", - "github/mui-org/material-ui/tree/HEAD/examples/create-react-app-with-typescript", - "github/mui-org/material-ui/tree/HEAD/examples/joy-cra-typescript" + "github/mui/material-ui/tree/HEAD/examples/create-react-app", + "github/mui/material-ui/tree/HEAD/examples/create-react-app-with-typescript", + "github/mui/material-ui/tree/HEAD/examples/joy-cra-typescript" ], "silent": true } diff --git a/.eslintrc.js b/.eslintrc.js index e1ce56bb6eab88..0c8198b47cc3a6 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -2,7 +2,7 @@ const path = require('path'); const forbidTopLevelMessage = [ 'Prefer one level nested imports to avoid bundling everything in dev mode', - 'See https://github.com/mui-org/material-ui/pull/24147 for the kind of win it can unlock.', + 'See https://github.com/mui/material-ui/pull/24147 for the kind of win it can unlock.', ].join('\n'); // This only applies to packages published from this monorepo. // If you build a library around `@mui/material` you can safely use `createStyles` without running into the same issue as we are. diff --git a/.github/ISSUE_TEMPLATE/1.bug.yml b/.github/ISSUE_TEMPLATE/1.bug.yml index 38c82b7f65298f..f95faf2e3a7a44 100644 --- a/.github/ISSUE_TEMPLATE/1.bug.yml +++ b/.github/ISSUE_TEMPLATE/1.bug.yml @@ -11,7 +11,7 @@ body: - type: checkboxes attributes: label: Duplicates - description: Please [search the history](https://github.com/mui-org/material-ui/issues) to see if an issue already exists for the same problem. + description: Please [search the history](https://github.com/mui/material-ui/issues) to see if an issue already exists for the same problem. options: - label: I have searched the existing issues required: true diff --git a/.github/ISSUE_TEMPLATE/2.feature.yml b/.github/ISSUE_TEMPLATE/2.feature.yml index ce2264244cc1a9..ea27480c3326c7 100644 --- a/.github/ISSUE_TEMPLATE/2.feature.yml +++ b/.github/ISSUE_TEMPLATE/2.feature.yml @@ -11,7 +11,7 @@ body: - type: checkboxes attributes: label: Duplicates - description: Please [search the history](https://github.com/mui-org/material-ui/issues) to see if an issue already exists for the same problem. + description: Please [search the history](https://github.com/mui/material-ui/issues) to see if an issue already exists for the same problem. options: - label: I have searched the existing issues required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0f4cf1ddbe17e5..688d319a2f4d8d 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,3 +1,3 @@ -- [ ] I have followed (at least) the [PR section of the contributing guide](https://github.com/mui-org/material-ui/blob/HEAD/CONTRIBUTING.md#sending-a-pull-request). +- [ ] I have followed (at least) the [PR section of the contributing guide](https://github.com/mui/material-ui/blob/HEAD/CONTRIBUTING.md#sending-a-pull-request). diff --git a/CHANGELOG.md b/CHANGELOG.md index ac2cd99e7fa69f..e110d8a82a76a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ _Feb 1, 2022_ A big thanks to the 22 contributors who made this release possible. Here are some highlights ✨: -- 🛠 @goncalovf added an example project using [MUI with Vite.js](https://github.com/mui-org/material-ui/tree/master/examples/vitejs) (#28241) +- 🛠 @goncalovf added an example project using [MUI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/vitejs) (#28241) - Number of 🐛 bug fixes and 📚 documentation improvements. ### `@mui/material@5.4.0` @@ -486,7 +486,7 @@ A big thanks to the 25 contributors who made this release possible. Here are som unstyled table - You can follow our progress with unstyled components at https://github.com/mui-org/material-ui/issues/27170. + You can follow our progress with unstyled components at https://github.com/mui/material-ui/issues/27170. - 🎉 We have added an example of how to use MUI with [Remix](https://remix.run/) (#29952) @mnajdova @@ -1460,8 +1460,8 @@ _Sep 1, 2021_ A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨: -- 🎉 Renamed packages to `@mui/*` as part of rebranding the company, following the strategy of expanding the library scope beyond Material Design. For more details about it, check the [GitHub discussion](https://github.com/mui-org/material-ui/discussions/27803). -- 🛠 Added `mui-replace` codemod for migrating `@material-ui/*` to new packages `@mui/*`. Check out this [codemod detail](https://github.com/mui-org/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) or head to [migration guide](https://mui.com/guides/migration-v4/#preset-safe) +- 🎉 Renamed packages to `@mui/*` as part of rebranding the company, following the strategy of expanding the library scope beyond Material Design. For more details about it, check the [GitHub discussion](https://github.com/mui/material-ui/discussions/27803). +- 🛠 Added `mui-replace` codemod for migrating `@material-ui/*` to new packages `@mui/*`. Check out this [codemod detail](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) or head to [migration guide](https://mui.com/guides/migration-v4/#preset-safe) - 🧪 Added new `` component to the lab, [check it out](https://mui.com/components/masonry/). It has been crafted by our first intern, @hbjORbj 👏! ### `@mui/material@5.0.0-rc.0` @@ -1493,7 +1493,7 @@ A big thanks to the 18 contributors who made this release possible. Here are som > **Note**: `@mui/base` (previously `@material-ui/unstyled`) is not the same as `@material-ui/core`. - We encourage you to use the [codemod](https://github.com/mui-org/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) for smooth migration. + We encourage you to use the [codemod](https://github.com/mui/material-ui/blob/next/packages/mui-codemod/README.md#mui-replace) for smooth migration. #### Changes @@ -1561,7 +1561,7 @@ _Aug 24, 2021_ A big thanks to the 26 contributors who made this release possible. Here are some highlights ✨: -- 🐛 Fixed a lot of bugs and regressions to get us closer to the [v5 stable release milestone](https://github.com/mui-org/material-ui/milestone/44) +- 🐛 Fixed a lot of bugs and regressions to get us closer to the [v5 stable release milestone](https://github.com/mui/material-ui/milestone/44) - 📚 Improved the docs and the migration guide for upgrading to v5 ### `@material-ui/core@5.0.0-beta.5` @@ -1956,7 +1956,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som switch - You can follow our progress at https://github.com/mui-org/material-ui/issues/27170. + You can follow our progress at https://github.com/mui/material-ui/issues/27170. - 💄 We have updated the default `info` `success` `warning` color to be more accessible (#26817) @siriwatknp. You can find the new [default values](https://mui.com/customization/palette/#default-values) in the documentation. @@ -2062,9 +2062,9 @@ _Jul 01, 2021_ A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨: -- 🎉 This is the first beta release of v5! A huge thanks to everyone who helped to make this happen! We're targeting the 1st of September for a stable release, and will use the next two months to polish v5, and ease the migration from v4. You can follow [the v5 stable milestone](https://github.com/mui-org/material-ui/milestone/44) for more details. We now encourage any new projects to start on v5. +- 🎉 This is the first beta release of v5! A huge thanks to everyone who helped to make this happen! We're targeting the 1st of September for a stable release, and will use the next two months to polish v5, and ease the migration from v4. You can follow [the v5 stable milestone](https://github.com/mui/material-ui/milestone/44) for more details. We now encourage any new projects to start on v5. - 🚀 We have completed all the planned breaking changes. -- ⚒️ We added the codemod CLI to simplify migration to v5 (#26941) @eps1lon. You can find it at [`@material-ui/codemod`](https://github.com/mui-org/material-ui/tree/HEAD/packages/mui-codemod). +- ⚒️ We added the codemod CLI to simplify migration to v5 (#26941) @eps1lon. You can find it at [`@material-ui/codemod`](https://github.com/mui/material-ui/tree/HEAD/packages/mui-codemod). - 🐛 The majority of other changes in this release were bug fixes, test utilities and docs. ### `@material-ui/core@5.0.0-beta.0` @@ -2073,7 +2073,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som - [Tabs] Remove unnecessary wrapper from Tab (#26926) @siriwatknp - `span` element that wraps children has been removed. `wrapper` classKey is also removed. More details about [this change](https://github.com/mui-org/material-ui/pull/26666). + `span` element that wraps children has been removed. `wrapper` classKey is also removed. More details about [this change](https://github.com/mui/material-ui/pull/26666). ```diff