Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace uri-js with fast-uri #2415

Merged

Conversation

vixalien
Copy link
Contributor

@vixalien vixalien commented Apr 13, 2024

What issue does this pull request resolve?

This PR fixes issues #2350 and #2343. It removes the (deep) dependency on punycode, a deprecated module.

What changes did you make?

I replaced the default uriResolver to fast-uri instead of uri-js.

Is there anything that requires more attention while reviewing?

This PR supersedes #2377.

It is also worth considering using the web API URL which is defined in URL Living Standard instead of URI which is defined in RFC 3986 and is less prevalent and can resolve the issue raised by @jasoniangreen in the above linked PR:

...I have been speaking to @epoberezkin and he wants me to explore removing uri-js. [..] there is just an open question around browser support. I will update you when I have more.

We can use the native URL API as it is supported with node 10+ and all major browsers and it has 97.68% caniuse score while URI is not standardized afaict.

Thanks!

TODO:

@mbtools
Copy link

mbtools commented Apr 27, 2024

ajv is a major contributor to the [DEP0040] DeprecationWarning: The punycode module is deprecated issue that is popping up everywhere (since it's used in eslint). Please fix this.

Less dependencies. Better performance. This is the way!

@vixalien
Copy link
Contributor Author

I would be very happy if there were an initial review or at least a comment from the AJV team.

@tianyingchun
Copy link

how progress of this?

@tianyingchun
Copy link

@epoberezkin

@tianyingchun
Copy link

how progress of this?

@vixalien
Copy link
Contributor Author

vixalien commented May 9, 2024

No feedback from maintainers, can't move forward :(

@tianyingchun
Copy link

I see that there is still a version of this library released recently,

@vixalien
Copy link
Contributor Author

vixalien commented May 10, 2024

Yes, other pull requests are getting merged and I believe this one is just ignored.

Some feedback - any feedback - from the maintainers would be appreciated

@jasoniangreen
Copy link
Collaborator

Hi all, I will try and get some guidance from @epoberezkin on this one. Sorry I missed your activity here.

@tianyingchun
Copy link

Haha, merge and release a version as soon as possible 😁

@vixalien
Copy link
Contributor Author

Ready

@jasoniangreen
Copy link
Collaborator

Update: After discussing with @epoberezkin, we want to get one more minor release out with some bug fixes and then will release this change as 9.0.0.

@jasoniangreen
Copy link
Collaborator

Update: After discussing with @epoberezkin, we want to get one more minor release out with some bug fixes and then will release this change as 9.0.0.

Actually after discussing with EP and understanding the swap, we've decided this can go out as a minor release. I'm going to give it all one last check and do that next.

Copy link
Collaborator

@jasoniangreen jasoniangreen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me. I have verified:

  • that uri-js and fast-uri are both built to the same standard RFC 3986
  • that there are test for URNs which was a concern as we have had issues with them in the past
  • that both fast-uri and uri-js are still both being run in tests, we have just swapped what is the default

@jasoniangreen jasoniangreen merged commit fa1b5d5 into ajv-validator:master May 31, 2024
5 checks passed
@jasoniangreen
Copy link
Collaborator

Hmm, something broke the build to master, I think it's related to a bug in the get_contributors script. Investigating.

@jasoniangreen
Copy link
Collaborator

Well I did just publish 8.15.0 with fast-uri but it's failing to build browser bundles because for some reason fast-uri has this line require('node:url')? I have no idea why it's not just require('url') but I think I'll have to roll forward with a revert of this change. Will discuss with @epoberezkin.

jasoniangreen added a commit that referenced this pull request Jun 3, 2024
@yuki-js
Copy link

yuki-js commented Jun 4, 2024

FYI
fast-uri is not officially said browser-incompatible module itself, so it's no wonder it uses node: prefix.

Webpack error message

Module build failed: UnhandledSchemeError: Reading from "node:url" is not handled by plugins (Unhandled scheme).
Webpack supports "data:" and "file:" URIs by default.
You may need an additional plugin to handle "node:" URIs.

kodiakhq bot pushed a commit to X-oss-byte/Canary-nextjs that referenced this pull request Jun 4, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ajv](https://ajv.js.org) ([source](https://github.com/ajv-validator/ajv)) | [`8.14.0` -> `8.15.0`](https://renovatebot.com/diffs/npm/ajv/8.14.0/8.15.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/ajv/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ajv/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ajv/8.14.0/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ajv/8.14.0/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency Dashboard for more information.

---

### Release Notes

<details>
<summary>ajv-validator/ajv (ajv)</summary>

### [`v8.15.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.15.0)

[Compare Source](https://github.com/ajv-validator/ajv/compare/v8.14.0...v8.15.0)

#### What's Changed

-   Replace `uri-js` with `fast-uri` by [@&#8203;vixalien](https://github.com/vixalien) in [ajv-validator/ajv#2415
-   Bump to 8.15.0 by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in [ajv-validator/ajv#2442

#### New Contributors

-   [@&#8203;vixalien](https://github.com/vixalien) made their first contribution in [ajv-validator/ajv#2415

**Full Changelog**: ajv-validator/ajv@v8.14.0...v8.15.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] 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/X-oss-byte/Canary-nextjs).
@voxpelli
Copy link

voxpelli commented Jun 4, 2024

Related: fastify/fast-uri#21

kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Jun 4, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ajv](https://ajv.js.org) ([source](https://github.com/ajv-validator/ajv)) | [`8.14.0` -> `8.15.0`](https://renovatebot.com/diffs/npm/ajv/8.12.0/8.15.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/ajv/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ajv/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ajv/8.12.0/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ajv/8.12.0/8.15.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>ajv-validator/ajv (ajv)</summary>

### [`v8.15.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.15.0)

[Compare Source](https://github.com/ajv-validator/ajv/compare/v8.14.0...v8.15.0)

#### What's Changed

-   Replace `uri-js` with `fast-uri` by [@&#8203;vixalien](https://github.com/vixalien) in [ajv-validator/ajv#2415
-   Bump to 8.15.0 by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in [ajv-validator/ajv#2442

#### New Contributors

-   [@&#8203;vixalien](https://github.com/vixalien) made their first contribution in [ajv-validator/ajv#2415

**Full Changelog**: ajv-validator/ajv@v8.14.0...v8.15.0

### [`v8.14.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.14.0)

[Compare Source](https://github.com/ajv-validator/ajv/compare/v8.13.0...v8.14.0)

#### What's Changed

-   readme: build badge by [@&#8203;epoberezkin](https://github.com/epoberezkin) in [ajv-validator/ajv#2424
-   Update workflows by [@&#8203;rotu](https://github.com/rotu) in [ajv-validator/ajv#2410
-   docs: add warning to maxLength / minLength by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in [ajv-validator/ajv#2428
-   fix: broken link in docs warning by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in [ajv-validator/ajv#2431
-   compileAsync a schema with discriminator and $ref, fixes [#&#8203;2427](https://github.com/ajv-validator/ajv/issues/2427)  by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in [ajv-validator/ajv#2433
-   bump version to 8.14.0 for publishing by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in [ajv-validator/ajv#2440

#### New Contributors

-   [@&#8203;rotu](https://github.com/rotu) made their first contribution in [ajv-validator/ajv#2410

**Full Changelog**: ajv-validator/ajv@v8.13.0...v8.14.0

### [`v8.13.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.13.0)

[Compare Source](https://github.com/ajv-validator/ajv/compare/v8.12.0...v8.13.0)

-   add named exports
-   update dependencies
-   update node.js

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] 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/X-oss-byte/Nextjs).
@voxpelli voxpelli mentioned this pull request Jun 4, 2024
2 tasks
@fcma-bbientz
Copy link

We are having the same issue with 8.15.0. Since pulling this package our builds have been failing with the following error:

Module build failed: UnhandledSchemeError: Reading from "node:url"

hkfb pushed a commit to equinor/webviz-subsurface-components that referenced this pull request Jul 18, 2024
## [0.27.10](https://github.com/equinor/webviz-subsurface-components/compare/subsurface-viewer@0.27.9...subsurface-viewer@0.27.10) (2024-07-18)

### Bug Fixes

* [NGRM] - Strange artefacts in 2D maps [#2134](#2134) ([#2135](#2135)) ([0446493](0446493))
* bump @equinor/videx-wellog from 0.9.4 to 0.10.0 in /typescript ([#2120](#2120)) ([614bc81](614bc81))
* bump @turf/simplify from 6.5.0 to 7.0.0 in /typescript ([#2144](#2144)) ([888d147](888d147)), closes [/github.com/Turfjs/turf/blob/master/CHANGELOG.md#700](https://github.com//github.com/Turfjs/turf/blob/master/CHANGELOG.md/issues/700) [#2158](#2158) [#2237](#2237) [#2177](#2177) [#2173](#2173) [#2393](https://github.com/equinor/webviz-subsurface-components/issues/2393) [#2166](#2166) [#2183](#2183) [#2106](#2106) [#2106](#2106) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2613](https://github.com/equinor/webviz-subsurface-components/issues/2613) [#1896](#1896) [#2217](#2217) [#2231](#2231) [#1893](#1893) [#2033](#2033) [#2338](https://github.com/equinor/webviz-subsurface-components/issues/2338) [#2415](https://github.com/equinor/webviz-subsurface-components/issues/2415) [#1450](#1450) [#2149](#2149) [#2323](https://github.com/equinor/webviz-subsurface-components/issues/2323) [#2142](#2142) [#2316](https://github.com/equinor/webviz-subsurface-components/issues/2316) [#2345](https://github.com/equinor/webviz-subsurface-components/issues/2345) [#2178](#2178) [#2168](#2168) [#2174](#2174) [#2182](#2182) [#2171](#2171) [#2171](#2171) [#2167](#2167) [#2134](#2134) [#2169](#2169) [#2195](#2195) [#2216](#2216) [#2227](#2227) [#2172](#2172) [#2475](https://github.com/equinor/webviz-subsurface-components/issues/2475) [#2504](https://github.com/equinor/webviz-subsurface-components/issues/2504) [#2524](https://github.com/equinor/webviz-subsurface-components/issues/2524) [#2609](https://github.com/equinor/webviz-subsurface-components/issues/2609) [#2607](https://github.com/equinor/webviz-subsurface-components/issues/2607) [#2603](https://github.com/equinor/webviz-subsurface-components/issues/2603) [#2599](https://github.com/equinor/webviz-subsurface-components/issues/2599) [#2565](https://github.com/equinor/webviz-subsurface-components/issues/2565) [#2576](https://github.com/equinor/webviz-subsurface-components/issues/2576) [#2572](https://github.com/equinor/webviz-subsurface-components/issues/2572) [#2571](https://github.com/equinor/webviz-subsurface-components/issues/2571)
* bump ajv from 8.14.0 to 8.16.0 in /typescript ([#2138](#2138)) ([3f02100](3f02100)), closes [ajv-validator/ajv#2444](ajv-validator/ajv#2444) [ajv-validator/ajv#2415](ajv-validator/ajv#2415) [ajv-validator/ajv#2442](ajv-validator/ajv#2442) [ajv-validator/ajv#2415](ajv-validator/ajv#2415) [#2444](https://github.com/equinor/webviz-subsurface-components/issues/2444) [#2442](https://github.com/equinor/webviz-subsurface-components/issues/2442) [#2415](https://github.com/equinor/webviz-subsurface-components/issues/2415)
* bump mathjs from 12.4.2 to 13.0.0 in /typescript ([#2124](#2124)) ([caae3f2](caae3f2)), closes [#3223](https://github.com/equinor/webviz-subsurface-components/issues/3223) [#3139](https://github.com/equinor/webviz-subsurface-components/issues/3139) [#2838](https://github.com/equinor/webviz-subsurface-components/issues/2838) [#3152](https://github.com/equinor/webviz-subsurface-components/issues/3152) [#2838](https://github.com/equinor/webviz-subsurface-components/issues/2838) [rawify/Fraction.js#68](rawify/Fraction.js#68) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#1240](#1240) [#3189](https://github.com/equinor/webviz-subsurface-components/issues/3189) [#3197](https://github.com/equinor/webviz-subsurface-components/issues/3197) [#3198](https://github.com/equinor/webviz-subsurface-components/issues/3198)
* Changed to low precission for uniform in grid3D layer. ([#2146](#2146)) ([736f5e7](736f5e7))
* Fixes failing smoke test for axes2D layer. ([#2150](#2150)) ([240ea8d](240ea8d))
* semantic release not publishing ([#2160](#2160)) ([235c558](235c558))
* semantic release not publishing ([#2164](#2164)) ([9878239](9878239))
hkfb pushed a commit to equinor/webviz-subsurface-components that referenced this pull request Jul 18, 2024
## [1.1.18](https://github.com/equinor/webviz-subsurface-components/compare/group-tree-plot@1.1.17...group-tree-plot@1.1.18) (2024-07-18)

### Bug Fixes

* bump @equinor/videx-wellog from 0.9.4 to 0.10.0 in /typescript ([#2120](#2120)) ([614bc81](614bc81))
* bump @turf/simplify from 6.5.0 to 7.0.0 in /typescript ([#2144](#2144)) ([888d147](888d147)), closes [/github.com/Turfjs/turf/blob/master/CHANGELOG.md#700](https://github.com//github.com/Turfjs/turf/blob/master/CHANGELOG.md/issues/700) [#2158](#2158) [#2237](#2237) [#2177](#2177) [#2173](#2173) [#2393](https://github.com/equinor/webviz-subsurface-components/issues/2393) [#2166](#2166) [#2183](#2183) [#2106](#2106) [#2106](#2106) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2613](https://github.com/equinor/webviz-subsurface-components/issues/2613) [#1896](#1896) [#2217](#2217) [#2231](#2231) [#1893](#1893) [#2033](#2033) [#2338](https://github.com/equinor/webviz-subsurface-components/issues/2338) [#2415](https://github.com/equinor/webviz-subsurface-components/issues/2415) [#1450](#1450) [#2149](#2149) [#2323](https://github.com/equinor/webviz-subsurface-components/issues/2323) [#2142](#2142) [#2316](https://github.com/equinor/webviz-subsurface-components/issues/2316) [#2345](https://github.com/equinor/webviz-subsurface-components/issues/2345) [#2178](#2178) [#2168](#2168) [#2174](#2174) [#2182](#2182) [#2171](#2171) [#2171](#2171) [#2167](#2167) [#2134](#2134) [#2169](#2169) [#2195](#2195) [#2216](#2216) [#2227](#2227) [#2172](#2172) [#2475](https://github.com/equinor/webviz-subsurface-components/issues/2475) [#2504](https://github.com/equinor/webviz-subsurface-components/issues/2504) [#2524](https://github.com/equinor/webviz-subsurface-components/issues/2524) [#2609](https://github.com/equinor/webviz-subsurface-components/issues/2609) [#2607](https://github.com/equinor/webviz-subsurface-components/issues/2607) [#2603](https://github.com/equinor/webviz-subsurface-components/issues/2603) [#2599](https://github.com/equinor/webviz-subsurface-components/issues/2599) [#2565](https://github.com/equinor/webviz-subsurface-components/issues/2565) [#2576](https://github.com/equinor/webviz-subsurface-components/issues/2576) [#2572](https://github.com/equinor/webviz-subsurface-components/issues/2572) [#2571](https://github.com/equinor/webviz-subsurface-components/issues/2571)
* bump ajv from 8.14.0 to 8.16.0 in /typescript ([#2138](#2138)) ([3f02100](3f02100)), closes [ajv-validator/ajv#2444](ajv-validator/ajv#2444) [ajv-validator/ajv#2415](ajv-validator/ajv#2415) [ajv-validator/ajv#2442](ajv-validator/ajv#2442) [ajv-validator/ajv#2415](ajv-validator/ajv#2415) [#2444](https://github.com/equinor/webviz-subsurface-components/issues/2444) [#2442](https://github.com/equinor/webviz-subsurface-components/issues/2442) [#2415](https://github.com/equinor/webviz-subsurface-components/issues/2415)
* bump mathjs from 12.4.2 to 13.0.0 in /typescript ([#2124](#2124)) ([caae3f2](caae3f2)), closes [#3223](https://github.com/equinor/webviz-subsurface-components/issues/3223) [#3139](https://github.com/equinor/webviz-subsurface-components/issues/3139) [#2838](https://github.com/equinor/webviz-subsurface-components/issues/2838) [#3152](https://github.com/equinor/webviz-subsurface-components/issues/3152) [#2838](https://github.com/equinor/webviz-subsurface-components/issues/2838) [rawify/Fraction.js#68](rawify/Fraction.js#68) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#1240](#1240) [#3189](https://github.com/equinor/webviz-subsurface-components/issues/3189) [#3197](https://github.com/equinor/webviz-subsurface-components/issues/3197) [#3198](https://github.com/equinor/webviz-subsurface-components/issues/3198)
* semantic release not publishing ([#2160](#2160)) ([235c558](235c558))
* semantic release not publishing ([#2164](#2164)) ([9878239](9878239))
hkfb pushed a commit to equinor/webviz-subsurface-components that referenced this pull request Jul 18, 2024
# [1.11.0](https://github.com/equinor/webviz-subsurface-components/compare/well-log-viewer@1.10.1...well-log-viewer@1.11.0) (2024-07-18)

### Bug Fixes

* bump @equinor/videx-wellog from 0.9.4 to 0.10.0 in /typescript ([#2120](#2120)) ([614bc81](614bc81))
* bump @turf/simplify from 6.5.0 to 7.0.0 in /typescript ([#2144](#2144)) ([888d147](888d147)), closes [/github.com/Turfjs/turf/blob/master/CHANGELOG.md#700](https://github.com//github.com/Turfjs/turf/blob/master/CHANGELOG.md/issues/700) [#2158](#2158) [#2237](#2237) [#2177](#2177) [#2173](#2173) [#2393](https://github.com/equinor/webviz-subsurface-components/issues/2393) [#2166](#2166) [#2183](#2183) [#2106](#2106) [#2106](#2106) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2247](https://github.com/equinor/webviz-subsurface-components/issues/2247) [#2613](https://github.com/equinor/webviz-subsurface-components/issues/2613) [#1896](#1896) [#2217](#2217) [#2231](#2231) [#1893](#1893) [#2033](#2033) [#2338](https://github.com/equinor/webviz-subsurface-components/issues/2338) [#2415](https://github.com/equinor/webviz-subsurface-components/issues/2415) [#1450](#1450) [#2149](#2149) [#2323](https://github.com/equinor/webviz-subsurface-components/issues/2323) [#2142](#2142) [#2316](https://github.com/equinor/webviz-subsurface-components/issues/2316) [#2345](https://github.com/equinor/webviz-subsurface-components/issues/2345) [#2178](#2178) [#2168](#2168) [#2174](#2174) [#2182](#2182) [#2171](#2171) [#2171](#2171) [#2167](#2167) [#2134](#2134) [#2169](#2169) [#2195](#2195) [#2216](#2216) [#2227](#2227) [#2172](#2172) [#2475](https://github.com/equinor/webviz-subsurface-components/issues/2475) [#2504](https://github.com/equinor/webviz-subsurface-components/issues/2504) [#2524](https://github.com/equinor/webviz-subsurface-components/issues/2524) [#2609](https://github.com/equinor/webviz-subsurface-components/issues/2609) [#2607](https://github.com/equinor/webviz-subsurface-components/issues/2607) [#2603](https://github.com/equinor/webviz-subsurface-components/issues/2603) [#2599](https://github.com/equinor/webviz-subsurface-components/issues/2599) [#2565](https://github.com/equinor/webviz-subsurface-components/issues/2565) [#2576](https://github.com/equinor/webviz-subsurface-components/issues/2576) [#2572](https://github.com/equinor/webviz-subsurface-components/issues/2572) [#2571](https://github.com/equinor/webviz-subsurface-components/issues/2571)
* bump ajv from 8.14.0 to 8.16.0 in /typescript ([#2138](#2138)) ([3f02100](3f02100)), closes [ajv-validator/ajv#2444](ajv-validator/ajv#2444) [ajv-validator/ajv#2415](ajv-validator/ajv#2415) [ajv-validator/ajv#2442](ajv-validator/ajv#2442) [ajv-validator/ajv#2415](ajv-validator/ajv#2415) [#2444](https://github.com/equinor/webviz-subsurface-components/issues/2444) [#2442](https://github.com/equinor/webviz-subsurface-components/issues/2442) [#2415](https://github.com/equinor/webviz-subsurface-components/issues/2415)
* bump mathjs from 12.4.2 to 13.0.0 in /typescript ([#2124](#2124)) ([caae3f2](caae3f2)), closes [#3223](https://github.com/equinor/webviz-subsurface-components/issues/3223) [#3139](https://github.com/equinor/webviz-subsurface-components/issues/3139) [#2838](https://github.com/equinor/webviz-subsurface-components/issues/2838) [#3152](https://github.com/equinor/webviz-subsurface-components/issues/3152) [#2838](https://github.com/equinor/webviz-subsurface-components/issues/2838) [rawify/Fraction.js#68](rawify/Fraction.js#68) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#3207](https://github.com/equinor/webviz-subsurface-components/issues/3207) [#1240](#1240) [#3189](https://github.com/equinor/webviz-subsurface-components/issues/3189) [#3197](https://github.com/equinor/webviz-subsurface-components/issues/3197) [#3198](https://github.com/equinor/webviz-subsurface-components/issues/3198)
* Crash Removing Well Log in SLV ([#2122](#2122)) ([4139860](4139860)), closes [#2114](#2114)
* Property "setControllerDefaultZoom" does not exist on type "WellLogController" ([#2136](#2136)) ([a2390e2](a2390e2))
* semantic release not publishing ([#2160](#2160)) ([235c558](235c558))
* semantic release not publishing ([#2164](#2164)) ([9878239](9878239))
* StrictMode behaviour ([#2139](#2139)) ([807fff4](807fff4)), closes [#2110](#2110) [/github.com//issues/2053#issuecomment-2194025734](https://github.com//github.com/equinor/webviz-subsurface-components/issues/2053/issues/issuecomment-2194025734)

### Features

* color function ([#2054](#2054)) ([#2152](#2152)) ([36b85bb](36b85bb))
renovate bot added a commit to open-feature/playground that referenced this pull request Jul 26, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ajv](https://ajv.js.org)
([source](https://github.com/ajv-validator/ajv)) | [`8.12.0` ->
`8.17.1`](https://renovatebot.com/diffs/npm/ajv/8.12.0/8.17.1) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/ajv/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/ajv/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/ajv/8.12.0/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/ajv/8.12.0/8.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>ajv-validator/ajv (ajv)</summary>

###
[`v8.17.1`](https://github.com/ajv-validator/ajv/releases/tag/v8.17.1)

[Compare
Source](https://github.com/ajv-validator/ajv/compare/v8.16.0...v8.17.1)

#### What's Changed

- bump version to 8.17.1 by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2472

**Full Changelog**:
ajv-validator/ajv@v8.17.0...v8.17.1

#### Plus everything in 8.17.0 which failed to release

The only functional change is to switch from uri-js (which is no longer
supported), to fast-uri. This is the second attempt and the team on
fast-uri have been really helpful addressing the issues we found last
time.

Revert "Revert fast-uri change
([ajv-validator/ajv#2444)"
by [@&#8203;gurgunday](https://github.com/gurgunday) in
[ajv-validator/ajv#2448
fix: ignore new eslint error for
[@&#8203;typescript-eslint/no-extraneous-class](https://github.com/typescript-eslint/no-extraneous-class)
by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2455
docs: clarify behaviour of addVocabulary by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2454
docs: refactor to improve legibility by
[@&#8203;blottn](https://github.com/blottn) in
[ajv-validator/ajv#2432
Fix grammatical typo in managing-schemas.md by
[@&#8203;wetneb](https://github.com/wetneb) in
[ajv-validator/ajv#2305
docs: Fix broken strict-mode link by
[@&#8203;alexanderjsx](https://github.com/alexanderjsx) in
[ajv-validator/ajv#2459
feat: add test for encoded refs and bump fast-uri by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2449
fix: changes for
[@&#8203;typescript-eslint/array-type](https://github.com/typescript-eslint/array-type)
rule by [@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2467
fixes
[ajv-validator/ajv#2217
- clarify custom keyword naming by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2457

###
[`v8.16.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.16.0)

[Compare
Source](https://github.com/ajv-validator/ajv/compare/v8.15.0...v8.16.0)

#### What's Changed

- Revert fast-uri change by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2444

**Full Changelog**:
ajv-validator/ajv@v8.15.0...v8.16.0

###
[`v8.15.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.15.0)

[Compare
Source](https://github.com/ajv-validator/ajv/compare/v8.14.0...v8.15.0)

#### What's Changed

- Replace `uri-js` with `fast-uri` by
[@&#8203;vixalien](https://github.com/vixalien) in
[ajv-validator/ajv#2415
- Bump to 8.15.0 by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2442

#### New Contributors

- [@&#8203;vixalien](https://github.com/vixalien) made their first
contribution in
[ajv-validator/ajv#2415

**Full Changelog**:
ajv-validator/ajv@v8.14.0...v8.15.0

###
[`v8.14.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.14.0)

[Compare
Source](https://github.com/ajv-validator/ajv/compare/v8.13.0...v8.14.0)

#### What's Changed

- readme: build badge by
[@&#8203;epoberezkin](https://github.com/epoberezkin) in
[ajv-validator/ajv#2424
- Update workflows by [@&#8203;rotu](https://github.com/rotu) in
[ajv-validator/ajv#2410
- docs: add warning to maxLength / minLength by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2428
- fix: broken link in docs warning by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2431
- compileAsync a schema with discriminator and $ref, fixes
[#&#8203;2427](https://github.com/ajv-validator/ajv/issues/2427) by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2433
- bump version to 8.14.0 for publishing by
[@&#8203;jasoniangreen](https://github.com/jasoniangreen) in
[ajv-validator/ajv#2440

#### New Contributors

- [@&#8203;rotu](https://github.com/rotu) made their first
contribution in
[ajv-validator/ajv#2410

**Full Changelog**:
ajv-validator/ajv@v8.13.0...v8.14.0

###
[`v8.13.0`](https://github.com/ajv-validator/ajv/releases/tag/v8.13.0)

[Compare
Source](https://github.com/ajv-validator/ajv/compare/v8.12.0...v8.13.0)

-   add named exports
-   update dependencies
-   update node.js

</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 was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/open-feature/playground).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzguMCIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJyZW5vdmF0ZSJdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

8 participants