Skip to content

Bump the production-dependencies group with 2 updates#565

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-51a183404b
Open

Bump the production-dependencies group with 2 updates#565
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/production-dependencies-51a183404b

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 24, 2026

Bumps the production-dependencies group with 2 updates: @webcoder49/code-input and schema-dts.

Updates @webcoder49/code-input from 2.8.1 to 2.8.2

Release notes

Sourced from @​webcoder49/code-input's releases.

2.8.2

Bug Fixes

  • Some polishing for FindAndReplace and GoToLine plugins: when no text is in the input box, it will consistently not be styled like an error has occurred, rather than sometimes having error styles, and sometimes not. #220
  • In these plugins, error styles have been adjusted so they do not damage the contrast ratio of the inputted text, making the text harder to read - full rationale is in the issue: #218
  • There's some specialised documentation: how to cache code-input elements correctly so they work with Single-Page Application frameworks like Turbo, in /interface/js #219

As always, if you find any bug or have any idea for enhancement (for this release or breaking changes for major version 3), please let me know! 🎉

Commits
  • cf58991 Release v2.8.2
  • d24192e Document usage with SPA libraries like Turbo (Fixes #219)
  • 5b5ce49 Remove anticipatory Codeberg message because code-input.js is now on Codeberg...
  • ffe146b Auto Minify JS and CSS files
  • 5b694d0 Remove console.logs accidentally left from testing
  • 6a1b02e Auto Minify JS and CSS files
  • 05b31cb Merge pull request #221 from WebCoder49/plugin-dialog-error-styles
  • b4dca53 Improve contrast for FindAndReplace and GoToLine dialog error styles (Fixes #...
  • 996a0e9 Remove error style from FindAndReplace and GoToLine dialogs when they contain...
  • See full diff in compare view

Updates schema-dts from 1.1.5 to 2.0.0

Release notes

Sourced from schema-dts's releases.

schema-dts & schema-dts-gen v2.0.0

Changes in schema-dts

  • Supports the latest Schema.org release from Schema.org v30 -- See https://schema.org/docs/releases.html#v30.0

  • Input and Output constraints are now supported, for example:

    import type {SearchAction, WebSite, WithActionConstraints} from 'schema-dts';
    const potentialAction: WithActionConstraints<SearchAction> = {
    '@​type': 'SearchAction',
    'query-input': 'required name=search_term_string',
    // ...
    };
    const website: WebSite = {
    '@​type': 'WebSite',
    potentialAction: {
    '@​type': 'SearchAction',
    'query-input': 'required name=search_term_string',
    } as WithActionConstraints<SearchAction>,
    };

  • Breaking change: Update typings for Roles so that they are not recursive, see #205 for more details

  • Breaking change: Quantity is now a core DataType, this is a change done in schema.org v30.0 and will technically make certain formerly-legal (but likely invalid) assignments no longer work

  • "Leaf" types are now exported. While objects like Thing or Organization require a type union that includes the object itself, it can also include any of its children. Now, if you want type something as a Thing exactly, you can import ThingLeaf which can only be a Thing and does not allow sub-types.

  • Support MergeLeafTypes, which fixes a long-running user request (#179 #189 #203), allowing a multi-typed schema object to be declared. Shout out to @​mjy9088 and @​cochinescu for the work to get this working. This allows declarations like this to be made:

    import type { MergeLeafTypes,ProductLeaf, SoftwareApplicationLeaf,  WithContext } from 'schema-dts';
    const app: WithContext<MergeLeafTypes<[ProductLeaf, SoftwareApplicationLeaf]>> =
    {
    '@​context': 'https://schema.org',
    '@​type': ['Product', 'SoftwareApplication'],
    name: 'My App',
    offers: {
    '@​type': 'Offer',
    price: 89,
    priceCurrency: 'USD',
    },
    operatingSystem: 'Any',
    };

    while #189 and #179 are not completely addressed since a random Thing cannot be a merged type, this allows some multi-type objects to exist, though they need to be explicitly declared as such by the developer.

  • Technically a breaking change: Some non-schema.org types exported in schema-dts are now renamed. These are included mostly for equivalence because the Schema.org ontology defines them, but most users should not depend on them. The names for these classes are now escaped fully-qualified IRIs instead of just the "in-context" name. This is needed because new types with the same "in-context" name have been added as external references, e.g. www.omg.org/spec/Commons/DatesAndTimes/Date which conflicts with schema.org/Date. Now, this is exported as www_omg_org_spec_Commons_DatesAndTimes_Date.

Changes in schema-dts-gen

  • Compatibility with Schema.org v30

... (truncated)

Commits
  • a848f5b Bump schema-dts version to 2.0.0
  • c993c36 Fix import clause overload and apply prettier
  • 7767d82 Add MergeLeafTypes helper and export leaf types
  • 6df4f89 Factor out common types that don't depend on the exact schema into schema-dts...
  • 8263488 Update installation commands in README files to use --save-dev flag
  • 0d91fcc Update withcontext.ts (comment typo)
  • 32c2b2d feat: add WithActionConstraints helper
  • See full diff in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 2 updates: [@webcoder49/code-input](https://github.com/WebCoder49/code-input) and [schema-dts](https://github.com/google/schema-dts/tree/HEAD/packages/schema-dts).


Updates `@webcoder49/code-input` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/WebCoder49/code-input/releases)
- [Commits](WebCoder49/code-input@v2.8.1...v2.8.2)

Updates `schema-dts` from 1.1.5 to 2.0.0
- [Release notes](https://github.com/google/schema-dts/releases)
- [Commits](https://github.com/google/schema-dts/commits/v2.0.0/packages/schema-dts)

---
updated-dependencies:
- dependency-name: "@webcoder49/code-input"
  dependency-version: 2.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: schema-dts
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 24, 2026
@dependabot dependabot bot requested a review from a team as a code owner March 24, 2026 16:18
@dependabot dependabot bot requested review from dcoffey3296 and jorisfluyt March 24, 2026 16:18
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants