1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/package.json

168 lines
5.7 KiB
JSON
Raw Normal View History

2016-11-10 14:26:24 +01:00
{
"name": "unleash-frontend-local",
"version": "0.0.0",
"private": true,
2016-12-23 10:58:33 +01:00
"files": [
"index.js",
"build"
2016-12-23 10:58:33 +01:00
],
2016-11-10 14:26:24 +01:00
"engines": {
"node": ">=18"
2016-11-10 14:26:24 +01:00
},
"scripts": {
"build": "vite build",
chore: simplify package scripts (#3736) # Simplify package scripts This PR's purpose is to raise a discussion surrounding our current package scripts. It includes some suggestions that aim to simplify the scripts and hopefully bring a much more straightforward approach to developing and contributing to Unleash. Building (prod) should only happen **explicitly** and when needed. ## Before PR (current behavior) - Clone the project; - Open 2 terminals: One for `unleash` and another for `unleash/frontend`; - On `unleash`: - Run `yarn` (which will also build, for some reason?); - Run `yarn start:dev` to start backend in dev mode (`tsc-watch`); - On `unleash/frontend`: - Run `yarn` (which will also build, for some reason?); - Run `yarn start` to start frontend in dev mode (`vite`); So it seems to me like we build unnecessarily every time we install dependencies. Neither dev scripts need to build the project, as backend uses `tsc-watch` and frontend uses `vite`. I'm unsure why this is the case, as building can take a very long time. ![image](https://github.com/Unleash/unleash/assets/14320932/5ecb7df1-e5b4-4d70-ba7e-97119f5d1116) There's also some complexity in the way we need to split the terminal to `cd` into `frontend` and treat it as a different project. The fact that we have different script names is also confusing (`yarn start`, `yarn start:dev`, etc). ## After PR - Clone the project; - Run `yarn` to install all dependencies; - Run `yarn dev` to get started developing Unleash; Running `yarn` should take care of everything needed to start developing. This includes installing dependencies for frontend as well. It should not build projects if we are not being explicit about it, especially since we don't need to build them at this stage. ![image](https://github.com/Unleash/unleash/assets/14320932/614e42fc-3467-432f-91fc-624b1b35c7c1) Running `yarn dev` should start the project in dev mode. This means running both projects in `dev` mode, which for `backend` means running `tsc-watch` and for `frontend` means running `vite`. Here this PR attempts to provide a better DX by using [concurrently](https://www.npmjs.com/package/concurrently) and [wait-on](https://www.npmjs.com/package/wait-on) - This means both tasks are ran simultaneously, stdout is labeled accordingly, and are stopped together. It also means that `frontend` waits for `backend` to be serving at `4242` before starting, since `frontend` starts pretty much immediately with `vite` and `backend` takes a bit longer. Of course, when the `backend` is hot-reloading you may still find some `ECONNREFUSED`s on `frontend` stdout while it recompiles. ![image](https://github.com/Unleash/unleash/assets/14320932/8bde8ee2-3cad-4e3f-a0db-9eed60cfb04d) No more splitting your terminal and treating `frontend` as a separate project. ## Discussion points Maybe there's a better alternative to `tsc-watch`? I briefly explored some alternatives and while they had a much faster starting speed, hot-reload was sometimes slower. IMO we should aspire to run `src/server-dev.ts` directly and only compile when needed. Running `dev:backend` still serves a version of the frontend (at 4242). **Why? Can we remove that behavior?** I can't imagine a scenario in dev where we wouldn't want to run the latest version of the frontend with `vite`. ~~**Note:** This PR removes all other out-of-scope scripts to focus on this revamp. If we decide to merge it, we should evaluate what other existing scripts we still want to include. May be a good opportunity to clean up unused ones and only include the ones we really use. This includes scripts that our GH actions rely on.~~ **Update:** In an effort to minimize impact surface of this PR and make it a bit more ready for merging: - It updates some docs in https://github.com/Unleash/unleash/pull/3736/commits/2a4ff805e87b65d9c1256effaa189ddcccba15fb and https://github.com/Unleash/unleash/pull/3736/commits/1bbc4882519b5a82e3116f0be255ad24a6f3ce53 to reflect our new simplified flow; - It includes the old package scripts for now in https://github.com/Unleash/unleash/pull/3736/commits/039bc04699ac880e491fd3ce01f9bcd6f97a94b9; - It updates some of our GH actions to reflect the new scripts in https://github.com/Unleash/unleash/pull/3736/commits/7782cb9b12e37ee844507e41ef2b7137eaf55666; Given its current status I'll promote the PR to "ready for review". I still think we should have a second look at our existing scripts and GH actions to see what we really need and/or should adapt, but it should be a team effort so we have a broader context. Maybe on a follow-up PR. Does this require any changes to related projects (e.g. Enterprise)? --------- Co-authored-by: Gastón Fournier <gaston@getunleash.io>
2023-05-12 12:23:22 +02:00
"dev": "vite",
"start": "vite",
"start:prod": "vite build && vite preview",
docs: Remove/update references to Heroku (#2099) ## What This PR removes or updates references in the docs to Heroku. Most of the code samples have been replaced with a more generic `unleash.example.com` url, while other references have been removed or updated. Also removes old OpenAPI files that are out of date and redundant with the new generation. ## Background Come November and Heroku will no longer offer free deployments of Unleash, so it's about time we remove that claim. Links to the heroku instance are also outdated because we don't have that instance running anymore. Finally, the OpenAPI files we do have there are old and static, so they don't match the current reality. ## Commits * Meta: update ignore file to ignore autogenerated docs I must've missed the ignore file when looking for patterns. * docs: delete old openapi file. This seems to have been a holdover from 2020 and is probably hand-written. It has been superseded by the new autogenerated OpenAPI docs. * docs: add notes for heroku changes to the frontend readme and pkg * docs: remove old openapi article and add redirects to new openapi * docs: fix link in overview doc: point to GitHub instead of heroku * docs: update quickstart docs with new heroku details * docs: remove reference to crashing heroku instance * docs: remove references to herokuapp in code samples * docs: add a placeholder comment * docs: update references for heroku updates * docs: keep using unleash4 for enterprise * docs: remove start:heroku script in favor of start:sandbox * docs: remove 'deploy on heroku button' Now that it's not free anymore (or won't be very shortly), let's remove it. * docs: remove extra newline
2022-10-19 14:02:00 +02:00
"start:sandbox": "UNLEASH_API=https://sandbox.getunleash.io/ospro yarn run start",
"start:demo2": "UNLEASH_API=https://sandbox.getunleash.io/ UNLEASH_BASE_PATH=/demo2/ yarn run start",
"start:enterprise": "UNLEASH_API=https://unleash.herokuapp.com VITE_TEST_REDIRECT=true yarn run start",
"start:demo": "UNLEASH_BASE_PATH=/demo/ UNLEASH_API=https://app.unleash-hosted.com/ yarn run start",
"test": "tsc && NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" vitest run",
"test:snapshot": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" yarn test -u",
"test:watch": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" vitest watch",
"lint": "eslint --fix ./src",
"lint:check": "eslint ./src",
"fmt": "prettier src --write --loglevel warn",
"fmt:check": "prettier src --check",
"ts:check": "tsc",
"e2e": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" yarn run cypress open --config baseUrl='http://localhost:3000' --env AUTH_USER=admin,AUTH_PASSWORD=unleash4all",
"e2e:heroku": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" yarn run cypress open --config baseUrl='https://unleash.herokuapp.com' --env AUTH_USER=admin,AUTH_PASSWORD=unleash4all",
"gen:api": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" orval --config orval.config.js",
"gen:api:demo": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" UNLEASH_OPENAPI_URL=https://app.unleash-hosted.com/demo/docs/openapi.json yarn run gen:api",
chore: simplify package scripts (#3736) # Simplify package scripts This PR's purpose is to raise a discussion surrounding our current package scripts. It includes some suggestions that aim to simplify the scripts and hopefully bring a much more straightforward approach to developing and contributing to Unleash. Building (prod) should only happen **explicitly** and when needed. ## Before PR (current behavior) - Clone the project; - Open 2 terminals: One for `unleash` and another for `unleash/frontend`; - On `unleash`: - Run `yarn` (which will also build, for some reason?); - Run `yarn start:dev` to start backend in dev mode (`tsc-watch`); - On `unleash/frontend`: - Run `yarn` (which will also build, for some reason?); - Run `yarn start` to start frontend in dev mode (`vite`); So it seems to me like we build unnecessarily every time we install dependencies. Neither dev scripts need to build the project, as backend uses `tsc-watch` and frontend uses `vite`. I'm unsure why this is the case, as building can take a very long time. ![image](https://github.com/Unleash/unleash/assets/14320932/5ecb7df1-e5b4-4d70-ba7e-97119f5d1116) There's also some complexity in the way we need to split the terminal to `cd` into `frontend` and treat it as a different project. The fact that we have different script names is also confusing (`yarn start`, `yarn start:dev`, etc). ## After PR - Clone the project; - Run `yarn` to install all dependencies; - Run `yarn dev` to get started developing Unleash; Running `yarn` should take care of everything needed to start developing. This includes installing dependencies for frontend as well. It should not build projects if we are not being explicit about it, especially since we don't need to build them at this stage. ![image](https://github.com/Unleash/unleash/assets/14320932/614e42fc-3467-432f-91fc-624b1b35c7c1) Running `yarn dev` should start the project in dev mode. This means running both projects in `dev` mode, which for `backend` means running `tsc-watch` and for `frontend` means running `vite`. Here this PR attempts to provide a better DX by using [concurrently](https://www.npmjs.com/package/concurrently) and [wait-on](https://www.npmjs.com/package/wait-on) - This means both tasks are ran simultaneously, stdout is labeled accordingly, and are stopped together. It also means that `frontend` waits for `backend` to be serving at `4242` before starting, since `frontend` starts pretty much immediately with `vite` and `backend` takes a bit longer. Of course, when the `backend` is hot-reloading you may still find some `ECONNREFUSED`s on `frontend` stdout while it recompiles. ![image](https://github.com/Unleash/unleash/assets/14320932/8bde8ee2-3cad-4e3f-a0db-9eed60cfb04d) No more splitting your terminal and treating `frontend` as a separate project. ## Discussion points Maybe there's a better alternative to `tsc-watch`? I briefly explored some alternatives and while they had a much faster starting speed, hot-reload was sometimes slower. IMO we should aspire to run `src/server-dev.ts` directly and only compile when needed. Running `dev:backend` still serves a version of the frontend (at 4242). **Why? Can we remove that behavior?** I can't imagine a scenario in dev where we wouldn't want to run the latest version of the frontend with `vite`. ~~**Note:** This PR removes all other out-of-scope scripts to focus on this revamp. If we decide to merge it, we should evaluate what other existing scripts we still want to include. May be a good opportunity to clean up unused ones and only include the ones we really use. This includes scripts that our GH actions rely on.~~ **Update:** In an effort to minimize impact surface of this PR and make it a bit more ready for merging: - It updates some docs in https://github.com/Unleash/unleash/pull/3736/commits/2a4ff805e87b65d9c1256effaa189ddcccba15fb and https://github.com/Unleash/unleash/pull/3736/commits/1bbc4882519b5a82e3116f0be255ad24a6f3ce53 to reflect our new simplified flow; - It includes the old package scripts for now in https://github.com/Unleash/unleash/pull/3736/commits/039bc04699ac880e491fd3ce01f9bcd6f97a94b9; - It updates some of our GH actions to reflect the new scripts in https://github.com/Unleash/unleash/pull/3736/commits/7782cb9b12e37ee844507e41ef2b7137eaf55666; Given its current status I'll promote the PR to "ready for review". I still think we should have a second look at our existing scripts and GH actions to see what we really need and/or should adapt, but it should be a team effort so we have a broader context. Maybe on a follow-up PR. Does this require any changes to related projects (e.g. Enterprise)? --------- Co-authored-by: Gastón Fournier <gaston@getunleash.io>
2023-05-12 12:23:22 +02:00
"gen:api:sandbox": "NODE_OPTIONS=\"${NODE_OPTIONS} --no-experimental-fetch\" UNLEASH_OPENAPI_URL=https://sandbox.getunleash.io/demo2/docs/openapi.json yarn run gen:api"
2016-11-10 14:26:24 +01:00
},
2021-04-09 13:38:30 +02:00
"devDependencies": {
"@codemirror/lang-json": "6.0.1",
chore(deps): update dependency @emotion/react to v11.11.1 (#4014) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@emotion/react](https://togithub.com/emotion-js/emotion/tree/main#readme) ([source](https://togithub.com/emotion-js/emotion)) | [`11.11.0` -> `11.11.1`](https://renovatebot.com/diffs/npm/@emotion%2freact/11.11.0/11.11.1) | [![age](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/compatibility-slim/11.11.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/confidence-slim/11.11.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>emotion-js/emotion</summary> ### [`v11.11.1`](https://togithub.com/emotion-js/emotion/releases/tag/%40emotion/react%4011.11.1) [Compare Source](https://togithub.com/emotion-js/emotion/compare/@emotion/react@11.11.0...@emotion/react@11.11.1) ##### Patch Changes - [#&#8203;3048](https://togithub.com/emotion-js/emotion/pull/3048) [`9357f337`](https://togithub.com/emotion-js/emotion/commit/9357f337200ef38f9c6df5d4dd7c20772478ea42) Thanks [@&#8203;naari3](https://togithub.com/naari3)! - Added `ElementType` to the Emotion's `JSX` namespace. It's defined in the same way as the one in `@types/react` and should make it possible to use components that return `string`s, `Promise`s and other types that are valid in React. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-21 13:39:25 +02:00
"@emotion/react": "11.11.1",
chore(deps): update emotion monorepo to v11.11.0 (#3823) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@emotion/react](https://togithub.com/emotion-js/emotion/tree/main#readme) ([source](https://togithub.com/emotion-js/emotion)) | [`11.10.8` -> `11.11.0`](https://renovatebot.com/diffs/npm/@emotion%2freact/11.10.8/11.11.0) | [![age](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.0/compatibility-slim/11.10.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.0/confidence-slim/11.10.8)](https://docs.renovatebot.com/merge-confidence/) | | [@emotion/styled](https://togithub.com/emotion-js/emotion/tree/main#readme) ([source](https://togithub.com/emotion-js/emotion)) | [`11.10.8` -> `11.11.0`](https://renovatebot.com/diffs/npm/@emotion%2fstyled/11.10.8/11.11.0) | [![age](https://badges.renovateapi.com/packages/npm/@emotion%2fstyled/11.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@emotion%2fstyled/11.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@emotion%2fstyled/11.11.0/compatibility-slim/11.10.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@emotion%2fstyled/11.11.0/confidence-slim/11.10.8)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>emotion-js/emotion</summary> ### [`v11.11.0`](https://togithub.com/emotion-js/emotion/releases/tag/%40emotion/styled%4011.11.0) [Compare Source](https://togithub.com/emotion-js/emotion/compare/@emotion/react@11.10.8...@emotion/react@11.11.0) ##### Minor Changes - [#&#8203;3031](https://togithub.com/emotion-js/emotion/pull/3031) [`336f3d50`](https://togithub.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5) Thanks [@&#8203;Andarist](https://togithub.com/Andarist)! - Added support for cascade `@layer`s by updating the underlying parser ([stylis](https://togithub.com/thysultan/stylis)). ##### Patch Changes - [#&#8203;3029](https://togithub.com/emotion-js/emotion/pull/3029) [`eed5e6cf`](https://togithub.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247) Thanks [@&#8203;Andarist](https://togithub.com/Andarist)! - Fixed importing in Node ESM - Updated dependencies \[[`336f3d50`](https://togithub.com/emotion-js/emotion/commit/336f3d50fd684ccbb160fff0c63d5560936f1ee5), [`eed5e6cf`](https://togithub.com/emotion-js/emotion/commit/eed5e6cf00f94f3011b93825ccce43cb2270c247)]: - [@&#8203;emotion/babel-plugin](https://togithub.com/emotion/babel-plugin)[@&#8203;11](https://togithub.com/11).11.0 - [@&#8203;emotion/is-prop-valid](https://togithub.com/emotion/is-prop-valid)[@&#8203;1](https://togithub.com/1).2.1 - [@&#8203;emotion/serialize](https://togithub.com/emotion/serialize)[@&#8203;1](https://togithub.com/1).1.2 - [@&#8203;emotion/use-insertion-effect-with-fallbacks](https://togithub.com/emotion/use-insertion-effect-with-fallbacks)[@&#8203;1](https://togithub.com/1).0.1 - [@&#8203;emotion/utils](https://togithub.com/emotion/utils)[@&#8203;1](https://togithub.com/1).2.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzUuOTguMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-25 02:50:38 +02:00
"@emotion/styled": "11.11.0",
chore(deps): update material-ui monorepo (#3174) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://togithub.com/mui/material-ui)) | [`5.11.0` -> `5.11.9`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.11.0/5.11.9) | [![age](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.11.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.11.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.11.9/compatibility-slim/5.11.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mui%2ficons-material/5.11.9/confidence-slim/5.11.0)](https://docs.renovatebot.com/merge-confidence/) | | [@mui/lab](https://mui.com/material-ui/about-the-lab/) ([source](https://togithub.com/mui/material-ui)) | [`5.0.0-alpha.119` -> `5.0.0-alpha.120`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.119/5.0.0-alpha.120) | [![age](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.120/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.120/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.120/compatibility-slim/5.0.0-alpha.119)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mui%2flab/5.0.0-alpha.120/confidence-slim/5.0.0-alpha.119)](https://docs.renovatebot.com/merge-confidence/) | | [@mui/material](https://mui.com/material-ui/getting-started/overview/) ([source](https://togithub.com/mui/material-ui)) | [`5.11.8` -> `5.11.9`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.11.8/5.11.9) | [![age](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.9/compatibility-slim/5.11.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.9/confidence-slim/5.11.8)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mui/material-ui</summary> ### [`v5.11.9`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5119) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.11.0...v5.11.9) <!-- generated comparing v5.11.8..master --> *Feb 14, 2023* A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨: - 🐛 [@&#8203;rangoo94](https://togithub.com/rangoo94), [@&#8203;sai6855](https://togithub.com/sai6855), and [@&#8203;michaldudak](https://togithub.com/michaldudak) fixed a couple of bugs in the Autocomplete component ([#&#8203;36116](https://togithub.com/mui/material-ui/issues/36116), [#&#8203;35640](https://togithub.com/mui/material-ui/issues/35640), [#&#8203;36076](https://togithub.com/mui/material-ui/issues/36076), [#&#8203;36088](https://togithub.com/mui/material-ui/issues/36088)) - many other 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.11.9` - \[AppBar] Fix joinVars() not handling undefined ([#&#8203;36128](https://togithub.com/mui/material-ui/issues/36128)) [@&#8203;donaldnevermore](https://togithub.com/donaldnevermore) - \[Autocomplete] Fix tag removal regression ([#&#8203;36116](https://togithub.com/mui/material-ui/issues/36116)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - \[Autocomplete] Correct padding of filled Autocomplete ([#&#8203;35640](https://togithub.com/mui/material-ui/issues/35640)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - \[Grid]\[Stack] classNames prefixed with Mui ([#&#8203;36167](https://togithub.com/mui/material-ui/issues/36167)) [@&#8203;sai6855](https://togithub.com/sai6855) ##### `@mui/styled-engine@5.11.9` - \[StyledEngineProvider] Fix issue with cache not being defined ([#&#8203;36162](https://togithub.com/mui/material-ui/issues/36162)) [@&#8203;mnajdova](https://togithub.com/mnajdova) ##### `@mui/joy@5.0.0-alpha.67` - \[Joy] Add order dashboard template ([#&#8203;36081](https://togithub.com/mui/material-ui/issues/36081)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - \[Joy] Remove classes prop from the components that have it ([#&#8203;36159](https://togithub.com/mui/material-ui/issues/36159)) [@&#8203;hbjORbj](https://togithub.com/hbjORbj) - \[Joy] Miscellaneous fixes ([#&#8203;36163](https://togithub.com/mui/material-ui/issues/36163)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.118` - \[base] Override the types of `slotProps` per slot ([#&#8203;35964](https://togithub.com/mui/material-ui/issues/35964)) [@&#8203;hbjORbj](https://togithub.com/hbjORbj) - \[Select]\[base] Prevent unnecessary rerendering of Select options ([#&#8203;35946](https://togithub.com/mui/material-ui/issues/35946)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - \[Select]\[base] Update the generated docs ([#&#8203;36183](https://togithub.com/mui/material-ui/issues/36183)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - \[useAutocomplete] Pass only valid values for the getOptionLabel prop ([#&#8203;36088](https://togithub.com/mui/material-ui/issues/36088)) [@&#8203;rangoo94](https://togithub.com/rangoo94) - \[useAutocomplete] Fix `useAutocomplete` disabled prop not disabling the input ([#&#8203;36076](https://togithub.com/mui/material-ui/issues/36076)) [@&#8203;sai6855](https://togithub.com/sai6855) - \[useInput] Add return value interface ([#&#8203;36036](https://togithub.com/mui/material-ui/issues/36036)) [@&#8203;Shorifpatwary](https://togithub.com/Shorifpatwary) - \[UseTabPanel] Add explicit return type ([#&#8203;36053](https://togithub.com/mui/material-ui/issues/36053)) [@&#8203;Shorifpatwary](https://togithub.com/Shorifpatwary) - \[useTabsList] Add explicit return type ([#&#8203;36048](https://togithub.com/mui/material-ui/issues/36048)) [@&#8203;sai6855](https://togithub.com/sai6855) - \[Tab] Add explicit return type to useTab ([#&#8203;36046](https://togithub.com/mui/material-ui/issues/36046)) [@&#8203;sai6855](https://togithub.com/sai6855) ##### `@mui/material-next@6.0.0-alpha.75` - \[Material You] Use `md` as a CSS var prefix ([#&#8203;36177](https://togithub.com/mui/material-ui/issues/36177)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) ##### Docs - \[docs] Fix the prop type regression on the API pages ([#&#8203;36168](https://togithub.com/mui/material-ui/issues/36168)) [@&#8203;mnajdova](https://togithub.com/mnajdova) - \[docs] Fix virtualized table column resizing ([#&#8203;36066](https://togithub.com/mui/material-ui/issues/36066)) [@&#8203;petyosi](https://togithub.com/petyosi) - \[docs] Fix react-spring demos ([#&#8203;36023](https://togithub.com/mui/material-ui/issues/36023)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - \[docs] Fix classname mismatch on Joy docs ([#&#8203;36127](https://togithub.com/mui/material-ui/issues/36127)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - \[docs] Fix typo in the released version of [@&#8203;mui/styled-engine](https://togithub.com/mui/styled-engine) ([#&#8203;36121](https://togithub.com/mui/material-ui/issues/36121)) [@&#8203;m4theushw](https://togithub.com/m4theushw) - \[docs] Fix demos showing TypeScript instead of JavaScript ([#&#8203;35850](https://togithub.com/mui/material-ui/issues/35850)) [@&#8203;mj12albert](https://togithub.com/mj12albert) - \[docs] Update release instructions ([#&#8203;36113](https://togithub.com/mui/material-ui/issues/36113)) [@&#8203;mj12albert](https://togithub.com/mj12albert) - \[docs] Rename `v6-alpha` to `v6-next` in navigation ([#&#8203;36102](https://togithub.com/mui/material-ui/issues/36102)) [@&#8203;LukasTy](https://togithub.com/LukasTy) - \[docs] Revise Joy UI "Input" page ([#&#8203;35970](https://togithub.com/mui/material-ui/issues/35970)) [@&#8203;LadyBluenotes](https://togithub.com/LadyBluenotes) - \[docs] Revise Joy UI "Typography" page ([#&#8203;35868](https://togithub.com/mui/material-ui/issues/35868)) [@&#8203;LadyBluenotes](https://togithub.com/LadyBluenotes) ##### Examples - \[examples]\[vitejs] Load Roboto font ([#&#8203;35678](https://togithub.com/mui/material-ui/issues/35678)) [@&#8203;oliv37](https://togithub.com/oliv37) ##### Core - \[blog] Fix the look and feel of the media description ([#&#8203;36069](https://togithub.com/mui/material-ui/issues/36069)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - \[core] Add default preview url ([#&#8203;36118](https://togithub.com/mui/material-ui/issues/36118)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - \[core] Migrate all the internals exported by `tests/utils/index.js` to TypeScript ([#&#8203;35382](https://togithub.com/mui/material-ui/issues/35382)) [@&#8203;flaviendelangle](https://togithub.com/flaviendelangle) - \[core] Convert the waterfall module to an internal package ([#&#8203;35323](https://togithub.com/mui/material-ui/issues/35323)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - \[website] Fix homepage MD theme demo ([#&#8203;36027](https://togithub.com/mui/material-ui/issues/36027)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - \[website] Revise the Lead Designer role job ad ([#&#8203;35912](https://togithub.com/mui/material-ui/issues/35912)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal) - \[POC] Add deploy preview to PR body ([#&#8203;35995](https://togithub.com/mui/material-ui/issues/35995)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;donaldnevermore](https://togithub.com/donaldnevermore), [@&#8203;flaviendelangle](https://togithub.com/flaviendelangle), [@&#8203;hbjORbj](https://togithub.com/hbjORbj), [@&#8203;LadyBluenotes](https://togithub.com/LadyBluenotes), [@&#8203;LukasTy](https://togithub.com/LukasTy), [@&#8203;m4theushw](https://togithub.com/m4theushw), [@&#8203;michaldudak](https://togithub.com/michaldudak), [@&#8203;mj12albert](https://togithub.com/mj12albert), [@&#8203;mnajdova](https://togithub.com/mnajdova), [@&#8203;oliv37](https://togithub.com/oliv37), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;petyosi](https://togithub.com/petyosi), [@&#8203;rangoo94](https://togithub.com/rangoo94), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;Shorifpatwary](https://togithub.com/Shorifpatwary), [@&#8203;siriwatknp](https://togithub.com/siriwatknp) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNDguMCIsInVwZGF0ZWRJblZlciI6IjM0LjE0OC4wIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-22 00:53:48 +01:00
"@mui/icons-material": "5.11.9",
"@mui/lab": "5.0.0-alpha.120",
chore(deps): update dependency @mui/material to v5.11.10 (#3207) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mui/material](https://mui.com/material-ui/getting-started/overview/) ([source](https://togithub.com/mui/material-ui)) | [`5.11.9` -> `5.11.10`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.11.9/5.11.10) | [![age](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.10/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.10/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.10/compatibility-slim/5.11.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mui%2fmaterial/5.11.10/confidence-slim/5.11.9)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mui/material-ui</summary> ### [`v5.11.10`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;51110) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.11.9...v5.11.10) <!-- generated comparing v5.11.9..master --> *Feb 20, 2023* A big thanks to the 11 contributors who made this release possible. This release was mostly about 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.11.10` - ​<!-- 22 -->\[Avatar] Fix ownerState usage with styleOverrides when fallback is used ([#&#8203;36228](https://togithub.com/mui/material-ui/issues/36228)) [@&#8203;sai6855](https://togithub.com/sai6855) - ​<!-- 21 -->\[Badge]\[material] Replace `BadgeUnstyled` with `useBadge` hook ([#&#8203;36158](https://togithub.com/mui/material-ui/issues/36158)) [@&#8203;hbjORbj](https://togithub.com/hbjORbj) - ​<!-- 03 -->\[Switch] Fix DOM warning when `type` isn't `checkbox` or `radio` ([#&#8203;36170](https://togithub.com/mui/material-ui/issues/36170)) [@&#8203;dani-mp](https://togithub.com/dani-mp) - ​<!-- 02 -->\[TextareaAutosize] Convert code to TypeScript ([#&#8203;35862](https://togithub.com/mui/material-ui/issues/35862)) [@&#8203;sai6855](https://togithub.com/sai6855) - ​<!-- 01 -->\[useMediaQuery] Fix behavior of noSsr with React 18 ([#&#8203;36056](https://togithub.com/mui/material-ui/issues/36056)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) ##### `@mui/joy@5.0.0-alpha.68` - ​<!-- 05 -->\[Joy] Add `zIndex` to theme ([#&#8203;36236](https://togithub.com/mui/material-ui/issues/36236)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - ​<!-- 04 -->\[Joy] Remove transition from all components ([#&#8203;35952](https://togithub.com/mui/material-ui/issues/35952)) [@&#8203;hbjORbj](https://togithub.com/hbjORbj) ##### Docs - ​<!-- 20 -->\[docs]\[base] Fix base Input demos for Safari ([#&#8203;36213](https://togithub.com/mui/material-ui/issues/36213)) [@&#8203;mj12albert](https://togithub.com/mj12albert) - ​<!-- 16 -->\[docs] Fix 301 links [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 15 -->\[docs] Fix modal transition demos ([#&#8203;36137](https://togithub.com/mui/material-ui/issues/36137)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 14 -->\[docs] Update links to pt examples ([#&#8203;36237](https://togithub.com/mui/material-ui/issues/36237)) [@&#8203;Aleff13](https://togithub.com/Aleff13) - ​<!-- 13 -->\[docs] Update custom Typography variants example ([#&#8203;36185](https://togithub.com/mui/material-ui/issues/36185)) [@&#8203;mj12albert](https://togithub.com/mj12albert) - ​<!-- 12 -->\[docs] Change markdown numbering syntax ([#&#8203;36187](https://togithub.com/mui/material-ui/issues/36187)) [@&#8203;mj12albert](https://togithub.com/mj12albert) - ​<!-- 11 -->\[docs] Fix switch alignment in `Disabled tree items` section in Tree View docs ([#&#8203;36217](https://togithub.com/mui/material-ui/issues/36217)) [@&#8203;PunitSoniME](https://togithub.com/PunitSoniME) - ​<!-- 10 -->\[docs] Standardize example names ([#&#8203;36112](https://togithub.com/mui/material-ui/issues/36112)) [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore) - ​<!-- 09 -->\[docs] Fix typo [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 08 -->\[docs] Fix markdown table alignments ([#&#8203;36136](https://togithub.com/mui/material-ui/issues/36136)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 07 -->\[docs] Small color tweaks to the docs search bar ([#&#8203;36160](https://togithub.com/mui/material-ui/issues/36160)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal) - ​<!-- 06 -->\[docs]\[joy] Update class name prefixes in the `Anatomy` section ([#&#8203;36210](https://togithub.com/mui/material-ui/issues/36210)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) ##### Core - ​<!-- 19 -->\[core] Migrate nprogress to emotion ([#&#8203;36181](https://togithub.com/mui/material-ui/issues/36181)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - ​<!-- 18 -->\[core] Enforce namespace import for ReactDOM ([#&#8203;36208](https://togithub.com/mui/material-ui/issues/36208)) [@&#8203;mj12albert](https://togithub.com/mj12albert) - ​<!-- 17 -->\[core] Fix deploy preview links ([#&#8203;36203](https://togithub.com/mui/material-ui/issues/36203)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;Aleff13](https://togithub.com/Aleff13), [@&#8203;dani-mp](https://togithub.com/dani-mp), [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;hbjORbj](https://togithub.com/hbjORbj), [@&#8203;mj12albert](https://togithub.com/mj12albert), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;PunitSoniME](https://togithub.com/PunitSoniME), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore), [@&#8203;siriwatknp](https://togithub.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTIuNSIsInVwZGF0ZWRJblZlciI6IjM0LjE1Mi41In0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-28 01:14:49 +01:00
"@mui/material": "5.11.10",
chore(deps): update dependency @testing-library/dom to v8.20.1 (#4090) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@testing-library/dom](https://togithub.com/testing-library/dom-testing-library) | [`8.20.0` -> `8.20.1`](https://renovatebot.com/diffs/npm/@testing-library%2fdom/8.20.0/8.20.1) | [![age](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.20.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.20.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.20.1/compatibility-slim/8.20.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@testing-library%2fdom/8.20.1/confidence-slim/8.20.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>testing-library/dom-testing-library</summary> ### [`v8.20.1`](https://togithub.com/testing-library/dom-testing-library/releases/tag/v8.20.1) [Compare Source](https://togithub.com/testing-library/dom-testing-library/compare/v8.20.0...v8.20.1) ##### Bug Fixes - opera mobile version removed ([c5bd543](https://togithub.com/testing-library/dom-testing-library/commit/c5bd543f739bdf976ec14097b308cc260bee77de)) - pin aria-query version and upgrade lz-string ([4a13f4b](https://togithub.com/testing-library/dom-testing-library/commit/4a13f4b3f41b2f186ce247012f96506ecf6e57c0)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-24 06:24:24 +02:00
"@testing-library/dom": "8.20.1",
chore(deps): update dependency @testing-library/jest-dom to v5.17.0 (#4363) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@testing-library/jest-dom](https://togithub.com/testing-library/jest-dom) | [`5.16.5` -> `5.17.0`](https://renovatebot.com/diffs/npm/@testing-library%2fjest-dom/5.16.5/5.17.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@testing-library%2fjest-dom/5.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@testing-library%2fjest-dom/5.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@testing-library%2fjest-dom/5.16.5/5.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@testing-library%2fjest-dom/5.16.5/5.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>testing-library/jest-dom (@&#8203;testing-library/jest-dom)</summary> ### [`v5.17.0`](https://togithub.com/testing-library/jest-dom/releases/tag/v5.17.0) [Compare Source](https://togithub.com/testing-library/jest-dom/compare/v5.16.5...v5.17.0) ##### Features - New `toHaveAccessibleErrorMessage` better implementing the spec, deprecate `toHaveErrorMessage` ([#&#8203;503](https://togithub.com/testing-library/jest-dom/issues/503)) ([d717c66](https://togithub.com/testing-library/jest-dom/commit/d717c66cb4a32c806e53b287418a4013d37898fb)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4yNC4yIiwidXBkYXRlZEluVmVyIjoiMzYuMjQuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-28 20:25:08 +02:00
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "14.4.3",
"@types/debounce": "1.2.1",
chore(deps): update dependency @types/deep-diff to v1.0.2 (#2615) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/deep-diff](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/deep-diff) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`1.0.1` -> `1.0.2`](https://renovatebot.com/diffs/npm/@types%2fdeep-diff/1.0.1/1.0.2) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/compatibility-slim/1.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fdeep-diff/1.0.2/confidence-slim/1.0.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC40OS4wIiwidXBkYXRlZEluVmVyIjoiMzQuNDkuMCJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-07 17:22:03 +01:00
"@types/deep-diff": "1.0.2",
chore(deps): update jest monorepo (#4717) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/jest](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`29.5.3` -> `29.5.4`](https://renovatebot.com/diffs/npm/@types%2fjest/29.5.3/29.5.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fjest/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fjest/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fjest/29.5.3/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fjest/29.5.3/29.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [jest](https://jestjs.io/) ([source](https://togithub.com/jestjs/jest)) | [`29.6.2` -> `29.6.4`](https://renovatebot.com/diffs/npm/jest/29.6.2/29.6.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jest/29.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jest/29.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jest/29.6.2/29.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jest/29.6.2/29.6.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>jestjs/jest (jest)</summary> ### [`v29.6.4`](https://togithub.com/jestjs/jest/blob/HEAD/CHANGELOG.md#2964) [Compare Source](https://togithub.com/jestjs/jest/compare/v29.6.3...v29.6.4) ##### Fixes - `[jest-core]` Fix typo in `scheduleAndRun` performance marker ([#&#8203;14434](https://togithub.com/jestjs/jest/pull/14434)) - `[jest-environment-node]` Make sure `atob` and `btoa` are writeable in Node 20 ([#&#8203;14446](https://togithub.com/jestjs/jest/pull/14446)) - `[jest-worker]` Additional error wrapper for `parentPort.postMessage` to fix unhandled `DataCloneError`. ([#&#8203;14437](https://togithub.com/jestjs/jest/pull/14437)) ### [`v29.6.3`](https://togithub.com/jestjs/jest/blob/HEAD/CHANGELOG.md#2963) [Compare Source](https://togithub.com/jestjs/jest/compare/v29.6.2...v29.6.3) ##### Fixes - `[expect, @&#8203;jest/expect-utils]` `ObjectContaining` support `sumbol` as key ([#&#8203;14414](https://togithub.com/jestjs/jest/pull/14414)) - `[expect]` Remove `@types/node` from dependencies ([#&#8203;14385](https://togithub.com/jestjs/jest/pull/14385)) - `[jest-core]` Use workers in watch mode by default to avoid crashes ([#&#8203;14059](https://togithub.com/facebook/jest/pull/14059) & [#&#8203;14085](https://togithub.com/facebook/jest/pull/14085)). - `[jest-reporters]` Update `istanbul-lib-instrument` dependency to v6. ([#&#8203;14401](https://togithub.com/jestjs/jest/pull/14401)) - `[jest-mock]` Revert [#&#8203;13692](https://togithub.com/jestjs/jest/pull/13692) as it was a breaking change ([#&#8203;14429](https://togithub.com/jestjs/jest/pull/14429)) - `[jest-mock]` Revert [#&#8203;13866](https://togithub.com/jestjs/jest/pull/13866) as it was a breaking change ([#&#8203;14429](https://togithub.com/jestjs/jest/pull/14429)) - `[jest-mock]` Revert [#&#8203;13867](https://togithub.com/jestjs/jest/pull/13867) as it was a breaking change ([#&#8203;14429](https://togithub.com/jestjs/jest/pull/14429)) - `[@jest/reporters]` Marks Reporter's hooks as optional ([#&#8203;14433](https://togithub.com/jestjs/jest/pull/14433)) - `[jest-runtime]` Fix dynamic ESM import module bug when loaded module through `jest.isolateModulesAsync` ([#&#8203;14397](https://togithub.com/jestjs/jest/pull/14397)) ##### Chore & Maintenance - `[jest-changed-files, jest-circus, jest-console, @&#8203;jest/core, @&#8203;jest/runtime, @&#8203;jest/transform]` Use `invariant` and `notEmpty` from `jest-util` rather than own internal ([#&#8203;14366](https://togithub.com/jestjs/jest/pull/14366)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 13:31:32 +02:00
"@types/jest": "29.5.4",
"@types/lodash.clonedeep": "4.5.7",
"@types/lodash.omit": "4.5.7",
chore(deps): update dependency @types/node to v18.17.15 (#4782) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.17.14` -> `18.17.15`](https://renovatebot.com/diffs/npm/@types%2fnode/18.17.14/18.17.15) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.17.14/18.17.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.17.14/18.17.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzYuOTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-20 07:47:19 +02:00
"@types/node": "18.17.15",
chore(deps): update dependency @types/react to v17.0.65 (#4695) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`17.0.64` -> `17.0.65`](https://renovatebot.com/diffs/npm/@types%2freact/17.0.64/17.0.65) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/17.0.64/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/17.0.64/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 02:27:31 +02:00
"@types/react": "17.0.65",
chore(deps): update dependency @types/react-dom to v17.0.20 (#3669) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`17.0.19` -> `17.0.20`](https://renovatebot.com/diffs/npm/@types%2freact-dom/17.0.19/17.0.20) | [![age](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/17.0.20/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/17.0.20/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/17.0.20/compatibility-slim/17.0.19)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact-dom/17.0.20/confidence-slim/17.0.19)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS42Ni4zIiwidXBkYXRlZEluVmVyIjoiMzUuNjYuMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-03 05:10:53 +02:00
"@types/react-dom": "17.0.20",
2023-04-13 14:48:03 +02:00
"@types/react-linkify": "1.0.1",
Feature list table (#908) * experiment with generic table * feat: example implementation of sortable table interfaces * add enhanced table header Co-authored-by: Nuno Góis <github@nunogois.com> * table cleanup Co-authored-by: Nuno Góis Co-authored-by: Fredrik Strand Oseberg * useSort hook interface surface Co-authored-by: Nuno Góis <github@nunogois.com> * sort handler initial implementation Co-authored-by: Tymoteusz Czech <Tymek@users.noreply.github.com> * new table unified components * feature flags table components Co-authored-by: Nuno Góis <github@nunogois.com> * feat: new table sort hook * feat: table sort * useSearch hook implementation * update new sort hook tests * sortable headers hook * feat: add sort to other table features * move experimental table hooks to a directory * update new table header styles * fix: header, tableActions * add some details like pagination and highlighter so we keep them in mind * feature table cells * update new table sort logic * new pagination * fix formatting and remove unused component * fix: adapt useSearch default search to text instead of regex (PR #924) * fix: update table title based on visible rows * fix: remove test route * refactor: move table experiment files * features table experimentation * feat: enhanced feature flags table * fix: features default sort * feat: enhanced table loading * fix: table theme after mui5 update * features list placeholder * add react-table * update snapshots after theme change * remove unused files * fix: improve features table after review * refactor: rename feature type cell variables Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com> Co-authored-by: Nuno Góis <github@nunogois.com> Co-authored-by: Tymoteusz Czech <Tymek@users.noreply.github.com>
2022-05-05 15:34:46 +02:00
"@types/react-router-dom": "5.3.3",
"@types/react-table": "7.7.15",
chore(deps): update dependency @types/react-test-renderer to v17.0.3 (#4696) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/react-test-renderer](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-test-renderer) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`17.0.2` -> `17.0.3`](https://renovatebot.com/diffs/npm/@types%2freact-test-renderer/17.0.2/17.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-test-renderer/17.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-test-renderer/17.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-test-renderer/17.0.2/17.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-test-renderer/17.0.2/17.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 02:27:57 +02:00
"@types/react-test-renderer": "17.0.3",
"@types/react-timeago": "4.1.3",
chore(deps): update dependency @types/semver to v7.5.1 (#4697) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/semver](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/semver) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@types%2fsemver/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fsemver/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fsemver/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fsemver/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fsemver/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 07:20:39 +02:00
"@types/semver": "7.5.1",
"@types/uuid": "^9.0.0",
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.21.13 (#4700) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@uiw/codemirror-theme-duotone](https://uiwjs.github.io/react-codemirror/#/theme/data/duotone/light) ([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.21.9` -> `4.21.13`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.21.9/4.21.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@uiw%2fcodemirror-theme-duotone/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@uiw%2fcodemirror-theme-duotone/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@uiw%2fcodemirror-theme-duotone/4.21.9/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@uiw%2fcodemirror-theme-duotone/4.21.9/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>uiwjs/react-codemirror (@&#8203;uiw/codemirror-theme-duotone)</summary> ### [`v4.21.13`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.13) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.12...v4.21.13) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.13/file/README.md) Documentation v4.21.13: https://raw.githack.com/uiwjs/react-codemirror/81a6a62/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.12...v4.21.13 ```shell npm i @&#8203;uiw/react-codemirror@4.21.13 ``` - 🌍 website: modify website router. [`5599909`](https://togithub.com/uiwjs/react-codemirror/commit/5599909) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: update home example. [`dda529b`](https://togithub.com/uiwjs/react-codemirror/commit/dda529b) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: fix example. [`73cced5`](https://togithub.com/uiwjs/react-codemirror/commit/73cced5) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update tsconfig.json [`7f5e3d4`](https://togithub.com/uiwjs/react-codemirror/commit/7f5e3d4) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐞 fix: fix height/minHeight/maxHeight/width/minWidth/maxWidth default value. [`21d8048`](https://togithub.com/uiwjs/react-codemirror/commit/21d8048) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐞 fix(langs): remove `clike` import ([#&#8203;560](https://togithub.com/uiwjs/react-codemirror/issues/560)) [`24e1e35`](https://togithub.com/uiwjs/react-codemirror/commit/24e1e35) [@&#8203;gtn1024](https://togithub.com/gtn1024) ### [`v4.21.12`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.12) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.11...v4.21.12) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.12/file/README.md) Documentation v4.21.12: https://raw.githack.com/uiwjs/react-codemirror/de05ac9/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.11...v4.21.12 ```shell npm i @&#8203;uiw/react-codemirror@4.21.12 ``` - 🌍 website: modify theme document & add badges. [`4fb582d`](https://togithub.com/uiwjs/react-codemirror/commit/4fb582d) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`36ed84a`](https://togithub.com/uiwjs/react-codemirror/commit/36ed84a) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐞 fix(deps): update dependency [@&#8203;uiw/react-shields](https://togithub.com/uiw/react-shields) to v2 [#&#8203;556](https://togithub.com/uiwjs/react-codemirror/issues/556) [`bd10a90`](https://togithub.com/uiwjs/react-codemirror/commit/bd10a90) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: update footer style. [`758c40f`](https://togithub.com/uiwjs/react-codemirror/commit/758c40f) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`84613ee`](https://togithub.com/uiwjs/react-codemirror/commit/84613ee) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `andromeda` theme. [`8dccafa`](https://togithub.com/uiwjs/react-codemirror/commit/8dccafa) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`90e5dfc`](https://togithub.com/uiwjs/react-codemirror/commit/90e5dfc) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`9ea5f90`](https://togithub.com/uiwjs/react-codemirror/commit/9ea5f90) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `copilot` theme. [`997700b`](https://togithub.com/uiwjs/react-codemirror/commit/997700b) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐝 refactor(theme): optimize code. [`b3ee803`](https://togithub.com/uiwjs/react-codemirror/commit/b3ee803) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `white` theme. [`54ee05f`](https://togithub.com/uiwjs/react-codemirror/commit/54ee05f) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) ### [`v4.21.11`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.11) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.10...v4.21.11) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.11/file/README.md) Documentation v4.21.11: https://raw.githack.com/uiwjs/react-codemirror/6533b9b/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.10...v4.21.11 ```shell npm i @&#8203;uiw/react-codemirror@4.21.11 ``` - 📖 doc: update README.md [`21e75e2`](https://togithub.com/uiwjs/react-codemirror/commit/21e75e2) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `quietlight` theme. [`6cd63b5`](https://togithub.com/uiwjs/react-codemirror/commit/6cd63b5) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `red` theme. [`fbb07e1`](https://togithub.com/uiwjs/react-codemirror/commit/fbb07e1) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `abyss` theme. [`fa73b0a`](https://togithub.com/uiwjs/react-codemirror/commit/fa73b0a) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `kimbie` theme. [`25fd7e9`](https://togithub.com/uiwjs/react-codemirror/commit/25fd7e9) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `monokai` theme. [`9dcbacc`](https://togithub.com/uiwjs/react-codemirror/commit/9dcbacc) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `monokai-dimmed` theme. [`934cb75`](https://togithub.com/uiwjs/react-codemirror/commit/934cb75) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `tomorrow-night-blue` theme. [`6a2bf01`](https://togithub.com/uiwjs/react-codemirror/commit/6a2bf01) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) ### [`v4.21.10`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.10) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.9...v4.21.10) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.10/file/README.md) Documentation v4.21.10: https://raw.githack.com/uiwjs/react-codemirror/e5b4b76/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.9...v4.21.10 ```shell npm i @&#8203;uiw/react-codemirror@4.21.10 ``` - 🌍 website: add example. ([#&#8203;455](https://togithub.com/uiwjs/react-codemirror/issues/455)) [`fd6a8db`](https://togithub.com/uiwjs/react-codemirror/commit/fd6a8db) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: modify data/github router. [`29dccc3`](https://togithub.com/uiwjs/react-codemirror/commit/29dccc3) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `basic` theme. [`bf24245`](https://togithub.com/uiwjs/react-codemirror/commit/bf24245) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore(deps): update dependency jest-environment-jsdom to ^29.6.0 [#&#8203;552](https://togithub.com/uiwjs/react-codemirror/issues/552) [`8bfc8a5`](https://togithub.com/uiwjs/react-codemirror/commit/8bfc8a5) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(solarized): add package exports field. [`affc260`](https://togithub.com/uiwjs/react-codemirror/commit/affc260) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 08:21:35 +02:00
"@uiw/codemirror-theme-duotone": "4.21.13",
chore(deps): update dependency @uiw/react-codemirror to v4.21.13 (#4702) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@uiw/react-codemirror](https://uiwjs.github.io/react-codemirror) ([source](https://togithub.com/uiwjs/react-codemirror)) | [`4.21.9` -> `4.21.13`](https://renovatebot.com/diffs/npm/@uiw%2freact-codemirror/4.21.9/4.21.13) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@uiw%2freact-codemirror/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@uiw%2freact-codemirror/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@uiw%2freact-codemirror/4.21.9/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@uiw%2freact-codemirror/4.21.9/4.21.13?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>uiwjs/react-codemirror (@&#8203;uiw/react-codemirror)</summary> ### [`v4.21.13`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.13) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.12...v4.21.13) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.13/file/README.md) Documentation v4.21.13: https://raw.githack.com/uiwjs/react-codemirror/81a6a62/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.12...v4.21.13 ```shell npm i @&#8203;uiw/react-codemirror@4.21.13 ``` - 🌍 website: modify website router. [`5599909`](https://togithub.com/uiwjs/react-codemirror/commit/5599909) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: update home example. [`dda529b`](https://togithub.com/uiwjs/react-codemirror/commit/dda529b) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: fix example. [`73cced5`](https://togithub.com/uiwjs/react-codemirror/commit/73cced5) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update tsconfig.json [`7f5e3d4`](https://togithub.com/uiwjs/react-codemirror/commit/7f5e3d4) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐞 fix: fix height/minHeight/maxHeight/width/minWidth/maxWidth default value. [`21d8048`](https://togithub.com/uiwjs/react-codemirror/commit/21d8048) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐞 fix(langs): remove `clike` import ([#&#8203;560](https://togithub.com/uiwjs/react-codemirror/issues/560)) [`24e1e35`](https://togithub.com/uiwjs/react-codemirror/commit/24e1e35) [@&#8203;gtn1024](https://togithub.com/gtn1024) ### [`v4.21.12`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.12) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.11...v4.21.12) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.12/file/README.md) Documentation v4.21.12: https://raw.githack.com/uiwjs/react-codemirror/de05ac9/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.11...v4.21.12 ```shell npm i @&#8203;uiw/react-codemirror@4.21.12 ``` - 🌍 website: modify theme document & add badges. [`4fb582d`](https://togithub.com/uiwjs/react-codemirror/commit/4fb582d) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`36ed84a`](https://togithub.com/uiwjs/react-codemirror/commit/36ed84a) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐞 fix(deps): update dependency [@&#8203;uiw/react-shields](https://togithub.com/uiw/react-shields) to v2 [#&#8203;556](https://togithub.com/uiwjs/react-codemirror/issues/556) [`bd10a90`](https://togithub.com/uiwjs/react-codemirror/commit/bd10a90) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: update footer style. [`758c40f`](https://togithub.com/uiwjs/react-codemirror/commit/758c40f) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`84613ee`](https://togithub.com/uiwjs/react-codemirror/commit/84613ee) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `andromeda` theme. [`8dccafa`](https://togithub.com/uiwjs/react-codemirror/commit/8dccafa) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`90e5dfc`](https://togithub.com/uiwjs/react-codemirror/commit/90e5dfc) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore: update workflows config. ([#&#8203;558](https://togithub.com/uiwjs/react-codemirror/issues/558)) [`9ea5f90`](https://togithub.com/uiwjs/react-codemirror/commit/9ea5f90) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `copilot` theme. [`997700b`](https://togithub.com/uiwjs/react-codemirror/commit/997700b) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🐝 refactor(theme): optimize code. [`b3ee803`](https://togithub.com/uiwjs/react-codemirror/commit/b3ee803) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `white` theme. [`54ee05f`](https://togithub.com/uiwjs/react-codemirror/commit/54ee05f) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) ### [`v4.21.11`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.11) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.10...v4.21.11) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.11/file/README.md) Documentation v4.21.11: https://raw.githack.com/uiwjs/react-codemirror/6533b9b/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.10...v4.21.11 ```shell npm i @&#8203;uiw/react-codemirror@4.21.11 ``` - 📖 doc: update README.md [`21e75e2`](https://togithub.com/uiwjs/react-codemirror/commit/21e75e2) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `quietlight` theme. [`6cd63b5`](https://togithub.com/uiwjs/react-codemirror/commit/6cd63b5) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `red` theme. [`fbb07e1`](https://togithub.com/uiwjs/react-codemirror/commit/fbb07e1) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `abyss` theme. [`fa73b0a`](https://togithub.com/uiwjs/react-codemirror/commit/fa73b0a) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `kimbie` theme. [`25fd7e9`](https://togithub.com/uiwjs/react-codemirror/commit/25fd7e9) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `monokai` theme. [`9dcbacc`](https://togithub.com/uiwjs/react-codemirror/commit/9dcbacc) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `monokai-dimmed` theme. [`934cb75`](https://togithub.com/uiwjs/react-codemirror/commit/934cb75) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `tomorrow-night-blue` theme. [`6a2bf01`](https://togithub.com/uiwjs/react-codemirror/commit/6a2bf01) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) ### [`v4.21.10`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.21.10) [Compare Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.21.9...v4.21.10) [![](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/@&#8203;uiw/react-codemirror@4.21.10/file/README.md) Documentation v4.21.10: https://raw.githack.com/uiwjs/react-codemirror/e5b4b76/index.html\ Comparing Changes: https://github.com/uiwjs/react-codemirror/compare/v4.21.9...v4.21.10 ```shell npm i @&#8203;uiw/react-codemirror@4.21.10 ``` - 🌍 website: add example. ([#&#8203;455](https://togithub.com/uiwjs/react-codemirror/issues/455)) [`fd6a8db`](https://togithub.com/uiwjs/react-codemirror/commit/fd6a8db) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌍 website: modify data/github router. [`29dccc3`](https://togithub.com/uiwjs/react-codemirror/commit/29dccc3) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(theme): add `basic` theme. [`bf24245`](https://togithub.com/uiwjs/react-codemirror/commit/bf24245) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 💄 chore(deps): update dependency jest-environment-jsdom to ^29.6.0 [#&#8203;552](https://togithub.com/uiwjs/react-codemirror/issues/552) [`8bfc8a5`](https://togithub.com/uiwjs/react-codemirror/commit/8bfc8a5) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) - 🌟 feat(solarized): add package exports field. [`affc260`](https://togithub.com/uiwjs/react-codemirror/commit/affc260) [@&#8203;jaywcjlove](https://togithub.com/jaywcjlove) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 09:27:56 +02:00
"@uiw/react-codemirror": "4.21.13",
chore(deps): update dependency @vitejs/plugin-react to v3.1.0 (#3112) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@vitejs/plugin-react](https://togithub.com/vitejs/vite-plugin-react/tree/main/packages/plugin-react#readme) ([source](https://togithub.com/vitejs/vite-plugin-react)) | [`3.0.1` -> `3.1.0`](https://renovatebot.com/diffs/npm/@vitejs%2fplugin-react/3.0.1/3.1.0) | [![age](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.1.0/compatibility-slim/3.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@vitejs%2fplugin-react/3.1.0/confidence-slim/3.0.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vitejs/vite-plugin-react</summary> ### [`v3.1.0`](https://togithub.com/vitejs/vite-plugin-react/blob/HEAD/packages/plugin-react/CHANGELOG.md#&#8203;310-2023-02-02) [Compare Source](https://togithub.com/vitejs/vite-plugin-react/compare/d758a2a44b0a2cb3c206fa61166cda9d5cf58221...cda8145b8dc5a7211c0e3f8a253b4cac9c2c3d42) - doc: add jsxImportSource option ([38d71f6](https://togithub.com/vitejs/vite-plugin-react/commit/38d71f6)) - chore: bump release-scripts, typecheck package in CI, remove cache for eslint ([9af763d](https://togithub.com/vitejs/vite-plugin-react/commit/9af763d)) - fix: fast-refresh explain link ([#&#8203;97](https://togithub.com/vitejs/vite-plugin-react/issues/97)) ([6097795](https://togithub.com/vitejs/vite-plugin-react/commit/6097795)), closes [#&#8203;97](https://togithub.com/vitejs/vite-plugin-react/issues/97) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMzMuMCIsInVwZGF0ZWRJblZlciI6IjM0LjEzMy4wIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-15 06:02:10 +01:00
"@vitejs/plugin-react": "3.1.0",
"cartesian": "^1.0.1",
"chart.js": "3.9.1",
chore(deps): update dependency chartjs-adapter-date-fns to v3 (#2767) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [chartjs-adapter-date-fns](https://www.chartjs.org) ([source](https://togithub.com/chartjs/chartjs-adapter-date-fns)) | [`2.0.1` -> `3.0.0`](https://renovatebot.com/diffs/npm/chartjs-adapter-date-fns/2.0.1/3.0.0) | [![age](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/compatibility-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/chartjs-adapter-date-fns/3.0.0/confidence-slim/2.0.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>chartjs/chartjs-adapter-date-fns</summary> ### [`v3.0.0`](https://togithub.com/chartjs/chartjs-adapter-date-fns/releases/tag/v3.0.0) [Compare Source](https://togithub.com/chartjs/chartjs-adapter-date-fns/compare/v2.0.1...v3.0.0) ### Essential Links - [npm](https://www.npmjs.com/package/chartjs-adapter-date-fns) <!----> - [#&#8203;50](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/50) Bump terser from 5.7.0 to 5.14.2 - [#&#8203;57](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/57) Bump engine.io and socket.io #### Enhancements - [#&#8203;63](https://togithub.com/chartjs/chartjs-adapter-date-fns/issues/63) feat: package as a module Thanks to [@&#8203;dependabot](https://togithub.com/dependabot), [@&#8203;dependabot](https://togithub.com/dependabot)\[bot] and [@&#8203;kurkle](https://togithub.com/kurkle) </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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC43NC4yIiwidXBkYXRlZEluVmVyIjoiMzQuNzQuMiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-28 14:09:19 +01:00
"chartjs-adapter-date-fns": "3.0.0",
"classnames": "2.3.2",
chore(deps): update dependency copy-to-clipboard to v3.3.3 (#2413) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [copy-to-clipboard](https://togithub.com/sudodoki/copy-to-clipboard) | [`3.3.2` -> `3.3.3`](https://renovatebot.com/diffs/npm/copy-to-clipboard/3.3.2/3.3.3) | [![age](https://badges.renovateapi.com/packages/npm/copy-to-clipboard/3.3.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/copy-to-clipboard/3.3.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/copy-to-clipboard/3.3.3/compatibility-slim/3.3.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/copy-to-clipboard/3.3.3/confidence-slim/3.3.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>sudodoki/copy-to-clipboard</summary> ### [`v3.3.3`](https://togithub.com/sudodoki/copy-to-clipboard/compare/v3.3.2...ca33966a5e030c7d18bd3b193654eb2e59c86e04) [Compare Source](https://togithub.com/sudodoki/copy-to-clipboard/compare/v3.3.2...ca33966a5e030c7d18bd3b193654eb2e59c86e04) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yMy4xIiwidXBkYXRlZEluVmVyIjoiMzQuMjMuMSJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-14 17:27:49 +01:00
"copy-to-clipboard": "3.3.3",
"countries-and-timezones": "^3.4.0",
chore(deps): update dependency cypress to v12.17.4 (#4704) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [cypress](https://togithub.com/cypress-io/cypress) | [`12.17.3` -> `12.17.4`](https://renovatebot.com/diffs/npm/cypress/12.17.3/12.17.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/cypress/12.17.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/cypress/12.17.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/cypress/12.17.3/12.17.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cypress/12.17.3/12.17.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>cypress-io/cypress (cypress)</summary> ### [`v12.17.4`](https://togithub.com/cypress-io/cypress/releases/tag/v12.17.4) [Compare Source](https://togithub.com/cypress-io/cypress/compare/v12.17.3...v12.17.4) Changelog: https://docs.cypress.io/guides/references/changelog#12-17-4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 10:25:54 +02:00
"cypress": "12.17.4",
"cypress-vite": "^1.4.0",
chore(deps): update dependency date-fns to v2.30.0 (#3740) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [date-fns](https://togithub.com/date-fns/date-fns) | [`2.29.3` -> `2.30.0`](https://renovatebot.com/diffs/npm/date-fns/2.29.3/2.30.0) | [![age](https://badges.renovateapi.com/packages/npm/date-fns/2.30.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/date-fns/2.30.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/date-fns/2.30.0/compatibility-slim/2.29.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/date-fns/2.30.0/confidence-slim/2.29.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>date-fns/date-fns</summary> ### [`v2.30.0`](https://togithub.com/date-fns/date-fns/releases/tag/v2.30.0) [Compare Source](https://togithub.com/date-fns/date-fns/compare/v2.29.3...v2.30.0) Kudos to [@&#8203;kossnocorp](https://togithub.com/kossnocorp) and [@&#8203;Andarist](https://togithub.com/Andarist) for working on the release. ##### Changes - Fixed increased build size after enabling compatibility with older browsers in the previous release. This was done by adding [@&#8203;babel/runtime](https://togithub.com/babel/runtime) as a dependency. [See more details](https://togithub.com/date-fns/date-fns/issues/3208#issuecomment-1528592465). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS43NS4wIiwidXBkYXRlZEluVmVyIjoiMzUuNzUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-05-16 16:45:53 +02:00
"date-fns": "2.30.0",
"date-fns-tz": "^2.0.0",
"debounce": "1.2.1",
2021-11-08 16:02:06 +01:00
"deep-diff": "1.0.2",
"dequal": "2.0.3",
chore(deps): update dependency eslint to v8.49.0 (#4796) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint](https://eslint.org) ([source](https://togithub.com/eslint/eslint)) | [`8.48.0` -> `8.49.0`](https://renovatebot.com/diffs/npm/eslint/8.48.0/8.49.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint/8.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint/8.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint/8.48.0/8.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint/8.48.0/8.49.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>eslint/eslint (eslint)</summary> ### [`v8.49.0`](https://togithub.com/eslint/eslint/releases/tag/v8.49.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.48.0...v8.49.0) #### Features - [`da09f4e`](https://togithub.com/eslint/eslint/commit/da09f4e641141f585ef611c6e9d63d4331054706) feat: Implement onUnreachableCodePathStart/End ([#&#8203;17511](https://togithub.com/eslint/eslint/issues/17511)) (Nicholas C. Zakas) - [`32b2327`](https://togithub.com/eslint/eslint/commit/32b2327aafdd3b911fabab69ed75c9ff97658c60) feat: Emit deprecation warnings in RuleTester ([#&#8203;17527](https://togithub.com/eslint/eslint/issues/17527)) (Nicholas C. Zakas) - [`acb7df3`](https://togithub.com/eslint/eslint/commit/acb7df35b9a7485f26bc6b3e1f9083d1c585dce9) feat: add new `enforce` option to `lines-between-class-members` ([#&#8203;17462](https://togithub.com/eslint/eslint/issues/17462)) (Nitin Kumar) #### Documentation - [`ecfb54f`](https://togithub.com/eslint/eslint/commit/ecfb54ff4cdd18f28b4f9b78f0a78fb4cf80f1b8) docs: Update README (GitHub Actions Bot) - [`de86b3b`](https://togithub.com/eslint/eslint/commit/de86b3b2e58edd5826200c23255d8325abe375e1) docs: update `no-promise-executor-return` examples ([#&#8203;17529](https://togithub.com/eslint/eslint/issues/17529)) (Nitin Kumar) - [`032c4b1`](https://togithub.com/eslint/eslint/commit/032c4b1476a7b8cfd917a66772d2221950ea87eb) docs: add typescript template ([#&#8203;17500](https://togithub.com/eslint/eslint/issues/17500)) (James) - [`cd7da5c`](https://togithub.com/eslint/eslint/commit/cd7da5cc3154f86f7ca45fb58929d27a7af359ed) docs: Update README (GitHub Actions Bot) #### Chores - [`b7621c3`](https://togithub.com/eslint/eslint/commit/b7621c3b16cf7d5539f05336a827e1b32d95e6ac) chore: remove browser test from `npm test` ([#&#8203;17550](https://togithub.com/eslint/eslint/issues/17550)) (Milos Djermanovic) - [`cac45d0`](https://togithub.com/eslint/eslint/commit/cac45d04b890b0700dd8908927300608adad05fe) chore: upgrade [@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).49.0 ([#&#8203;17549](https://togithub.com/eslint/eslint/issues/17549)) (Milos Djermanovic) - [`cd39508`](https://togithub.com/eslint/eslint/commit/cd395082bffcb4b68efa09226d7c682cef56179e) chore: package.json update for [@&#8203;eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`203a971`](https://togithub.com/eslint/eslint/commit/203a971c0abc3a95ae02ff74104a01e569707060) ci: bump actions/checkout from 3 to 4 ([#&#8203;17530](https://togithub.com/eslint/eslint/issues/17530)) (dependabot\[bot]) - [`a40fa50`](https://togithub.com/eslint/eslint/commit/a40fa509922b36bb986eb1be9394591f84f62d9e) chore: use eslint-plugin-jsdoc's flat config ([#&#8203;17516](https://togithub.com/eslint/eslint/issues/17516)) (Milos Djermanovic) - [`926a286`](https://togithub.com/eslint/eslint/commit/926a28684282aeec37680bbc52a66973b8055f54) test: replace Karma with Webdriver.IO ([#&#8203;17126](https://togithub.com/eslint/eslint/issues/17126)) (Christian Bromann) - [`f591d2c`](https://togithub.com/eslint/eslint/commit/f591d2c88bf15af72e3a207b34fa872b4b90464b) chore: Upgrade config-array ([#&#8203;17512](https://togithub.com/eslint/eslint/issues/17512)) (Nicholas C. Zakas) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzYuOTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-20 15:32:40 +02:00
"eslint": "8.49.0",
"eslint-config-react-app": "7.0.1",
"fast-json-patch": "3.1.1",
"http-proxy-middleware": "2.0.6",
chore(deps): update dependency immer to v9.0.21 (#3444) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [immer](https://togithub.com/immerjs/immer) | [`9.0.19` -> `9.0.21`](https://renovatebot.com/diffs/npm/immer/9.0.19/9.0.21) | [![age](https://badges.renovateapi.com/packages/npm/immer/9.0.21/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/immer/9.0.21/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/immer/9.0.21/compatibility-slim/9.0.19)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/immer/9.0.21/confidence-slim/9.0.19)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>immerjs/immer</summary> ### [`v9.0.21`](https://togithub.com/immerjs/immer/releases/tag/v9.0.21) [Compare Source](https://togithub.com/immerjs/immer/compare/v9.0.20...v9.0.21) ##### Bug Fixes - ensure type exports is first in package.json export declaration ([#&#8203;1018](https://togithub.com/immerjs/immer/issues/1018)) ([b6ccd0f](https://togithub.com/immerjs/immer/commit/b6ccd0f5341cef267c4db816cc28f4df4a5846dd)) ### [`v9.0.20`](https://togithub.com/immerjs/immer/releases/tag/v9.0.20) [Compare Source](https://togithub.com/immerjs/immer/compare/v9.0.19...v9.0.20) ##### Bug Fixes - patching maps failed when using number keys ([#&#8203;1025](https://togithub.com/immerjs/immer/issues/1025)) ([dd83e2e](https://togithub.com/immerjs/immer/commit/dd83e2e2db0c16e44986feeb3429fe2b7662b2b5)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4zMS40IiwidXBkYXRlZEluVmVyIjoiMzUuMzEuNCJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-04-03 17:42:06 +02:00
"immer": "9.0.21",
chore(deps): update dependency jsdom to v22 (#4073) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [jsdom](https://togithub.com/jsdom/jsdom) | [`21.1.2` -> `22.1.0`](https://renovatebot.com/diffs/npm/jsdom/21.1.2/22.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/jsdom/22.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/jsdom/22.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/jsdom/21.1.2/22.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/jsdom/21.1.2/22.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>jsdom/jsdom (jsdom)</summary> ### [`v22.1.0`](https://togithub.com/jsdom/jsdom/blob/HEAD/Changelog.md#2210) [Compare Source](https://togithub.com/jsdom/jsdom/compare/22.0.0...22.1.0) - Added `crypto.randomUUID()`. (jamesbvaughan) - Added `DOMRect` and `DOMRectReadOnly`. - Added `AbortSignal.timeout()`. - Added `abortSignal.throwIfAborted()`. - Added support for the `submitter` argument to the `FormData` constructor. (jenseng) - Improved `getComputedStyle()`'s results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt) - Updated `Window`'s event handler properties (e.g. `oncopy`, `ontouchstart`, etc.) to reflect the latest list from the standard. - Fixed `DOMParser`-created documents to inherit their URL from the creating document. ### [`v22.0.0`](https://togithub.com/jsdom/jsdom/blob/HEAD/Changelog.md#2200) [Compare Source](https://togithub.com/jsdom/jsdom/compare/21.1.2...22.0.0) - Node.js v16 is now the minimum supported version. - Removed support for running jsdom in the browser via a [browserified](https://browserify.org/) bundle. This carried with it too much complexity, especially for our testing infrastructure, and [a testing package we relied on was recently deprecated](https://togithub.com/karma-runner/karma#karma-is-deprecated-and-is-not-accepting-new-features-or-general-bug-fixes). </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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM2LjExLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-20 16:15:22 +02:00
"jsdom": "22.1.0",
"lodash.clonedeep": "4.5.0",
"lodash.omit": "4.5.0",
"mermaid": "^9.3.0",
chore(deps): update dependency millify to v6 (#4089) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [millify](https://togithub.com/izolate/millify) | [`^5.0.1` -> `^6.0.0`](https://renovatebot.com/diffs/npm/millify/5.0.1/6.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/millify/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/millify/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/millify/5.0.1/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/millify/5.0.1/6.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>izolate/millify (millify)</summary> ### [`v6.1.0`](https://togithub.com/izolate/millify/blob/HEAD/CHANGELOG.md#610---2023-03-11) [Compare Source](https://togithub.com/izolate/millify/compare/v6.0.2...v6.1.0) - Defaults to browser locales from `navigator.languages` ### [`v6.0.2`](https://togithub.com/izolate/millify/blob/HEAD/CHANGELOG.md#602---2023-03-11) [Compare Source](https://togithub.com/izolate/millify/compare/v6.0.1...v6.0.2) - Update readme ### [`v6.0.1`](https://togithub.com/izolate/millify/blob/HEAD/CHANGELOG.md#601---2023-03-11) [Compare Source](https://togithub.com/izolate/millify/compare/v5.0.1...v6.0.1) - Fix publish </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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM2LjExLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-20 16:15:45 +02:00
"millify": "^6.0.0",
chore(deps): update dependency msw to v0.49.3 (#3089) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [msw](https://mswjs.io/) ([source](https://togithub.com/mswjs/msw)) | [`0.49.2` -> `0.49.3`](https://renovatebot.com/diffs/npm/msw/0.49.2/0.49.3) | [![age](https://badges.renovateapi.com/packages/npm/msw/0.49.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/msw/0.49.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/msw/0.49.3/compatibility-slim/0.49.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/msw/0.49.3/confidence-slim/0.49.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mswjs/msw</summary> ### [`v0.49.3`](https://togithub.com/mswjs/msw/releases/tag/v0.49.3) [Compare Source](https://togithub.com/mswjs/msw/compare/v0.49.2...v0.49.3) #### v0.49.3 (2023-01-19) ##### Bug Fixes - use EventTarget-based event emitter ([#&#8203;1522](https://togithub.com/mswjs/msw/issues/1522)) ([`6a94b8c`](https://togithub.com/mswjs/msw/commit/6a94b8c06d7a6fbc7be0c5224ba35f38888964b1)) [@&#8203;chrisguttandin](https://togithub.com/chrisguttandin) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjM0LjEzMC4xIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-02-12 17:25:43 +01:00
"msw": "0.49.3",
"pkginfo": "0.4.1",
"plausible-tracker": "0.3.8",
chore(deps): update dependency prettier to v2.8.1 (#2509) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [prettier](https://prettier.io) ([source](https://togithub.com/prettier/prettier)) | [`2.7.1` -> `2.8.1`](https://renovatebot.com/diffs/npm/prettier/2.7.1/2.8.1) | [![age](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/compatibility-slim/2.7.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prettier/2.8.1/confidence-slim/2.7.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>prettier/prettier</summary> ### [`v2.8.1`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;281) [Compare Source](https://togithub.com/prettier/prettier/compare/2.8.0...2.8.1) [diff](https://togithub.com/prettier/prettier/compare/2.8.0...2.8.1) ##### Fix SCSS map in arguments ([#&#8203;9184](https://togithub.com/prettier/prettier/pull/9184) by [@&#8203;agamkrbit](https://togithub.com/agamkrbit)) <!-- prettier-ignore --> ```scss // Input $display-breakpoints: map-deep-merge( ( "print-only": "only print", "screen-only": "only screen", "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})", ), $display-breakpoints ); // Prettier 2.8.0 $display-breakpoints: map-deep-merge( ( "print-only": "only print", "screen-only": "only screen", "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, " sm ")-1})", ), $display-breakpoints ); // Prettier 2.8.1 $display-breakpoints: map-deep-merge( ( "print-only": "only print", "screen-only": "only screen", "xs-only": "only screen and (max-width: #{map-get($grid-breakpoints, "sm")-1})", ), $display-breakpoints ); ``` ##### Support auto accessors syntax ([#&#8203;13919](https://togithub.com/prettier/prettier/pull/13919) by [@&#8203;sosukesuzuki](https://togithub.com/sosukesuzuki)) Support for [Auto Accessors Syntax](https://devblogs.microsoft.com/typescript/announcing-typescript-4-9/#auto-accessors-in-classes) landed in TypeScript 4.9. (Doesn't work well with `babel-ts` parser) <!-- prettier-ignore --> ```tsx class Foo { accessor foo: number = 3; } ``` ### [`v2.8.0`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#&#8203;280) [Compare Source](https://togithub.com/prettier/prettier/compare/2.7.1...2.8.0) [diff](https://togithub.com/prettier/prettier/compare/2.7.1...2.8.0) 🔗 [Release Notes](https://prettier.io/blog/2022/11/23/2.8.0.html) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4zMC4yIiwidXBkYXRlZEluVmVyIjoiMzQuNjIuMSJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Gastón Fournier <gaston@getunleash.ai>
2022-12-27 10:45:43 +01:00
"prettier": "2.8.1",
2022-02-11 01:34:06 +01:00
"prop-types": "15.8.1",
"react": "17.0.2",
"react-chartjs-2": "4.3.1",
"react-confetti": "^6.1.0",
"react-dom": "17.0.2",
2023-01-20 09:50:24 +01:00
"react-dropzone": "14.2.3",
"react-error-boundary": "3.1.4",
chore(deps): update dependency react-hooks-global-state to v2.1.0 (#2660) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-hooks-global-state](https://togithub.com/dai-shi/react-hooks-global-state) | [`2.0.0` -> `2.1.0`](https://renovatebot.com/diffs/npm/react-hooks-global-state/2.0.0/2.1.0) | [![age](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/compatibility-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/react-hooks-global-state/2.1.0/confidence-slim/2.0.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>dai-shi/react-hooks-global-state</summary> ### [`v2.1.0`](https://togithub.com/dai-shi/react-hooks-global-state/blob/HEAD/CHANGELOG.md#&#8203;210---2022-12-04) [Compare Source](https://togithub.com/dai-shi/react-hooks-global-state/compare/v2.0.0...v2.1.0) ##### Added - expose "subscribe" function for "createGlobalState" [#&#8203;85](https://togithub.com/dai-shi/react-hooks-global-state/issues/85) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC41NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuNTQuMCJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-12-10 18:26:53 +01:00
"react-hooks-global-state": "2.1.0",
"react-joyride": "^2.5.3",
"react-linkify": "^1.0.0-alpha",
"react-markdown": "^8.0.4",
chore(deps): update react-router monorepo to v6.15.0 (#4532) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-router](https://togithub.com/remix-run/react-router) | [`6.14.2` -> `6.15.0`](https://renovatebot.com/diffs/npm/react-router/6.14.2/6.15.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-router/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-router/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-router/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [react-router-dom](https://togithub.com/remix-run/react-router) | [`6.14.2` -> `6.15.0`](https://renovatebot.com/diffs/npm/react-router-dom/6.14.2/6.15.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-router-dom/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-router-dom/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-router-dom/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-router-dom/6.14.2/6.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>remix-run/react-router (react-router)</summary> ### [`v6.15.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router/CHANGELOG.md#6150) [Compare Source](https://togithub.com/remix-run/react-router/compare/react-router@6.14.2...react-router@6.15.0) ##### Minor Changes - Add's a new `redirectDocument()` function which allows users to specify that a redirect from a `loader`/`action` should trigger a document reload (via `window.location`) instead of attempting to navigate to the redirected location via React Router ([#&#8203;10705](https://togithub.com/remix-run/react-router/pull/10705)) ##### Patch Changes - Ensure `useRevalidator` is referentially stable across re-renders if revalidations are not actively occurring ([#&#8203;10707](https://togithub.com/remix-run/react-router/pull/10707)) - Updated dependencies: - `@remix-run/router@1.8.0` </details> <details> <summary>remix-run/react-router (react-router-dom)</summary> ### [`v6.15.0`](https://togithub.com/remix-run/react-router/blob/HEAD/packages/react-router-dom/CHANGELOG.md#6150) [Compare Source](https://togithub.com/remix-run/react-router/compare/react-router-dom@6.14.2...react-router-dom@6.15.0) ##### Minor Changes - Add's a new `redirectDocument()` function which allows users to specify that a redirect from a `loader`/`action` should trigger a document reload (via `window.location`) instead of attempting to navigate to the redirected location via React Router ([#&#8203;10705](https://togithub.com/remix-run/react-router/pull/10705)) ##### Patch Changes - Fixes an edge-case affecting web extensions in Firefox that use `URLSearchParams` and the `useSearchParams` hook. ([#&#8203;10620](https://togithub.com/remix-run/react-router/pull/10620)) - Do not include hash in `useFormAction()` for unspecified actions since it cannot be determined on the server and causes hydration issues ([#&#8203;10758](https://togithub.com/remix-run/react-router/pull/10758)) - Reorder effects in `unstable_usePrompt` to avoid throwing an exception if the prompt is unblocked and a navigation is performed synchronously ([#&#8203;10687](https://togithub.com/remix-run/react-router/pull/10687), [#&#8203;10718](https://togithub.com/remix-run/react-router/pull/10718)) - Updated dependencies: - `@remix-run/router@1.8.0` - `react-router@6.15.0` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40My4yIiwidXBkYXRlZEluVmVyIjoiMzYuNDMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-17 20:52:04 +02:00
"react-router-dom": "6.15.0",
"react-table": "7.8.0",
refactor: fix misc TS errors (#729) * refactor: update test deps * refactor: remove unused ts-expect-error annotations * refactor: add missing arg and return types * refactor: the loading prop is optional * refactor: add missing arg and return types * reafactor: fix value arg type * refactor: fix missing array type * refactor: the parameters field is an array * refactor: use undefined instead of null in state * refactor: add missing params type * refactor: add missing children prop * refactor: add missing array type * refactor: add missing React imports * refactor: use correct IProjectEnvironment type * refactor: type errors as unknown * refactor: the index prop is required * refactor: fix date prop type * refactor: fix tooltip placement prop type * refactor: fix environments state type * refactor: add missing arg types * refactor: add guard for undefined field * refactor: fix ChangePassword prop types * refactor: fix MUI import paths * refactor: add missing arg type * refactor: fix showDialog prop type * refactor: remove unused openUpdateDialog prop * refactor: add missing non-null assertion * refactor: remove unused types prop * refactor: stricten API error handler types * refactor: add missing undefined check * refactor: add missing IProject id field * refactor: fix ConditionallyRender condition prop types * refactor: remove unused args * refactor: add AddVariant prop types * refactor: add types to UIContext * refactor: fix event arg type * refactor: add missing default impressionData field * refactor: fix handleDeleteEnvironment prop args * refactor: fix IFeatureMetrics field requirements * refactor: add missing element types to ConditionallyRender * refactor: remove unused ProjectAccess projectId prop * refactor: add missing undefined check * refactor: fix getCreateTogglePath arg type * refactor: add missing IStrategyPayload import * refactor: remove unused user arg * refactor: add missing event arg type * refactor: add missing style object types * refactor: improve userApiErrors prop type * refactor: the Dialogue onClose prop is optional * refactor: fix the AddonEvents setEventValue prop type
2022-02-25 10:55:39 +01:00
"react-test-renderer": "17.0.2",
chore(deps): update dependency react-timeago to v7.2.0 (#4731) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react-timeago](https://togithub.com/nmn/react-timeago) ([source](https://togithub.com/naman34/react-timeago)) | [`7.1.0` -> `7.2.0`](https://renovatebot.com/diffs/npm/react-timeago/7.1.0/7.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-timeago/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-timeago/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-timeago/7.1.0/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-timeago/7.1.0/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>naman34/react-timeago (react-timeago)</summary> ### [`v7.2.0`](https://togithub.com/naman34/react-timeago/compare/v7.1.0...v7.2.0) [Compare Source](https://togithub.com/naman34/react-timeago/compare/v7.1.0...v7.2.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 22:29:13 +02:00
"react-timeago": "7.2.0",
chore(deps): update dependency sass to v1.66.1 (#4732) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [sass](https://togithub.com/sass/dart-sass) | [`1.65.1` -> `1.66.1`](https://renovatebot.com/diffs/npm/sass/1.65.1/1.66.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.66.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.66.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.65.1/1.66.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.65.1/1.66.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.66.1`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1661) [Compare Source](https://togithub.com/sass/dart-sass/compare/1.66.0...1.66.1) ##### JS API - Fix a bug where Sass compilation could crash in strict mode if passed a callback that threw a string, boolean, number, symbol, or bignum. ### [`v1.66.0`](https://togithub.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1660) [Compare Source](https://togithub.com/sass/dart-sass/compare/1.65.1...1.66.0) - **Breaking change:** Drop support for the additional CSS calculations defined in CSS Values and Units 4. Custom Sass functions whose names overlapped with these new CSS functions were being parsed as CSS calculations instead, causing an unintentional breaking change outside our normal \[compatibility policy] for CSS compatibility changes. Support will be added again in a future version, but only after Sass has emitted a deprecation warning for all functions that will break for at least three months prior to the breakage. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 23:34:30 +02:00
"sass": "1.66.1",
chore(deps): update dependency semver to v7.5.4 (#4297) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [semver](https://togithub.com/npm/node-semver) | [`7.5.3` -> `7.5.4`](https://renovatebot.com/diffs/npm/semver/7.5.3/7.5.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/semver/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/semver/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/semver/7.5.3/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/semver/7.5.3/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>npm/node-semver (semver)</summary> ### [`v7.5.4`](https://togithub.com/npm/node-semver/blob/HEAD/CHANGELOG.md#754-2023-07-07) [Compare Source](https://togithub.com/npm/node-semver/compare/v7.5.3...v7.5.4) ##### Bug Fixes - [`cc6fde2`](https://togithub.com/npm/node-semver/commit/cc6fde2d34b95cb600d126649d926901bd2a9703) [#&#8203;588](https://togithub.com/npm/node-semver/pull/588) trim each range set before parsing ([@&#8203;lukekarrys](https://togithub.com/lukekarrys)) - [`99d8287`](https://togithub.com/npm/node-semver/commit/99d8287516a1d2abf0286033e2e26eca6b69c09f) [#&#8203;583](https://togithub.com/npm/node-semver/pull/583) correctly parse long build ids as valid ([#&#8203;583](https://togithub.com/npm/node-semver/issues/583)) ([@&#8203;lukekarrys](https://togithub.com/lukekarrys)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-20 20:54:00 +02:00
"semver": "7.5.4",
chore(deps): update dependency swr to v2.2.2 (#4713) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [swr](https://swr.vercel.app) ([source](https://togithub.com/vercel/swr)) | [`2.2.0` -> `2.2.2`](https://renovatebot.com/diffs/npm/swr/2.2.0/2.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/swr/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/swr/2.2.0/2.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/swr (swr)</summary> ### [`v2.2.2`](https://togithub.com/vercel/swr/releases/tag/v2.2.2) [Compare Source](https://togithub.com/vercel/swr/compare/e510955d42b472c8d45034c51b8acc12980aa2e7...4d20bff6759d4478380963654a560a1cf9ae7be1) #### What's Changed - fix: It should use startTransition only when IS_REACT_LEGACY is false by [@&#8203;TopGrd](https://togithub.com/TopGrd) in [https://github.com/vercel/swr/pull/2756](https://togithub.com/vercel/swr/pull/2756) - fix: simplify `ArgumentsTuple` by [@&#8203;Andarist](https://togithub.com/Andarist) in [https://github.com/vercel/swr/pull/2761](https://togithub.com/vercel/swr/pull/2761) #### New Contributors - [@&#8203;TopGrd](https://togithub.com/TopGrd) made their first contribution in [https://github.com/vercel/swr/pull/2756](https://togithub.com/vercel/swr/pull/2756) - [@&#8203;Andarist](https://togithub.com/Andarist) made their first contribution in [https://github.com/vercel/swr/pull/2761](https://togithub.com/vercel/swr/pull/2761) **Full Changelog**: https://github.com/vercel/swr/compare/v2.2.1...v2.2.2 ### [`v2.2.1`](https://togithub.com/vercel/swr/releases/tag/v2.2.1) [Compare Source](https://togithub.com/vercel/swr/compare/024cbd106f8f1b0f8ea0006301d1a5fe974c691b...e510955d42b472c8d45034c51b8acc12980aa2e7) #### What's Changed - Add use client directive for client components exports by [@&#8203;huozhi](https://togithub.com/huozhi) in [https://github.com/vercel/swr/pull/2696](https://togithub.com/vercel/swr/pull/2696) - remove the 'use client' directive and add client-only to useSWR entry. by [@&#8203;promer94](https://togithub.com/promer94) in [https://github.com/vercel/swr/pull/2705](https://togithub.com/vercel/swr/pull/2705) - fix: should serialize subscription fn key by [@&#8203;promer94](https://togithub.com/promer94) in [https://github.com/vercel/swr/pull/2711](https://togithub.com/vercel/swr/pull/2711) - build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/swr/pull/2720](https://togithub.com/vercel/swr/pull/2720) - fix: only make data and error update as a non-blocking transition by [@&#8203;promer94](https://togithub.com/promer94) in [https://github.com/vercel/swr/pull/2691](https://togithub.com/vercel/swr/pull/2691) - build: generate d.mts for for .mjs, so typescript could resolve types correctly by [@&#8203;promer94](https://togithub.com/promer94) in [https://github.com/vercel/swr/pull/2695](https://togithub.com/vercel/swr/pull/2695) - fix(infinite): Fix the ability to use preload along with useSWRInfinite by [@&#8203;agadzik](https://togithub.com/agadzik) in [https://github.com/vercel/swr/pull/2723](https://togithub.com/vercel/swr/pull/2723) - fix: Ensure that using preload with useSWRInfinite returns back an array of data by [@&#8203;agadzik](https://togithub.com/agadzik) in [https://github.com/vercel/swr/pull/2726](https://togithub.com/vercel/swr/pull/2726) - fix: preload request should be consumed within `revalidate` to support `parallel` option by [@&#8203;promer94](https://togithub.com/promer94) in [https://github.com/vercel/swr/pull/2727](https://togithub.com/vercel/swr/pull/2727) - Fix the issue that useSWR revalidation isn't triggered if the useSWR call happens after mutation by [@&#8203;Ponyets](https://togithub.com/Ponyets) in [https://github.com/vercel/swr/pull/2731](https://togithub.com/vercel/swr/pull/2731) - fix(mutate): fix types of mutate/trigger; make mutate/trigger always return the result of fetcher by [@&#8203;Ponyets](https://togithub.com/Ponyets) in [https://github.com/vercel/swr/pull/2708](https://togithub.com/vercel/swr/pull/2708) - build(deps-dev): bump tough-cookie from 4.1.2 to 4.1.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/swr/pull/2735](https://togithub.com/vercel/swr/pull/2735) - build(deps-dev): bump json5 from 2.2.1 to 2.2.3 by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/swr/pull/2736](https://togithub.com/vercel/swr/pull/2736) - docs: use isLoading instead of !data by [@&#8203;pawfa](https://togithub.com/pawfa) in [https://github.com/vercel/swr/pull/2734](https://togithub.com/vercel/swr/pull/2734) #### New Contributors - [@&#8203;agadzik](https://togithub.com/agadzik) made their first contribution in [https://github.com/vercel/swr/pull/2723](https://togithub.com/vercel/swr/pull/2723) - [@&#8203;Ponyets](https://togithub.com/Ponyets) made their first contribution in [https://github.com/vercel/swr/pull/2731](https://togithub.com/vercel/swr/pull/2731) - [@&#8203;pawfa](https://togithub.com/pawfa) made their first contribution in [https://github.com/vercel/swr/pull/2734](https://togithub.com/vercel/swr/pull/2734) **Full Changelog**: https://github.com/vercel/swr/compare/v2.2.0...v2.2.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 12:36:54 +02:00
"swr": "2.2.2",
chore(deps): update dependency tss-react to v4.9.0 (#4734) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [tss-react](https://www.tss-react.dev) ([source](https://togithub.com/garronej/tss-react)) | [`4.8.8` -> `4.9.0`](https://renovatebot.com/diffs/npm/tss-react/4.8.8/4.9.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/tss-react/4.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/tss-react/4.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/tss-react/4.8.8/4.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/tss-react/4.8.8/4.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>garronej/tss-react (tss-react)</summary> ### [`v4.9.0`](https://togithub.com/garronej/tss-react/releases/tag/v4.9.0) [Compare Source](https://togithub.com/garronej/tss-react/compare/v4.8.8...v4.9.0) <!-- Release notes generated using configuration in .github/release.yaml at refs/heads/main --> #### What's Changed ##### Other Changes - Pinning API by [@&#8203;garronej](https://togithub.com/garronej) in [https://github.com/garronej/tss-react/pull/189](https://togithub.com/garronej/tss-react/pull/189) **Full Changelog**: https://github.com/garronej/tss-react/compare/v4.8.8...v4.9.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-15 02:35:57 +02:00
"tss-react": "4.9.0",
"typescript": "4.8.4",
chore(deps): update dependency vite to v4.4.9 (#4505) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | [`4.4.7` -> `4.4.9`](https://renovatebot.com/diffs/npm/vite/4.4.7/4.4.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/4.4.7/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/4.4.7/4.4.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vitejs/vite (vite)</summary> ### [`v4.4.9`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small449-2023-08-07-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v4.4.8...v4.4.9) - chore: fix eslint warnings ([#&#8203;14031](https://togithub.com/vitejs/vite/issues/14031)) ([4021a0e](https://togithub.com/vitejs/vite/commit/4021a0e)), closes [#&#8203;14031](https://togithub.com/vitejs/vite/issues/14031) - chore(deps): update all non-major dependencies ([#&#8203;13938](https://togithub.com/vitejs/vite/issues/13938)) ([a1b519e](https://togithub.com/vitejs/vite/commit/a1b519e)), closes [#&#8203;13938](https://togithub.com/vitejs/vite/issues/13938) - fix: dynamic import vars ignored warning ([#&#8203;14006](https://togithub.com/vitejs/vite/issues/14006)) ([4479431](https://togithub.com/vitejs/vite/commit/4479431)), closes [#&#8203;14006](https://togithub.com/vitejs/vite/issues/14006) - fix(build): silence warn dynamic import module when inlineDynamicImports true ([#&#8203;13970](https://togithub.com/vitejs/vite/issues/13970)) ([7a77aaf](https://togithub.com/vitejs/vite/commit/7a77aaf)), closes [#&#8203;13970](https://togithub.com/vitejs/vite/issues/13970) - perf: improve build times and memory utilization ([#&#8203;14016](https://togithub.com/vitejs/vite/issues/14016)) ([9d7d45e](https://togithub.com/vitejs/vite/commit/9d7d45e)), closes [#&#8203;14016](https://togithub.com/vitejs/vite/issues/14016) - perf: replace startsWith with === ([#&#8203;14005](https://togithub.com/vitejs/vite/issues/14005)) ([f5c1224](https://togithub.com/vitejs/vite/commit/f5c1224)), closes [#&#8203;14005](https://togithub.com/vitejs/vite/issues/14005) ### [`v4.4.8`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small448-2023-07-31-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v4.4.7...v4.4.8) - fix: modulePreload false ([#&#8203;13973](https://togithub.com/vitejs/vite/issues/13973)) ([488085d](https://togithub.com/vitejs/vite/commit/488085d)), closes [#&#8203;13973](https://togithub.com/vitejs/vite/issues/13973) - fix: multiple entries with shared css and no JS ([#&#8203;13962](https://togithub.com/vitejs/vite/issues/13962)) ([89a3db0](https://togithub.com/vitejs/vite/commit/89a3db0)), closes [#&#8203;13962](https://togithub.com/vitejs/vite/issues/13962) - fix: use file extensions on type imports so they work with `moduleResolution: 'node16'` ([#&#8203;13947](https://togithub.com/vitejs/vite/issues/13947)) ([aeef670](https://togithub.com/vitejs/vite/commit/aeef670)), closes [#&#8203;13947](https://togithub.com/vitejs/vite/issues/13947) - fix(css): enhance error message for missing preprocessor dependency ([#&#8203;11485](https://togithub.com/vitejs/vite/issues/11485)) ([65e5c22](https://togithub.com/vitejs/vite/commit/65e5c22)), closes [#&#8203;11485](https://togithub.com/vitejs/vite/issues/11485) - fix(esbuild): fix static properties transpile when useDefineForClassFields false ([#&#8203;13992](https://togithub.com/vitejs/vite/issues/13992)) ([4ca7c13](https://togithub.com/vitejs/vite/commit/4ca7c13)), closes [#&#8203;13992](https://togithub.com/vitejs/vite/issues/13992) - fix(importAnalysis): strip url base before passing as safeModulePaths ([#&#8203;13712](https://togithub.com/vitejs/vite/issues/13712)) ([1ab06a8](https://togithub.com/vitejs/vite/commit/1ab06a8)), closes [#&#8203;13712](https://togithub.com/vitejs/vite/issues/13712) - fix(importMetaGlob): avoid unnecessary hmr of negative glob ([#&#8203;13646](https://togithub.com/vitejs/vite/issues/13646)) ([844451c](https://togithub.com/vitejs/vite/commit/844451c)), closes [#&#8203;13646](https://togithub.com/vitejs/vite/issues/13646) - fix(optimizer): avoid double-commit of optimized deps when discovery is disabled ([#&#8203;13865](https://togithub.com/vitejs/vite/issues/13865)) ([df77991](https://togithub.com/vitejs/vite/commit/df77991)), closes [#&#8203;13865](https://togithub.com/vitejs/vite/issues/13865) - fix(optimizer): enable experimentalDecorators by default ([#&#8203;13981](https://togithub.com/vitejs/vite/issues/13981)) ([f8a5ffc](https://togithub.com/vitejs/vite/commit/f8a5ffc)), closes [#&#8203;13981](https://togithub.com/vitejs/vite/issues/13981) - perf: replace startsWith with === ([#&#8203;13989](https://togithub.com/vitejs/vite/issues/13989)) ([3aab14e](https://togithub.com/vitejs/vite/commit/3aab14e)), closes [#&#8203;13989](https://togithub.com/vitejs/vite/issues/13989) - perf: single slash does not need to be replaced ([#&#8203;13980](https://togithub.com/vitejs/vite/issues/13980)) ([66f522c](https://togithub.com/vitejs/vite/commit/66f522c)), closes [#&#8203;13980](https://togithub.com/vitejs/vite/issues/13980) - perf: use Intl.DateTimeFormatter instead of toLocaleTimeString ([#&#8203;13951](https://togithub.com/vitejs/vite/issues/13951)) ([af53a1d](https://togithub.com/vitejs/vite/commit/af53a1d)), closes [#&#8203;13951](https://togithub.com/vitejs/vite/issues/13951) - perf: use Intl.NumberFormat instead of toLocaleString ([#&#8203;13949](https://togithub.com/vitejs/vite/issues/13949)) ([a48bf88](https://togithub.com/vitejs/vite/commit/a48bf88)), closes [#&#8203;13949](https://togithub.com/vitejs/vite/issues/13949) - perf: use magic-string hires boundary for sourcemaps ([#&#8203;13971](https://togithub.com/vitejs/vite/issues/13971)) ([b9a8d65](https://togithub.com/vitejs/vite/commit/b9a8d65)), closes [#&#8203;13971](https://togithub.com/vitejs/vite/issues/13971) - chore(reporter): remove unnecessary map ([#&#8203;13972](https://togithub.com/vitejs/vite/issues/13972)) ([dd9d4c1](https://togithub.com/vitejs/vite/commit/dd9d4c1)), closes [#&#8203;13972](https://togithub.com/vitejs/vite/issues/13972) - refactor: add new overload to the type of defineConfig ([#&#8203;13958](https://togithub.com/vitejs/vite/issues/13958)) ([24c12fe](https://togithub.com/vitejs/vite/commit/24c12fe)), closes [#&#8203;13958](https://togithub.com/vitejs/vite/issues/13958) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40My4yIiwidXBkYXRlZEluVmVyIjoiMzYuNDMuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-08-16 09:19:03 +02:00
"vite": "4.4.9",
"vite-plugin-env-compatible": "1.1.1",
"vite-plugin-svgr": "3.2.0",
chore(deps): update dependency vite-tsconfig-paths to v4.2.1 (#4788) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [vite-tsconfig-paths](https://togithub.com/aleclarson/vite-tsconfig-paths) | [`4.2.0` -> `4.2.1`](https://renovatebot.com/diffs/npm/vite-tsconfig-paths/4.2.0/4.2.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite-tsconfig-paths/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-tsconfig-paths/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-tsconfig-paths/4.2.0/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-tsconfig-paths/4.2.0/4.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>aleclarson/vite-tsconfig-paths (vite-tsconfig-paths)</summary> ### [`v4.2.1`](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v4.2.0...v4.2.1) [Compare Source](https://togithub.com/aleclarson/vite-tsconfig-paths/compare/v4.2.0...v4.2.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzYuOTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-20 10:30:40 +02:00
"vite-tsconfig-paths": "4.2.1",
chore(deps): update dependency vitest to v0.33.0 (#4314) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [vitest](https://togithub.com/vitest-dev/vitest) | [`0.32.2` -> `0.33.0`](https://renovatebot.com/diffs/npm/vitest/0.32.2/0.33.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest/0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest/0.32.2/0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/0.32.2/0.33.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vitest-dev/vitest (vitest)</summary> ### [`v0.33.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.33.0) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.32.4...v0.33.0) #####    🚨 Breaking Changes - Revert default include patterns  -  by [@&#8203;so1ve](https://togithub.com/so1ve) [#&#8203;3729](https://togithub.com/vitest-dev/vitest/issues/3729) - `0.32.0` changed the default `include` globs to be compatible with Jest. After a discussion with the community, we are reverting this change because it turned out to be non-intuitive. #####    🐞 Bug Fixes - Add missing JSDom living keys  -  by [@&#8203;DerZade](https://togithub.com/DerZade) in [https://github.com/vitest-dev/vitest/issues/3702](https://togithub.com/vitest-dev/vitest/issues/3702) [<samp>(83a86)</samp>](https://togithub.com/vitest-dev/vitest/commit/83a86a75) - **vite-node**: - Don't fail when importing Promise module  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) [<samp>(08192)</samp>](https://togithub.com/vitest-dev/vitest/commit/0819275a) - Allow importing node:test  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) [<samp>(db22c)</samp>](https://togithub.com/vitest-dev/vitest/commit/db22c677) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.32.4...v0.33.0) ### [`v0.32.4`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.32.4) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.32.3...v0.32.4) #####    🐞 Bug Fixes - **browser**: Correctly optimize CJS dependencies  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) [<samp>(3d090)</samp>](https://togithub.com/vitest-dev/vitest/commit/3d0908e7) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.32.3...v0.32.4) ### [`v0.32.3`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.32.3) [Compare Source](https://togithub.com/vitest-dev/vitest/compare/v0.32.2...v0.32.3) #####    🚀 Features - Add `concurrent` option to `sequence` config  -  by [@&#8203;fenghan34](https://togithub.com/fenghan34) and [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3604](https://togithub.com/vitest-dev/vitest/issues/3604) [<samp>(f427f)</samp>](https://togithub.com/vitest-dev/vitest/commit/f427f004) - Introduce global configuration for retry setting  -  by [@&#8203;imentu](https://togithub.com/imentu) and [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3598](https://togithub.com/vitest-dev/vitest/issues/3598) and [https://github.com/vitest-dev/vitest/issues/3603](https://togithub.com/vitest-dev/vitest/issues/3603) [<samp>(9a117)</samp>](https://togithub.com/vitest-dev/vitest/commit/9a117627) - Don't rely on util package in [@&#8203;vitest/utils](https://togithub.com/vitest/utils)  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3685](https://togithub.com/vitest-dev/vitest/issues/3685) [<samp>(f91da)</samp>](https://togithub.com/vitest-dev/vitest/commit/f91da484) - Support accessing other fixtures in fixture function  -  by [@&#8203;fenghan34](https://togithub.com/fenghan34) in [https://github.com/vitest-dev/vitest/issues/3651](https://togithub.com/vitest-dev/vitest/issues/3651) [<samp>(1621c)</samp>](https://togithub.com/vitest-dev/vitest/commit/1621cc63) - Support use function/class as `bench` name  -  by [@&#8203;fenghan34](https://togithub.com/fenghan34) in [https://github.com/vitest-dev/vitest/issues/3711](https://togithub.com/vitest-dev/vitest/issues/3711) [<samp>(a749a)</samp>](https://togithub.com/vitest-dev/vitest/commit/a749a6c0) - **reporters**: Show full test suite when testing 1 spec file at a time  -  by [@&#8203;Dunqing](https://togithub.com/Dunqing) in [https://github.com/vitest-dev/vitest/issues/3543](https://togithub.com/vitest-dev/vitest/issues/3543) [<samp>(7531c)</samp>](https://togithub.com/vitest-dev/vitest/commit/7531c292) - **runner**: Support `test.extend`  -  by [@&#8203;fenghan34](https://togithub.com/fenghan34) in [https://github.com/vitest-dev/vitest/issues/3554](https://togithub.com/vitest-dev/vitest/issues/3554) [<samp>(2db1a)</samp>](https://togithub.com/vitest-dev/vitest/commit/2db1a737) #####    🐞 Bug Fixes - Remove "concordance" from dependencies list  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3597](https://togithub.com/vitest-dev/vitest/issues/3597) [<samp>(969dc)</samp>](https://togithub.com/vitest-dev/vitest/commit/969dcc14) - Show diff correctly  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3620](https://togithub.com/vitest-dev/vitest/issues/3620) [<samp>(73dd4)</samp>](https://togithub.com/vitest-dev/vitest/commit/73dd4ab5) - Util import  -  by [@&#8203;fubhy](https://togithub.com/fubhy) in [https://github.com/vitest-dev/vitest/issues/3621](https://togithub.com/vitest-dev/vitest/issues/3621) [<samp>(2fb4c)</samp>](https://togithub.com/vitest-dev/vitest/commit/2fb4ceff) - Compat with frozen Math  -  by [@&#8203;turadg](https://togithub.com/turadg) in [https://github.com/vitest-dev/vitest/issues/3527](https://togithub.com/vitest-dev/vitest/issues/3527) [<samp>(0db67)</samp>](https://togithub.com/vitest-dev/vitest/commit/0db67098) - `CTRL+C` to terminate run  -  by [@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/3642](https://togithub.com/vitest-dev/vitest/issues/3642) [<samp>(fa663)</samp>](https://togithub.com/vitest-dev/vitest/commit/fa6637d3) - Run mode stuck in TTY terminals  -  by [@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/3690](https://togithub.com/vitest-dev/vitest/issues/3690) [<samp>(141a8)</samp>](https://togithub.com/vitest-dev/vitest/commit/141a86ac) - Use first stack frame in json reporter  -  by [@&#8203;tim-smart](https://togithub.com/tim-smart) in [https://github.com/vitest-dev/vitest/issues/3645](https://togithub.com/vitest-dev/vitest/issues/3645) [<samp>(80ea7)</samp>](https://togithub.com/vitest-dev/vitest/commit/80ea7ef6) - Print actual number for `toBeCalledTimes`  -  by [@&#8203;antfu](https://togithub.com/antfu) in [https://github.com/vitest-dev/vitest/issues/3696](https://togithub.com/vitest-dev/vitest/issues/3696) [<samp>(d3640)</samp>](https://togithub.com/vitest-dev/vitest/commit/d3640437) - **benchmark**: - Don't fail when running correct benchmarks  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3629](https://togithub.com/vitest-dev/vitest/issues/3629) [<samp>(edad9)</samp>](https://togithub.com/vitest-dev/vitest/commit/edad9b19) - **browser**: - Correctly print diff  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3627](https://togithub.com/vitest-dev/vitest/issues/3627) [<samp>(d756e)</samp>](https://togithub.com/vitest-dev/vitest/commit/d756ee24) - Esm injector doesn't replace class expressions  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3641](https://togithub.com/vitest-dev/vitest/issues/3641) [<samp>(5c0ac)</samp>](https://togithub.com/vitest-dev/vitest/commit/5c0ac4ad) - Transform superclass identifier  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3681](https://togithub.com/vitest-dev/vitest/issues/3681) [<samp>(a1e04)</samp>](https://togithub.com/vitest-dev/vitest/commit/a1e043bd) - **coverage**: - `v8` to prevent crash on dynamic CJS files  -  by [@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/3657](https://togithub.com/vitest-dev/vitest/issues/3657) [<samp>(40f18)</samp>](https://togithub.com/vitest-dev/vitest/commit/40f18a07) - **runner**: - Make the default value of `retry` and `repeats` 0  -  by [@&#8203;Dunqing](https://togithub.com/Dunqing) in [https://github.com/vitest-dev/vitest/issues/3638](https://togithub.com/vitest-dev/vitest/issues/3638) [<samp>(6d146)</samp>](https://togithub.com/vitest-dev/vitest/commit/6d146d16) - **utils**: - Respect all flags in format function  -  by [@&#8203;sheremet-va](https://togithub.com/sheremet-va) in [https://github.com/vitest-dev/vitest/issues/3695](https://togithub.com/vitest-dev/vitest/issues/3695) [<samp>(91e16)</samp>](https://togithub.com/vitest-dev/vitest/commit/91e1650e) - **watch**: - Cancel using `h` key  -  by [@&#8203;AriPerkkio](https://togithub.com/AriPerkkio) in [https://github.com/vitest-dev/vitest/issues/3618](https://togithub.com/vitest-dev/vitest/issues/3618) [<samp>(60c36)</samp>](https://togithub.com/vitest-dev/vitest/commit/60c36faf) #####     [View changes on GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.32.2...v0.32.3) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-21 16:36:30 +02:00
"vitest": "0.33.0",
chore(deps): update dependency whatwg-fetch to v3.6.19 (#4790) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [whatwg-fetch](https://togithub.com/github/fetch) | [`3.6.18` -> `3.6.19`](https://renovatebot.com/diffs/npm/whatwg-fetch/3.6.18/3.6.19) | [![age](https://developer.mend.io/api/mc/badges/age/npm/whatwg-fetch/3.6.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/whatwg-fetch/3.6.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/whatwg-fetch/3.6.18/3.6.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/whatwg-fetch/3.6.18/3.6.19?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>github/fetch (whatwg-fetch)</summary> ### [`v3.6.19`](https://togithub.com/github/fetch/blob/HEAD/CHANGELOG.md#3619-2023-09-11) [Compare Source](https://togithub.com/github/fetch/compare/v3.6.18...v3.6.19) ##### Bug Fixes - Have unique error messages for xhr timeouts and errors ([#&#8203;1380](https://togithub.com/JakeChampion/fetch/issues/1380)) ([7170f0b](https://togithub.com/JakeChampion/fetch/commit/7170f0b127d16c5895aba61c9168482834809046)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzYuOTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-20 12:02:12 +02:00
"whatwg-fetch": "3.6.19"
2017-02-23 22:18:23 +01:00
},
2023-01-05 11:57:53 +01:00
"optionalDependencies": {
"orval": "^6.17.0"
2023-01-05 11:57:53 +01:00
},
"resolutions": {
chore(deps): update dependency @codemirror/state to v6.2.1 (#3911) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@codemirror/state](https://togithub.com/codemirror/state) | [`6.2.0` -> `6.2.1`](https://renovatebot.com/diffs/npm/@codemirror%2fstate/6.2.0/6.2.1) | [![age](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.1/compatibility-slim/6.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@codemirror%2fstate/6.2.1/confidence-slim/6.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>codemirror/state</summary> ### [`v6.2.1`](https://togithub.com/codemirror/state/blob/HEAD/CHANGELOG.md#&#8203;621-2023-05-23) [Compare Source](https://togithub.com/codemirror/state/compare/6.2.0...6.2.1) ##### Bug fixes Fix an issue that could cause `RangeSet.compare` to miss changes in the set of active ranges around a point range. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-07 11:56:44 +02:00
"@codemirror/state": "6.2.1",
"@xmldom/xmldom": "^0.8.4",
"json5": "^2.2.2",
chore(deps): update dependency @types/react to v17.0.65 (#4695) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`17.0.64` -> `17.0.65`](https://renovatebot.com/diffs/npm/@types%2freact/17.0.64/17.0.65) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/17.0.64/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/17.0.64/17.0.65?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44My4wIiwidXBkYXRlZEluVmVyIjoiMzYuODMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-09-14 02:27:31 +02:00
"@types/react": "17.0.65",
2023-07-04 16:55:40 +02:00
"@types/react-dom": "17.0.20",
chore(deps): update dependency semver to v7.5.4 (#4297) [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [semver](https://togithub.com/npm/node-semver) | [`7.5.3` -> `7.5.4`](https://renovatebot.com/diffs/npm/semver/7.5.3/7.5.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/semver/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/semver/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/semver/7.5.3/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/semver/7.5.3/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>npm/node-semver (semver)</summary> ### [`v7.5.4`](https://togithub.com/npm/node-semver/blob/HEAD/CHANGELOG.md#754-2023-07-07) [Compare Source](https://togithub.com/npm/node-semver/compare/v7.5.3...v7.5.4) ##### Bug Fixes - [`cc6fde2`](https://togithub.com/npm/node-semver/commit/cc6fde2d34b95cb600d126649d926901bd2a9703) [#&#8203;588](https://togithub.com/npm/node-semver/pull/588) trim each range set before parsing ([@&#8203;lukekarrys](https://togithub.com/lukekarrys)) - [`99d8287`](https://togithub.com/npm/node-semver/commit/99d8287516a1d2abf0286033e2e26eca6b69c09f) [#&#8203;583](https://togithub.com/npm/node-semver/pull/583) correctly parse long build ids as valid ([#&#8203;583](https://togithub.com/npm/node-semver/issues/583)) ([@&#8203;lukekarrys](https://togithub.com/lukekarrys)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Unleash/unleash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-07-20 20:54:00 +02:00
"semver": "7.5.4"
},
2017-02-23 22:18:23 +01:00
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/__mocks__/fileMock.js",
"\\.svg": "<rootDir>/src/__mocks__/svgMock.js",
2017-02-23 22:18:23 +01:00
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
2021-02-05 14:24:22 +01:00
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
2021-02-05 14:33:32 +01:00
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"parserOptions": {
"warnOnUnsupportedTypeScriptVersion": false
},
"rules": {
"no-restricted-globals": "off",
"no-useless-computed-key": "off",
2023-02-07 11:20:44 +01:00
"import/no-anonymous-default-export": "off",
"react-hooks/exhaustive-deps": "off"
},
"ignorePatterns": [
"cypress"
]
}
2016-11-10 14:26:24 +01:00
}