renovate[bot]
0bb5a3d076
chore(deps): update dependency vitest to v0.25.1 ( #2384 )
...
[![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.24.3` ->
`0.25.1`](https://renovatebot.com/diffs/npm/vitest/0.24.3/0.25.1 ) |
[![age](https://badges.renovateapi.com/packages/npm/vitest/0.25.1/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/vitest/0.25.1/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/vitest/0.25.1/compatibility-slim/0.24.3 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/vitest/0.25.1/confidence-slim/0.24.3 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>vitest-dev/vitest</summary>
###
[`v0.25.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.1 )
[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.25.0...v0.25.1 )
##### 🚀 Features
- Add `vi.setConfig` helper - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2293 ](https://togithub.com/vitest-dev/vitest/issues/2293 )
- Allow hooks to be executed in a stack or list - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2294 ](https://togithub.com/vitest-dev/vitest/issues/2294 )
##### 🐞 Bug Fixes
- Always rewrite defined jsdom keys - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2290 ](https://togithub.com/vitest-dev/vitest/issues/2290 )
- Default reporter regression - by
[@​antfu](https://togithub.com/antfu ) in
[https://github.com/vitest-dev/vitest/issues/2292 ](https://togithub.com/vitest-dev/vitest/issues/2292 )
- Don't fail `bench` when using options - by
[@​poyoho](https://togithub.com/poyoho ) in
[https://github.com/vitest-dev/vitest/issues/2295 ](https://togithub.com/vitest-dev/vitest/issues/2295 )
##### [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.25.0...v0.25.1 )
###
[`v0.25.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.25.0 )
[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.24.5...v0.25.0 )
##### ✅ Builtin TypeChecking
In v0.25.0, Vitest allows you to write tests for your types, using
`expectTypeOf` or `assertType` syntaxes. By default all tests inside
`*.test-d.ts` files are considered type tests. Run `vitest typecheck` to
run type tests.
```ts
// my.test-d.ts
import { assertType, expectTypeOf } from 'vitest'
import { mount } from './mount.js'
test('my types work properly', () => {
expectTypeOf(mount).toBeFunction()
expectTypeOf(mount).parameter(0).toMatchTypeOf<{ name: string }>()
// @​ts-expect-error name is a string
assertType(mount({ name: 42 }))
})
```
Learn more at [the
documentation](https://vitest.dev/guide/testing-types.html ) and this
[RFC](https://togithub.com/vitest-dev/vitest/issues/1954 )
##### 🚨 Breaking Changes
- Return context in `startVitest()` - by
[@​antfu](https://togithub.com/antfu ) in
[https://github.com/vitest-dev/vitest/issues/2072 ](https://togithub.com/vitest-dev/vitest/issues/2072 )
##### 🚀 Features
- `onTestFailed` hook - by [@​antfu](https://togithub.com/antfu )
in
[https://github.com/vitest-dev/vitest/issues/2210 ](https://togithub.com/vitest-dev/vitest/issues/2210 )
- Display error frame if present (like Vite) - by
[@​haikyuu](https://togithub.com/haikyuu ) and
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2257 ](https://togithub.com/vitest-dev/vitest/issues/2257 )
- Benchmark table report - by
[@​poyoho](https://togithub.com/poyoho ) in
[https://github.com/vitest-dev/vitest/issues/2179 ](https://togithub.com/vitest-dev/vitest/issues/2179 )
- Add typechecking functionality - by
[@​sheremet-va](https://togithub.com/sheremet-va ) and
[@​antfu](https://togithub.com/antfu ) in
[https://github.com/vitest-dev/vitest/issues/2107 ](https://togithub.com/vitest-dev/vitest/issues/2107 )
##### 🐞 Bug Fixes
- Clear full screen only in watch mode - by
[@​sheremet-va](https://togithub.com/sheremet-va )
[<samp>(c3d89)</samp>](https://togithub.com/vitest-dev/vitest/commit/c3d89504 )
- Don't serialize symbols and immutables - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2266 ](https://togithub.com/vitest-dev/vitest/issues/2266 )
- Use --conditions instead of -C - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2267 ](https://togithub.com/vitest-dev/vitest/issues/2267 )
- Show correct stack trace in errors and console - by
[@​sheremet-va](https://togithub.com/sheremet-va ) and
[@​antfu](https://togithub.com/antfu ) in
[https://github.com/vitest-dev/vitest/issues/2248 ](https://togithub.com/vitest-dev/vitest/issues/2248 )
- Align `.each` behavior with jest - by
[@​bartoszgolebiowski](https://togithub.com/bartoszgolebiowski )
and [@​antfu](https://togithub.com/antfu ) in
[https://github.com/vitest-dev/vitest/issues/2064 ](https://togithub.com/vitest-dev/vitest/issues/2064 )
- Remove undefined values in options - by
[@​g4rry420](https://togithub.com/g4rry420 ) and
[@​antfu](https://togithub.com/antfu ) in
[https://github.com/vitest-dev/vitest/issues/2281 ](https://togithub.com/vitest-dev/vitest/issues/2281 )
- **coverage**: Istanbul provider to preserve implicit else - by
[@​AriPerkkio](https://togithub.com/AriPerkkio ) in
[https://github.com/vitest-dev/vitest/issues/2275 ](https://togithub.com/vitest-dev/vitest/issues/2275 )
##### [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.24.5...v0.25.0 )
###
[`v0.24.5`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.24.5 )
[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.24.4...v0.24.5 )
##### 🚀 Features
- **vite-node**: Trigger beforeFullReload / beforePrune / invalidate
hook - by [@​ycmjason](https://togithub.com/ycmjason ) in
[https://github.com/vitest-dev/vitest/issues/2079 ](https://togithub.com/vitest-dev/vitest/issues/2079 )
##### 🐞 Bug Fixes
- Respect folders with dot at the start, when mocking - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2244 ](https://togithub.com/vitest-dev/vitest/issues/2244 )
- Prevent using mocks in rpc - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2254 ](https://togithub.com/vitest-dev/vitest/issues/2254 )
- Show actual unhandled errors, serialize DOMErrors - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2253 ](https://togithub.com/vitest-dev/vitest/issues/2253 )
- Load deps reporter - by
[@​poyoho](https://togithub.com/poyoho ) in
[https://github.com/vitest-dev/vitest/issues/2249 ](https://togithub.com/vitest-dev/vitest/issues/2249 )
##### [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.24.4...v0.24.5 )
###
[`v0.24.4`](https://togithub.com/vitest-dev/vitest/releases/tag/v0.24.4 )
[Compare
Source](https://togithub.com/vitest-dev/vitest/compare/v0.24.3...v0.24.4 )
##### 🚀 Features
- **vite-node**: Don't exit on uncaughtException in watch mode - by
[@​poyoho](https://togithub.com/poyoho ) in
[https://github.com/vitest-dev/vitest/issues/2186 ](https://togithub.com/vitest-dev/vitest/issues/2186 )
##### 🐞 Bug Fixes
- Add/Update `repository` properties in `package.json` - by
[@​silverwind](https://togithub.com/silverwind ) in
[https://github.com/vitest-dev/vitest/issues/2151 ](https://togithub.com/vitest-dev/vitest/issues/2151 )
- Ignore benchmark.reporters in getSerializableConfig - by
[@​kainstar](https://togithub.com/kainstar ) in
[https://github.com/vitest-dev/vitest/issues/2164 ](https://togithub.com/vitest-dev/vitest/issues/2164 )
- Improve config's default exclude - by
[@​haikyuu](https://togithub.com/haikyuu ) and
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2188 ](https://togithub.com/vitest-dev/vitest/issues/2188 )
- Always use node condition - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/1919 ](https://togithub.com/vitest-dev/vitest/issues/1919 )
- Clear terminal output before running tests, show errors in correct
order - by [@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2228 ](https://togithub.com/vitest-dev/vitest/issues/2228 )
- Improve compatibility with native Node CJS resolution - by
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2226 ](https://togithub.com/vitest-dev/vitest/issues/2226 )
- Don't use resolved paths if they don't actually exist - by
[@​simon-abbott](https://togithub.com/simon-abbott ) in
[https://github.com/vitest-dev/vitest/issues/1868 ](https://togithub.com/vitest-dev/vitest/issues/1868 )
- **cli**:
- Set inputNamePattern to RegExp source instead of string - by
[@​rafedramzi](https://togithub.com/rafedramzi ) in
[https://github.com/vitest-dev/vitest/issues/2201 ](https://togithub.com/vitest-dev/vitest/issues/2201 )
- Normalize argument path - by
[@​poyoho](https://togithub.com/poyoho ) in
[https://github.com/vitest-dev/vitest/issues/2180 ](https://togithub.com/vitest-dev/vitest/issues/2180 )
- **coverage**:
- Trim URL parameters from file paths in istanbul coverage - by
[@​AriPerkkio](https://togithub.com/AriPerkkio ) in
[https://github.com/vitest-dev/vitest/issues/2232 ](https://togithub.com/vitest-dev/vitest/issues/2232 )
- Trim URL parameters from file paths in c8 coverage - by
[@​OrestHk](https://togithub.com/OrestHk ) and
[@​sheremet-va](https://togithub.com/sheremet-va ) in
[https://github.com/vitest-dev/vitest/issues/2181 ](https://togithub.com/vitest-dev/vitest/issues/2181 )
- **reporter**:
- Load custom reporter using `executeFile` - by
[@​poyoho](https://togithub.com/poyoho ) in
[https://github.com/vitest-dev/vitest/issues/2184 ](https://togithub.com/vitest-dev/vitest/issues/2184 )
- **vitest**:
- Return detailed error when using toHaveReturnedWith - by
[@​azaleta](https://togithub.com/azaleta ) in
[https://github.com/vitest-dev/vitest/issues/2163 ](https://togithub.com/vitest-dev/vitest/issues/2163 )
##### [View changes on
GitHub](https://togithub.com/vitest-dev/vitest/compare/v0.24.3...v0.24.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://app.renovatebot.com/dashboard#github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTkuMCJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-10 15:58:27 +01:00
renovate[bot]
0649262c70
chore(deps): update dependency eslint to v8.27.0 ( #2374 )
...
[![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.26.0` ->
`8.27.0`](https://renovatebot.com/diffs/npm/eslint/8.26.0/8.27.0 ) |
[![age](https://badges.renovateapi.com/packages/npm/eslint/8.27.0/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.27.0/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/eslint/8.27.0/compatibility-slim/8.26.0 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.27.0/confidence-slim/8.26.0 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>eslint/eslint</summary>
### [`v8.27.0`](https://togithub.com/eslint/eslint/releases/tag/v8.27.0 )
[Compare
Source](https://togithub.com/eslint/eslint/compare/v8.26.0...v8.27.0 )
#### Features
-
[`f14587c`](f14587c42b
)
feat: new `no-new-native-nonconstructor` rule
([#​16368](https://togithub.com/eslint/eslint/issues/16368 ))
(Sosuke Suzuki)
-
[`978799b`](978799bd5c
)
feat: add new rule `no-empty-static-block`
([#​16325](https://togithub.com/eslint/eslint/issues/16325 ))
(Sosuke Suzuki)
-
[`69216ee`](69216ee69c
)
feat: no-empty suggest to add comment in empty BlockStatement
([#​16470](https://togithub.com/eslint/eslint/issues/16470 ))
(Nitin Kumar)
-
[`319f0a5`](319f0a5491
)
feat: use `context.languageOptions.ecmaVersion` in core rules
([#​16458](https://togithub.com/eslint/eslint/issues/16458 ))
(Milos Djermanovic)
#### Bug Fixes
-
[`c3ce521`](c3ce5212f6
)
fix: Ensure unmatched glob patterns throw an error
([#​16462](https://togithub.com/eslint/eslint/issues/16462 ))
(Nicholas C. Zakas)
-
[`886a038`](886a038689
)
fix: handle files with unspecified path in `getRulesMetaForResults`
([#​16437](https://togithub.com/eslint/eslint/issues/16437 ))
(Francesco Trotta)
#### Documentation
-
[`ce93b42`](ce93b429bf
)
docs: Stylelint property-no-unknown
([#​16497](https://togithub.com/eslint/eslint/issues/16497 )) (Nick
Schonning)
-
[`d2cecb4`](d2cecb4ad2
)
docs: Stylelint declaration-block-no-shorthand-property-overrides
([#​16498](https://togithub.com/eslint/eslint/issues/16498 )) (Nick
Schonning)
-
[`0a92805`](0a92805d77
)
docs: stylelint color-hex-case
([#​16496](https://togithub.com/eslint/eslint/issues/16496 )) (Nick
Schonning)
-
[`74a5af4`](74a5af487a
)
docs: fix stylelint error
([#​16491](https://togithub.com/eslint/eslint/issues/16491 ))
(Milos Djermanovic)
-
[`324db1a`](324db1a11e
)
docs: explicit stylelint color related rules
([#​16465](https://togithub.com/eslint/eslint/issues/16465 )) (Nick
Schonning)
-
[`94dc4f1`](94dc4f19ba
)
docs: use Stylelint for HTML files
([#​16468](https://togithub.com/eslint/eslint/issues/16468 )) (Nick
Schonning)
-
[`cc6128d`](cc6128db4f
)
docs: enable stylelint declaration-block-no-duplicate-properties
([#​16466](https://togithub.com/eslint/eslint/issues/16466 )) (Nick
Schonning)
-
[`d03a8bf`](d03a8bf897
)
docs: Add heading to justification explanation
([#​16430](https://togithub.com/eslint/eslint/issues/16430 ))
(Maritaria)
-
[`8a15968`](8a159686f9
)
docs: add Stylelint configuration and cleanup
([#​16379](https://togithub.com/eslint/eslint/issues/16379 )) (Nick
Schonning)
-
[`9b0a469`](9b0a469d1e
)
docs: note commit messages don't support scope
([#​16435](https://togithub.com/eslint/eslint/issues/16435 )) (Andy
Edwards)
-
[`1581405`](15814057fd
)
docs: improve context.getScope() docs
([#​16417](https://togithub.com/eslint/eslint/issues/16417 )) (Ben
Perlmutter)
-
[`b797149`](b7971496e9
)
docs: update formatters template
([#​16454](https://togithub.com/eslint/eslint/issues/16454 ))
(Milos Djermanovic)
-
[`5ac4de9`](5ac4de911f
)
docs: fix link to formatters on the Core Concepts page
([#​16455](https://togithub.com/eslint/eslint/issues/16455 ))
(Vladislav)
-
[`33313ef`](33313ef562
)
docs: core-concepts: fix link to semi rule
([#​16453](https://togithub.com/eslint/eslint/issues/16453 ))
(coderaiser)
</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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTkuMCJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-10 08:21:34 +01:00
renovate[bot]
81ff552869
chore(deps): update dependency msw to v0.48.1 ( #2375 )
...
[![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.47.4` ->
`0.48.1`](https://renovatebot.com/diffs/npm/msw/0.47.4/0.48.1 ) |
[![age](https://badges.renovateapi.com/packages/npm/msw/0.48.1/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/msw/0.48.1/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/msw/0.48.1/compatibility-slim/0.47.4 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/msw/0.48.1/confidence-slim/0.47.4 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>mswjs/msw</summary>
### [`v0.48.1`](https://togithub.com/mswjs/msw/releases/tag/v0.48.1 )
[Compare
Source](https://togithub.com/mswjs/msw/compare/v0.48.0...v0.48.1 )
#### v0.48.1 (2022-11-10)
##### Bug Fixes
- bufferUtils import path
([#​1453](https://togithub.com/mswjs/msw/issues/1453 ))
([`91b2902`](91b2902ded
))
[@​cksal0805](https://togithub.com/cksal0805 )
### [`v0.48.0`](https://togithub.com/mswjs/msw/releases/tag/v0.48.0 )
[Compare
Source](https://togithub.com/mswjs/msw/compare/v0.47.4...v0.48.0 )
#### v0.48.0 (2022-11-08)
##### Features
- add "SetupApi" base class
([#​1445](https://togithub.com/mswjs/msw/issues/1445 ))
([`85ba844`](85ba8440f5
))
[@​Toxiapo](https://togithub.com/Toxiapo )
[@​kettanaito](https://togithub.com/kettanaito )
- do not interfere with shared workers
([#​1448](https://togithub.com/mswjs/msw/issues/1448 ))
([`670dda7`](670dda7b97
))
[@​mucsi96](https://togithub.com/mucsi96 )
[@​kettanaito](https://togithub.com/kettanaito )
- makes the library esm-compatible
([#​1399](https://togithub.com/mswjs/msw/issues/1399 ))
([`41798eb`](41798ebc69
))
[@​ivanhofer](https://togithub.com/ivanhofer )
[@​kettanaito](https://togithub.com/kettanaito )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTkuMCJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-10 08:21:18 +01:00
renovate[bot]
5dd319e414
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.13.0 ( #2372 )
...
[![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.12.4` ->
`4.13.0`](https://renovatebot.com/diffs/npm/@uiw%2fcodemirror-theme-duotone/4.12.4/4.13.0 )
|
[![age](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.13.0/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.13.0/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.13.0/compatibility-slim/4.12.4 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/@uiw%2fcodemirror-theme-duotone/4.13.0/confidence-slim/4.12.4 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>uiwjs/react-codemirror</summary>
###
[`v4.13.0`](https://togithub.com/uiwjs/react-codemirror/releases/tag/v4.13.0 )
[Compare
Source](https://togithub.com/uiwjs/react-codemirror/compare/v4.12.4...v4.13.0 )
[![](https://img.shields.io/badge/Open%20in-unpkg-blue )](https://uiwjs.github.io/npm-unpkg/#/pkg/@​uiw/react-codemirror@4.13.0/file/README.md )
Documentation v4.13.0:
https://raw.githack.com/uiwjs/react-codemirror/15bae9c/index.html \
Comparing Changes:
https://github.com/uiwjs/react-codemirror/compare/v4.12.4...v4.13.0
```shell
npm i @​uiw/react-codemirror@4.13.0
```
- 🌟 feat(basic-setup): add `tabSize` options
([#​400](https://togithub.com/uiwjs/react-codemirror/issues/400 )).
[`cb2efd0`](https://togithub.com/uiwjs/react-codemirror/commit/cb2efd0 )
[@​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://app.renovatebot.com/dashboard#github/Unleash/unleash ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTkuMCJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-10 06:24:17 +00:00
renovate[bot]
e9501d3f83
chore(deps): update dependency vite to v3.2.3 ( #2364 )
...
[![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 )) | [`3.2.1` ->
`3.2.3`](https://renovatebot.com/diffs/npm/vite/3.2.1/3.2.3 ) |
[![age](https://badges.renovateapi.com/packages/npm/vite/3.2.3/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/vite/3.2.3/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/vite/3.2.3/compatibility-slim/3.2.1 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/vite/3.2.3/confidence-slim/3.2.1 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>vitejs/vite</summary>
###
[`v3.2.3`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small323-2022-11-07-small )
[Compare
Source](https://togithub.com/vitejs/vite/compare/v3.2.2...v3.2.3 )
- refactor: change style.innerHTML to style.textContent
([#​10801](https://togithub.com/vitejs/vite/issues/10801 ))
([8ea71b4](https://togithub.com/vitejs/vite/commit/8ea71b4 )), closes
[#​10801](https://togithub.com/vitejs/vite/issues/10801 )
- fix: add `@types/node` as an optional peer dependency
([#​10757](https://togithub.com/vitejs/vite/issues/10757 ))
([57916a4](https://togithub.com/vitejs/vite/commit/57916a4 )), closes
[#​10757](https://togithub.com/vitejs/vite/issues/10757 )
- fix: transform import.meta.glob when scan JS/TS
[#​10634](https://togithub.com/vitejs/vite/issues/10634 )
([#​10635](https://togithub.com/vitejs/vite/issues/10635 ))
([c53ffec](https://togithub.com/vitejs/vite/commit/c53ffec )), closes
[#​10634](https://togithub.com/vitejs/vite/issues/10634 )
[#​10635](https://togithub.com/vitejs/vite/issues/10635 )
- fix(css): url() with variable in sass/less (fixes
[#​3644](https://togithub.com/vitejs/vite/issues/3644 ),
[#​7651](https://togithub.com/vitejs/vite/issues/7651 ))
([#​10741](https://togithub.com/vitejs/vite/issues/10741 ))
([fa2e47f](https://togithub.com/vitejs/vite/commit/fa2e47f )), closes
[#​3644](https://togithub.com/vitejs/vite/issues/3644 )
[#​7651](https://togithub.com/vitejs/vite/issues/7651 )
[#​10741](https://togithub.com/vitejs/vite/issues/10741 )
- feat: add `vite:afterUpdate` event
([#​9810](https://togithub.com/vitejs/vite/issues/9810 ))
([1f57f84](https://togithub.com/vitejs/vite/commit/1f57f84 )), closes
[#​9810](https://togithub.com/vitejs/vite/issues/9810 )
- perf: improve `multilineCommentsRE` regex (fix
[#​10689](https://togithub.com/vitejs/vite/issues/10689 ))
([#​10751](https://togithub.com/vitejs/vite/issues/10751 ))
([51ed059](https://togithub.com/vitejs/vite/commit/51ed059 )), closes
[#​10689](https://togithub.com/vitejs/vite/issues/10689 )
[#​10751](https://togithub.com/vitejs/vite/issues/10751 )
- perf: Use only one ps exec to find a Chromium browser opened on Mac OS
([#​10588](https://togithub.com/vitejs/vite/issues/10588 ))
([f199e90](https://togithub.com/vitejs/vite/commit/f199e90 )), closes
[#​10588](https://togithub.com/vitejs/vite/issues/10588 )
- chore: fix dev build replacing undefined
([#​10740](https://togithub.com/vitejs/vite/issues/10740 ))
([1358a3c](https://togithub.com/vitejs/vite/commit/1358a3c )), closes
[#​10740](https://togithub.com/vitejs/vite/issues/10740 )
- chore: remove non used type definitions
([#​10738](https://togithub.com/vitejs/vite/issues/10738 ))
([ee8c7a6](https://togithub.com/vitejs/vite/commit/ee8c7a6 )), closes
[#​10738](https://togithub.com/vitejs/vite/issues/10738 )
- chore(deps): update dependency
[@​rollup/plugin-commonjs](https://togithub.com/rollup/plugin-commonjs )
to v23 ([#​10611](https://togithub.com/vitejs/vite/issues/10611 ))
([cc4be70](https://togithub.com/vitejs/vite/commit/cc4be70 )), closes
[#​10611](https://togithub.com/vitejs/vite/issues/10611 )
- chore(deps): update dependency
[@​rollup/plugin-dynamic-import-vars](https://togithub.com/rollup/plugin-dynamic-import-vars )
to v2 ([#​10726](https://togithub.com/vitejs/vite/issues/10726 ))
([326f782](https://togithub.com/vitejs/vite/commit/326f782 )), closes
[#​10726](https://togithub.com/vitejs/vite/issues/10726 )
###
[`v3.2.2`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small322-2022-10-31-small )
[Compare
Source](47a78db497
...v3.2.2)
- chore: remove src/client from package
([#​10703](https://togithub.com/vitejs/vite/issues/10703 ))
([816842e](https://togithub.com/vitejs/vite/commit/816842e )), closes
[#​10703](https://togithub.com/vitejs/vite/issues/10703 )
- chore(deps): update all non-major dependencies
([#​10725](https://togithub.com/vitejs/vite/issues/10725 ))
([22cfad8](https://togithub.com/vitejs/vite/commit/22cfad8 )), closes
[#​10725](https://togithub.com/vitejs/vite/issues/10725 )
- fix: remove loaded input sourcemap (fixes
[#​8411](https://togithub.com/vitejs/vite/issues/8411 ))
([#​10705](https://togithub.com/vitejs/vite/issues/10705 ))
([eb50e3a](https://togithub.com/vitejs/vite/commit/eb50e3a )), closes
[#​8411](https://togithub.com/vitejs/vite/issues/8411 )
[#​10705](https://togithub.com/vitejs/vite/issues/10705 )
- fix: tsconfig `jsx` overrides esbuild options, reverts
[#​10374](https://togithub.com/vitejs/vite/issues/10374 )
([#​10714](https://togithub.com/vitejs/vite/issues/10714 ))
([aacf6a4](https://togithub.com/vitejs/vite/commit/aacf6a4 )), closes
[#​10374](https://togithub.com/vitejs/vite/issues/10374 )
[#​10714](https://togithub.com/vitejs/vite/issues/10714 )
- docs(changelog): fix broken url
([#​10692](https://togithub.com/vitejs/vite/issues/10692 ))
([f937ccc](https://togithub.com/vitejs/vite/commit/f937ccc )), closes
[#​10692](https://togithub.com/vitejs/vite/issues/10692 )
</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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTkuMCJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-09 22:30:23 +00:00
renovate[bot]
24d2bbcf96
chore(deps): update dependency @types/jest to v29 ( #1529 )
...
[![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 )) |
[`28.1.8` ->
`29.2.2`](https://renovatebot.com/diffs/npm/@types%2fjest/28.1.8/29.2.2 )
|
[![age](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.2/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.2/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.2/compatibility-slim/28.1.8 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.2.2/confidence-slim/28.1.8 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### 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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMTcuMiIsInVwZGF0ZWRJblZlciI6IjM0LjE3LjEifQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-09 23:04:49 +01:00
renovate[bot]
343e561bc4
chore(deps): update dependency jsdom to v20.0.2 ( #2355 )
...
[![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 ) | [`20.0.1` ->
`20.0.2`](https://renovatebot.com/diffs/npm/jsdom/20.0.1/20.0.2 ) |
[![age](https://badges.renovateapi.com/packages/npm/jsdom/20.0.2/age-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![adoption](https://badges.renovateapi.com/packages/npm/jsdom/20.0.2/adoption-slim )](https://docs.renovatebot.com/merge-confidence/ )
|
[![passing](https://badges.renovateapi.com/packages/npm/jsdom/20.0.2/compatibility-slim/20.0.1 )](https://docs.renovatebot.com/merge-confidence/ )
|
[![confidence](https://badges.renovateapi.com/packages/npm/jsdom/20.0.2/confidence-slim/20.0.1 )](https://docs.renovatebot.com/merge-confidence/ )
|
---
### Release Notes
<details>
<summary>jsdom/jsdom</summary>
###
[`v20.0.2`](https://togithub.com/jsdom/jsdom/blob/HEAD/Changelog.md#​2002 )
[Compare
Source](https://togithub.com/jsdom/jsdom/compare/20.0.1...20.0.2 )
- Fixed `xhr.abort()` to no longer give an exception when the
constructed `XMLHttpRequest` was invalid. (whamtet)
- Fixed `event.getModifierState()` on `MouseEvent` and `KeyboardEvent`
instances to properly consult the `ctrlKey`, `altKey`, `metaKey`, and
`shiftKey` properties of the event. (juzerzarif)
- Fixed custom element creation to not be affected by any modifications
to the `window.customElements` property. (bicknellr)
</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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzQuMTkuMCJ9-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-11-09 19:53:39 +00:00
Ivar Conradi Østhus
0717b281fa
fix: update resolutions
2022-11-03 15:38:51 +01:00
renovate[bot]
670836061c
chore(deps): update dependency @vitejs/plugin-react to v2.2.0 ( #2281 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-28 21:28:28 +00:00
renovate[bot]
4dda82263e
chore(deps): update dependency vite to v3.2.1 ( #2282 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-28 18:21:39 +00:00
renovate[bot]
8d6084de45
chore(deps): update emotion monorepo to v11.10.5 ( #2279 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-28 09:44:02 +02:00
renovate[bot]
7a5c4ba34c
chore(deps): update dependency @types/react-dom to v17.0.18 ( #2278 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-28 00:38:23 +00:00
renovate[bot]
58eda0e87b
chore(deps): update dependency @types/react to v17.0.52 ( #2277 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-27 21:07:30 +00:00
renovate[bot]
09bf93f9dd
chore(deps): update dependency @types/semver to v7.3.13 ( #2267 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-27 06:44:24 +00:00
renovate[bot]
c4910750f3
chore(deps): update dependency @types/react to v17.0.51 ( #2259 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-27 03:48:46 +00:00
renovate[bot]
ed9b7f0a77
chore(deps): update dependency @codemirror/lang-json to v6.0.1 ( #2256 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-26 20:13:52 +00:00
renovate[bot]
2f822cba2b
chore(deps): update dependency immer to v9.0.16 ( #2233 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-22 19:06:38 +00:00
renovate[bot]
0aea76f968
chore(deps): update react-router monorepo to v6.4.2 ( #2228 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-22 10:24:45 +00:00
renovate[bot]
fc32c0b4d4
chore(deps): update dependency eslint to v8.26.0 ( #2226 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-22 02:48:59 +00:00
renovate[bot]
ab618d307a
chore(deps): update dependency vitest to v0.24.3 ( #2224 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-21 23:36:46 +00:00
renovate[bot]
95293c5769
chore(deps): update dependency vite to v3.1.8 ( #2221 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-21 19:38:27 +00:00
renovate[bot]
bc259db889
chore(deps): update dependency vite-tsconfig-paths to v3.5.2 ( #2219 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-21 01:56:06 +00:00
renovate[bot]
f713190e34
chore(deps): update dependency @xmldom/xmldom to ^0.8.0 ( #2210 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-19 20:59:27 +00:00
renovate[bot]
882cef3fdb
chore(deps): update dependency vite-plugin-svgr to v2.2.2 ( #2199 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-19 17:33:20 +00:00
Ivar Conradi Østhus
e52611debd
fix: pin @xmldom/xmldom to v0.7.6
2022-10-18 20:51:08 +02:00
Nuno Góis
e153eab2d1
fix: sandbox codemirror/state 6.1.2 ( #2195 )
2022-10-14 09:44:59 +00:00
Aneesh Relan
1a09d1778b
feat: prettify large numbers in metrics ( #2176 )
...
* prettify large numbers
* add tooltip for larger numbers
* add test ids, add unit test
* move dependency to devDependency
* remove unused import
* use conditional render component
* use prettify large number component for feature overview metrics
2022-10-12 16:19:37 +01:00
renovate[bot]
514d23524c
chore(deps): update dependency sass to v1.55.0 ( #2180 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-12 06:23:20 +00:00
renovate[bot]
78f4f71604
chore(deps): update dependency msw to v0.47.4 ( #2178 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-12 00:40:57 +00:00
renovate[bot]
815d2fbf28
chore(deps): update dependency eslint to v8.25.0 ( #2174 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-11 18:57:35 +00:00
renovate[bot]
dd926923ac
chore(deps): update dependency @vitejs/plugin-react to v2.1.0 ( #2171 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-11 14:18:19 +00:00
renovate[bot]
14b802668c
chore(deps): update dependency @uiw/react-codemirror to v4.12.4 ( #2170 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-11 04:19:21 +00:00
renovate[bot]
260564e309
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.12.4 ( #2169 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-11 02:02:06 +00:00
renovate[bot]
6c78f3dba8
chore(deps): update dependency @testing-library/dom to v8.19.0 ( #2168 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-10 23:04:32 +00:00
Tymoteusz Czech
879e1358ef
feat: frontend app error boundary ( #2144 )
...
* feat: frontend app error boundary
* fix: freeze added dependency
* update yarn lock
2022-10-10 12:18:37 +02:00
renovate[bot]
e34cabdce5
chore(deps): update dependency vite-tsconfig-paths to v3.5.1 ( #2155 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-09 23:38:06 +00:00
renovate[bot]
9477babb3f
chore(deps): update dependency typescript to v4.8.4 ( #2154 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-07 17:54:29 +00:00
renovate[bot]
c51a70a2b6
chore(deps): update dependency semver to v7.3.8 ( #2152 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-07 14:42:35 +00:00
renovate[bot]
b80297fed7
chore(deps): update dependency jsdom to v20.0.1 ( #2150 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-07 11:38:35 +00:00
renovate[bot]
73232e61b8
chore(deps): update dependency date-fns to v2.29.3 ( #2148 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-07 05:12:58 +00:00
renovate[bot]
1f6974cede
chore(deps): update dependency classnames to v2.3.2 ( #2147 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-07 02:41:23 +00:00
renovate[bot]
7cd15f9f66
chore(deps): update dependency @types/react to v17.0.50 ( #2146 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-06 23:38:48 +00:00
renovate[bot]
f093365157
chore(deps): update dependency @openapitools/openapi-generator-cli to v2.5.2 ( #2140 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-06 00:56:01 +00:00
renovate[bot]
1ee64170b9
fix(deps): pin dependencies ( #2139 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-05 23:33:51 +02:00
Ivar Conradi Østhus
ef965d66de
feat: Open-Source Strategy Constraints ( #2112 )
...
This commits lift the flags and makes Strategy Constraints
available to all users of Unleash.
Read more in the docs:
https://docs.getunleash.io/advanced/strategy_constraints
Enjoy!
@ivarconr
Author and maintainer
2022-09-30 10:45:34 +02:00
Fredrik Strand Oseberg
54633500fd
Feat/use collaborate data ( #2067 )
...
* feat: initial architecture
* feat: add generic types
* fix: refactor
* feat: style notification
* feat: remove useFeatureImmutable
* fix: remove casting
* fix: ensure data is present
* fix: revive useFeatureImmutable
* Update frontend/src/component/common/StaleDataNotification/StaleDataNotification.tsx
Co-authored-by: Nuno Góis <github@nunogois.com>
* Update frontend/src/component/common/StaleDataNotification/StaleDataNotification.tsx
Co-authored-by: Nuno Góis <github@nunogois.com>
* Update frontend/src/component/common/StaleDataNotification/StaleDataNotification.tsx
Co-authored-by: Nuno Góis <github@nunogois.com>
* Update frontend/src/component/common/StaleDataNotification/StaleDataNotification.tsx
Co-authored-by: Nuno Góis <github@nunogois.com>
* Update frontend/src/component/common/StaleDataNotification/StaleDataNotification.tsx
Co-authored-by: Nuno Góis <github@nunogois.com>
* fix: pr comments
* fix: change order
Co-authored-by: Nuno Góis <github@nunogois.com>
2022-09-16 15:23:08 +02:00
renovate[bot]
318c235f20
chore(deps): update dependency msw to v0.46.0 ( #2033 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-01 05:52:49 +00:00
renovate[bot]
edaa160778
chore(deps): update dependency sass to v1.54.8 ( #2012 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-09-01 02:29:31 +00:00
renovate[bot]
6e33942193
chore(deps): update dependency eslint to v8.23.0 ( #2006 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-31 19:27:55 +00:00
renovate[bot]
9dc12c018f
chore(deps): update dependency @types/react to v17.0.49 ( #2010 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-30 23:49:49 +00:00
renovate[bot]
dfba669c67
chore(deps): update emotion monorepo to v11.10.4 ( #2005 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-30 20:42:48 +00:00
renovate[bot]
5d8c81d659
chore(deps): update material-ui monorepo ( #2001 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-30 13:01:13 +00:00
renovate[bot]
5ddc54b760
chore(deps): update dependency sass to v1.54.6 ( #1997 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-30 12:51:35 +00:00
olav
4cc3728cf0
chore: update emotion ( #1998 )
...
* chore: update emotion
* chore: update snapshots
2022-08-30 10:30:32 +02:00
renovate[bot]
587202923d
chore(deps): update dependency tss-react to v4 ( #1985 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-30 08:23:37 +02:00
renovate[bot]
f76a68dac1
chore(deps): update material-ui monorepo ( #1978 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-26 13:26:28 +00:00
Nuno Góis
2d8dfafea9
chore: upgrade vite to v3 ( #1977 )
2022-08-26 13:49:44 +01:00
renovate[bot]
ad4393b8d7
chore(deps): update dependency @uiw/react-codemirror to v4.11.6 ( #1972 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-26 10:31:58 +00:00
renovate[bot]
080802e369
chore(deps): update dependency @uiw/codemirror-theme-duotone to v4.11.6 ( #1971 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-26 12:18:58 +02:00
renovate[bot]
b38f220a18
chore(deps): update dependency @types/jest to v28.1.8 ( #1970 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-26 12:04:19 +02:00
renovate[bot]
b16dfc9b95
chore(deps): update dependency msw to v0.45.0 ( #1242 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-24 00:47:30 +00:00
renovate[bot]
5c4ff63702
chore(deps): pin dependency @uiw/codemirror-theme-duotone to 4.11.5 ( #1241 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-23 21:37:59 +00:00
renovate[bot]
28dbb878e2
chore(deps): update dependency @uiw/react-codemirror to v4.11.5 ( #1240 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-23 17:50:25 +00:00
Fredrik Strand Oseberg
6818a82cd1
Feat/dark mode exp ( #1137 )
...
* feat: add dark mode theme
* fix: feature metrics
* fix: add color
* styling
* fix: add switch
* fix: form sidebar
* fix: remove console log
* fix: add properties
* fix: strategy container
* feat: feature flag
* fix: tests
* fix: build
* fix: logo
* fix: icon
* fix: update snapshots
* fix: CES operator
* fix: typography
* fix: input styling
* fix: remove initial load
* fix: change flag name
* fix: refactor to custom hook
* fix: remove unused import
* fix: dialog headers
* fix: use uiConfig flags instead of flags
2022-08-23 14:20:02 +02:00
renovate[bot]
337e7888d2
chore(deps): update dependency react-hooks-global-state to v2 ( #1236 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-23 11:51:17 +02:00
renovate[bot]
4fa7b548f1
chore(deps): update dependency vitest to v0.22.1 ( #1235 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-20 10:35:00 +00:00
renovate[bot]
6c4c7fc67b
chore(deps): update dependency @testing-library/dom to v8.17.1 ( #1233 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-20 06:14:41 +00:00
renovate[bot]
ca319ee357
chore(deps): update dependency sass to v1.54.5 ( #1234 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-20 02:01:37 +00:00
renovate[bot]
0960317bbf
chore(deps): update material-ui monorepo ( #1232 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 23:06:22 +00:00
renovate[bot]
a37aa8975d
chore(deps): update dependency vite to v2.9.15 ( #1231 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 20:22:19 +00:00
renovate[bot]
70b0942efe
chore(deps): update dependency sass to v1.54.4 ( #1230 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 17:09:35 +00:00
renovate[bot]
d210578df6
chore(deps): update dependency date-fns to v2.29.2 ( #1229 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 14:35:56 +00:00
renovate[bot]
c6fb196228
chore(deps): update dependency @types/semver to v7.3.12 ( #1228 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 14:21:40 +00:00
renovate[bot]
a8f6ea15b0
chore(deps): update dependency @testing-library/user-event to v14.4.3 ( #1225 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 14:07:17 +00:00
renovate[bot]
ad85f10851
chore(deps): update dependency @types/jest to v28.1.7 ( #1227 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 13:53:04 +00:00
renovate[bot]
99d251a424
chore(deps): update dependency @testing-library/jest-dom to v5.16.5 ( #1224 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-19 11:16:00 +00:00
renovate[bot]
d577c7516b
chore(deps): pin dependencies ( #1223 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-18 13:56:39 +00:00
renovate[bot]
98376d73d3
chore(deps): update dependency eslint to v8.22.0 ( #1127 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-18 15:16:32 +02:00
renovate[bot]
04f8b139b0
chore(deps): update dependency chart.js to v3.9.1
2022-08-04 17:01:38 +00:00
Fredrik Strand Oseberg
6614b98322
chore: remove unused codemirror deps ( #1202 )
2022-08-04 16:24:13 +02:00
renovate[bot]
cc9bef1d43
chore(deps): update dependency sass to v1.54.2
2022-08-04 05:38:40 +00:00
renovate[bot]
528d8c09f0
chore(deps): update dependency @testing-library/user-event to v14.4.1
2022-08-04 02:22:08 +00:00
renovate[bot]
789fc08152
chore(deps): update dependency sass to v1.54.1
2022-08-03 23:25:49 +00:00
renovate[bot]
4486901a4b
chore(deps): update dependency @codemirror/state to v6.1.1
2022-08-03 17:14:53 +00:00
renovate[bot]
ebe7917d7b
chore(deps): update dependency copy-to-clipboard to v3.3.2
2022-08-03 14:25:33 +00:00
renovate[bot]
6bf0211140
chore(deps): update dependency vitest to v0.20.3
2022-08-03 05:30:36 +00:00
renovate[bot]
f44b169ca7
chore(deps): update material-ui monorepo ( #1174 )
...
* chore(deps): update material-ui monorepo
* refactor: update snapshots
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: olav <mail@olav.io>
2022-08-02 10:32:11 +02:00
renovate[bot]
79aa2d4ebe
chore(deps): update dependency sass to v1.54.0
2022-08-02 07:49:55 +00:00
renovate[bot]
a235d4ee09
chore(deps): update dependency react-chartjs-2 to v4.3.1
2022-08-02 07:33:48 +00:00
renovate[bot]
82ca17b1a1
chore(deps): update dependency msw to v0.44.2
2022-08-02 03:42:34 +00:00
renovate[bot]
fc9e2b1712
chore(deps): update dependency date-fns to v2.29.1
2022-08-01 23:44:19 +00:00
renovate[bot]
15efe6e994
chore(deps): update dependency @testing-library/dom to v8.16.0
2022-08-01 19:41:42 +00:00
olav
30ac482d7a
chore: update mui ( #1173 )
2022-08-01 13:02:56 +02:00
renovate[bot]
dc91c21ab9
chore(deps): update dependency @testing-library/user-event to v14.3.0 ( #1172 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-01 12:42:35 +02:00
olav
b2a77a13f8
chore: update cypress ( #1170 )
2022-08-01 11:50:59 +02:00
renovate[bot]
59f1f22959
chore(deps): update dependency @types/jest to v28 ( #1056 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-08-01 11:37:14 +02:00
renovate[bot]
7df59cf286
chore(deps): update dependency @types/react to v17.0.48
2022-07-28 00:23:27 +00:00
renovate[bot]
fe36779927
chore(deps): update dependency vite-plugin-svgr to v2.2.1
2022-07-27 21:40:34 +00:00
renovate[bot]
aaa16cbf21
chore(deps): update dependency vite to v2.9.14
2022-07-27 19:29:52 +00:00
renovate[bot]
0dc3ae2af9
chore(deps): update dependency tss-react to v3.7.1
2022-07-27 16:14:18 +00:00
renovate[bot]
5ea9de021e
chore(deps): update dependency chart.js to v3.8.2
2022-07-27 13:43:21 +00:00
renovate[bot]
c4da09a050
chore(deps): pin dependencies ( #1155 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com>
2022-07-27 11:56:50 +00:00
Fredrik Strand Oseberg
d4fcf52020
feat/playground-second-iteration ( #1139 )
...
* fix: rearrange ui
* fix: make request on load
* fix: default to the first environment
* feat: add codemirror
* fix: layout
* fix: styling
* feat: add popover
* feat: variant popover
* fix: add sticky
* feat: resolve input
* refactor: date field
* fix: move deps
* fix: clean up any
* fix: resolve import
* fix: hide columns on mobile
* fix: search style
* fix: rename styles
* fix: PR comments
* fix: add popover for guidance
* fix: guidance popover
* fix: verbose function
* fix: wording
Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com>
2022-07-22 13:15:28 +02:00
renovate[bot]
7d1c23717f
chore(deps): update dependency vitest to v0.16.0
2022-06-28 19:53:44 +00:00
renovate[bot]
75b3107808
chore(deps): update dependency vite-plugin-svgr to v2.2.0
2022-06-28 16:30:49 +00:00
renovate[bot]
853d763194
chore(deps): update dependency sass to v1.53.0
2022-06-28 04:38:12 +00:00
renovate[bot]
4a5676293d
chore(deps): update dependency @testing-library/dom to v8.14.0
2022-06-28 01:24:27 +00:00
renovate[bot]
d22dd96304
chore(deps): update material-ui monorepo
2022-06-27 22:56:12 +00:00
renovate[bot]
89545611ae
chore(deps): update dependency vite to v2.9.13
2022-06-27 20:03:55 +00:00
renovate[bot]
e36ae52162
chore(deps): update dependency msw to v0.42.3
2022-06-27 16:48:59 +00:00
renovate[bot]
afd36a6cf1
chore(deps): update dependency jsdom to v20 ( #1106 )
...
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-06-27 12:53:07 +00:00
renovate[bot]
c9aed1e6e2
chore(deps): update dependency eslint to v8.18.0
2022-06-18 03:44:42 +00:00
renovate[bot]
f05e91c2a5
chore(deps): update dependency typescript to v4.7.4
2022-06-18 00:48:48 +00:00
renovate[bot]
5709fa8ac8
chore(deps): update dependency @types/react to v17.0.47
2022-06-17 21:58:21 +00:00
renovate[bot]
a7b3cf2a7e
chore(deps): update dependency @testing-library/user-event to v14.2.1
2022-06-17 18:52:44 +00:00
renovate[bot]
7bffb67b76
chore(deps): update dependency prettier to v2.7.1
2022-06-17 15:51:46 +00:00
Renovate Bot
accf9294c8
chore(deps): update dependency @types/semver to v7.3.10
2022-06-15 20:51:19 +00:00
Renovate Bot
b38f5e21f1
chore(deps): update dependency vitest to v0.15.1
2022-06-15 17:12:39 +00:00
Renovate Bot
522f4aed41
chore(deps): update dependency vitest to v0.15.0
2022-06-15 01:07:54 +00:00
Renovate Bot
dffb4e1514
chore(deps): update material-ui monorepo
2022-06-14 22:03:20 +00:00
Renovate Bot
bb22a1fe24
chore(deps): update dependency prettier to v2.7.0
2022-06-14 18:40:51 +00:00
Renovate Bot
bd67dcbd31
chore(deps): update dependency immer to v9.0.15
2022-06-13 23:50:42 +00:00
Renovate Bot
9f99722f40
chore(deps): update emotion monorepo to v11.9.3
2022-06-13 19:38:57 +00:00
renovate[bot]
d7bc30871f
chore(deps): update dependency react-timeago to v7 ( #1088 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-06-13 09:07:14 +02:00
Renovate Bot
7592e4f643
chore(deps): update dependency vitest to v0.14.2
2022-06-10 22:50:33 +00:00
Renovate Bot
ad9519c181
chore(deps): update dependency vite to v2.9.12
2022-06-10 19:20:55 +00:00
Renovate Bot
63852441dd
chore(deps): update dependency sass to v1.52.3
2022-06-09 18:48:12 +00:00
Renovate Bot
31d3572dad
chore(deps): update dependency msw to v0.42.1
2022-06-08 19:27:08 +00:00
renovate[bot]
c0edf76033
chore(deps): update material-ui monorepo ( #1075 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-06-08 11:57:30 +02:00
Renovate Bot
ee52f224bc
chore(deps): update dependency react-chartjs-2 to v4.2.0
2022-06-07 23:21:29 +00:00
Renovate Bot
f4386e0228
chore(deps): update dependency plausible-tracker to v0.3.8
2022-06-07 19:36:01 +00:00
Renovate Bot
2f604440b4
chore(deps): update dependency vite to v2.9.10
2022-06-06 22:59:05 +00:00
Renovate Bot
f60aa5fb72
chore(deps): update dependency vitest to v0.14.1
2022-06-06 19:29:59 +00:00
Renovate Bot
aa0cae8471
chore(deps): update dependency plausible-tracker to v0.3.7
2022-06-06 16:05:08 +00:00
Renovate Bot
6dceedbd35
chore(deps): update dependency vitest to v0.14.0
2022-06-06 09:13:05 +02:00
Renovate Bot
3a69fce4a0
chore(deps): update dependency eslint to v8.17.0
2022-06-06 09:13:05 +02:00
Renovate Bot
636db67254
chore(deps): update dependency typescript to v4.7.3
2022-06-06 09:13:05 +02:00
Renovate Bot
a60112a5c8
chore(deps): update dependency sass to v1.52.2
2022-06-06 09:13:05 +02:00
Renovate Bot
bad17e3606
chore(deps): update dependency @types/jest to v27.5.2
2022-06-01 23:01:20 +00:00
Renovate Bot
a5ed65b3ac
chore(deps): update dependency vitest to v0.13.1
2022-06-01 16:55:36 +00:00
Renovate Bot
c8fccfb9ed
chore(deps): update material-ui monorepo
2022-05-31 14:23:33 +00:00
Renovate Bot
63a30695ce
chore(deps): update dependency msw to v0.42.0
2022-05-31 03:54:51 +00:00
Renovate Bot
590a0f20ff
chore(deps): update dependency vitest to v0.13.0
2022-05-30 13:18:08 +00:00
Renovate Bot
5c587685a0
chore(deps): update dependency msw to v0.41.1
2022-05-28 03:15:13 +00:00
Renovate Bot
5bd840107e
chore(deps): update dependency vite-tsconfig-paths to v3.5.0
2022-05-27 02:00:36 +00:00
Renovate Bot
616cc8de24
chore(deps): update dependency chart.js to v3.8.0
2022-05-25 18:38:19 +00:00
olav
34f848ce8a
refactor: replace react-dnd with custom implementation ( #988 )
...
* refactor: replace react-dnd with custom implementation
* refactor: add TextCell, IconCell, and ActionCell
* refactor: port environments list to react-table
* refactor: change OfflineBolt to PowerSettingsNew
* refactor: simplify environment toast text
* refactor: improve IToast type type
* refactor: improve useSearchHighlightContext naming
* refactor: clarify enableDragAndDrop logic
2022-05-25 11:40:20 +02:00
Renovate Bot
c2b5c563db
chore(deps): update dependency tss-react to v3.7.0
2022-05-25 00:14:15 +00:00
Renovate Bot
37268baa3a
chore(deps): update dependency typescript to v4.7.2
2022-05-24 21:38:08 +00:00
Renovate Bot
a0261daac6
chore(deps): update material-ui monorepo
2022-05-23 20:23:55 +00:00
Renovate Bot
d65ceeacc8
chore(deps): update dependency msw to v0.41.0
2022-05-22 04:49:14 +00:00
Renovate Bot
caff12b6d6
chore(deps): update dependency vitest to v0.12.9
2022-05-21 22:00:27 +00:00
Renovate Bot
f15cc528bd
chore(deps): update dependency eslint to v8.16.0
2022-05-21 04:25:33 +00:00
Renovate Bot
959fcf3ff3
chore(deps): update dependency sass to v1.52.1
2022-05-21 01:59:12 +00:00
Renovate Bot
e2384a4434
chore(deps): update dependency msw to v0.40.2
2022-05-20 19:21:44 +00:00
Renovate Bot
a8b46a664f
chore(deps): update dependency sass to v1.52.0
2022-05-20 06:02:24 +00:00
Renovate Bot
4cc9824441
chore(deps): update dependency msw to v0.40.1
2022-05-20 00:27:13 +00:00
Renovate Bot
4aee33e189
chore(deps): update dependency msw to v0.40.0
2022-05-18 04:07:47 +00:00
Renovate Bot
ac808d5849
chore(deps): update dependency react-table to v7.8.0
2022-05-17 17:11:43 +00:00
Renovate Bot
1fdf62dcaf
chore(deps): update material-ui monorepo
2022-05-17 14:32:14 +00:00
Renovate Bot
3c9563c7eb
chore(deps): update dependency vitest to v0.12.6
2022-05-13 19:18:32 +00:00
Renovate Bot
752885a0ac
chore(deps): update dependency @types/react-dom to v17.0.17
2022-05-12 22:57:32 +00:00
Renovate Bot
36ce99413d
chore(deps): update dependency @testing-library/user-event to v14.2.0
2022-05-12 20:50:44 +00:00
Renovate Bot
fd12d842a5
chore(deps): update dependency immer to v9.0.14
2022-05-12 16:06:33 +00:00
olav
d1e7a26763
refactor: fix missing eslint deps after CRA removal ( #976 )
...
* refactor: fix missing eslint deps after CRA removal
* refactor: fix eslint issues
2022-05-12 08:11:41 +02:00
Renovate Bot
945dc2bc90
chore(deps): update dependency @types/jest to v27.5.1
2022-05-12 03:16:42 +00:00
Renovate Bot
5e6f8db3dc
chore(deps): update dependency immer to v9.0.13
2022-05-11 22:20:37 +00:00
Renovate Bot
97fa9d8ae6
chore(deps): update dependency @types/react-table to v7.7.12
2022-05-11 19:27:44 +00:00
Renovate Bot
83d7c356b6
chore(deps): update dependency vite to v2.9.9
2022-05-11 14:27:56 +00:00
Renovate Bot
4c2ec052f6
chore(deps): update dependency vitest to v0.12.4
2022-05-11 03:18:09 +00:00
Renovate Bot
b0b5ddd7d3
chore(deps): update material-ui monorepo
2022-05-10 18:48:43 +00:00
Renovate Bot
2a77a9ef6d
chore(deps): update dependency vitest to v0.12.3
2022-05-10 16:37:39 +00:00
Renovate Bot
78f06d3dcb
chore(deps): update dependency vitest to v0.12.0
2022-05-08 12:56:20 +00:00
Renovate Bot
4bbfabfdc7
chore(deps): update dependency vitest to v0.11.0
2022-05-08 01:44:14 +00:00
Renovate Bot
016547232b
chore(deps): update dependency @types/react to v17.0.45
2022-05-07 01:12:01 +00:00
Renovate Bot
73a78644bd
chore(deps): update dependency vitest to v0.10.5
2022-05-06 16:57:24 +00:00
Renovate Bot
c99aac5a6f
chore(deps): update dependency vite-plugin-svgr to v2.1.0
2022-05-06 14:30:40 +00:00
olav
ae51e979cd
refactor: add Plausible tracker on SaaS domain ( #956 )
...
* feat: add Plausible tracker on SaaS domain
* refactor: check uiFlags.T instead of the domain
2022-05-06 14:04:09 +02:00
Nuno Góis
badc65ddf0
refactor: some cleanup after the vite PR ( #958 )
2022-05-06 13:11:46 +02:00
Renovate Bot
02ab34ef0e
chore(deps): update dependency vitest to v0.10.4
2022-05-05 23:29:53 +00:00
Renovate Bot
923a575c0c
chore(deps): update dependency vite to v2.9.8
2022-05-05 20:54:49 +00:00
Renovate Bot
2bfdfcbe50
chore(deps): update dependency @vitejs/plugin-react to v1.3.2
2022-05-05 18:19:06 +00:00
Nuno Góis
5872a1c82c
refactor: adapt to Vite ( #940 )
...
* chore: adapt to vite
* remove react-scripts
* add jsdom dep, update snaps
* fix tests
* fix: formatting
* fix: vercel rewrite
* fix: regeneratorRuntime is not defined
Co-authored-by: Tymoteusz Czech <tymek+gpg@getunleash.ai>
Co-authored-by: Tymoteusz Czech <2625371+Tymek@users.noreply.github.com>
2022-05-05 16:15:22 +01:00
Tymoteusz Czech
1772997d28
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
olav
d8143c6ff4
chore: update react-router to v6 ( #946 )
...
* refactor: fix child selector warnings
* refactor: update react-router-dom
* refactor: use BrowserRouter as in react-router docs
* refactor: replace Redirect with Navigate
* refactor: replace Switch with Routes
* refactor: replace useHistory with useNavigate
* refactor: replace useParams types with useRequiredPathParam
* refactor: replace NavLink activeStyle with callback
* refactor: fix matchPath arg order
* refactor: Remove unused link state
* refactor: delete broken snapshot test
* refactor: render 404 page without redirect
* refactor: normalize path parameter names
* refactor: fix Route component usage
2022-05-05 13:42:18 +02:00
Renovate Bot
73d2b73955
chore(deps): update dependency @types/jest to v27.5.0
2022-05-03 17:55:28 +00:00
Renovate Bot
b3830538f9
chore(deps): update material-ui monorepo
2022-05-02 17:08:58 +00:00
olav
24c11332b5
chore: update MUI to v5 ( #923 )
...
* refactor: update mui packages
* refactor: run mui codemods
* refactor: format files after codemods
* refactor: fix broken types
* refactor: clean up theme
* refactor: fix broken tests
* refactor: replace @mui/styles with tss-react
* refactor: move breakpoints into classes for tss
* refactor: fix crash on missing feature description
* refactor: remove void classNames
* refactor: adjust styles to new defaults
* refactor: remove broken rollout slider e2e test
* refactor: fix duplicate e2e testid
* refactor: update makeStyles after rebase
* refactor: add missing snapshot after rebase
* refactor: fix TableCellSortable focus styles
* refactor: use 1.4 as the default line-height
* refactor: hide webkit search field icons
* refactor: fix select box label
* refactor: make AutocompleteBox smaller
* refactor: make heading smaller
* refactor: fix toast close icon color
* refactor: update snapshots
* refactor: add missing test event awaits
* refactor: fix default button line-height
2022-05-02 15:52:41 +02:00
Renovate Bot
00341c6d67
chore(deps): update dependency swr to v1.3.0
2022-04-30 14:06:37 +00:00
Renovate Bot
0a1dab9464
chore(deps): update dependency sass to v1.51.0
2022-04-30 11:17:31 +00:00
Renovate Bot
2940cb105b
chore(deps): update dependency @testing-library/user-event to v14.1.1
2022-04-30 06:00:20 +00:00
Renovate Bot
5f03a2d1ee
chore(deps): update dependency @testing-library/dom to v8.13.0
2022-04-30 03:12:47 +00:00
Renovate Bot
f9fb1e5981
chore(deps): update dependency @openapitools/openapi-generator-cli to v2.5.1
2022-04-30 00:16:28 +00:00
Renovate Bot
fbff586c04
chore(deps): update dependency typescript to v4.6.4
2022-04-29 21:35:57 +00:00
Renovate Bot
d11b30f7b3
chore(deps): update dependency semver to v7.3.7
2022-04-29 18:56:52 +00:00
Renovate Bot
a5446b1a3e
chore(deps): update dependency @testing-library/jest-dom to v5.16.4
2022-04-29 16:25:52 +00:00
Renovate Bot
a255ccb458
chore(deps): update dependency react-scripts to v5.0.1
2022-04-29 10:34:04 +00:00
Renovate Bot
e3eb89fdf4
chore(deps): update dependency react-router-dom to v5.3.1
2022-04-29 04:14:20 +00:00
Renovate Bot
7073ab45b9
chore(deps): update dependency http-proxy-middleware to v2.0.6
2022-04-29 01:39:41 +00:00
Renovate Bot
ea7cda5200
chore(deps): update dependency @types/react-test-renderer to v17.0.2
2022-04-28 23:06:30 +00:00
Renovate Bot
45077f4b6a
chore(deps): update dependency @types/react-dom to v17.0.16
2022-04-28 19:15:04 +00:00
Renovate Bot
b9bf564f51
chore(deps): update dependency @types/lodash.clonedeep to v4.5.7
2022-04-28 17:01:51 +00:00
Renovate Bot
36deb8bf32
chore(deps): update dependency prettier to v2.6.2
2022-04-28 14:56:50 +00:00
olav
8f1900f32b
feat: generate an OpenAPI client (2) ( #875 )
...
* feat: add a script that generates an OpenAPI client
* feat: generate an OpenAPI client
* feat: use the generated OpenAPI client
* refactor: add an OpenAPI section to the readme
* refactor: fix missing interface prefixes
* refactor: regenerate OpenAPI client
2022-04-26 10:53:46 +02:00
Renovate Bot
9200e74c90
chore(deps): update dependency @testing-library/react to v12.1.5
2022-04-17 21:57:56 +00:00
olav
49b8e7329e
refactor: convert auth tests from Cypress to Jest ( #864 )
...
* refactor: replace data-test with data-testid
* refactor: add Jest tests for auth pages
* refactor: remove Cypress tests for auth pages
* refactor: remove questionable snapshots
* refactor: share test server setup/teardown
* refactor: restore auth page flex layout
* refactor: use toBeInTheDocument
* refactor: change recent data-test attrs to data-testid
2022-04-08 13:13:45 +02:00
Tymoteusz Czech
b23226370a
feat: multi-project api access tokens ( #857 )
...
* fix: general select component typings
* custom multi-select for projects
* autocomplete element for token projects
* project multi-select with error handling
* projects in tokens list update
* multi-project tokens - select all button
* fix conflicting typescript changes
* improve multi-projects tokens form after review
* refactor multi-project select code structure
* test api token list projects column element
* simplify test renderer
2022-04-08 12:26:44 +02:00
Ivar Conradi Østhus
881728bb5e
fix: expose unleash-frontend version in index.js ( #661 )
2022-04-08 11:45:23 +02:00
Renovate Bot
294321be80
chore(deps): update dependency react-chartjs-2 to v4.1.0
2022-04-08 03:38:53 +00:00
Renovate Bot
b5ef10b224
chore(deps): update dependency @types/react to v17.0.44
2022-04-08 00:39:01 +00:00
Renovate Bot
92d830f8ef
chore(deps): update dependency @types/react-dom to v17.0.15
2022-04-07 21:51:15 +00:00
Renovate Bot
e909d22300
chore(deps): update dependency semver to v7.3.6
2022-04-06 22:24:06 +00:00
Ivar Conradi Østhus
7678e304dd
fix: recreate yarn.lock
2022-04-05 14:42:53 +02:00
Renovate Bot
6f072afbf4
chore(deps): update material-ui monorepo
2022-04-03 18:51:53 +00:00
Renovate Bot
4d0760760b
chore(deps): update dependency sass to v1.49.11
2022-04-02 04:21:03 +00:00
Renovate Bot
2858e47c24
chore(deps): update dependency @testing-library/user-event to v14.0.4
2022-04-01 14:06:33 +00:00
Renovate Bot
391f1818f1
chore(deps): update react-dnd monorepo
2022-04-01 00:01:42 +00:00
Renovate Bot
8816ad5b0c
chore(deps): update dependency @testing-library/user-event to v14.0.3
2022-03-31 21:26:24 +00:00
olav
a72f6ec8b5
chore: update react-dnd ( #834 )
...
* chore: update react-dnd
* refactor: add missing react-dnd types
2022-03-31 15:05:05 +02:00
renovate[bot]
4fce721981
chore(deps): update dependency @testing-library/react to v13 ( #835 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-31 14:46:40 +02:00
renovate[bot]
b6766bb8ce
chore(deps): update dependency @testing-library/user-event to v14 ( #828 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-31 14:21:51 +02:00
Renovate Bot
2377def561
chore(deps): update dependency sass to v1.49.10
2022-03-31 04:09:57 +00:00
Renovate Bot
8568573b4b
chore(deps): update dependency cypress to v9.5.3
2022-03-29 03:37:04 +00:00
dependabot[bot]
27d6e364af
chore(deps): bump ansi-regex from 5.0.0 to 5.0.1 ( #822 )
...
Bumps [ansi-regex](https://github.com/chalk/ansi-regex ) from 5.0.0 to 5.0.1.
- [Release notes](https://github.com/chalk/ansi-regex/releases )
- [Commits](https://github.com/chalk/ansi-regex/compare/v5.0.0...v5.0.1 )
---
updated-dependencies:
- dependency-name: ansi-regex
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-28 12:45:21 +02:00
renovate[bot]
4aff526252
chore(deps): update dependency @testing-library/dom to v8.12.0 ( #821 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-28 12:28:40 +02:00
renovate[bot]
c8e2260ab9
chore(deps): update dependency @testing-library/jest-dom to v5.16.3 ( #814 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-03-28 12:20:18 +02:00
dependabot[bot]
501071691c
chore(deps): bump browserslist from 4.16.3 to 4.20.2 ( #819 )
...
Bumps [browserslist](https://github.com/browserslist/browserslist ) from 4.16.3 to 4.20.2.
- [Release notes](https://github.com/browserslist/browserslist/releases )
- [Changelog](https://github.com/browserslist/browserslist/blob/main/CHANGELOG.md )
- [Commits](https://github.com/browserslist/browserslist/compare/4.16.3...4.20.2 )
---
updated-dependencies:
- dependency-name: browserslist
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-28 11:58:50 +02:00
dependabot[bot]
3c3277f189
chore(deps): bump minimist from 1.2.5 to 1.2.6 ( #813 )
...
Bumps [minimist](https://github.com/substack/minimist ) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases )
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6 )
---
updated-dependencies:
- dependency-name: minimist
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-28 11:24:19 +02:00
Renovate Bot
8771302dac
chore(deps): update dependency prettier to v2.6.1
2022-03-25 10:54:49 +00:00
olav
ddca06bdea
refactor: update react-scripts to v5
2022-03-25 11:16:55 +01:00
olav
88c4c39bfc
refactor: update browserslist
2022-03-25 11:15:09 +01:00
Renovate Bot
70ad976255
chore(deps): update dependency typescript to v4.6.3
2022-03-25 04:33:53 +00:00
Renovate Bot
d6b93977c0
chore(deps): update dependency @types/react to v17.0.43
2022-03-25 02:33:44 +00:00
Renovate Bot
9d51ed52e7
chore(deps): update dependency fast-json-patch to v3.1.1
2022-03-24 20:59:32 +00:00
Renovate Bot
377d2e177a
chore(deps): update dependency @testing-library/dom to v8.11.4
2022-03-24 16:21:08 +00:00
Renovate Bot
d6cd7c5514
chore(deps): update dependency @types/react-dom to v17.0.14
2022-03-19 14:46:17 +00:00
Renovate Bot
683cff8d96
chore(deps): update dependency @types/react to v17.0.41
2022-03-19 12:32:55 +00:00
Renovate Bot
960460e61c
chore(deps): update dependency prettier to v2.6.0
2022-03-16 15:09:17 +00:00
olav
d1e96501ec
refactor: test useFeaturesFilter ( #795 )
2022-03-16 13:51:01 +01:00
Renovate Bot
6f0ad78aa2
chore(deps): update dependency cypress to v9.5.2
2022-03-15 00:07:36 +00:00
Renovate Bot
22f538562d
chore(deps): update dependency http-proxy-middleware to v2.0.4
2022-03-13 19:54:03 +00:00
Renovate Bot
bc9ae58c20
chore(deps): update dependency @types/react to v17.0.40
2022-03-10 15:23:30 +00:00
Renovate Bot
139e723362
chore(deps): update dependency @testing-library/react to v12.1.4
2022-03-09 18:32:21 +00:00
olav
baae88c7a5
feat: add new feature strategy create/edit pages ( #739 )
...
* refactor: add param helper hooks
* refactor: remove first add strategy link
* refactor: add more types to useStrategies
* refactor: port strategy utils to TS
* refactor: replace rollout strategy icon
* refactor: use a named export for useFeature
* refactor: add more types to useFeature
* refactor: adjust code box styles
* refactor: add missing PermissionButton variant prop
* refactor: add missing button icon label
* refactor: move common feature components
* refactor: fix StrategyConstraints error prop types
* refactor: fix GeneralStrategy prop types
* feat: add new feature strategy create/edit pages
* refactor: remove feature strategies page
* refactor: fix types in GeneralStrategy
* refactor: use ConstraintAccordion on the new pages
* refactor: use ConditionallyRender for remove button
* refactor: rename FeatureStrategyForm component
* refactor: use the Edit icon for feature strategies
* refactor: fix initial edit mode for new constraints
* refactor: add FeatureStrategyMenu to closed accordions
* refactor: allow editing multiple constraints
* refactor: show single-valued constraint value
* refactor: increase feature overview strategy width
* refactor: add remove button to feature overview strategies
* refactor: move createEmptyConstraint to own file
* refactor: disable submit button for invalid constraints
* refactor: fix nested paragraphs on the metrics page
* refactor: move create/edit feature strategy to modal
* refactor: always open new constraints in edit mode
* refactor: use a PermissionButton for the save button
* refactor: remvoe unsaved constraints on cancel
* refactor: clarify useConstraintsValidation logic
* refactor: remove unused strategy descriptions
* refactor: restore Rollout icon
* refactor: remove sidebar modal slide animation
* refactor: avoid constraint accordion toggle on edit/delete
* refactor: truncate long strategy names
* refactor: find the correct remove button
2022-03-09 14:59:24 +01:00
olav
ab4efe0837
refactor: remove unused tooltip prop ( #769 )
...
* refactor: remove unused tooltip prop
* refactor: fix PermissionButton base props
* refactor: sync yarn.lock
* refactor: fix unused ts-expect-error
2022-03-09 10:13:50 +01:00
Fredrik Strand Oseberg
2c1353d0ea
Feat/new constraints ( #718 )
...
* fix: add initial interface
* feat: create separate components
* feat: implement constraints for existing strategies
* feat: add searchfield
* fix: reset values on context change
* fix: key issue with duplicate values
* fix: increase auto hide duration of errors
* fix: types
* feat: resolve inputs
* fix: add date input
* fix: add filter
* fix: create strategy
* fix: remove unused deps
* feat: validation
* fix: type setError
* feat: handle currentTime based on client spec
* fix: date field
* feat: api validation
* fix: refactor
* fix: refactor
* feat: add compact
* fix: remove unused code
* feat: mobile optimisations
* fix: remove coalescing operator for constraint
* fix: clone deep
* fix: move parseDate
* fix: lift state up for value setting on dates
* fix: rename values
* fix: change type to interface
* fix: lazy initialise values
* fix: create operator type
* fix: update naming
* fix: naming
* fix: aria hidden
* fix: remove optional operator
* fix: rename new constraints
* fix: setup flag
* fix: refactor date check to date-fns
* fix: use date-fns for validation
* fix: detach validators from state
* refactor: move resolve input to it's own component
* fix: remove unused imports
* fix: change values container to overflow auto
* fix: update placeholder
* fix: update import
* fix: backwards compatability
* fix: hide paragraphs if not active
* fix: update path
* fix: update strategy text
2022-03-04 17:29:51 +01:00
Renovate Bot
cd764a1d99
chore(deps): update dependency @types/react-dom to v17.0.13
2022-03-02 21:16:57 +00:00
olav
a78ae20fd6
refactor: remove unused deps ( #757 )
...
* refactor: remove unused script
* refactor: remove unused deps
2022-03-01 12:58:14 +01:00
olav
c7dedecf70
refactor: remove craco and wdyr ( #753 )
2022-03-01 10:56:38 +01:00
olav
2bb069af6b
refactor: use the MUI OutsideClickHandler ( #756 )
2022-03-01 08:21:04 +01:00
Renovate Bot
43fdb37bd4
chore(deps): update dependency typescript to v4.6.2
2022-03-01 05:55:15 +00:00
Renovate Bot
d61e44fcd2
chore(deps): update dependency cypress to v9.5.1
2022-03-01 03:21:32 +00:00
Renovate Bot
dc33678c48
chore(deps): update dependency sass to v1.49.9
2022-02-25 16:23:45 +00:00
dependabot[bot]
2ae7cbbb6a
chore(deps): bump follow-redirects from 1.13.3 to 1.14.9 ( #726 )
...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects ) from 1.13.3 to 1.14.9.
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases )
- [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.13.3...v1.14.9 )
---
updated-dependencies:
- dependency-name: follow-redirects
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 14:23:20 +01:00
dependabot[bot]
e31782342d
chore(deps): bump url-parse from 1.5.3 to 1.5.10 ( #735 )
...
Bumps [url-parse](https://github.com/unshiftio/url-parse ) from 1.5.3 to 1.5.10.
- [Release notes](https://github.com/unshiftio/url-parse/releases )
- [Commits](https://github.com/unshiftio/url-parse/compare/1.5.3...1.5.10 )
---
updated-dependencies:
- dependency-name: url-parse
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 13:33:59 +01:00
dependabot[bot]
c7c5735d03
chore(deps): bump nanoid from 3.1.28 to 3.3.1 ( #725 )
...
Bumps [nanoid](https://github.com/ai/nanoid ) from 3.1.28 to 3.3.1.
- [Release notes](https://github.com/ai/nanoid/releases )
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md )
- [Commits](https://github.com/ai/nanoid/compare/3.1.28...3.3.1 )
---
updated-dependencies:
- dependency-name: nanoid
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-25 13:20:34 +01:00
Renovate Bot
1a21048c71
chore(deps): pin dependency @testing-library/dom to 8.11.3
2022-02-25 11:24:09 +00:00
olav
3959e846e8
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
Renovate Bot
9e0eec10ba
chore(deps): update dependency @types/jest to v27.4.1
2022-02-23 11:56:26 +00:00
Renovate Bot
ebe52f5fb3
chore(deps): pin dependencies
2022-02-21 18:39:29 +00:00
Renovate Bot
1f3317cf6f
chore(deps): update dependency swr to v1.2.2
2022-02-21 17:01:57 +00:00
olav
33b5e4abac
feat: add new feature metrics page ( #716 )
...
* refactor: ensure that [hidden] overrides other display styles
* refactor: use numeric font weights
* refactor: remove unnecessary Jest mock
* refactor: add a fullWidth prop to GeneralSelect
* refactor: remove unnecessary label id prop
* refactor: the showActive prop is optional
* refactor: add hooks for managing query string state
* refactor: add a hour/minute timestamp formatter
* refactor: add labels to button icons
* feat: add new feature metrics page
* refactor: remove prev feature metrics page
* refactor: use new metric boxes on overview page
* refactor: lazy-load the new metrics page
* refactor: fix type error when formatting unknown error
* refactor: extract interfaces for props
* refactor: destructure all props
* refactor: expand arg names
* refactor: reorg component dirs and files
* refactor: improve chart element label
* refactor: hide chart dots until hover
* refactor: add section titles to environments/applications
* refactor: simplify FeatureMetricsHours types
* refactor: sort chart tooltip items
* refactor: add more chart labels
* refactor: always show a dot in single point charts
* refactor: improve chart tooltip styles
* refactor: adjut metric page spacing
* refactor: decrease legend box size
* refactor: move date fmt fn inline
* refactor: improve chart legend styles
* refactor: increase Cypress timeouts
* refactor: sort environment and application chips
* refactor: format files
* refactor: use stable lists of apps and envs
* refactor: fix FeatureMetrics dir name
* refactor: avoid ScrollToTop on query string change
* refactor: use ConditionallyRender instead of inline condition
* refactor: use makeStyles instead of styled API
2022-02-21 13:47:54 +01:00
Renovate Bot
f466a78193
chore(deps): update dependency @testing-library/react to v12.1.3
2022-02-18 14:00:31 +00:00
Renovate Bot
0a402112f2
chore(deps): update dependency sass to v1.49.8
2022-02-18 11:16:36 +00:00
Renovate Bot
8afed18cbc
chore(deps): update dependency @types/node to v14.18.12
2022-02-14 22:45:03 +00:00
Renovate Bot
711e6905d0
chore(deps): update dependency http-proxy-middleware to v2.0.3
2022-02-14 18:37:24 +00:00
renovate[bot]
f8c54a6827
chore(deps): update dependency @types/node to v14.18.11 ( #697 )
...
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2022-02-14 11:53:16 +01:00
Fredrik Strand Oseberg
c99decf5e0
remove: redux ( #696 )
...
* remove: redux
* fix: add sass back
* fix: update lock
* fix: remove fake access store import
'
2022-02-11 11:19:55 +01:00
Renovate Bot
16126433a4
chore(deps): pin dependencies
2022-02-11 02:19:53 +00:00
Renovate Bot
821c383edd
chore(deps): update dependency swr to v1.2.1
2022-02-10 18:50:57 +00:00
Youssef Khedher
2a9a3ac569
refactor: refactor addons to TSX and remove unused files ( #676 )
...
* refactor: refactor addons to TSX and remove unused files
* refactor: change AddonIcon to getAddonIcon
* refactor: add PermissionButton instead of conditional render
* refactor: wrap icon buttons inside PermissionIconButtons
* feat: add confirm delete dialog
* fix: create addon form
* fix: refactor addons
* fix: remove addon store folder
* fix: update index
* fix: rebase
* fix: update exports
* fix: update snapshot
* fix: add dev dep
Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
2022-02-09 23:05:15 +01:00
olav
ff8d983d7e
refactor: port FeatureToggleList to TS/SWR ( #663 )
...
* refactor: remove unused FeatureToggleListItemChip
* refactor: remove unused archive.module.scss
* refactor: remove unused ShowArchive route
* refactor: port FeatureToggleList to TS/SWR
* refactor: fix IUseFeaturesOutput interface prefix
* refactor: remove unnecessary pages files
* refactor: persist the features sort/filter state
* refactor: format files
* refactor: fix FeatureToggleListContainer file name
* refactor: fix arrow function syntax
* refactor: improve storage helper comments
2022-02-08 12:06:25 +01:00
olav
d146c1fcf9
refactor: detach ApplicationList from global settings ( #666 )
...
* refactor: add missing prop-types dependency
* refactor: detach ApplicationList from global settings
* refactor: destructure props inline
Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
2022-02-04 13:07:45 +01:00
olav
dfe8250c26
refactor: port UserProfile to TS/SWR ( #665 )
...
* refactor: add missing @types/react-outside-click-handler
* refactor: add missing disablePasswordAuth IUiConfig field
* refactor: replace NBSPs with regular spaces
* refactor: port UserProfile to TS/SWR
* refactor: fix interface type prefix
Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
2022-02-04 12:41:59 +01:00
olav
c4efaf8276
refactor: remove enzyme ( #664 )
...
* refactor: mock SVG imports in tests
* refactor: remove enzyme
2022-02-04 11:32:02 +01:00
Renovate Bot
7344f47635
chore(deps): update dependency @types/react to v17.0.39
2022-02-03 18:04:19 +00:00
Renovate Bot
d4a4c80b33
chore(deps): update dependency @testing-library/jest-dom to v5.16.2
2022-02-03 03:56:21 +00:00
Renovate Bot
dbfa11f12b
chore(deps): update dependency css-loader to v6.6.0
2022-02-02 15:30:37 +00:00
Renovate Bot
b5edbb9739
chore(deps): pin dependency @types/react-test-renderer to 17.0.1
2022-02-02 13:42:21 +00:00
olav
74733e5b44
refactor: port ApiDetails to useSWR and TS ( #653 )
...
* refactor: add missing react-test-renderer types
* refactor: make IVersionInfo match backend type
* refactor: allow falsy conditions in ConditionallyRender
* refactor: port ApiDetails to useSWR and TS
* refactor: use arrow functions
* refactor: move useUiConfig to Footer
* refactor: add component name to props type
* refactor: move ApiDetails helpers to own file
* refactor: combine ApiDetails helper components
* refactor: move ApiDetails to the Footer dir
* Revert "refactor: allow falsy conditions in ConditionallyRender"
This reverts commit 70d75951eb4d0611e80b015a97243404618493ed.
* refactor: use booleans for ConditionallyRender
* refactor: use a subdir for ApiDetails
* refactor: fix ApiDetails helpers filename
* refactor: reformat using correct prettier settings
2022-02-02 12:32:30 +01:00
Renovate Bot
5e441cfc6b
chore(deps): update dependency sass to v1.49.7
2022-02-02 00:58:04 +00:00
Renovate Bot
ef9045adf4
chore(deps): update dependency @types/node to v14.18.10
2022-02-01 18:00:38 +00:00
Renovate Bot
35148e14d5
chore(deps): update dependency sass to v1.49.4
2022-02-01 04:22:07 +00:00
Renovate Bot
9bb63d47ef
chore(deps): update dependency http-proxy-middleware to v2.0.2
2022-01-24 22:15:01 +00:00
Renovate Bot
8dbe2400d8
chore(deps): update dependency web-vitals to v2.1.4
2022-01-24 20:35:00 +00:00
Renovate Bot
f36be69033
chore(deps): update dependency typescript to v4.5.5
2022-01-24 18:39:37 +00:00
Renovate Bot
8171f147bc
chore(deps): update dependency sass to v1.49.0
2022-01-19 17:25:07 +00:00
Renovate Bot
0a1b3e84d2
chore(deps): update dependency @types/react-router-dom to v5.3.3
2022-01-19 15:46:27 +00:00
Renovate Bot
416d67da34
chore(deps): update dependency @types/node to v14.18.9
2022-01-19 10:23:51 +00:00
Renovate Bot
7b199f3abb
chore(deps): update dependency @types/node to v14.18.7
2022-01-17 21:17:12 +00:00
Renovate Bot
61839e418f
chore(deps): update dependency @types/node to v14.18.6
2022-01-17 13:51:24 +00:00
Renovate Bot
21ba2d8b7c
chore(deps): update dependency node-fetch to v2.6.7
2022-01-16 16:02:53 +00:00
Renovate Bot
8b538e4ded
chore(deps): update dependency sass to v1.48.0
2022-01-13 07:59:28 +00:00
Renovate Bot
2d4dab3959
chore(deps): update dependency sass to v1.47.0
2022-01-10 20:02:11 +00:00
Renovate Bot
bb093f8ad7
chore(deps): update dependency web-vitals to v2.1.3
2022-01-10 14:41:49 +00:00
Renovate Bot
856e8d3f4b
chore(deps): update dependency @types/enzyme to v3.10.11
2022-01-06 13:11:08 +00:00
Renovate Bot
b2698231a5
chore(deps): update dependency sass to v1.46.0
2022-01-06 03:18:35 +00:00
Renovate Bot
6f7ad537df
chore(deps): update dependency @types/jest to v27.4.0
2022-01-05 21:54:52 +00:00
Renovate Bot
dcfbedd107
chore(deps): update dependency date-fns to v2.28.0
2022-01-05 17:56:38 +00:00
Renovate Bot
7451308235
chore(deps): update dependency @types/node to v14.18.5
2022-01-05 15:30:54 +00:00