Closed renovate[bot] closed 6 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
nextarter-chakra | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | May 19, 2024 5:11pm |
Name | Link |
---|---|
Latest commit | 64b4b4e228e89dbb90fbec7118d014ceaa776988 |
Latest deploy log | https://app.netlify.com/sites/nextarter-chakra/deploys/664a32591e8325000833a6be |
Deploy Preview | https://deploy-preview-142--nextarter-chakra.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
Lighthouse |
1 paths audited Performance: 65 Accessibility: 100 Best Practices: 75 SEO: 92 PWA: 60 View the detailed breakdown and full score reports |
To edit notification comments on pull requests, go to your Netlify site configuration.
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code
Latest commit: |
64b4b4e
|
Status: | ✅ Deploy successful! |
Preview URL: | https://9249a9a1.nextarter-chakra-au3.pages.dev |
Branch Preview URL: | https://renovate-all.nextarter-chakra-au3.pages.dev |
This PR contains the following updates:
^1.43.1
->^1.44.0
^18.3.1
->^18.3.2
^11.1.7
->^11.2.4
^5.2.0
->^5.2.1
^9.5.0
->^9.5.0
This is a special PR that replaces
standard-version
with the community suggested minimal stable replacement version.Release Notes
microsoft/playwright (@playwright/test)
### [`v1.44.0`](https://togithub.com/microsoft/playwright/releases/tag/v1.44.0) [Compare Source](https://togithub.com/microsoft/playwright/compare/v1.43.1...v1.44.0) #### New APIs **Accessibility assertions** - [expect(locator).toHaveAccessibleName()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-name) checks if the element has the specified accessible name: ```js const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleName('Submit'); ``` - [expect(locator).toHaveAccessibleDescription()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-description) checks if the element has the specified accessible description: ```js const locator = page.getByRole('button'); await expect(locator).toHaveAccessibleDescription('Upload a photo'); ``` - [expect(locator).toHaveRole()](https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-role) checks if the element has the specified ARIA role: ```js const locator = page.getByTestId('save-button'); await expect(locator).toHaveRole('button'); ``` **Locator handler** - After executing the handler added with [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler), Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new `noWaitAfter` option. - You can use new `times` option in [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler) to specify maximum number of times the handler should be run. - The handler in [page.addLocatorHandler()](https://playwright.dev/docs/api/class-page#page-add-locator-handler) now accepts the locator as argument. - New [page.removeLocatorHandler()](https://playwright.dev/docs/api/class-page#page-remove-locator-handler) method for removing previously added locator handlers. ```js const locator = page.getByText('This interstitial covers the button'); await page.addLocatorHandler(locator, async overlay => { await overlay.locator('#close').click(); }, { times: 3, noWaitAfter: true }); // Run your tests that can be interrupted by the overlay. // ... await page.removeLocatorHandler(locator); ``` **Miscellaneous options** - [`multipart`](https://playwright.dev/docs/api/class-apirequestcontext#api-request-context-fetch-option-multipart) option in `apiRequestContext.fetch()` now accepts [`FormData`](https://developer.mozilla.org/en-US/docs/Web/API/FormData) and supports repeating fields with the same name. ```js const formData = new FormData(); formData.append('file', new File(['let x = 2024;'], 'f1.js', { type: 'text/javascript' })); formData.append('file', new File(['hello'], 'f2.txt', { type: 'text/plain' })); context.request.post('https://example.com/uploadFiles', { multipart: formData }); ``` - `expect(callback).toPass({ intervals })` can now be configured by `expect.toPass.inervals` option globally in [testConfig.expect](https://playwright.dev/docs/api/class-testconfig#test-config-expect) or per project in [testProject.expect](https://playwright.dev/docs/api/class-testproject#test-project-expect). - `expect(page).toHaveURL(url)` now supports `ignoreCase` [option](https://playwright.dev/docs/api/class-pageassertions#page-assertions-to-have-url-option-ignore-case). - [testProject.ignoreSnapshots](https://playwright.dev/docs/api/class-testproject#test-project-ignore-snapshots) allows to configure per project whether to skip screenshot expectations. **Reporter API** - New method [suite.entries()](https://playwright.dev/docs/api/class-suite#suite-entries) returns child test suites and test cases in their declaration order. [suite.type](https://playwright.dev/docs/api/class-suite#suite-type) and [testCase.type](https://playwright.dev/docs/api/class-testcase#test-case-type) can be used to tell apart test cases and suites in the list. - [Blob](https://playwright.dev/docs/test-reporters#blob-reporter) reporter now allows overriding report file path with a single option `outputFile`. The same option can also be specified as `PLAYWRIGHT_BLOB_OUTPUT_FILE` environment variable that might be more convenient on CI/CD. - [JUnit](https://playwright.dev/docs/test-reporters#junit-reporter) reporter now supports `includeProjectInTestName` option. **Command line** - `--last-failed` CLI option for running only tests that failed in the previous run. First run all tests: ```sh $ npx playwright test Running 103 tests using 5 workers ... 2 failed [chromium] › my-test.spec.ts:8:5 › two ───────────────────────────────────────────────────────── [chromium] › my-test.spec.ts:13:5 › three ────────────────────────────────────────────────────── 101 passed (30.0s) ``` Now fix the failing tests and run Playwright again with `--last-failed` option: ```sh $ npx playwright test --last-failed Running 2 tests using 2 workers 2 passed (1.2s) ``` #### Browser Versions - Chromium 125.0.6422.14 - Mozilla Firefox 125.0.1 - WebKit 17.4 This version was also tested against the following stable channels: - Google Chrome 124 - Microsoft Edge 124framer/motion (framer-motion)
### [`v11.2.4`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1124-2024-05-16) [Compare Source](https://togithub.com/framer/motion/compare/v11.2.3...v11.2.4) ##### Fixed - Batching triggering animations with `useSpring`. ### [`v11.2.3`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1123-2024-05-16) [Compare Source](https://togithub.com/framer/motion/compare/v11.2.2...v11.2.3) ##### Fixed - `MotionValue`s created with `undefined` can track velocity correctly. ### [`v11.2.2`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1122-2024-05-15) [Compare Source](https://togithub.com/framer/motion/compare/v11.2.1...v11.2.2) ##### Fixed - Fixed visual jump when interrupting an optimised appear animation. ### [`v11.2.1`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1121-2024-05-15) [Compare Source](https://togithub.com/framer/motion/compare/v11.2.0...v11.2.1) ##### Changed - Improved performance of resolving variants by lazy resolving current `MotionValue` state. ### [`v11.2.0`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1120-2024-05-14) [Compare Source](https://togithub.com/framer/motion/compare/v11.1.9...v11.2.0) ##### Added - Binary visibility interpolation i.e `display: ["block", "none"]` now maintains the visible state throughout the animation. ### [`v11.1.9`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1119-2024-05-07) [Compare Source](https://togithub.com/framer/motion/compare/v11.1.8...v11.1.9) ##### Changed - Reinstating async event handlers to fix issues with user code and Suspence within Framer. ### [`v11.1.8`](https://togithub.com/framer/motion/blob/HEAD/CHANGELOG.md#1118-2024-05-06) [Compare Source](https://togithub.com/framer/motion/compare/v11.1.7...v11.1.8) ##### Fixed - Animating between keyframe unit types when one keyframe is `0` and the other is an explicitly defined keyframe, e.g `y: ["100%", 0]`.react-icons/react-icons (react-icons)
### [`v5.2.1`](https://togithub.com/react-icons/react-icons/releases/tag/v5.2.1) [Compare Source](https://togithub.com/react-icons/react-icons/compare/v5.2.0...v5.2.1) #### What's Changed - bug fix: add filled suffix in tb by [@kamijin-fanta](https://togithub.com/kamijin-fanta) in [https://github.com/react-icons/react-icons/pull/941](https://togithub.com/react-icons/react-icons/pull/941) **Full Changelog**: https://github.com/react-icons/react-icons/compare/v5.2.0...v5.2.1 | Icon Library | License | Version | Count | | --- | --- | --- | ---: | | [Circum Icons](https://circumicons.com/) | [MPL-2.0 license](https://togithub.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE) | 1.0.0 | 288 | | [Font Awesome 5](https://fontawesome.com/) | [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/) | 5.15.4-3-gafecf2a | 1612 | | [Font Awesome 6](https://fontawesome.com/) | [CC BY 4.0 License](https://creativecommons.org/licenses/by/4.0/) | 6.5.2 | 2045 | | [Ionicons 4](https://ionicons.com/) | [MIT](https://togithub.com/ionic-team/ionicons/blob/master/LICENSE) | 4.6.3 | 696 | | [Ionicons 5](https://ionicons.com/) | [MIT](https://togithub.com/ionic-team/ionicons/blob/master/LICENSE) | 5.5.4 | 1332 | | [Material Design icons](http://google.github.io/material-design-icons/) | [Apache License Version 2.0](https://togithub.com/google/material-design-icons/blob/master/LICENSE) | 4.0.0-98-g9beae745bb | 4341 | | [Typicons](http://s-ings.com/typicons/) | [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0/) | 2.1.2 | 336 | | [Github Octicons icons](https://octicons.github.com/) | [MIT](https://togithub.com/primer/octicons/blob/master/LICENSE) | 18.3.0 | 264 | | [Feather](https://feathericons.com/) | [MIT](https://togithub.com/feathericons/feather/blob/master/LICENSE) | 4.29.1 | 287 | | [Lucide](https://lucide.dev/) | [ISC](https://togithub.com/lucide-icons/lucide/blob/main/LICENSE) | v5.2.1 | 1215 | | [Game Icons](https://game-icons.net/) | [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/) | [`12920d6`](https://togithub.com/react-icons/react-icons/commit/12920d6565588f0512542a3cb0cdfd36a497f910) | 4040 | | [Weather Icons](https://erikflowers.github.io/weather-icons/) | [SIL OFL 1.1](http://scripts.sil.org/OFL) | 2.0.12 | 219 | | [Devicons](https://vorillaz.github.io/devicons/) | [MIT](https://opensource.org/licenses/MIT) | 1.8.0 | 192 | | [Ant Design Icons](https://togithub.com/ant-design/ant-design-icons) | [MIT](https://opensource.org/licenses/MIT) | 4.4.2 | 831 | | [Bootstrap Icons](https://togithub.com/twbs/icons) | [MIT](https://opensource.org/licenses/MIT) | 1.11.3 | 2716 | | [Remix Icon](https://togithub.com/Remix-Design/RemixIcon) | [Apache License Version 2.0](http://www.apache.org/licenses/) | 4.2.0 | 2860 | | [Flat Color Icons](https://togithub.com/icons8/flat-color-icons) | [MIT](https://opensource.org/licenses/MIT) | 1.0.2 | 329 | | [Grommet-Icons](https://togithub.com/grommet/grommet-icons) | [Apache License Version 2.0](http://www.apache.org/licenses/) | 4.12.1 | 635 | | [Heroicons](https://togithub.com/tailwindlabs/heroicons) | [MIT](https://opensource.org/licenses/MIT) | 1.0.6 | 460 | | [Heroicons 2](https://togithub.com/tailwindlabs/heroicons) | [MIT](https://opensource.org/licenses/MIT) | 2.1.3 | 888 | | [Simple Icons](https://simpleicons.org/) | [CC0 1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/) | 11.14.0 | 3124 | | [Simple Line Icons](https://thesabbir.github.io/simple-line-icons/) | [MIT](https://opensource.org/licenses/MIT) | 2.5.5 | 189 | | [IcoMoon Free](https://togithub.com/Keyamoon/IcoMoon-Free) | [CC BY 4.0 License](https://togithub.com/Keyamoon/IcoMoon-Free/blob/master/License.txt) | [`d006795`](https://togithub.com/react-icons/react-icons/commit/d006795ede82361e1bac1ee76f215cf1dc51e4ca) | 491 | | [BoxIcons](https://togithub.com/atisawd/boxicons) | [MIT](https://togithub.com/atisawd/boxicons/blob/master/LICENSE) | 2.1.4 | 1634 | | [css.gg](https://togithub.com/astrit/css.gg) | [MIT](https://opensource.org/licenses/MIT) | 2.1.1 | 704 | | [VS Code Icons](https://togithub.com/microsoft/vscode-codicons) | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) | 0.0.35 | 461 | | [Tabler Icons](https://togithub.com/tabler/tabler-icons) | [MIT](https://opensource.org/licenses/MIT) | 3.2.0 | 5237 | | [Themify Icons](https://togithub.com/lykmapipo/themify-icons) | [MIT](https://togithub.com/thecreation/standard-icons/blob/master/modules/themify-icons/LICENSE) | v0.1.2-2-g9600186 | 352 | | [Radix Icons](https://icons.radix-ui.com) | [MIT](https://togithub.com/radix-ui/icons/blob/master/LICENSE) | [@radix-ui/react-icons](https://togithub.com/radix-ui/react-icons)[@1](https://togithub.com/1).3.0-1-g94b3fcf | 318 | | [Phosphor Icons](https://togithub.com/phosphor-icons/core) | [MIT](https://togithub.com/phosphor-icons/core/blob/main/LICENSE) | 2.1.1 | 9072 | | [Icons8 Line Awesome](https://icons8.com/line-awesome) | [MIT](https://togithub.com/icons8/line-awesome/blob/master/LICENSE.md) | 1.3.1 | 1544 |Configuration
📅 Schedule: Branch creation - "before 1am on Monday" in timezone Asia/Jakarta, 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.