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

ci(changesets): version packages #6470

Merged
merged 1 commit into from
Nov 7, 2024
Merged

Conversation

refine-bot
Copy link
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.

Releases

@refinedev/[email protected]

Minor Changes

@refinedev/[email protected]

Minor Changes

  • #6445 4ff4335274d5689ec62127312695b76d692a125a Thanks @alicanerdurmaz! - feat: added new prop called mutationVariables to <AuthPage />. [FEAT] <AuthPage /> should be able to send additional parameters to authProvider methods #6431
    From now on, you can pass additional parameters to the authProvider methods using the mutationVariables prop of the <AuthPage /> component.

    import { AuthPage } from "@refinedev/antd"; // or "@refinedev/chakra-ui", "@refinedev/mantine", "@refinedev/mui"
    
    const MyLoginPage = () => {
      return (
        <AuthPage
          type="login" // all other types are also supported.
          // highlight-start
          mutationVariables={{
            foo: "bar",
            xyz: "abc",
          }}
          // highlight-end
        />
      );
    };
    
    // all mutation methods are supported.
    const authProvider = {
      login: async ({ foo, xyz, ...otherProps }) => {
        console.log(foo); // bar
        console.log(xyz); // abc
        // ...
      },
      register: async ({ foo, xyz, ...otherProps }) => {
        console.log(foo); // bar
        console.log(xyz); // abc
        // ...
      },
      // ...
    };

    Resolves #6431

Patch Changes

@refinedev/[email protected]

Minor Changes

Patch Changes

  • #6445 4ff4335274d5689ec62127312695b76d692a125a Thanks @alicanerdurmaz! - fix: Added more flexibility to the <Link /> component's ref type by changing it from HTMLAnchorElement to Element.
    From now on, we can pass any type of ref to the <Link /> component.

    // Before fix - Only worked with HTMLAnchorElement
    const ref = useRef<HTMLAnchorElement>(null);
    
    // After fix - Works with any Element type
    const ref = useRef<HTMLDivElement>(null);
    const ref = useRef<HTMLSpanElement>(null);

    Resolves #6463

  • #6445 4ff4335274d5689ec62127312695b76d692a125a Thanks @alicanerdurmaz! - fix: Priority logic between to and go props in Link component.
    From now on, the to prop has priority over the go prop. If both are passed, the to prop will be used.

    // Before fix - go would override to
    <Link to="/posts" go={{ resource: "categories" }} />
    
    // After fix - to overrides go
    <Link to="/posts" go={{ resource: "categories" }} />

    Resolves #6461

@refinedev/[email protected]

Minor Changes

  • #6445 4ff4335274d5689ec62127312695b76d692a125a Thanks @alicanerdurmaz! - feat: added new prop called mutationVariables to <AuthPage />. [FEAT] <AuthPage /> should be able to send additional parameters to authProvider methods #6431
    From now on, you can pass additional parameters to the authProvider methods using the mutationVariables prop of the <AuthPage /> component.

    import { AuthPage } from "@refinedev/antd"; // or "@refinedev/chakra-ui", "@refinedev/mantine", "@refinedev/mui"
    
    const MyLoginPage = () => {
      return (
        <AuthPage
          type="login" // all other types are also supported.
          // highlight-start
          mutationVariables={{
            foo: "bar",
            xyz: "abc",
          }}
          // highlight-end
        />
      );
    };
    
    // all mutation methods are supported.
    const authProvider = {
      login: async ({ foo, xyz, ...otherProps }) => {
        console.log(foo); // bar
        console.log(xyz); // abc
        // ...
      },
      register: async ({ foo, xyz, ...otherProps }) => {
        console.log(foo); // bar
        console.log(xyz); // abc
        // ...
      },
      // ...
    };

    Resolves #6431

@refinedev/[email protected]

Minor Changes

  • #6445 4ff4335274d5689ec62127312695b76d692a125a Thanks @alicanerdurmaz! - feat: added new prop called mutationVariables to <AuthPage />. [FEAT] <AuthPage /> should be able to send additional parameters to authProvider methods #6431
    From now on, you can pass additional parameters to the authProvider methods using the mutationVariables prop of the <AuthPage /> component.

    import { AuthPage } from "@refinedev/antd"; // or "@refinedev/chakra-ui", "@refinedev/mantine", "@refinedev/mui"
    
    const MyLoginPage = () => {
      return (
        <AuthPage
          type="login" // all other types are also supported.
          // highlight-start
          mutationVariables={{
            foo: "bar",
            xyz: "abc",
          }}
          // highlight-end
        />
      );
    };
    
    // all mutation methods are supported.
    const authProvider = {
      login: async ({ foo, xyz, ...otherProps }) => {
        console.log(foo); // bar
        console.log(xyz); // abc
        // ...
      },
      register: async ({ foo, xyz, ...otherProps }) => {
        console.log(foo); // bar
        console.log(xyz); // abc
        // ...
      },
      // ...
    };

    Resolves #6431

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refine-bot refine-bot requested a review from a team as a code owner November 7, 2024 11:37
Copy link
Contributor

github-actions bot commented Nov 7, 2024

Copy link

cypress bot commented Nov 7, 2024

refine    Run #11621

Run Properties:  status check failed Failed #11621  •  git commit a0cc5116b0 ℹ️: Merge 0b8df63878a2f02f5a6c1e734e545fca833d7911 into 27eec9b662d37b524ec2419deff7...
Project refine
Branch Review changeset-release/master
Run status status check failed Failed #11621
Run duration 26m 20s
Commit git commit a0cc5116b0 ℹ️: Merge 0b8df63878a2f02f5a6c1e734e545fca833d7911 into 27eec9b662d37b524ec2419deff7...
Committer Refine Community Bot
View all properties for this run ↗︎

Test results
Tests that failed  Failures 1
Tests that were flaky  Flaky 0
Tests that did not run due to a developer annotating a test with .skip  Pending 37
Tests that did not run due to a failure in a mocha hook  Skipped 0
Tests that passed  Passing 382
View all changes introduced in this branch ↗︎

Tests for review

Failed  cypress/e2e/table-material-ui-use-data-grid/all.cy.ts • 1 failed test • table-material-ui-use-data-grid

View Output

Test Artifacts
table-material-ui-use-data-grid > should work with sorter Test Replay Screenshots

@BatuhanW BatuhanW merged commit 5a9267f into master Nov 7, 2024
98 of 99 checks passed
@BatuhanW BatuhanW deleted the changeset-release/master branch November 7, 2024 12:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants