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

build(deps-dev): bump the js-deps group with 9 updates #4240

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 11, 2025

Bumps the js-deps group with 9 updates:

Package From To
@apollo/client 3.12.4 3.12.5
@codemirror/commands 6.7.1 6.8.0
@codemirror/state 6.5.0 6.5.1
@codemirror/view 6.36.1 6.36.2
@typescript-eslint/eslint-plugin 8.19.0 8.19.1
@typescript-eslint/parser 8.19.0 8.19.1
glob 11.0.0 11.0.1
react-markdown 9.0.1 9.0.3
typescript 5.7.2 5.7.3

Updates @apollo/client from 3.12.4 to 3.12.5

Release notes

Sourced from @​apollo/client's releases.

v3.12.5

Patch Changes

  • #12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

    Migrating from <= v3.12.4

    If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

    -declare module "@apollo/client" {
    -  interface DataMasking {
    -    mode: "unmask"
    -  }
    -}

    If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

    declare module "@apollo/client" {
      interface DataMasking {
    -    enabled: true
    +    mode: "preserveTypes"
      }
    }

    If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

    declare module "@apollo/client" {
      interface DataMasking {
        mode: "unmask";
      }
    }
Changelog

Sourced from @​apollo/client's changelog.

3.12.5

Patch Changes

  • #12252 cb9cd4e Thanks @​jerelmiller! - Changes the default behavior of the MaybeMasked type to preserve types unless otherwise specified. This change makes it easier to upgrade from older versions of the client where types could have unexpectedly changed in the application due to the default of trying to unwrap types into unmasked types. This change also fixes the compilation performance regression experienced when simply upgrading the client since types are now preserved by default.

    A new mode option has now been introduced to allow for the old behavior. See the next section on migrating if you wish to maintain the old default behavior after upgrading to this version.

    Migrating from <= v3.12.4

    If you've adopted data masking and have opted in to using masked types by setting the enabled property to true, you can remove this configuration entirely:

    -declare module "@apollo/client" {
    -  interface DataMasking {
    -    mode: "unmask"
    -  }
    -}

    If you prefer to specify the behavior explicitly, change the property from enabled: true, to mode: "preserveTypes":

    declare module "@apollo/client" {
      interface DataMasking {
    -    enabled: true
    +    mode: "preserveTypes"
      }
    }

    If you rely on the default behavior in 3.12.4 or below and would like to continue to use unmasked types by default, set the mode to unmask:

    declare module "@apollo/client" {
      interface DataMasking {
        mode: "unmask";
      }
    }
Commits

Updates @codemirror/commands from 6.7.1 to 6.8.0

Changelog

Sourced from @​codemirror/commands's changelog.

6.8.0 (2025-01-08)

New features

The new cursorGroupForwardWin and selectGroupForwardWin commands implement Windows-style forward motion by group.

Commits

Updates @codemirror/state from 6.5.0 to 6.5.1

Changelog

Sourced from @​codemirror/state's changelog.

6.5.1 (2025-01-10)

Bug fixes

countColumn no longer loops infinitely when given a to that's higher than the input string's length.

Commits
  • aba3881 Mark version 6.5.1
  • 27e1977 Make countColumn robust to passing in an invalid end pos
  • 04a4ad7 Hide Text[Symbol.iterator] from docs
  • See full diff in compare view

Updates @codemirror/view from 6.36.1 to 6.36.2

Changelog

Sourced from @​codemirror/view's changelog.

6.36.2 (2025-01-09)

Bug fixes

Fix an issue where some kinds of relayouts could put the editor in a state where it believed it wasn't in window, preventing relayout, though it in fact was.

Make sure macOS double-space-to-period conversions are properly suppressed.

Fix an issue where native selection changes, such as mobile spacebar-drag, weren't being picked up in edit context mode.

Commits
  • b20446d Mark version 6.36.2
  • 4415fa9 React to selection-only changes in the edit context
  • 9c77d6d Fix double-space-to-period supppression on macOS Chrome
  • 26af8ea Fix macOS double-space-period suppression on Firefox
  • 3dca895 Drop use of event type no longer supported by TS definitions
  • 495a461 Add a usage section to readme
  • 4e47f5c Don't short-circuit out of measures when editor elt is visible
  • See full diff in compare view

Updates @typescript-eslint/eslint-plugin from 8.19.0 to 8.19.1

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.19.1

8.19.1 (2025-01-06)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] check array generic type (#10437)
  • eslint-plugin: [no-shadow] report correctly on parameters of functions declared with the declare keyword (#10543)
  • eslint-plugin: [strict-boolean-expressions] remove remaining (unsafe) autofixes (#10548)
  • eslint-plugin: [no-deprecated] doesn't report on shorthand property in an object expression (#10550)

❤️ Thank You

  • Kirk Waiblinger
  • mdm317
  • Ronen Amiel
  • Yukihiro Hasegawa @​y-hsgw

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.19.1 (2025-01-06)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-assertion] handle literal types (#10523)
  • eslint-plugin: [no-deprecated] doesn't report on shorthand property in an object expression (#10550)
  • eslint-plugin: [strict-boolean-expressions] remove remaining (unsafe) autofixes (#10548)
  • eslint-plugin: [no-shadow] report correctly on parameters of functions declared with the declare keyword (#10543)
  • eslint-plugin: [no-base-to-string] check array generic type (#10437)

❤️ Thank You

  • Kirk Waiblinger
  • mdm317
  • Ronen Amiel
  • Yukihiro Hasegawa @​y-hsgw

You can read about our versioning strategy and releases on our website.

Commits
  • 328b7df chore(release): publish 8.19.1
  • 5dedb1c docs: fix incorrect variable name in a comment in code example (#10613)
  • 6e05e56 fix: revert "fix(eslint-plugin): [no-unnecessary-type-assertion] handle liter...
  • 82716b8 fix(eslint-plugin): [no-unnecessary-type-assertion] handle literal types (#10...
  • c7154bf chore(eslint-plugin): use getConstraintInfo in no-unnecessary-template-expr...
  • 63b2d3e fix(eslint-plugin): [no-deprecated] doesn't report on shorthand property in a...
  • 4dbf48b fix(eslint-plugin): [strict-boolean-expressions] remove remaining (unsafe) au...
  • 3bacfa7 chore: upgrade to ts-api-utils 2.0 (#10567)
  • 4f50f64 docs: [return-await] make the rule no longer an extension of ESLint no-return...
  • 4e7f5f8 docs: [prefer-nullish-coalescing] fix admonition (#10574)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.19.0 to 8.19.1

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.19.1

8.19.1 (2025-01-06)

🩹 Fixes

  • eslint-plugin: [no-base-to-string] check array generic type (#10437)
  • eslint-plugin: [no-shadow] report correctly on parameters of functions declared with the declare keyword (#10543)
  • eslint-plugin: [strict-boolean-expressions] remove remaining (unsafe) autofixes (#10548)
  • eslint-plugin: [no-deprecated] doesn't report on shorthand property in an object expression (#10550)

❤️ Thank You

  • Kirk Waiblinger
  • mdm317
  • Ronen Amiel
  • Yukihiro Hasegawa @​y-hsgw

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.19.1 (2025-01-06)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Updates glob from 11.0.0 to 11.0.1

Commits

Updates react-markdown from 9.0.1 to 9.0.3

Release notes

Sourced from react-markdown's releases.

9.0.3

(same as 9.0.2 but now with d.ts files)

Full Changelog: remarkjs/react-markdown@9.0.2...9.0.3

9.0.2

Types

Miscellaneous

Full Changelog: remarkjs/react-markdown@9.0.1...9.0.2

Commits

Updates typescript from 5.7.2 to 5.7.3

Release notes

Sourced from typescript's releases.

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • a5e123d Update LKG
  • 8bc0204 🤖 Pick PR #60828 (Fix CodeQL configuration, releases) into release-5.7 (#60923)
  • 7aa63df 🤖 Pick PR #60393 (Don't try to add an implicit undefi...) into release-5.7 (#...
  • 9df7c36 Bump version to 5.7.3 and LKG
  • e167412 🤖 Pick PR #60794 (Harden sanitizeLog against incorr...) into release-5.7 (#...
  • 9ba364c Fix coverage build on release-5.7 (#60792)
  • 4b7441a 🤖 Pick PR #60680 (Mark the inherited any-based index ...) into release-5.7 (#...
  • e844dc3 Cherry-pick #60402, #60440, #60616 into release-5.7 (#60777)
  • 21b02a1 🤖 Pick PR #60749 (Do not require import attribute on ...) into release-5.7 (#...
  • b82fd16 🤖 Pick PR #60576 (Avoid incorrectly reusing assertion...) into release-5.7 (#...
  • Additional commits viewable 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 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 <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 js-deps group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.12.4` | `3.12.5` |
| [@codemirror/commands](https://github.com/codemirror/commands) | `6.7.1` | `6.8.0` |
| [@codemirror/state](https://github.com/codemirror/state) | `6.5.0` | `6.5.1` |
| [@codemirror/view](https://github.com/codemirror/view) | `6.36.1` | `6.36.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.19.0` | `8.19.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.19.0` | `8.19.1` |
| [glob](https://github.com/isaacs/node-glob) | `11.0.0` | `11.0.1` |
| [react-markdown](https://github.com/remarkjs/react-markdown) | `9.0.1` | `9.0.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.7.3` |


Updates `@apollo/client` from 3.12.4 to 3.12.5
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.12.4...v3.12.5)

Updates `@codemirror/commands` from 6.7.1 to 6.8.0
- [Changelog](https://github.com/codemirror/commands/blob/main/CHANGELOG.md)
- [Commits](codemirror/commands@6.7.1...6.8.0)

Updates `@codemirror/state` from 6.5.0 to 6.5.1
- [Changelog](https://github.com/codemirror/state/blob/main/CHANGELOG.md)
- [Commits](codemirror/state@6.5.0...6.5.1)

Updates `@codemirror/view` from 6.36.1 to 6.36.2
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](codemirror/view@6.36.1...6.36.2)

Updates `@typescript-eslint/eslint-plugin` from 8.19.0 to 8.19.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.19.1/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.19.0 to 8.19.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.19.1/packages/parser)

Updates `glob` from 11.0.0 to 11.0.1
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v11.0.0...v11.0.1)

Updates `react-markdown` from 9.0.1 to 9.0.3
- [Release notes](https://github.com/remarkjs/react-markdown/releases)
- [Changelog](https://github.com/remarkjs/react-markdown/blob/main/changelog.md)
- [Commits](remarkjs/react-markdown@9.0.1...9.0.3)

Updates `typescript` from 5.7.2 to 5.7.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.7.3)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@codemirror/commands"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-deps
- dependency-name: "@codemirror/state"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@codemirror/view"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: glob
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: react-markdown
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 11, 2025
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 size/xs
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants