summaryrefslogtreecommitdiff
path: root/playground/package-lock.json
Commit message (Collapse)AuthorAgeFilesLines
* Update dependency jest to v30renovate[bot]18 hours1-771/+1089
|
* Refactor Gitea workflow and update package dependenciesValentin Popov20 hours1-1885/+1315
| | | | | | - Simplified the Gitea workflow by removing the E2E testing section and renaming the integration tests job. - Updated package-lock.json to include new dependencies for escape-string-regexp and removed outdated dependencies. - Removed Playwright configuration and related test files from the playground directory to streamline testing processes.
* Update dependency fs-extra to v11 (#6)renovate[bot]20 hours1-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [fs-extra](https://github.com/jprichardson/node-fs-extra) | [`^10.0.0` → `^11.0.0`](https://renovatebot.com/diffs/npm/fs-extra/10.1.0/11.3.3) | ![age](https://developer.mend.io/api/mc/badges/age/npm/fs-extra/11.3.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/fs-extra/10.1.0/11.3.3?slim=true) | --- ### Release Notes <details> <summary>jprichardson/node-fs-extra (fs-extra)</summary> ### [`v11.3.3`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1133--2025-12-18) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.3.2...11.3.3) - Fix copying symlink when destination is a symlink to the same target ([#&#8203;1019](https://github.com/jprichardson/node-fs-extra/issues/1019), [#&#8203;1060](https://github.com/jprichardson/node-fs-extra/pull/1060)) ### [`v11.3.2`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1132--2025-09-15) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.3.1...11.3.2) - Fix spurrious `UnhandledPromiseRejectionWarning` that could occur when calling `.copy()` in some cases ([#&#8203;1056](https://github.com/jprichardson/node-fs-extra/issues/1056), [#&#8203;1058](https://github.com/jprichardson/node-fs-extra/pull/1058)) ### [`v11.3.1`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1131--2025-08-05) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.3.0...11.3.1) - Fix case where `move`/`moveSync` could incorrectly think files are identical on Windows ([#&#8203;1050](https://github.com/jprichardson/node-fs-extra/pull/1050)) ### [`v11.3.0`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1130--2025-01-15) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.2.0...11.3.0) - Add promise support for newer `fs` methods ([#&#8203;1044](https://github.com/jprichardson/node-fs-extra/issues/1044), [#&#8203;1045](https://github.com/jprichardson/node-fs-extra/pull/1045)) - Use `fs.opendir` in `copy()`/`copySync()` for better perf/scalability ([#&#8203;972](https://github.com/jprichardson/node-fs-extra/issues/972), [#&#8203;1028](https://github.com/jprichardson/node-fs-extra/pull/1028)) ### [`v11.2.0`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1120--2023-11-27) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.1.1...11.2.0) - Copy directory contents in parallel for better performance ([#&#8203;1026](https://github.com/jprichardson/node-fs-extra/pull/1026)) - Refactor internal code to use `async`/`await` ([#&#8203;1020](https://github.com/jprichardson/node-fs-extra/issues/1020)) ### [`v11.1.1`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1111--2023-03-20) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.1.0...11.1.1) - Preserve timestamps when moving files across devices ([#&#8203;992](https://github.com/jprichardson/node-fs-extra/issues/992), [#&#8203;994](https://github.com/jprichardson/node-fs-extra/pull/994)) ### [`v11.1.0`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1110--2022-11-29) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/11.0.0...11.1.0) - Re-add `main` field to `package.json` for better TypeScript compatibility ([#&#8203;979](https://github.com/jprichardson/node-fs-extra/issues/979), [#&#8203;981](https://github.com/jprichardson/node-fs-extra/pull/981)) ### [`v11.0.0`](https://github.com/jprichardson/node-fs-extra/blob/HEAD/CHANGELOG.md#1100--2022-11-28) [Compare Source](https://github.com/jprichardson/node-fs-extra/compare/10.1.0...11.0.0) ##### Breaking Changes - Don't allow requiring `fs-extra/lib/SOMETHING` (switched to `exports`) ([#&#8203;974](https://github.com/jprichardson/node-fs-extra/pull/974)) - Require Node v14.14+ ([#&#8203;968](https://github.com/jprichardson/node-fs-extra/issues/968), [#&#8203;969](https://github.com/jprichardson/node-fs-extra/pull/969)) ##### New Features - Add `fs-extra/esm` for ESM named export support; see [docs](https://github.com/jprichardson/node-fs-extra#esm) for details ([#&#8203;746](https://github.com/jprichardson/node-fs-extra/issues/746), [#&#8203;974](https://github.com/jprichardson/node-fs-extra/pull/974)) - Add promise support for `fs.readv()` ([#&#8203;970](https://github.com/jprichardson/node-fs-extra/pull/970)) ##### Bugfixes - Don't `stat` filtered items in `copy*` ([#&#8203;965](https://github.com/jprichardson/node-fs-extra/issues/965), [#&#8203;971](https://github.com/jprichardson/node-fs-extra/pull/971)) - Remove buggy stats check in `copy` ([#&#8203;918](https://github.com/jprichardson/node-fs-extra/issues/918), [#&#8203;976](https://github.com/jprichardson/node-fs-extra/pull/976)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjUiLCJ1cGRhdGVkSW5WZXIiOiI0My4wLjUiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOlsiYXV0b21hdGVkIiwiZGVwZW5kZW5jaWVzIl19--> Reviewed-on: https://code.popov.link/valentineus/strapi-plugin-checkbox-list/pulls/6 Co-authored-by: renovate[bot] <renovatebot@noreply.localhost> Co-committed-by: renovate[bot] <renovatebot@noreply.localhost>
* Enhance testing and integration for checkbox-list custom fieldValentin Popov26 hours1-6/+2866
| | | | | | | | - Updated Gitea workflow to trigger on pushes to the master branch and refined job configurations for testing and E2E processes. - Added Jest and Playwright configurations for integration and E2E testing. - Introduced new checkbox-item API with corresponding controller, service, and routes. - Created integration tests for the checkbox-list functionality, ensuring proper handling of required fields and default values. - Updated package.json and package-lock.json to include necessary dependencies for testing.
* Update dependency @types/node to v20.19.32renovate[bot]26 hours1-3/+3
|
* Update dependency better-sqlite3 to v12.6.2renovate[bot]27 hours1-5/+5
|
* Add checkbox-list custom field plugin to StrapiValentin Popov30 hours1-139/+796
| | | | | | | | - Introduced a new custom field type 'checkbox-list' with associated input component. - Updated package.json to reflect the new plugin name. - Added necessary server-side files for plugin registration, including bootstrap, destroy, and service methods. - Updated package-lock.json to include new dependencies and versions. - Enhanced admin interface with custom field registration and input handling.
* Initial Strapi plugin projectValentin Popov31 hours1-0/+21444