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

infra: chore(deps): update npm #208

Merged
merged 3 commits into from
Feb 8, 2024
Merged

infra: chore(deps): update npm #208

merged 3 commits into from
Feb 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 24, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@inlang/paraglide-js (source) ^1.2.2 -> ^1.2.3 age adoption passing confidence
@​inlang/paraglide-js-adapter-sveltekit ^0.3.2 -> ^0.3.5 age adoption passing confidence
@inqling/svelte-icons ^4.1.0 -> ^4.1.1 age adoption passing confidence
@sveltejs/kit (source) ^2.4.3 -> ^2.5.0 age adoption passing confidence
@sveltejs/vite-plugin-svelte (source) ^3.0.1 -> ^3.0.2 age adoption passing confidence
@types/node (source) ^20.11.5 -> ^20.11.16 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) ^6.19.1 -> ^6.21.0 age adoption passing confidence
@typescript-eslint/parser (source) ^6.19.1 -> ^6.21.0 age adoption passing confidence
husky ^9.0.1 -> ^9.0.10 age adoption passing confidence
postcss (source) ^8.4.33 -> ^8.4.35 age adoption passing confidence
prettier (source) ^3.2.4 -> ^3.2.5 age adoption passing confidence
svelte (source) ^4.2.9 -> ^4.2.10 age adoption passing confidence
vite (source) ^5.0.12 -> ^5.1.0 age adoption passing confidence

Release Notes

opral/monorepo (@​inlang/paraglide-js)

v1.2.3

Patch Changes
inqling/svelte-icons (@​inqling/svelte-icons)

v4.1.1

Compare Source

Patch Changes
  • 9531385: Fix export types for new 16x16 heroicons
sveltejs/kit (@​sveltejs/kit)

v2.5.0

Compare Source

Minor Changes
  • feat: dev/preview/prerender platform emulation (#​11730)
Patch Changes
  • fix: strip /@​fs prefix correctly on Windows when invoking read() in dev mode (#​11728)
sveltejs/vite-plugin-svelte (@​sveltejs/vite-plugin-svelte)

v3.0.2

Compare Source

Patch Changes
  • fix(compile): correctly determine script lang in files where a comment precedes the script tag (#​844)
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.21.0

Compare Source

🚀 Features
  • export plugin metadata

  • allow parserOptions.project: false

  • eslint-plugin: add rule prefer-find

🩹 Fixes
  • eslint-plugin: [no-unused-vars] don't report on types referenced in export assignment expression

  • eslint-plugin: [switch-exhaustiveness-check] better support for intersections, infinite types, non-union values

  • eslint-plugin: [consistent-type-imports] dont report on types used in export assignment expressions

  • eslint-plugin: [no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option

  • eslint-plugin: [class-literal-property-style] allow getter when same key setter exists

  • eslint-plugin: [no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before as keyword

❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

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

v6.20.0

Compare Source

🚀 Features
  • eslint-plugin: [member-ordering] allow easy reuse of the default ordering
🩹 Fixes
  • eslint-plugin: [no-useless-template-literals] incorrect bigint autofix result

  • eslint-plugin: [prefer-nullish-coalescing] treat any/unknown as non-nullable

  • eslint-plugin: [no-useless-template-literals] report Infinity & NaN

  • eslint-plugin: [prefer-readonly] disable checking accessors

❤️ Thank You
  • Alex Parloti
  • auvred
  • James Browning
  • StyleShit
  • YeonJuan

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

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

v6.21.0

Compare Source

🚀 Features
  • allow parserOptions.project: false
❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

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

v6.20.0

Compare Source

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.

typicode/husky (husky)

v9.0.10

Compare Source

v9.0.9

Compare Source

v9.0.8

Compare Source

v9.0.7

Compare Source

v9.0.6

Compare Source

v9.0.5

Compare Source

v9.0.4

Compare Source

v9.0.3

Compare Source

v9.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.0.1...v9.0.2

postcss/postcss (postcss)

v8.4.35

Compare Source

  • Avoid ! in node.parent.nodes type.
  • Allow to pass undefined to node adding method to simplify types.

v8.4.34

Compare Source

  • Fixed AtRule#nodes type (by Tim Weißenfels).
  • Cleaned up code (by Dmitry Kirillov).
prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
sveltejs/svelte (svelte)

v4.2.10

Compare Source

Patch Changes
  • fix: add scrollend event type (#​10336)

  • fix: add fetchpriority attribute type (#​10390)

  • fix: Add miter-clip and arcs to stroke-linejoin attribute (#​10377)

  • fix: make inline doc links valid (#​10366)

vitejs/vite (vite)

v5.1.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 added dependencies Pull requests that update a dependency file npm labels Jan 24, 2024
@renovate renovate bot requested a review from a team as a code owner January 24, 2024 06:15
@renovate renovate bot changed the title chore(deps): update dependency @types/node to ^20.11.6 chore(deps): update npm Jan 25, 2024
@renovate renovate bot force-pushed the renovate/npm branch 17 times, most recently from 9ceb96a to fc0e899 Compare February 1, 2024 10:17
@renovate renovate bot force-pushed the renovate/npm branch 9 times, most recently from 5ad32f6 to d694454 Compare February 7, 2024 16:45
@github-actions github-actions bot changed the title chore(deps): update npm infra: chore(deps): update npm Feb 8, 2024
@WarningImHack3r WarningImHack3r changed the title infra: chore(deps): update npm chore(deps): update npm Feb 8, 2024
Incorrect info from inlang's changelog
@github-actions github-actions bot changed the title chore(deps): update npm infra: chore(deps): update npm Feb 8, 2024
@WarningImHack3r WarningImHack3r merged commit 1398e54 into main Feb 8, 2024
6 checks passed
@WarningImHack3r WarningImHack3r deleted the renovate/npm branch February 8, 2024 15:00
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 npm
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant