Skip to content

Commit

Permalink
ci(changesets): refine registry version packages (#6572)
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 12, 2024
1 parent 3645485 commit 90ff69a
Show file tree
Hide file tree
Showing 259 changed files with 2,988 additions and 2,175 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)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/react-router": major
"@refinedev/react-router": patch
---

feat: Add `@refinedev/react-router` package. #6520
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/inferencer": major
"@refinedev/inferencer": patch
---

feat: added support for Material UI v6 and X Data Grid v7
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/graphql": minor
"@refinedev/graphql": patch
---

Added error handler that will throw GraphQL errors via Tanstack query from urql
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
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/core": minor
"@refinedev/core": patch
---

This PR fixes an issue where the ListButton component doesn't include a query filter in the navigation URL.
Expand Down
File renamed without changes.
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.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/core": minor
"@refinedev/core": patch
---

refactor: modified the Authenticated component to receive optional params prop to be passed to the useIsAuthenticated hook.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/mui": major
"@refinedev/mui": patch
---

feat: added support for Material UI v6 and X Data Grid v7 #6333
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/mui": minor
"@refinedev/mui": patch
---

Introduced containerBoxProps and childrenBoxProps props to ThemedLayoutV2 to allow for greater control over the layout - including styling.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/codemod": minor
"@refinedev/codemod": patch
---

feat: React Router v6 to v7 codemod added.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
"@refinedev/chakra-ui": minor
"@refinedev/ui-tests": minor
"@refinedev/ui-types": minor
"@refinedev/mantine": minor
"@refinedev/antd": minor
"@refinedev/mui": minor
"@refinedev/chakra-ui": patch
"@refinedev/ui-tests": patch
"@refinedev/ui-types": patch
"@refinedev/mantine": patch
"@refinedev/antd": patch
"@refinedev/mui": patch
---

feat: added `minItems` prop to specify the minimum number of items required for rendering breadcrumbs. #6497
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@refinedev/nextjs-router": minor
"@refinedev/nextjs-router": patch
---

**Feature:** Added support for Next.js 15. #6430
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
"@refinedev/chakra-ui": minor
"@refinedev/ui-types": minor
"@refinedev/mantine": minor
"@refinedev/antd": minor
"@refinedev/mui": minor
"@refinedev/chakra-ui": patch
"@refinedev/ui-types": patch
"@refinedev/mantine": patch
"@refinedev/antd": patch
"@refinedev/mui": patch
---

Enhanced the ThemedSideV2 component with new functionality to support dynamic onSiderCollapsed handling. This allows better customization of sider collapse/expand events and improved responsiveness for mobile and desktop views. Added additional type definitions and ensured compatibility across all layout contexts. resolves #6508
File renamed without changes.
10 changes: 5 additions & 5 deletions examples/access-control-casbin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
]
},
"dependencies": {
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"casbin": "^5.15.2",
Expand Down
10 changes: 5 additions & 5 deletions examples/access-control-cerbos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@cerbos/http": "^0.6.0",
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"react": "^18.0.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/access-control-permify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
]
},
"dependencies": {
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"react": "^18.0.0",
Expand Down
12 changes: 6 additions & 6 deletions examples/app-crm-minimal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/devtools": "^1.2.10",
"@refinedev/nestjs-query": "^1.3.3",
"@refinedev/react-router": "^0.1.0",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/devtools": "^1.2.11",
"@refinedev/nestjs-query": "^1.3.4",
"@refinedev/react-router": "^1.0.0",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"classnames": "^2.3.2",
Expand Down
10 changes: 5 additions & 5 deletions examples/audit-log-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"start": "refine start"
},
"dependencies": {
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-hook-form": "^4.9.1",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-hook-form": "^4.9.2",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router": "^7.0.2"
Expand Down
10 changes: 5 additions & 5 deletions examples/auth-antd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"react": "^18.0.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/auth-auth0/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@auth0/auth0-react": "^1.5.0",
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"axios": "^1.6.2",
Expand Down
14 changes: 7 additions & 7 deletions examples/auth-chakra-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
},
"dependencies": {
"@chakra-ui/react": "^2.5.1",
"@refinedev/chakra-ui": "^2.33.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-hook-form": "^4.9.1",
"@refinedev/react-router": "^0.1.0",
"@refinedev/react-table": "^5.6.13",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/chakra-ui": "^2.34.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-hook-form": "^4.9.2",
"@refinedev/react-router": "^1.0.0",
"@refinedev/react-table": "^5.6.14",
"@refinedev/simple-rest": "^5.0.9",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-table": "^8.2.6",
"react": "^18.0.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/auth-google-login/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
]
},
"dependencies": {
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"axios": "^1.6.2",
Expand Down
12 changes: 6 additions & 6 deletions examples/auth-headless/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"start": "refine start"
},
"dependencies": {
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-hook-form": "^4.9.1",
"@refinedev/react-router": "^0.1.0",
"@refinedev/react-table": "^5.6.13",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-hook-form": "^4.9.2",
"@refinedev/react-router": "^1.0.0",
"@refinedev/react-table": "^5.6.14",
"@refinedev/simple-rest": "^5.0.9",
"@tanstack/react-table": "^8.2.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/auth-keycloak/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@react-keycloak/web": "^3.4.0",
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"@uiw/react-md-editor": "^3.19.5",
"antd": "^5.17.0",
"axios": "^1.6.2",
Expand Down
10 changes: 5 additions & 5 deletions examples/auth-kinde/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"dependencies": {
"@refine-auth/kinde-react": "^1.0.2",
"@refinedev/antd": "^5.44.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/antd": "^5.45.0",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/simple-rest": "^5.0.9",
"antd": "^5.17.0",
"axios": "^1.6.2",
"react": "^18.0.0",
Expand Down
12 changes: 6 additions & 6 deletions examples/auth-mantine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"@mantine/form": "^5.10.4",
"@mantine/hooks": "^5.10.4",
"@mantine/notifications": "^5.10.4",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.56.0",
"@refinedev/mantine": "^2.34.0",
"@refinedev/react-router": "^0.1.0",
"@refinedev/react-table": "^5.6.13",
"@refinedev/simple-rest": "^5.0.8",
"@refinedev/cli": "^2.16.41",
"@refinedev/core": "^4.57.0",
"@refinedev/mantine": "^2.35.0",
"@refinedev/react-router": "^1.0.0",
"@refinedev/react-table": "^5.6.14",
"@refinedev/simple-rest": "^5.0.9",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-table": "^8.2.6",
"@uiw/react-md-editor": "^3.19.5",
Expand Down
Loading

0 comments on commit 90ff69a

Please sign in to comment.