Skip to content

Commit

Permalink
ci(changesets): refine registry version packages (#6590)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
refine-bot and github-actions[bot] authored Dec 18, 2024
1 parent 1a6bbdb commit 19b9e14
Show file tree
Hide file tree
Showing 177 changed files with 424 additions and 341 deletions.
8 changes: 8 additions & 0 deletions _changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
14 changes: 14 additions & 0 deletions _changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": ["./format.js", { "repo": "refinedev/refine" }],
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["!@refinedev/*", "!create-refine-app"],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"onlyUpdatePeerDependentsWhenOutOfRange": true
}
}
40 changes: 40 additions & 0 deletions _changeset/format.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
const clgh = require("@changesets/changelog-github");

const changelogFunctions = {
getDependencyReleaseLine: clgh.default.getDependencyReleaseLine,
getReleaseLine: async (changeset, tag, options) => {
const defaultChangeset = await clgh.default.getReleaseLine(
changeset,
tag,
options,
);

const isValid = ["community", "enterprise"].includes(
process.env.REFINE_RELEASE_TYPE,
);

if (!isValid) {
console.error(
"❌ REFINE_RELEASE_TYPE must be either community or enterprise",
);

process.exit(1);
}

let title = "";

if (process.env.REFINE_RELEASE_TYPE === "community") {
title = "\n\n📢 **Refine Community Release** 📢";
}

if (process.env.REFINE_RELEASE_TYPE === "enterprise") {
title = "\n\n⚡ **Refine Enterprise Release** ⚡";
}

const result = title + defaultChangeset;

return result;
},
};

exports.default = changelogFunctions;
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/access-control-casbin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/access-control-cerbos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@cerbos/http": "^0.6.0",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/access-control-permify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/app-crm-minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@dnd-kit/sortable": "^7.0.2",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/devtools": "^1.2.12",
"@refinedev/nestjs-query": "^1.3.5",
"@refinedev/react-router": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/audit-log-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-antd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@ant-design/icons": "^5.5.1",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-auth0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@auth0/auth0-react": "^1.5.0",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@chakra-ui/react": "^2.5.1",
"@refinedev/chakra-ui": "^2.34.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-google-login/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-keycloak/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@react-keycloak/web": "^3.4.0",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-kinde/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@refine-auth/kinde-react": "^1.0.2",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"antd": "^5.17.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-mantine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@mantine/hooks": "^5.10.4",
"@mantine/notifications": "^5.10.4",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/mantine": "^2.35.1",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@mui/material": "^6.1.7",
"@mui/x-data-grid": "^7.22.2",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/mui": "^6.0.1",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/auth-otp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@ant-design/icons": "^5.5.1",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/base-antd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/devtools": "^1.2.12",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
Expand Down
2 changes: 1 addition & 1 deletion examples/base-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@chakra-ui/react": "^2.5.1",
"@refinedev/chakra-ui": "^2.34.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/base-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/base-mantine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@mantine/hooks": "^5.10.4",
"@mantine/notifications": "^5.10.4",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/mantine": "^2.35.1",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/base-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@mui/material": "^6.1.7",
"@mui/x-data-grid": "^7.22.2",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/devtools": "^1.2.12",
"@refinedev/mui": "^6.0.1",
"@refinedev/react-hook-form": "^4.9.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/calendar-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"antd": "^5.17.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/command-palette-kbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@ant-design/icons": "^5.5.1",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/kbar": "1.3.14",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
Expand Down
2 changes: 1 addition & 1 deletion examples/core-use-import/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/core-use-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/core-use-modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/core-use-select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-footer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"antd": "^5.17.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-login/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@craco/craco": "^7.1.0",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-offlayout-area/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@ant-design/icons": "^5.5.1",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"antd": "^5.17.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-rtl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-sider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"antd": "^5.17.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-theme-antd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-theme-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@chakra-ui/react": "^2.5.1",
"@refinedev/chakra-ui": "^2.34.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-theme-mantine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@mantine/hooks": "^5.10.4",
"@mantine/notifications": "^5.10.4",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/mantine": "^2.35.1",
"@refinedev/react-router": "^1.0.1",
"@refinedev/react-table": "^5.6.15",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-theme-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@mui/material": "^6.1.7",
"@mui/x-data-grid": "^7.22.2",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/mui": "^6.0.1",
"@refinedev/react-hook-form": "^4.9.3",
"@refinedev/react-router": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion examples/customization-top-menu-layout/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"dependencies": {
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@refinedev/simple-rest": "^5.0.10",
"antd": "^5.17.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/data-provider-airtable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@refinedev/airtable": "^4.4.13",
"@refinedev/antd": "^5.45.1",
"@refinedev/cli": "^2.16.42",
"@refinedev/core": "^4.57.1",
"@refinedev/core": "^4.57.2",
"@refinedev/react-router": "^1.0.1",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
Expand Down
Loading

0 comments on commit 19b9e14

Please sign in to comment.