Closed renovate[bot] closed 2 years ago
The latest updates on your projects. Learn more about Vercel for Git โ๏ธ
Name | Status | Preview | Updated |
---|---|---|---|
chirpy | โ Ready (Inspect) | Visit Preview | Oct 28, 2022 at 1:39PM (UTC) |
Latest commit: 91ce89eb0c7256c714383fcc7e6991a95d199087
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
./apps/main
St.:grey_question: |
Category | Percentage | Covered / Total |
---|---|---|---|
๐ด | Statements | 4.42% | 40/904 |
๐ด | Branches | 3.56% | 9/253 |
๐ด | Functions | 2.16% | 5/232 |
๐ด | Lines | 4.49% | 38/846 |
2 tests passing in 2 suites.
Report generated by ๐งชjest coverage report action from 91ce89eb0c7256c714383fcc7e6991a95d199087
d0cb0ed(current) vs ad02689 main#1055(baseline)
Metrics (1 change)
โโโโโโโโโโ | โโโโโโCurrent Job #1056 |
โโโโโBaseline Job #1055 |
---|---|---|
Initial JS | 1.01MiB |
1.01MiB |
Initial CSS | 87.02KiB |
87.02KiB |
Cache Invalidation | 0% |
29.62% |
Chunks | 50 |
50 |
Assets | 59 |
59 |
Modules | 1087 |
1087 |
Duplicate Modules | 166 |
166 |
Duplicate Code | 4.07% |
4.07% |
Packages | 85 |
85 |
Duplicate Packages | 1 |
1 |
./packages/ui
St.:grey_question: |
Category | Percentage | Covered / Total |
---|---|---|---|
๐ด | Statements | 52.07% | 2397/4603 |
๐ด | Branches | 26.64% | 462/1734 |
๐ด | Functions | 35.51% | 441/1242 |
๐ด | Lines | 52.1% | 2284/4384 |
50 tests passing in 32 suites.
Report generated by ๐งชjest coverage report action from 91ce89eb0c7256c714383fcc7e6991a95d199087
Project | chirpy |
Status | Passed |
Commit | 91ce89eb0c |
Started | Oct 28, 2022 1:41 PM |
Ended | Oct 28, 2022 1:43 PM |
Duration | 02:31 ๐ก |
OS | Linux Ubuntu - 20.04 |
Browser | Electron 100 |
View run in Cypress Dashboard โก๏ธ
This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard
This PR contains the following updates:
5.0.1
->5.0.4
Release Notes
FormidableLabs/urql
### [`v5.0.4`](https://togithub.com/FormidableLabs/urql/blob/HEAD/exchanges/graphcache/CHANGELOG.md#504) [Compare Source](https://togithub.com/FormidableLabs/urql/compare/@urql/exchange-graphcache@5.0.3...@urql/exchange-graphcache@5.0.4) ##### Patch Changes - Ensure we aren't eagerly removing layers that are caused by subscriptions, by [@JoviDeCroock](https://togithub.com/JoviDeCroock) (See [#2771](https://togithub.com/FormidableLabs/urql/pull/2771)) ### [`v5.0.3`](https://togithub.com/FormidableLabs/urql/blob/HEAD/exchanges/graphcache/CHANGELOG.md#503) [Compare Source](https://togithub.com/FormidableLabs/urql/compare/@urql/exchange-graphcache@5.0.2...@urql/exchange-graphcache@5.0.3) ##### Patch Changes - โ ๏ธ Fix case where a mutation would also be counted in the loop-protection, this prevented partial queries from initiating refetches, by [@JoviDeCroock](https://togithub.com/JoviDeCroock) (See [#2761](https://togithub.com/FormidableLabs/urql/pull/2761)) - Updated dependencies (See [#2758](https://togithub.com/FormidableLabs/urql/pull/2758) and [#2762](https://togithub.com/FormidableLabs/urql/pull/2762)) - [@urql/core](https://togithub.com/urql/core)[@3](https://togithub.com/3).0.5 ### [`v5.0.2`](https://togithub.com/FormidableLabs/urql/blob/HEAD/exchanges/graphcache/CHANGELOG.md#502) [Compare Source](https://togithub.com/FormidableLabs/urql/compare/@urql/exchange-graphcache@5.0.1...@urql/exchange-graphcache@5.0.2) ##### Patch Changes - Preserve the original `DocumentNode` AST when updating the cache, to prevent results after a network request from differing and breaking referential equality due to added `__typename` fields, by [@kitten](https://togithub.com/kitten) (See [#2736](https://togithub.com/FormidableLabs/urql/pull/2736)) - โ ๏ธ Fix optimistic mutations containing partial results (`undefined` fields), which previously actually caused a hidden cache miss, which may then affect a subsequent non-optimistic mutation result, by [@kitten](https://togithub.com/kitten) (See [#2740](https://togithub.com/FormidableLabs/urql/pull/2740)) - Prevent cache misses from causing infinite network requests from being issued, when two operations manipulate each other while experiencing cache misses or are partially uncacheable, by [@kitten](https://togithub.com/kitten) (See [#2737](https://togithub.com/FormidableLabs/urql/pull/2737)) - โ ๏ธ Fix operation identities preventing users from deeply cloning operation contexts. Instead, we now use a client-wide counter (rolling over as needed). While this changes an internal data structure in `@urql/core` only, this change also affects the `offlineExchange` in `@urql/exchange-graphcache` due to it relying on the identity being previously an object rather than an integer, by [@kitten](https://togithub.com/kitten) (See [#2732](https://togithub.com/FormidableLabs/urql/pull/2732)) - โ ๏ธ Fix referential equality preservation in Graphcache failing after API results, due to a typo writing the API result rather than the updated cache result, by [@kitten](https://togithub.com/kitten) (See [#2741](https://togithub.com/FormidableLabs/urql/pull/2741)) - Updated dependencies (See [#2691](https://togithub.com/FormidableLabs/urql/pull/2691), [#2692](https://togithub.com/FormidableLabs/urql/pull/2692), and [#2732](https://togithub.com/FormidableLabs/urql/pull/2732)) - [@urql/core](https://togithub.com/urql/core)[@3](https://togithub.com/3).0.4Configuration
๐ 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.
This PR has been generated by Mend Renovate. View repository job log here.