diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2023-09-25 20:39:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 20:39:13 -0500 |
commit | d3c8674f5825a27fd51d8033cb8e8380868bf437 (patch) | |
tree | 0893673d508a1fe56746d4138761903fef69a7b5 | |
parent | d8154c16bff6d4fa769d76d582593bb6db4f272c (diff) | |
download | compiler-explorer-gh-8847.tar.gz compiler-explorer-gh-8847.zip |
fix(deps): update dependency @flatten-js/interval-tree to ^1.1.1 (#5514)gh-8847
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[@flatten-js/interval-tree](https://togithub.com/alexbol99/flatten-interval-tree)
| [`^1.0.21` ->
`^1.1.1`](https://renovatebot.com/diffs/npm/@flatten-js%2finterval-tree/1.1.0/1.1.1)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
[](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>alexbol99/flatten-interval-tree
(@​flatten-js/interval-tree)</summary>
###
[`v1.1.1`](https://togithub.com/alexbol99/flatten-interval-tree/releases/tag/v1.1.1):
Fix: finds the lowest intersecting interval
[Compare
Source](https://togithub.com/alexbol99/flatten-interval-tree/compare/v1.1.0...v1.1.1)
#### What's Changed
- fix: finds the lowest intersecting interval by
[@​theSherwood](https://togithub.com/theSherwood) in
[https://github.com/alexbol99/flatten-interval-tree/pull/47](https://togithub.com/alexbol99/flatten-interval-tree/pull/47)
Fix bug in previous release
In `iterate()`, the problem was that if a node was found that was less
than and also intersecting with the search node, the algorithm wouldn't
search any further left. In the case of an intersecting node, we always
want to look further left to find the lowest intersecting node possible.
**Full Changelog**:
https://github.com/alexbol99/flatten-interval-tree/compare/v1.1.0...v1.1.1
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 8pm on monday" in timezone
America/Chicago, Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
â™» **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/compiler-explorer/compiler-explorer).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi45Ny4xIiwidXBkYXRlZEluVmVyIjoiMzYuOTcuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
-rw-r--r-- | package-lock.json | 8 | ||||
-rw-r--r-- | package.json | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/package-lock.json b/package-lock.json index 62fd446ed..a51ba837d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@aws-sdk/client-ec2": "^3.386.0", "@aws-sdk/client-s3": "^3.386.0", "@aws-sdk/client-ssm": "^3.386.0", - "@flatten-js/interval-tree": "^1.0.21", + "@flatten-js/interval-tree": "^1.1.1", "@fortawesome/fontawesome-free": "^6.4.2", "@orchidjs/sifter": "^1.0.3", "@sentry/browser": "^7.28.1", @@ -1978,9 +1978,9 @@ } }, "node_modules/@flatten-js/interval-tree": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@flatten-js/interval-tree/-/interval-tree-1.1.0.tgz", - "integrity": "sha512-D0AC+3g66Mh/QUuAMcfLORgy8u3dO9T2UTpXCx/yH5ShMb+lr99orxExoCtN+lLK/HmrTJNnkhAjYvfnIry46g==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@flatten-js/interval-tree/-/interval-tree-1.1.1.tgz", + "integrity": "sha512-IsD8MPvzlbrUZnqychSEPM0dX6DXFG6ObFVbJs8asb5cwUOCek+Qi10W/mK7N9aqKkNpOSSzEIkrhHOiOXZlXw==" }, "node_modules/@fortawesome/fontawesome-free": { "version": "6.4.2", diff --git a/package.json b/package.json index 45b0381fa..3fc840418 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "@aws-sdk/client-ec2": "^3.386.0", "@aws-sdk/client-s3": "^3.386.0", "@aws-sdk/client-ssm": "^3.386.0", - "@flatten-js/interval-tree": "^1.0.21", + "@flatten-js/interval-tree": "^1.1.1", "@fortawesome/fontawesome-free": "^6.4.2", "@orchidjs/sifter": "^1.0.3", "@sentry/browser": "^7.28.1", |