opentripplanner / OpenTripPlanner

An open source multi-modal trip planner
http://www.opentripplanner.org
Other
2.12k stars 1.01k forks source link

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

Closed renovate[bot] closed 2 weeks ago

renovate[bot] commented 2 weeks ago

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`](https://togithub.com/dotansimha/graphql-code-generator/blob/HEAD/packages/presets/client/CHANGELOG.md#430) [Compare Source](https://togithub.com/dotansimha/graphql-code-generator/compare/@graphql-codegen/client-preset@4.2.6...@graphql-codegen/client-preset@4.3.0) ##### Minor Changes - [#​10001](https://togithub.com/dotansimha/graphql-code-generator/pull/10001) [`1be6e65`](https://togithub.com/dotansimha/graphql-code-generator/commit/1be6e65943b85162f3d465189d0a6df4b962df5d) Thanks [@​n1ru4l](https://togithub.com/n1ru4l)! - Support discriminating `null` and `undefined` within the `useFragment` function. ```ts function MyComponent(props: FragmentType | null) { const data = useFragment(MyFragment, props); // data is `MyFragment | null` } function MyComponent(props: FragmentType | undefined) { const data = useFragment(MyFragment, props); // data is `MyFragment | undefined` } ``` Before, the returned type from `useFragment` was always `TType | null | undefined`. - [#​9804](https://togithub.com/dotansimha/graphql-code-generator/pull/9804) [`5e594ef`](https://togithub.com/dotansimha/graphql-code-generator/commit/5e594ef8f39b9e1036b6bcaa977f914a66fec03e) Thanks [@​rachel-church](https://togithub.com/rachel-church)! - Preserving `Array` or `ReadonlyArray` in `useFragment()` return type. ##### Patch Changes - [#​9996](https://togithub.com/dotansimha/graphql-code-generator/pull/9996) [`99f449c`](https://togithub.com/dotansimha/graphql-code-generator/commit/99f449c8dcd645d49eda26e4ddfcb8ad7056ecbf) Thanks [@​nahn20](https://togithub.com/nahn20)! - Added configuration to allow for custom hash functions for persisted documents in the client preset ##### Example ```ts filename="codegen.ts" {10-12} import { type CodegenConfig } from '@​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'); }, }, }, }, }, }; ``` - Updated dependencies \[[`5501c62`](https://togithub.com/dotansimha/graphql-code-generator/commit/5501c621f19eb5ef8e703a21f7367e07e41f199c)]: - [@​graphql-codegen/add](https://togithub.com/graphql-codegen/add)[@​5](https://togithub.com/5).0.3
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin) ### [`v7.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#7130-2024-06-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0) ##### 🚀 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](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
typescript-eslint/typescript-eslint (@​typescript-eslint/parser) ### [`v7.13.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#7130-2024-06-10) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v7.12.0...v7.13.0) ##### 🚀 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](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
graphql/graphql-js (graphql) ### [`v16.8.2`](https://togithub.com/graphql/graphql-js/releases/tag/v16.8.2) [Compare Source](https://togithub.com/graphql/graphql-js/compare/v16.8.1...v16.8.2) #### v16.8.2 (2024-06-12) ##### Bug Fix 🐞\* [#​4022](https://togithub.com/graphql/graphql-js/pull/4022) fix: remove `globalThis` check and align with what bundlers can accept ([@​JoviDeCroock](https://togithub.com/JoviDeCroock)) ##### Internal 🏠\* [#​4104](https://togithub.com/graphql/graphql-js/pull/4104) Fix publish scripts ([@​benjie](https://togithub.com/benjie)) ##### Committers: 2 - Benjie([@​benjie](https://togithub.com/benjie)) - Jovi De Croock([@​JoviDeCroock](https://togithub.com/JoviDeCroock))
maplibre/maplibre-gl-js (maplibre-gl) ### [`v4.4.0`](https://togithub.com/maplibre/maplibre-gl-js/blob/HEAD/CHANGELOG.md#440) [Compare Source](https://togithub.com/maplibre/maplibre-gl-js/compare/v4.3.2...v4.4.0) ##### ✨ Features and improvements - Improve animation curve when easeTo and flyTo with constraints ([#​3793](https://togithub.com/maplibre/maplibre-gl-js/pull/3793)) - For filled extrusions, calculate the elevation per polygon ([#​3313](https://togithub.com/maplibre/maplibre-gl-js/issues/3313)) - Add events to `GeolocateControl` to allow a more granular interaction ([#​3847](https://togithub.com/maplibre/maplibre-gl-js/pull/3847)) - Make `MapOptions.style` optional to be consistent with `Map.setStyle(null)` ([#​4151](https://togithub.com/maplibre/maplibre-gl-js/pull/4151)) - Use Autoprefixer to handle vendor prefixes in CSS ([#​4165](https://togithub.com/maplibre/maplibre-gl-js/pull/4165)) - Make `aria-label` configurable for Map, Marker and Popup ([#​4147](https://togithub.com/maplibre/maplibre-gl-js/pull/4147)) - Map `` is focusable only when interactive ([#​4147](https://togithub.com/maplibre/maplibre-gl-js/pull/4147)) - "Accept" headers set in Request Transformers are not overwritten ([#​4210](https://togithub.com/maplibre/maplibre-gl-js/pull/4210)) - ⚠️ Rename projMatrix to modelViewProjectionMatrix. Also rename invProjMatrix, alignedProjMatrix accordingly ([#​4215](https://togithub.com/maplibre/maplibre-gl-js/pull/4215)) - Publish an unminified prod build ([#​4265](https://togithub.com/maplibre/maplibre-gl-js/pull/4265)) ##### 🐞 Bug fixes - ⚠️ Allow breaking lines in labels before a left parenthesis ([#​4138](https://togithub.com/maplibre/maplibre-gl-js/pull/4138)) - ⚠️ Fix ignoring embedded line breaks when `symbol-placement` is `line` or `line-center` ([#​4124](https://togithub.com/maplibre/maplibre-gl-js/pull/4124)) - Ensure loseContext exists before calling it ([#​4245](https://togithub.com/maplibre/maplibre-gl-js/pull/4245)) - Update deprecated `-ms-high-contrast` vendor prefix to `(forced-colors: active)` and `(prefers-color-scheme: light)` as appropriate ([#​4250](https://togithub.com/maplibre/maplibre-gl-js/pull/4250))
prettier/prettier (prettier) ### [`v3.3.2`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#332) [Compare Source](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) [diff](https://togithub.com/prettier/prettier/compare/3.3.1...3.3.2) ##### Fix handlebars path expressions starts with `@` ([#​16358](https://togithub.com/prettier/prettier/pull/16358) by [@​Princeyadav05](https://togithub.com/Princeyadav05)) ```hbs {{! Input }}
{{@​x.y.z}}
{{! Prettier 3.3.1 }}
{{@​x}}
{{! Prettier 3.3.2 }}
{{@​x.y.z}}
```
vitejs/vite (vite) ### [`v5.3.1`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small531-2024-06-14-small) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.3.0...v5.3.1) - fix(build): handle preload treeshaking for braces ([#​17479](https://togithub.com/vitejs/vite/issues/17479)) ([d355568](https://togithub.com/vitejs/vite/commit/d355568)), closes [#​17479](https://togithub.com/vitejs/vite/issues/17479) - fix(build): handle preload treeshaking for commas ([#​17472](https://togithub.com/vitejs/vite/issues/17472)) ([3e27071](https://togithub.com/vitejs/vite/commit/3e27071)), closes [#​17472](https://togithub.com/vitejs/vite/issues/17472) - fix(build): preload treeshaking ignore equal ([#​17480](https://togithub.com/vitejs/vite/issues/17480)) ([6ced135](https://togithub.com/vitejs/vite/commit/6ced135)), closes [#​17480](https://togithub.com/vitejs/vite/issues/17480) - chore: consolidate changelog for 5.3 ([#​17476](https://togithub.com/vitejs/vite/issues/17476)) ([1f09344](https://togithub.com/vitejs/vite/commit/1f09344)), closes [#​17476](https://togithub.com/vitejs/vite/issues/17476) ### [`v5.3.0`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#530-2024-06-13) [Compare Source](https://togithub.com/vitejs/vite/compare/v5.2.13...v5.3.0) - fix: typo in client log ([#​17363](https://togithub.com/vitejs/vite/issues/17363)) ([68aa9f8](https://togithub.com/vitejs/vite/commit/68aa9f8)), closes [#​17363](https://togithub.com/vitejs/vite/issues/17363) - fix(ssrTransform): handle arbitrary module namespace identifiers ([#​17446](https://togithub.com/vitejs/vite/issues/17446)) ([0a76652](https://togithub.com/vitejs/vite/commit/0a76652)), closes [#​17446](https://togithub.com/vitejs/vite/issues/17446) - test: disable isolate for unit test ([#​17448](https://togithub.com/vitejs/vite/issues/17448)) ([f16fae5](https://togithub.com/vitejs/vite/commit/f16fae5)), closes [#​17448](https://togithub.com/vitejs/vite/issues/17448) - feat: asset type add bmp ([#​17439](https://togithub.com/vitejs/vite/issues/17439)) ([ec287f8](https://togithub.com/vitejs/vite/commit/ec287f8)), closes [#​17439](https://togithub.com/vitejs/vite/issues/17439)

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.



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

codecov[bot] commented 2 weeks ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

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

Additional details and impacted files ```diff @@ 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 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.