[PR #1609] [CLOSED] chore(deps): bump schemars from 0.8.22 to 1.1.0 #1480

Closed
opened 2026-01-05 14:55:25 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/1609
Author: @dependabot[bot]
Created: 12/1/2025
Status: Closed

Base: masterHead: dependabot/cargo/schemars-1.1.0


📝 Commits (1)

  • 2c224b8 chore(deps): bump schemars from 0.8.22 to 1.1.0

📊 Changes

2 files changed (+19 additions, -6 deletions)

View changed files

📝 Cargo.lock (+18 -5)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps schemars from 0.8.22 to 1.1.0.

Release notes

Sourced from schemars's releases.

v1.1.0

Added

  • Public functions that have no side-effects are now marked with #[must_use] so that they report a lint warning when the returned value is unused, as this likely indicates a mistake.

Fixed

v1.0.5

Fixed

v1.0.4

Fixed

v1.0.3

Fixed

  • Fix compile error when a doc comment is set on both a transparent (or newtype) struct and its field (GREsau/schemars#446)
  • Fix json_schema!() macro compatibility when used from pre-2021 rust editions (GREsau/schemars#447)

v1.0.2

Fixed

v1.0.1

Fixed

  • Deriving JsonSchema with no_std broken due to std::borrow::ToOwned trait not being in scope (GREsau/schemars#441)

v1.0.0

This is a major release with many additions, fixes and changes since 0.8 (but not many since 0.9). While the basic usage (deriving JsonSchema and using schema_for!() or SchemaGenerator) is mostly unchanged, you may wish to consult the migration guide which covers some of the most significant changes.

Changes since 1.0.0-rc.2:

Added

  • #[schemars(bound = ...)] attributes are now used from fields as well as containers
  • The Schema::pointer(...) method now works when given a JSON pointer in URI Fragment representation with a leading # character. In particular, this means that you can now lookup a schema from a $ref value using that method.

Fixed

  • Schema names that contain special characters are now correctly encoded when used inside a $ref value (GREsau/schemars#436)

... (truncated)

Changelog

Sourced from schemars's changelog.

[1.1.0] - 2025-11-05

Added

  • Public functions that have no side-effects are now marked with #[must_use] so that they report a lint warning when the returned value is unused, as this likely indicates a mistake.

Fixed

[1.0.5] - 2025-11-02

Fixed

[1.0.4] - 2025-07-06

Fixed

[1.0.3] - 2025-06-28

Fixed

  • Fix compile error when a doc comment is set on both a transparent (or newtype) struct and its field (GREsau/schemars#446)
  • Fix json_schema!() macro compatibility when used from pre-2021 rust editions (GREsau/schemars#447)

[1.0.2] - 2025-06-26

Fixed

[1.0.1] - 2025-06-24

Fixed

  • Deriving JsonSchema with no_std broken due to std::borrow::ToOwned trait not being in scope (GREsau/schemars#441)

[1.0.0] - 2025-06-23

This is a major release with many additions, fixes and changes since 0.8 (but not many since 0.9). While the basic usage (deriving JsonSchema and using schema_for!() or SchemaGenerator) is mostly unchanged, you may wish to consult the migration guide which covers some of the most significant changes.

Changes since 1.0.0-rc.2:

Added

... (truncated)

Commits

Dependabot compatibility score

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.


Dependabot commands and options

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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/LGUG2Z/komorebi/pull/1609 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 12/1/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/schemars-1.1.0` --- ### 📝 Commits (1) - [`2c224b8`](https://github.com/LGUG2Z/komorebi/commit/2c224b879533cc9d85c1dc446e55698395482314) chore(deps): bump schemars from 0.8.22 to 1.1.0 ### 📊 Changes **2 files changed** (+19 additions, -6 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+18 -5) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [schemars](https://github.com/GREsau/schemars) from 0.8.22 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/GREsau/schemars/releases">schemars's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <h3>Added</h3> <ul> <li>Public functions that have no side-effects are now marked with <a href="https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute"><code>#[must_use]</code></a> so that they report a lint warning when the returned value is unused, as this likely indicates a mistake.</li> </ul> <h3>Fixed</h3> <ul> <li>Improve accuracy of schemas for flattened enums, in particular: unit variants of externally-tagged enums, and enums wrapped in <code>Option&lt;&gt;</code>. (<a href="https://redirect.github.com/GREsau/schemars/issues/464">GREsau/schemars#464</a> / <a href="https://redirect.github.com/GREsau/schemars/pull/483">GREsau/schemars#483</a>)</li> </ul> <h2>v1.0.5</h2> <h3>Fixed</h3> <ul> <li>Fix <code>schema.pointer_mut()</code> to resolve URI fragment identifiers like <code>#/$defs/foo</code>, matching current behaviour of <code>schema.pointer()</code> (<a href="https://redirect.github.com/GREsau/schemars/issues/478">GREsau/schemars#478</a> / <a href="https://redirect.github.com/GREsau/schemars/pull/479">GREsau/schemars#479</a>)</li> </ul> <h2>v1.0.4</h2> <h3>Fixed</h3> <ul> <li>Fix <code>JsonSchema</code> impl on <a href="https://doc.rust-lang.org/std/sync/atomic/">atomic</a> types being ignored on non-nightly compilers due to a buggy <code>cfg</code> check (<a href="https://redirect.github.com/GREsau/schemars/issues/453">GREsau/schemars#453</a>)</li> <li>Fix compatibility with minimal dependency versions, e.g. old(-ish) versions of <code>syn</code> (<a href="https://redirect.github.com/GREsau/schemars/issues/450">GREsau/schemars#450</a>)</li> <li>Fix derive for empty tuple variants (<a href="https://redirect.github.com/GREsau/schemars/issues/455">GREsau/schemars#455</a>)</li> </ul> <h2>v1.0.3</h2> <h3>Fixed</h3> <ul> <li>Fix compile error when a doc comment is set on both a <code>transparent</code> (or newtype) struct and its field (<a href="https://redirect.github.com/GREsau/schemars/issues/446">GREsau/schemars#446</a>)</li> <li>Fix <code>json_schema!()</code> macro compatibility when used from pre-2021 rust editions (<a href="https://redirect.github.com/GREsau/schemars/pull/447">GREsau/schemars#447</a>)</li> </ul> <h2>v1.0.2</h2> <h3>Fixed</h3> <ul> <li>Fix schema properties being incorrectly reordered during serialization (<a href="https://redirect.github.com/GREsau/schemars/issues/444">GREsau/schemars#444</a>)</li> </ul> <h2>v1.0.1</h2> <h3>Fixed</h3> <ul> <li>Deriving <code>JsonSchema</code> with <code>no_std</code> broken due to <code>std::borrow::ToOwned</code> trait not being in scope (<a href="https://redirect.github.com/GREsau/schemars/issues/441">GREsau/schemars#441</a>)</li> </ul> <h2>v1.0.0</h2> <p>This is a major release with many additions, fixes and changes since 0.8 (but not many since 0.9). While the basic usage (deriving <code>JsonSchema</code> and using <code>schema_for!()</code> or <code>SchemaGenerator</code>) is mostly unchanged, you may wish to consult the <a href="https://graham.cool/schemars/migrating/">migration guide</a> which covers some of the most significant changes.</p> <p>Changes since 1.0.0-rc.2:</p> <h3>Added</h3> <ul> <li><code>#[schemars(bound = ...)]</code> attributes are now used from fields as well as containers</li> <li>The <a href="https://docs.rs/schemars/1.0.0/schemars/struct.Schema.html#method.pointer"><code>Schema::pointer(...)</code></a> method now works when given a JSON pointer in URI Fragment representation with a leading <code>#</code> character. In particular, this means that you can now lookup a schema from a <code>$ref</code> value using that method.</li> </ul> <h3>Fixed</h3> <ul> <li>Schema names that contain special characters are now correctly encoded when used inside a <code>$ref</code> value (<a href="https://redirect.github.com/GREsau/schemars/pull/436">GREsau/schemars#436</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/GREsau/schemars/blob/master/CHANGELOG.md">schemars's changelog</a>.</em></p> <blockquote> <h2>[1.1.0] - 2025-11-05</h2> <h3>Added</h3> <ul> <li>Public functions that have no side-effects are now marked with <a href="https://doc.rust-lang.org/reference/attributes/diagnostics.html#the-must_use-attribute"><code>#[must_use]</code></a> so that they report a lint warning when the returned value is unused, as this likely indicates a mistake.</li> </ul> <h3>Fixed</h3> <ul> <li>Improve accuracy of schemas for flattened enums, in particular: unit variants of externally-tagged enums, and enums wrapped in <code>Option&lt;&gt;</code>. (<a href="https://redirect.github.com/GREsau/schemars/issues/464">GREsau/schemars#464</a> / <a href="https://redirect.github.com/GREsau/schemars/pull/483">GREsau/schemars#483</a>)</li> </ul> <h2>[1.0.5] - 2025-11-02</h2> <h3>Fixed</h3> <ul> <li>Fix <code>schema.pointer_mut()</code> to resolve URI fragment identifiers like <code>#/$defs/foo</code>, matching current behaviour of <code>schema.pointer()</code> (<a href="https://redirect.github.com/GREsau/schemars/issues/478">GREsau/schemars#478</a> / <a href="https://redirect.github.com/GREsau/schemars/pull/479">GREsau/schemars#479</a>)</li> </ul> <h2>[1.0.4] - 2025-07-06</h2> <h3>Fixed</h3> <ul> <li>Fix <code>JsonSchema</code> impl on <a href="https://doc.rust-lang.org/std/sync/atomic/">atomic</a> types being ignored on non-nightly compilers due to a buggy <code>cfg</code> check (<a href="https://redirect.github.com/GREsau/schemars/issues/453">GREsau/schemars#453</a>)</li> <li>Fix compatibility with minimal dependency versions, e.g. old(-ish) versions of <code>syn</code> (<a href="https://redirect.github.com/GREsau/schemars/issues/450">GREsau/schemars#450</a>)</li> <li>Fix derive for empty tuple variants (<a href="https://redirect.github.com/GREsau/schemars/issues/455">GREsau/schemars#455</a>)</li> </ul> <h2>[1.0.3] - 2025-06-28</h2> <h3>Fixed</h3> <ul> <li>Fix compile error when a doc comment is set on both a <code>transparent</code> (or newtype) struct and its field (<a href="https://redirect.github.com/GREsau/schemars/issues/446">GREsau/schemars#446</a>)</li> <li>Fix <code>json_schema!()</code> macro compatibility when used from pre-2021 rust editions (<a href="https://redirect.github.com/GREsau/schemars/pull/447">GREsau/schemars#447</a>)</li> </ul> <h2>[1.0.2] - 2025-06-26</h2> <h3>Fixed</h3> <ul> <li>Fix schema properties being incorrectly reordered during serialization (<a href="https://redirect.github.com/GREsau/schemars/issues/444">GREsau/schemars#444</a>)</li> </ul> <h2>[1.0.1] - 2025-06-24</h2> <h3>Fixed</h3> <ul> <li>Deriving <code>JsonSchema</code> with <code>no_std</code> broken due to <code>std::borrow::ToOwned</code> trait not being in scope (<a href="https://redirect.github.com/GREsau/schemars/issues/441">GREsau/schemars#441</a>)</li> </ul> <h2>[1.0.0] - 2025-06-23</h2> <p>This is a major release with many additions, fixes and changes since 0.8 (but not many since 0.9). While the basic usage (deriving <code>JsonSchema</code> and using <code>schema_for!()</code> or <code>SchemaGenerator</code>) is mostly unchanged, you may wish to consult the <a href="https://graham.cool/schemars/migrating/">migration guide</a> which covers some of the most significant changes.</p> <p>Changes since 1.0.0-rc.2:</p> <h3>Added</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/GREsau/schemars/commit/97b242704f9b9319d8e8ebd9818efaa418c0ccb7"><code>97b2427</code></a> v1.1.0</li> <li><a href="https://github.com/GREsau/schemars/commit/e67495be31e784d32f3d3310edb925458b0f2574"><code>e67495b</code></a> Improve optional enum flattening behaviour</li> <li><a href="https://github.com/GREsau/schemars/commit/e873af28bec5bf9ea88b26e275f4539de14d03cd"><code>e873af2</code></a> Improve enum flattening behaviour</li> <li><a href="https://github.com/GREsau/schemars/commit/86d0954ea8dbba3c296ececba7cea02399f11f9c"><code>86d0954</code></a> Simplify uuid test</li> <li><a href="https://github.com/GREsau/schemars/commit/228d41038a87d9e5978c796f8ce397d2c694a3be"><code>228d410</code></a> Set <code>#[must_use]</code> on pure functions</li> <li><a href="https://github.com/GREsau/schemars/commit/dd1f9e24bc7ef3fb6609697ea16a8bc48f665281"><code>dd1f9e2</code></a> Add action to catch semver violations</li> <li><a href="https://github.com/GREsau/schemars/commit/30a6d3da9c31c11d7f49bf00ee7f4ead44d5af9b"><code>30a6d3d</code></a> Typo in doc comments (&quot;mata-schema&quot;)</li> <li><a href="https://github.com/GREsau/schemars/commit/91f1c380241936cc72d286fc959ae154595712c7"><code>91f1c38</code></a> Add clippy CI job</li> <li><a href="https://github.com/GREsau/schemars/commit/39800f9d3a878c387db1d52c090c6762001d4314"><code>39800f9</code></a> Resolve clippy lints</li> <li><a href="https://github.com/GREsau/schemars/commit/b830f0de7894eb08ae296bae7a38a6f9bdcb6a90"><code>b830f0d</code></a> v1.0.5</li> <li>Additional commits viewable in <a href="https://github.com/GREsau/schemars/compare/v0.8.22...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=schemars&package-manager=cargo&previous-version=0.8.22&new-version=1.1.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`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-01-05 14:55:25 +01:00
adam closed this issue 2026-01-05 14:55:25 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#1480