Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 79aeaf9

Browse files
Bump uuid from 3.0.6 to 4.0.0 in /lib/web_ui (#45794)
Bumps [uuid](https://github.com/Daegalus/dart-uuid) from 3.0.6 to 4.0.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Daegalus/dart-uuid/releases">uuid's releases</a>.</em></p> <blockquote> <h2>4.0.0</h2> <h2>What's Changed</h2> <ul> <li>Provide constants for RFC4122 namespaces in UuidValue by <a href="https://github.com/SpencerC"><code>@�SpencerC</code></a> in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/85">daegalus/dart-uuid#85</a></li> <li>Fix classes to be properly const by <a href="https://github.com/daegalus"><code>@�daegalus</code></a> in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/88">daegalus/dart-uuid#88</a></li> <li>Fix <a href="https://redirect.github.com/Daegalus/dart-uuid/issues/89">#89</a> v7: Uint64List not supported by dart2js. and v6: Uint64 accessor not supported by dart2js. by <a href="https://github.com/hambergerpls"><code>@�hambergerpls</code></a> in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/90">daegalus/dart-uuid#90</a></li> <li>check the length of the Uint8list returned by the custom RNG by <a href="https://github.com/wph144"><code>@�wph144</code></a> in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/91">daegalus/dart-uuid#91</a></li> <li>toBytes no longer validates by <a href="https://github.com/Erhannis"><code>@�Erhannis</code></a> in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/92">daegalus/dart-uuid#92</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/SpencerC"><code>@�SpencerC</code></a> made their first contribution in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/85">daegalus/dart-uuid#85</a></li> <li><a href="https://github.com/hambergerpls"><code>@�hambergerpls</code></a> made their first contribution in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/90">daegalus/dart-uuid#90</a></li> <li><a href="https://github.com/wph144"><code>@�wph144</code></a> made their first contribution in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/91">daegalus/dart-uuid#91</a></li> <li><a href="https://github.com/Erhannis"><code>@�Erhannis</code></a> made their first contribution in <a href="https://redirect.github.com/daegalus/dart-uuid/pull/92">daegalus/dart-uuid#92</a></li> </ul> <h2>All changes since v3.0.7</h2> <h3>v4.0.0</h3> <ul> <li>toBytes on UuidValue now does not validate by default, but has the option <code>validate</code> that can be set to true if you need validation when calling it. (Thanks <a href="https://github.com/Erhannis"><code>@�Erhannis</code></a>)</li> </ul> <h3>v4.0.0-beta3-1</h3> <ul> <li>Ensure that any custom RNG implementation produces Uint8Lists of length 16. (Thanks <a href="https://github.com/wph144"><code>@�wph144</code></a>)</li> </ul> <h3>v4.0.0-beta3</h3> <ul> <li><strong>[BREAKING CHANGE]</strong> Replacing UuidUtil rng functions with RNG classes. <ul> <li>UuidUtil.mathRNG() is replaced with MathRNG().generate().</li> <li>UuidUtil.cryptoRNG() is replaced with CryptoRNG().generate().</li> <li>Custom crypto implementations just need to implement the <code>RNG</code> abstract class.</li> <li>namedArgs and positionalArgs have been removed from GlobalOptions</li> <li>You may use LegacyRNG() if you need to use the old function style RNG.</li> </ul> </li> <li>Fix a bug with the usage of Uint64List in Dart2js by not using it. (Thanks <a href="https://github.com/hambergerpls"><code>@�hambergerpls</code></a>)</li> </ul> <h3>v4.0.0-beta2</h3> <ul> <li><strong>[BREAKING CHANGE]</strong> The <code>Uuid</code> class now takes a <code>GlobalOptions</code> class instead of a <code>Map&lt;String, dynamic&gt;</code>.</li> <li>Added options classes to eventually replace the Map parameter.</li> <li><strong>[BREAKING CHANGE]</strong> Since v6,v7,v8 are new for 4.0, I have made it so they only take the new options class.</li> <li>Reworked the constructors, and moved state out of the classes. Const is now supported properly again</li> <li>Switched tests to use const Uuid to catch regressions.</li> <li>Set the <code>options</code> parameter in v1, v4, and v5 to deprecated.</li> <li><strong>[BREAKING CHANGE]</strong> Make UuidValue properly const also <ul> <li>Can no longer run validation on the const variant.</li> <li>Added UuidValue.withValidation() to handle this usecase, it can't be const.</li> <li>If you need const and validation. Create the UuidValue with the UUID, then call the <code>validate()</code> function on it.</li> </ul> </li> </ul> <h3>v4.0.0-beta1-1</h3> <ul> <li>Mostly cleanup, linting, updating depedencies, etc.</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/daegalus/dart-uuid/blob/main/CHANGELOG.md">uuid's changelog</a>.</em></p> <blockquote> <p>v4.0.0</p> <ul> <li>toBytes on UuidValue now does not validate by default, but has the option <code>validate</code> that can be set to true if you need validation when calling it. (Thanks <a href="https://github.com/Erhannis"><code>@�Erhannis</code></a>)</li> </ul> <p>v4.0.0-beta3-1</p> <ul> <li>Ensure that any custom RNG implementation produces Uint8Lists of length 16. (Thanks <a href="https://github.com/wph44"><code>@�wph44</code></a>)</li> </ul> <p>v4.0.0-beta3</p> <ul> <li><strong>[BREAKING CHANGE]</strong> Replacing UuidUtil rng functions with RNG classes. <ul> <li>UuidUtil.mathRNG() is replaced with MathRNG().generate().</li> <li>UuidUtil.cryptoRNG() is replaced with CryptoRNG().generate().</li> <li>Custom crypto implementations just need to implement the <code>RNG</code> abstract class.</li> <li>namedArgs and positionalArgs have been removed from GlobalOptions</li> <li>You may use LegacyRNG() if you need to use the old function style RNG.</li> </ul> </li> <li>Fix a bug with the usage of Uint64List in Dart2js by not using it. (Thanks <a href="https://github.com/hambergerpls"><code>@�hambergerpls</code></a>)</li> </ul> <p>v4.0.0-beta2</p> <ul> <li><strong>[BREAKING CHANGE]</strong> The <code>Uuid</code> class now takes a <code>GlobalOptions</code> class instead of a <code>Map&lt;String, dynamic&gt;</code>.</li> <li>Added options classes to eventually replace the Map parameter.</li> <li><strong>[BREAKING CHANGE]</strong> Since v6,v7,v8 are new for 4.0, I have made it so they only take the new options class.</li> <li>Reworked the constructors, and moved state out of the classes. Const is now supported properly again</li> <li>Switched tests to use const Uuid to catch regressions.</li> <li>Set the <code>options</code> parameter in v1, v4, and v5 to deprecated.</li> <li><strong>[BREAKING CHANGE]</strong> Make UuidValue properly const also <ul> <li>Can no longer run validation on the const variant.</li> <li>Added UuidValue.withValidation() to handle this usecase, it can't be const.</li> <li>If you need const and validation. Create the UuidValue with the UUID, then call the <code>validate()</code> function on it.</li> </ul> </li> </ul> <p>v4.0.0-beta1-1</p> <ul> <li>Mostly cleanup, linting, updating depedencies, etc.</li> </ul> <p>v4.0.0-beta1</p> <ul> <li>Break up versions into individual objects that can be used standalone.</li> <li>No more colliding global states between versions</li> <li>Added UUID v6, v7, v8 from the new RFC.</li> <li>Add <code>time</code>, <code>version</code>, and <code>variant</code> functions to UuidValue</li> </ul> <p>v3.0.7</p> <ul> <li>Fixed parse to allow buffers larger than 16 bytes to be used. [Thanks <a href="https://github.com/hoylen"><code>@�hoylen</code></a>]</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/daegalus/dart-uuid/commit/e67b968010d9677dc5d470c020b151f4d0f78cb1"><code>e67b968</code></a> Fix SDK constraints</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/13da889a557436e1ce4b5609676a9242af8dc32c"><code>13da889</code></a> Update docs</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/8b0ada22b8e0c499ea3907722077ddfae83d39f3"><code>8b0ada2</code></a> Prep for 4.0.0 release</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/3416381ba2cdd3f9844ecfcf2193a73e7d9038ab"><code>3416381</code></a> Added validate option to toBytes. Also ran dart format, because of git CI fail.</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/8a49c149510ea58cf08dda72b371ffba93403e92"><code>8a49c14</code></a> Revert &quot;Made fromByteList and fromList match&quot; - turns out it wasn't</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/c2dd58401429c576509668a3ff55ca2fbe7b58bd"><code>c2dd584</code></a> Made fromByteList and fromList match</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/14cb91c44d544b4ec2b47a892fb5cab54db559d1"><code>14cb91c</code></a> toBytes no longer validates</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/54ccdce893b09bb29f8ec6a6609a438183a5060d"><code>54ccdce</code></a> Cleanup and regenerate docs</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/06e425a21dfb702607bab706eaff367853b89eed"><code>06e425a</code></a> Cleanup and version bump</li> <li><a href="https://github.com/daegalus/dart-uuid/commit/ca2bf53b329ba76934203e528f2cffe095f8df78"><code>ca2bf53</code></a> check the length of the Uint8list returned by the custom RNG</li> <li>Additional commits viewable in <a href="https://github.com/Daegalus/dart-uuid/compare/3.0.6...4.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=uuid&package-manager=pub&previous-version=3.0.6&new-version=4.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
1 parent 826be88 commit 79aeaf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web_ui/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dev_dependencies:
4242
test_api: any
4343
test_core: any
4444
typed_data: any
45-
uuid: 3.0.6
45+
uuid: 4.0.0
4646
watcher: 1.1.0
4747
web_socket_channel: any
4848
webdriver: 3.0.1

0 commit comments

Comments
 (0)