-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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 #6105
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
refine-bot
force-pushed
the
changeset-release/master
branch
from
July 5, 2024 09:22
186c423
to
f3ff9ea
Compare
github-actions
bot
temporarily deployed
to
deploy-preview-pixels-6105/merge
July 5, 2024 09:24
Inactive
github-actions
bot
temporarily deployed
to
deploy-preview-invoicer-6105/merge
July 5, 2024 09:25
Inactive
github-actions
bot
temporarily deployed
to
deploy-preview-finefoods-client-6105/merge
July 5, 2024 09:25
Inactive
github-actions
bot
temporarily deployed
to
deploy-preview-finefoods-antd-6105/merge
July 5, 2024 09:25
Inactive
github-actions
bot
temporarily deployed
to
deploy-preview-app-crm-6105/merge
July 5, 2024 09:25
Inactive
github-actions
bot
temporarily deployed
to
deploy-preview-finefoods-material-ui-6105/merge
July 5, 2024 09:25
Inactive
3 failed tests on run #11273 ↗︎
Details:
cypress/e2e/all.cy.ts • 3 failed tests • auth-keycloakReview all test suite changes for PR #6105 ↗︎ |
refine-bot
force-pushed
the
changeset-release/master
branch
7 times, most recently
from
July 5, 2024 16:25
0247358
to
15067c4
Compare
refine-bot
force-pushed
the
changeset-release/master
branch
from
July 5, 2024 18:07
15067c4
to
2565fd1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
#6074
311dcdc454ee6914218a59198b5d423a4f8e5456
Thanks @alicanerdurmaz! - fix:useDrawerForm
'ssubmit
andform
props are not working ([BUG]useDrawerForm
'ssubmit
andform
props are not working. #6082).submit
prop is removed fromuseDrawerForm
hook. Instead, you can useonFinish
prop to handle the form submission.https://refine.dev/docs/guides-concepts/forms/#modifying-data-before-submission
form
prop is removed fromuseDrawerForm
hook.The purpose of
useDrawerForm
is to create aform
instance. Because of thatform
instance cannot be passed as a prop.#6071
853bef97ed7baf59e74c98fc54c0ed11624fb491
Thanks @Dominic-Preap! - feat: addselectedOptionsOrder
inuseSelect
Now with
selectedOptionsOrder
, you can sortselectedOptions
at the top of list when useuseSelect
withdefaultValue
.Resolves #6061
#6074
311dcdc454ee6914218a59198b5d423a4f8e5456
Thanks @alicanerdurmaz! - fix:useForm
'sdefaultFormValues
prop is not working ([BUG]useDrawerForm
anddefaultFormValues
does not work #5727).From now on,
useForm
,useDrawerForm
, anduseModalForm
hooks accept thedefaultFormValues
prop to pre-populate the form with data that needs to be displayed.Also, it can be provided as an async function to fetch the default values. The loading state can be tracked using the
defaultFormValuesLoading
state returned from the hook.Patch Changes
#6021
55cd0662b1e3ff8f8410eba812e80130afe75d14
Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctlyUpdated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.
Fixes [BUG] Access Control lower cases resources intermittently #6004
#5984
658891c413b1fc83b75905919eabc94f08482e61
Thanks @ApsMJ23! - fix(antd): use appropriate icons for RTL direction layoutsPreviously CRUD components and
<ThemedSiderV2 />
component used hardcoded icons which doesn't fit well for RTL layouts. This PR uses Ant Design'sConfigProvider
context to usedirection
to determine the appropriate icons for RTL layouts.Example
When any CRUD component or
<ThemedSiderV2 />
component is rendered, the icons will be rendered with respect to thedirection
prop ofConfigProvider
.#6064
b516c18b828ba8823561d0fefc4afe02b45ce332
Thanks @aliemir! - fix(auto-save-indicator): replace reservedkey
prop withtranslationKey
in components<AutoSaveIndicator />
components from UI libraries have been using a<Message />
component internally that uses akey
prop. Sincekey
is a reserved prop in React, it was causing a warning in the console. This change replaces thekey
prop withtranslationKey
to avoid the warning.Resolves #6067
@refinedev/[email protected]
Minor Changes
#6071
853bef97ed7baf59e74c98fc54c0ed11624fb491
Thanks @Dominic-Preap! - feat: addselectedOptionsOrder
inuseSelect
Now with
selectedOptionsOrder
, you can sortselectedOptions
at the top of list when useuseSelect
withdefaultValue
.Resolves #6061
Patch Changes
#5989
b86648f42cd849a506e4c32d740de26b72681f72
Thanks @lnikitadobrenkol! - chore(core): add missing types of data hooksAdded missing props and return types of data hooks.
#6070
4265ae2509f79af9dbca8d52daf5c2f1b4a50a51
Thanks @FatimaSaleem21! - fix(core): add unexported types inindex.tsx
The
refinedev/core
package has many unexported types that are not accessible for use outside the package. This change aims to address this limitation by exporting those missing types.Resolves #6041
#6064
b516c18b828ba8823561d0fefc4afe02b45ce332
Thanks @aliemir! - fix(auto-save-indicator): replace reservedkey
prop withtranslationKey
in components<AutoSaveIndicator />
components from UI libraries have been using a<Message />
component internally that uses akey
prop. Sincekey
is a reserved prop in React, it was causing a warning in the console. This change replaces thekey
prop withtranslationKey
to avoid the warning.Resolves #6067
Updated dependencies []:
@refinedev/[email protected]
Minor Changes
#5989
b86648f42cd849a506e4c32d740de26b72681f72
Thanks @lnikitadobrenkol! - feat: editable feature for MUI Data Grid [FEAT] Editable MUI Data Grid #5656It is now possible to make MUI Data Grid editable by
setting editable property on specific column.
Resolves [FEAT] Editable MUI Data Grid #5656
#6071
853bef97ed7baf59e74c98fc54c0ed11624fb491
Thanks @Dominic-Preap! - feat: addselectedOptionsOrder
inuseSelect
Now with
selectedOptionsOrder
, you can sortselectedOptions
at the top of list when useuseSelect
withdefaultValue
.Resolves #6061
Patch Changes
#6021
55cd0662b1e3ff8f8410eba812e80130afe75d14
Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctlyUpdated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.
Fixes [BUG] Access Control lower cases resources intermittently #6004
#6064
b516c18b828ba8823561d0fefc4afe02b45ce332
Thanks @aliemir! - fix(auto-save-indicator): replace reservedkey
prop withtranslationKey
in components<AutoSaveIndicator />
components from UI libraries have been using a<Message />
component internally that uses akey
prop. Sincekey
is a reserved prop in React, it was causing a warning in the console. This change replaces thekey
prop withtranslationKey
to avoid the warning.Resolves #6067
@refinedev/[email protected]
Patch Changes
#6021
55cd0662b1e3ff8f8410eba812e80130afe75d14
Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctlyUpdated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.
Fixes [BUG] Access Control lower cases resources intermittently #6004
#6064
b516c18b828ba8823561d0fefc4afe02b45ce332
Thanks @aliemir! - fix(auto-save-indicator): replace reservedkey
prop withtranslationKey
in components<AutoSaveIndicator />
components from UI libraries have been using a<Message />
component internally that uses akey
prop. Sincekey
is a reserved prop in React, it was causing a warning in the console. This change replaces thekey
prop withtranslationKey
to avoid the warning.Resolves #6067
@refinedev/[email protected]
Patch Changes
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - chore(cli): remove unused commandPreviously
@refinedev/cli
had aproxy
command that is no longer in use and not required in any of the projects. This change removes the command from the CLI without a fallback.#6039
24db047aea42e307a9662c46fde50ea69ca8c381
Thanks @aliemir! - fix(cli): type imports are breaking the code structure on swizzleWhen exporting elements with
swizzle
command, it will try to replace and combine imports from Refine packages. This process was broken if the target file was usingimport type
syntax. This PR updates swizzle command to handleimport type
syntax separately.Resolves #6035
Updated dependencies [
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,50d21076928ca738ec54cc5bcd17fad2683653dd
]:@refinedev/[email protected]
Patch Changes
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - chore(devtools): update devtools url fallback valuesUpdated fallback values for the Devtools URL and use single fallback value until its provided by the
@refinedev/devtools-server
when client is connected.Updated dependencies [
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,24db047aea42e307a9662c46fde50ea69ca8c381
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,50d21076928ca738ec54cc5bcd17fad2683653dd
]:@refinedev/[email protected]
Patch Changes
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
]:@refinedev/[email protected]
Patch Changes
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - refactor(devtools): updated flow for login callbacksPreviously, when the login flow had an error, the Devtools UI was displaying it in the secondary window, which was not user-friendly and lead to multiple clients to connect unnecessarily. This change updates the flow to display the error message in the main Devtools window.
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - refactor(devtools): updated auth flowPreviously, a proxy in the Devtools Server was used as an auth server to handle sign-ins in the localhost (Devtools Server). This change updates the flow and moves the authentication flow to
https://auth.refine.dev
to handle sign-ins and sign-outs. Now the Devtools Server is only responsible for the connection between the auth server and the user interface while also managing the user's session.#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - refactor(devtools-server): handle project id without polluting user consoleWhen project ID is missing in the project, Devtools Server was returning with
400
and404
status codes, which leads to unwanted logs in the user console. To avoid this, the server now returns a200
status code with an error message in the response body. This change is accompanied by a new error handler in the@refinedev/devtools-ui
package to handle the error message and display it in the user interface.#6052
50d21076928ca738ec54cc5bcd17fad2683653dd
Thanks @aliemir! - fix(devtools-server): lodash import from root@refinedev/devtools-server
was usinglodash
imports from root which are interpreted as CJS imports in the ESM bundle. To avoid any future issues, lodash imports have been replaced with subdirectory imports.Updated dependencies [
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
]:@refinedev/[email protected]
Patch Changes
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - chore(devtools-shared): add login callback eventsAdded new events to handle login errors on the main devtools window rather than external windows. This change is accompanied by new event handlers in the
@refinedev/devtools-ui
and@refinedev/devtools-server
packages.#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - chore(devtools): update devtools url fallback valuesUpdated fallback values for the Devtools URL and use single fallback value until its provided by the
@refinedev/devtools-server
when client is connected.@refinedev/[email protected]
Patch Changes
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - refactor(devtools): updated flow for login callbacksPreviously, when the login flow had an error, the Devtools UI was displaying it in the secondary window, which was not user-friendly and lead to multiple clients to connect unnecessarily. This change updates the flow to display the error message in the main Devtools window.
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - chore(devtools-ui): fix slider image loaderIn the welcome page of the Devtools UI, feature slider was re-mounting every image at transition, causing polluted network tab in the browser even though the images were cached and loaded already. This change fixes the issue by loading the images only once and reusing them on transition.
#6098
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
Thanks @aliemir! - refactor(devtools): updated auth flowPreviously, a proxy in the Devtools Server was used as an auth server to handle sign-ins in the localhost (Devtools Server). This change updates the flow and moves the authentication flow to
https://auth.refine.dev
to handle sign-ins and sign-outs. Now the Devtools Server is only responsible for the connection between the auth server and the user interface while also managing the user's session.Updated dependencies [
8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
,8bc2c1c6790d1e098ce0d98e01f608e3310f7b4a
]:@refinedev/[email protected]
Patch Changes
#6052
50d21076928ca738ec54cc5bcd17fad2683653dd
Thanks @aliemir! - fix(hasura): broken lodash import in bundleESM bundle of
@refinedev/hasura
was broken due to incorrect lodash import. Import has been replaced with subdirectory import to get handled properly in the bundling process.Fixes #6044
@refinedev/[email protected]
Patch Changes
#6099
ba8117f6060253dc1d589d69acba79d7c89e94c6
Thanks @BatuhanW! - chore: remove graphql-tag from peer dependencies. fixes [BUG] create-refine-app installed with pnpm fails to start with inferencer #6100#6052
50d21076928ca738ec54cc5bcd17fad2683653dd
Thanks @aliemir! - fix(inferencer): broken lodash import in bundleESM bundle of
@refinedev/inferencer
was broken due to incorrect lodash import. Import has been replaced with subdirectory import to get handled properly in the bundling process.Updated dependencies [
853bef97ed7baf59e74c98fc54c0ed11624fb491
,b86648f42cd849a506e4c32d740de26b72681f72
,4265ae2509f79af9dbca8d52daf5c2f1b4a50a51
,b516c18b828ba8823561d0fefc4afe02b45ce332
]:@refinedev/[email protected]
Patch Changes
#6021
55cd0662b1e3ff8f8410eba812e80130afe75d14
Thanks @JayBhensdadia! - fix: ensure Sider component handles various resource name formats correctlyUpdated Sider component to correctly handle lowercase and camelcased resource names, enhancing usability and functionality.
Fixes [BUG] Access Control lower cases resources intermittently #6004
#6064
b516c18b828ba8823561d0fefc4afe02b45ce332
Thanks @aliemir! - fix(auto-save-indicator): replace reservedkey
prop withtranslationKey
in components<AutoSaveIndicator />
components from UI libraries have been using a<Message />
component internally that uses akey
prop. Sincekey
is a reserved prop in React, it was causing a warning in the console. This change replaces thekey
prop withtranslationKey
to avoid the warning.Resolves #6067
@refinedev/[email protected]
Patch Changes
#6023
82170288209653b096b996cf31854434d19c01cd
Thanks @yamadayutaka! - fix: can specify 0 as filter valueThe following values do not apply to the filter.
The following values can apply to the filter.
Resolves [BUG] Cannot specify
0
as filter value in the Nestjs-Query Data Provider #6022@refinedev/[email protected]
Patch Changes
f4e61b0fae7e78d0c63c09453f4bd11b4c6f8b09
Thanks @youssefsiam38! - fix supabase sorting with nested embedded resources@refinedev/[email protected]
Patch Changes
#6021
55cd0662b1e3ff8f8410eba812e80130afe75d14
Thanks @JayBhensdadia! - fix: update tests to handle lowercase and camelcased resource names correctlyThis update ensures that resource names are correctly handled in both lowercase and camelcased formats, improving test coverage and accuracy.
Fixes [BUG] Access Control lower cases resources intermittently #6004
Updated dependencies [
853bef97ed7baf59e74c98fc54c0ed11624fb491
,b86648f42cd849a506e4c32d740de26b72681f72
,4265ae2509f79af9dbca8d52daf5c2f1b4a50a51
,b516c18b828ba8823561d0fefc4afe02b45ce332
]: