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

chore(deps): update debug ui dependencies (non-major) #5914

Merged
merged 1 commit into from
Jun 17, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-codegen/client-preset (source) 4.2.6 -> 4.3.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.12.0 -> 7.13.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.12.0 -> 7.13.0 age adoption passing confidence
graphql 16.8.1 -> 16.8.2 age adoption passing confidence
maplibre-gl (source) 4.3.2 -> 4.4.0 age adoption passing confidence
prettier (source) 3.3.1 -> 3.3.2 age adoption passing confidence
vite (source) 5.2.13 -> 5.3.1 age adoption passing confidence

Release Notes

dotansimha/graphql-code-generator (@​graphql-codegen/client-preset)

v4.3.0

Compare Source

Minor Changes
  • #​10001 1be6e65 Thanks @​n1ru4l! - Support discriminating null and undefined within the useFragment function.

    function MyComponent(props: FragmentType<typeof MyFragment> | null) {
      const data = useFragment(MyFragment, props);
      // data is `MyFragment | null`
    }
    
    function MyComponent(props: FragmentType<typeof MyFragment> | undefined) {
      const data = useFragment(MyFragment, props);
      // data is `MyFragment | undefined`
    }

    Before, the returned type from useFragment was always TType | null | undefined.

  • #​9804 5e594ef Thanks @​rachel-church! - Preserving Array<T> or ReadonlyArray<T> in useFragment() return type.

Patch Changes
  • #​9996 99f449c Thanks @​nahn20! - Added configuration to allow for custom hash functions for persisted documents in the client preset
Example
import { type CodegenConfig } from '@&#8203;graphql-codegen/cli';

const config: CodegenConfig = {
  schema: 'schema.graphql',
  documents: ['src/**/*.tsx'],
  generates: {
    './src/gql/': {
      preset: 'client',
      presetConfig: {
        persistedDocuments: {
          hashAlgorithm: operation => {
            const shasum = crypto.createHash('sha512');
            shasum.update(operation);
            return shasum.digest('hex');
          },
        },
      },
    },
  },
};
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.13.0

Compare Source

🚀 Features
  • typescript-estree: require import = require() argument to be a string literal

  • typescript-estree: forbid .body, .async, .generator on declare function

  • eslint-plugin: [no-dynamic-delete] allow all string literals as index

🩹 Fixes
  • ast-spec: function-call-like callee should be Expression not LeftHandSideExpression

  • scope-manager: handle index signature in class

  • eslint-plugin: [init-declarations] refine report locations

  • eslint-plugin: [no-base-to-string] make error message more nuanced

  • eslint-plugin: [no-unsafe-assignment] be more specific about error types

  • eslint-plugin: [no-magic-numbers] fix implementation of the ignore option

❤️ Thank You
  • Fotis Papadogeorgopoulos
  • Joshua Chen
  • Kirk Waiblinger
  • Tobiloba Adedeji
  • Vinccool96
  • YeonJuan

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.13.0

Compare Source

🚀 Features
  • parser, typescript-estree: export withoutProjectParserOptions utility
❤️ Thank You
  • Fotis Papadogeorgopoulos
  • Joshua Chen
  • Kirk Waiblinger
  • Tobiloba Adedeji
  • Vinccool96
  • YeonJuan

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

graphql/graphql-js (graphql)

v16.8.2

Compare Source

v16.8.2 (2024-06-12)

Bug Fix 🐞* #​4022 fix: remove globalThis check and align with what bundlers can accept (@​JoviDeCroock)
Internal 🏠* #​4104 Fix publish scripts (@​benjie)
Committers: 2
maplibre/maplibre-gl-js (maplibre-gl)

v4.4.0

Compare Source

✨ Features and improvements
  • Improve animation curve when easeTo and flyTo with constraints (#​3793)
  • For filled extrusions, calculate the elevation per polygon (#​3313)
  • Add events to GeolocateControl to allow a more granular interaction (#​3847)
  • Make MapOptions.style optional to be consistent with Map.setStyle(null) (#​4151)
  • Use Autoprefixer to handle vendor prefixes in CSS (#​4165)
  • Make aria-label configurable for Map, Marker and Popup (#​4147)
  • Map <canvas> is focusable only when interactive (#​4147)
  • "Accept" headers set in Request Transformers are not overwritten (#​4210)
  • ⚠️ Rename projMatrix to modelViewProjectionMatrix. Also rename invProjMatrix, alignedProjMatrix accordingly (#​4215)
  • Publish an unminified prod build (#​4265)
🐞 Bug fixes
  • ⚠️ Allow breaking lines in labels before a left parenthesis (#​4138)
  • ⚠️ Fix ignoring embedded line breaks when symbol-placement is line or line-center (#​4124)
  • Ensure loseContext exists before calling it (#​4245)
  • Update deprecated -ms-high-contrast vendor prefix to (forced-colors: active) and (prefers-color-scheme: light) as appropriate (#​4250)
prettier/prettier (prettier)

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>
vitejs/vite (vite)

v5.3.1

Compare Source

v5.3.0

Compare Source


Configuration

📅 Schedule: Branch creation - "on the first day of the week" in timezone Europe/Berlin, 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner June 16, 2024 01:44
@renovate renovate bot requested a review from testower June 16, 2024 01:44
Copy link

codecov bot commented Jun 16, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 69.46%. Comparing base (e8e16e4) to head (5aab28f).

Additional details and impacted files
@@            Coverage Diff             @@
##             dev-2.x    #5914   +/-   ##
==========================================
  Coverage      69.45%   69.46%           
- Complexity     17068    17069    +1     
==========================================
  Files           1928     1928           
  Lines          73580    73580           
  Branches        7550     7550           
==========================================
+ Hits           51107    51109    +2     
+ Misses         19848    19847    -1     
+ Partials        2625     2624    -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@testower testower left a comment

Choose a reason for hiding this comment

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

Tested locally

@testower testower enabled auto-merge June 17, 2024 08:41
@testower testower merged commit 0b35dc7 into dev-2.x Jun 17, 2024
7 checks passed
@testower testower deleted the renovate/debug-ui-dependencies-(non-major) branch June 17, 2024 08:42
@t2gran t2gran added this to the 2.6 (next release) milestone Jul 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants