Elliot DeNolf
4884f0d297
fix(cpa): safer command exists check ( #6569 )
...
- Use execa to check if command exists
- Remove third-party dep
2024-05-30 11:11:40 -04:00
Patrik
f1db24e303
fix(ui): adjusts sizing of remove/add buttons to be same size ( #6529 )
...
## Description
V2 PR [here](https://github.com/payloadcms/payload/pull/6527 )
- [x] I have read and understand the
[CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md )
document in this repository.
## Type of change
- [x] Bug fix (non-breaking change which fixes an issue)
## Checklist:
- [x] Existing test suite passes locally with my changes
2024-05-30 09:42:25 -04:00
Patrik
7f15147286
fix: ui field validation error with admin.disableListColumn property ( #6531 )
...
## Description
V2 PR [here](https://github.com/payloadcms/payload/pull/6530 )
- [x] I have read and understand the
[CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md )
document in this repository.
## Type of change
- [x] Bug fix (non-breaking change which fixes an issue)
- [x] This change requires a documentation update
## Checklist:
- [x] Existing test suite passes locally with my changes
- [x] I have made corresponding changes to the documentation
2024-05-30 09:41:58 -04:00
Patrik
e0a6db7f97
fix(translations): adds new userEmailAlreadyRegistered translations ( #6550 )
...
## Description
V2 PR [here](https://github.com/payloadcms/payload/pull/6549 )
- [x] I have read and understand the
[CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md )
document in this repository.
## Type of change
- [x] Bug fix (non-breaking change which fixes an issue)
## Checklist:
- [x] Existing test suite passes locally with my changes
2024-05-30 09:37:02 -04:00
Elliot DeNolf
0d7d3e5c92
fix(cpa): more package manager detection improvements ( #6566 )
...
- Adjust package manager detection logic
- Remove pnpm-lock.yaml from blank template
2024-05-30 09:35:53 -04:00
Elliot DeNolf
8b49402e4c
chore(templates): consolidate initial vercel-postgres migration ( #6568 )
2024-05-30 09:33:35 -04:00
Jarrod Flesch
347464250e
fix: duplicate options appearing in relationship where builder ( #6557 )
...
- enables reactStrictMode by default
- enables reactCompiler by default
- fixes cases where ID's set to 0 broke UI
2024-05-30 00:35:59 -04:00
Paul
aa02801c3d
fix(plugin-search): Render error on custom UI component ( #6562 )
...
## Type of change
- [x] Bug fix (non-breaking change which fixes an issue)
2024-05-30 01:56:06 +00:00
Elliot DeNolf
a3ee07f693
chore: import vercel-postgres one-click template ( #6564 )
...
Import vercel one-click template
2024-05-29 18:06:52 -04:00
Jessica Chowdhury
511908a964
docs: adds sentry to plugin docs ( #6475 )
2024-05-29 15:19:16 -04:00
Jarrod Flesch
425576be25
fix: ensure relationship field pills respect isSortable property ( #6561 )
2024-05-29 15:12:42 -04:00
Jacob Fletcher
92f458dad2
feat(next,ui): improves loading states ( #6434 )
2024-05-29 14:01:13 -04:00
Jarrod Flesch
043a91d719
fix: ability to query relationships not equal to ID ( #6555 )
2024-05-29 13:47:44 -04:00
Jacob Fletcher
54e2d7fb38
docs: renames vercel visual editing to vercel content link ( #6559 )
2024-05-29 13:39:40 -04:00
Jacob Fletcher
321e97f9fe
feat: extracts buildFormState logic from endpoint for reuse ( #6501 )
2024-05-29 12:51:16 -04:00
Elliot DeNolf
4e0dfd410d
chore(release): v3.0.0-beta.37 [skip ci]
v3.0.0-beta.37
2024-05-29 10:54:45 -04:00
Elliot DeNolf
8506385ef9
fix(cpa): improve package manager detection ( #6546 )
...
Improves package manager detection.
Closes #6231
2024-05-29 09:30:15 -04:00
Jarrod Flesch
e74952902e
fix: multi value draggable/sortable pills ( #6500 )
2024-05-29 08:22:37 -04:00
Alessio Gravili
4a51f4d2c1
fix(richtext-lexical): various html converter fixes ( #6544 )
2024-05-29 00:29:25 -04:00
Alessio Gravili
2c283bcc08
fix(richtext-lexical): user-defined html converters not taking precedence, and shared default html converters doubling in size after every field initialization
2024-05-29 00:14:58 -04:00
Alessio Gravili
a2e9bcd333
fix(richtext-lexical): list converters and nodes being added duplicatively
2024-05-28 23:53:35 -04:00
Alessio Gravili
33d53121a2
feat(richtext-lexical): link markdown transformers ( #6543 )
...
Closes https://github.com/payloadcms/payload/issues/6507
---------
Co-authored-by: ShawnVogt <41651465+shawnvogt@users.noreply.github.com >
2024-05-29 03:28:26 +00:00
Leo Hilsheimer
e0b201c810
fix(richtext-lexical): link html converter: serialize newTab to target="_blank" ( #6350 )
...
Co-authored-by: Leo <leo.hilsheimer@gmail.com >
2024-05-28 23:20:44 -04:00
Alessio Gravili
a8000f644f
feat(richtext-lexical): i18n ( #6542 )
...
Continuation of https://github.com/payloadcms/payload/pull/6524
2024-05-29 02:40:48 +00:00
Paul
7d0e909a30
feat(plugin-form-builder)!: update form builder plugin field overrides to use a function instead ( #6497 )
...
## Description
Changes the `fields` override for form builder plugin to use a function
instead so that we can actually override existing fields which currently
will not work.
```ts
//before
fields: [
{
name: 'custom',
type: 'text',
}
]
// current
fields: ({ defaultFields }) => {
return [
...defaultFields,
{
name: 'custom',
type: 'text',
},
]
}
```
## Type of change
- [x] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
2024-05-28 17:45:51 -03:00
Elliot DeNolf
b2662eeb1f
ci: update app-build-with-packed job ( #6541 )
...
Add `--ignore-workspace` and `--no-frozen-lockfile` where necessary
2024-05-28 14:35:18 -04:00
Elliot DeNolf
0b274dd67e
chore: adjust email-nodemailer workspace dep pattern ( #6539 )
...
Adjust dep pattern for email-nodemailer reference from plugin-cloud
2024-05-28 14:19:21 -04:00
Elliot DeNolf
2ddd50edc4
fix(deps): proper location for scheduler peer dep ( #6537 )
...
Properly put `scheduler` dep under `ui` instead of `payload`.
2024-05-28 14:15:56 -04:00
Elliot DeNolf
0287acb8f0
chore(templates): update dockerfile and docker-compose for blank template ( #6536 )
...
Update Dockerfile and docker-compose.yml for blank template.
2024-05-28 12:35:05 -04:00
Elliot DeNolf
10c94b3665
feat(cpa): update existing payload installation ( #6193 )
...
Updates create-payload-app to update an existing payload installation
- Detects existing Payload installation. Fixes #6517
- If not latest, will install latest and grab the `(payload)` directory
structure (ripped from `templates/blank-3.0`
2024-05-28 11:38:33 -04:00
Alessio Gravili
ea48ca377e
chore: move lexical package from workspace-root to test package ( #6533 )
2024-05-28 15:01:30 +00:00
zvizvi
6f5d86ed84
fix: Add missing He lang export in payload/i18n ( #6484 )
...
## Description
Fixed missing Hebrew language export in payload/i18n module.
The import statement import { he } from 'payload/i18n/he' was not
functioning due to he not being exported correctly.
<!-- Please include a summary of the pull request and any related issues
it fixes. Please also include relevant motivation and context. -->
- [x] I have read and understand the
[CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md )
document in this repository.
## Type of change
<!-- Please delete options that are not relevant. -->
- [x] Chore (non-breaking change which does not add functionality)
2024-05-28 10:52:20 -03:00
Alessio Gravili
c383f391e3
feat(richtext-lexical): i18n support ( #6524 )
2024-05-28 09:10:39 -04:00
Paul
8a91a7adbb
feat(richtext-lexical): update validation of custom URLs to include relative and anchor links ( #6525 )
...
Updates the regex to allow relative and anchor links as well. Manually
tested all common variations of absolute, relative and anchor links with
a combination
## Type of change
- [x] New feature (non-breaking change which adds functionality)
2024-05-28 00:55:00 -03:00
Alessio Gravili
96181d91a6
chore(ui): add ability to compile using react compiler ( #6483 )
...
This does not enable the react compiler by default
2024-05-27 22:54:36 -04:00
Alessio Gravili
eff5129a5f
fix(next): unable to pass custom view client components ( #6513 )
2024-05-27 22:48:41 -04:00
Dan Ribbens
38e5adc462
chore: fix seed file path windows ( #6512 )
2024-05-26 15:39:16 +00:00
Dan Ribbens
ff4ea1eecc
chore: getPayloadHMR conditionally call db.connect ( #6510 )
2024-05-25 22:17:27 +00:00
Dan Ribbens
dbfd1beed5
chore: gitignore static files uploads tests ( #6509 )
2024-05-25 22:06:43 +00:00
Dan Ribbens
4b6774463e
chore: loader tests error on windows ( #6508 )
2024-05-25 21:57:32 +00:00
Dan Ribbens
cb14b97a6e
chore: swcrc syntax fix ( #6505 )
2024-05-25 15:45:05 +00:00
Jarrod Flesch
18bc4b708c
fix: separate collection docs with same ids were excluded in selectable ( #6499 )
2024-05-24 15:20:07 -04:00
Paul
6d951e6987
chore: add lexical as a direct dependency to the website template ( #6496 )
2024-05-24 16:33:36 +00:00
Elliot DeNolf
365660764d
chore(templates): enable next lint on blank ( #6494 )
...
Enables next linting on blank template
Closes #6481
2024-05-24 11:36:50 -04:00
Elliot DeNolf
8b91af8a5b
chore(cpa): adjust unit test template ( #6490 )
...
Adjust template used in unit tests.
2024-05-24 10:12:19 -04:00
Paul
b4092f59ae
chore: fix seed data validation in website template ( #6491 )
...
Fixes an issue with data validation in lexical for the seed script
2024-05-24 14:10:29 +00:00
Alessio Gravili
7a768144ea
fix(richtext-lexical): localized sub-fields were omitted from the API output ( #6489 )
...
Closes #6455 . Proper localization support will be worked on later, this
just resolves the issue where having it enabled not only doesn't
localize those fields, it also omits them from the API response. Now,
they are not omitted, and localization is simply skipped.
2024-05-24 10:01:04 -04:00
Elliot DeNolf
3839eb5ab0
chore(templates): remove blank v2 template ( #6488 )
...
New v3 is `blank-3.0`. Will rename that one in future PR.
2024-05-24 09:36:57 -04:00
Paul
fd02bee0fe
chore: website template updates ( #6480 )
...
Just style updates
2024-05-23 20:38:25 +00:00
Patrik
42222cd2f6
fix(ui): where builder issues ( #6478 )
...
Co-authored-by: Jarrod Flesch <jarrodmflesch@gmail.com >
2024-05-23 16:01:13 -04:00