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 #5514

Merged
merged 1 commit into from
Feb 2, 2024
Merged

Conversation

refine-bot
Copy link
Contributor

@refine-bot refine-bot commented Jan 15, 2024

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

Patch Changes

  • #5525 e2355e4179 Thanks @aliemir! - Updated <WelcomePage /> component to use RefineContext to determine if the context is defined or not. It will show an error dialog if the context is not defined. If the error is showing, it means that <Refine /> component is not mounted or <WelcomePage /> component is used outside of <Refine /> component.

  • #5332 5e65f71ecd Thanks @vikavorkin! - fix: replace export-to-csv-fix-source-map with papaparse [BUG] - CSV Export uses an outdated pacakge - export-to-csv-fix-source-map #5317

    Replace usage of export-to-csv-fix-source-map to papaparse, fixing issues with useExport hook.

  • #5526 b094b50c51 Thanks @aliemir! - Marked dataProvider prop of <Refine /> component as optional. This will allow users to setup Refine gradually without having to provide a data provider.

  • #5503 4b4d34208c Thanks @BatuhanW! - refactor(core): re-export AuthBindings type as AuthProvider for consistency.

@refinedev/[email protected]

Minor Changes

  • #5478 24d81ca854 Thanks @alicanerdurmaz! - feat: add gqlQuery and gqlMutation support. [FEAT] add meta.gqlQuery and meta.qglMutation support to @refinedev/hasura #5489

    Previously, @refinedev/hasura package only supported GraphQL operations through meta.fields.

    Now we've added gqlQuery and gqlMutation fields in meta object.

    You can utilize these fields along with graphql-tag package to build your queries/mutations.

    See the updated documentation for more information: https://refine.dev/docs/data/packages/hasura/

    Query Example:

    import { useList } from "@refinedev/core";
    import gql from "graphql-tag";
    
    const PRODUCTS_QUERY = gql`
      query ProductsList(
        $offset: Int!
        $limit: Int!
        $order_by: [products_order_by!]
        where: $where
      ) {
        products(offset: $paging, limit: $filter, order_by: $order_by, where: $where) {
          id
          name
        }
        categories_aggregate(where: $where) {
          aggregate {
            count
          }
        }
      }
    `;
    
    const { data } = useList({
        resource: "products",
        meta: { gqlQuery: PRODUCTS_QUERY },
    });

    Mutation Example:

    import { useForm } from "@refinedev/core";
    import gql from "graphql-tag";
    
    const CREATE_PRODUCT_MUTATION = gql`
        mutation CreateProduct($object: posts_insert_input!) {
            createOneProduct(object: $object) {
                id
                name
            }
        }
    `;
    
    const { formProps } = useForm({
        resource: "products",
        meta: { gqlMutation: CREATE_PRODUCT_MUTATION },
    });

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

  • #5378 63e39ed312 Thanks @amanzrx4! - fix: dataProvider.getList method adds ? to the request url when there is no filters, sorters and pagination in the request. [DOC] I want to remove ?& when calling API in useTable #5359

    - Expected
    + Received
    
    - "https://api.fake-rest.refine.dev/categories",
    + "https://api.fake-rest.refine.dev/categories?",

    From now on, dataProvider.getList method will not add ? to the request url when there is no filters, sorters and pagination in the request.

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refinedev/[email protected]

Patch Changes

@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 15, 2024 11:31 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 15, 2024 11:31 Inactive
Copy link

nx-cloud bot commented Jan 15, 2024

☁️ Nx Cloud Report

CI is running/has finished running commands for commit 5055da3. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this CI Pipeline Execution


✅ Successfully ran 26 targets

Sent with 💌 from NxCloud.

Copy link

cypress bot commented Jan 15, 2024

Passing run #10649 ↗︎

0 114 25 0 Flakiness 0

Details:

Merge 5055da3 into 726b62b...
Project: refine Commit: 1c45e5eb36 ℹ️
Status: Passed Duration: 24:39 💡
Started: Feb 1, 2024 10:20 AM Ended: Feb 1, 2024 10:44 AM

Review all test suite changes for PR #5514 ↗︎

@refine-bot refine-bot force-pushed the changeset-release/master branch from 538ed22 to e32c772 Compare January 16, 2024 11:33
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 16, 2024 11:35 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 16, 2024 11:36 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from e32c772 to c9459a3 Compare January 16, 2024 13:43
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 16, 2024 13:45 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 16, 2024 13:46 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from c9459a3 to 5f1b07f Compare January 17, 2024 11:47
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 17, 2024 11:49 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 17, 2024 11:49 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 5f1b07f to 72c39f6 Compare January 17, 2024 13:28
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 17, 2024 13:30 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 17, 2024 13:31 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 72c39f6 to dce9695 Compare January 17, 2024 14:56
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 17, 2024 14:58 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 17, 2024 14:58 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from dce9695 to 56632ba Compare January 18, 2024 11:52
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 18, 2024 11:54 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 18, 2024 11:54 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 56632ba to 92f5640 Compare January 19, 2024 10:36
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 19, 2024 10:37 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 19, 2024 10:38 Inactive
Copy link

netlify bot commented Jan 19, 2024

Deploy Preview for app-crm-minimal ready!

Name Link
🔨 Latest commit 23049e8
🔍 Latest deploy log https://app.netlify.com/sites/app-crm-minimal/deploys/65ae805767b00e000898533d
😎 Deploy Preview https://deploy-preview-5514--app-crm-minimal.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@refine-bot refine-bot force-pushed the changeset-release/master branch from 92f5640 to 39de7e3 Compare January 19, 2024 10:57
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 19, 2024 10:58 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 19, 2024 10:58 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 39de7e3 to 68ec6b9 Compare January 19, 2024 13:36
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 29, 2024 06:47 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 29, 2024 06:47 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 217f0ae to 3cff55f Compare January 29, 2024 10:35
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 29, 2024 10:37 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 29, 2024 10:37 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 3cff55f to 4955907 Compare January 29, 2024 12:31
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 29, 2024 12:33 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 29, 2024 12:33 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 4955907 to aedfd85 Compare January 30, 2024 10:54
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 30, 2024 10:56 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 30, 2024 10:56 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from aedfd85 to 37fe423 Compare January 30, 2024 12:37
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 30, 2024 12:38 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 30, 2024 12:39 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from 37fe423 to d228573 Compare January 31, 2024 09:17
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 31, 2024 09:19 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 31, 2024 09:19 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from d228573 to eaa3441 Compare January 31, 2024 09:28
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 31, 2024 09:30 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 31, 2024 09:30 Inactive
@refine-bot refine-bot force-pushed the changeset-release/master branch from eaa3441 to 96eb967 Compare January 31, 2024 15:01
@refine-bot refine-bot temporarily deployed to deploy-preview-mui-5514 January 31, 2024 15:04 Inactive
@refine-bot refine-bot temporarily deployed to deploy-preview-antd-5514 January 31, 2024 15:06 Inactive
@BatuhanW BatuhanW merged commit 9d58634 into master Feb 2, 2024
95 checks passed
@BatuhanW BatuhanW deleted the changeset-release/master branch February 2, 2024 11:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants