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

fix(deps): update all non-major dependencies #64

Merged
merged 1 commit into from Aug 13, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 31, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nestjs/common (source) ^10.1.2 -> ^10.1.3 age adoption passing confidence
@nestjs/core (source) ^10.1.2 -> ^10.1.3 age adoption passing confidence
@nestjs/platform-express (source) ^10.1.2 -> ^10.1.3 age adoption passing confidence
@swc/core (source) ^1.3.71 -> ^1.3.76 age adoption passing confidence
@types/koa (source) ^2.13.7 -> ^2.13.8 age adoption passing confidence
@types/node (source) ^20.4.5 -> ^20.5.0 age adoption passing confidence
@types/react (source) ^18.2.16 -> ^18.2.20 age adoption passing confidence
@vitejs/plugin-react (source) ^4.0.3 -> ^4.0.4 age adoption passing confidence
eslint (source) ^8.45.0 -> ^8.47.0 age adoption passing confidence
fastify (source) ^4.20.0 -> ^4.21.0 age adoption passing confidence
lint-staged ^13.2.3 -> ^13.3.0 age adoption passing confidence
prettier (source) ^3.0.0 -> ^3.0.1 age adoption passing confidence
publint (source) ^0.1.16 -> ^0.2.0 age adoption passing confidence
socket.io ^4.7.1 -> ^4.7.2 age adoption passing confidence
tsup (source) ^7.1.0 -> ^7.2.0 age adoption passing confidence
vite (source) ^4.4.7 -> ^4.4.9 age adoption passing confidence
vite-plugin-ssr ^0.4.133 -> ^0.4.135 age adoption passing confidence
vitest ^0.33.0 -> ^0.34.1 age adoption passing confidence

Release Notes

nestjs/nest (@​nestjs/common)

v10.1.3

Compare Source

v10.1.3 (2023-07-31)
Bug fixes
Enhancements
Dependencies
Committers: 4
swc-project/swc (@​swc/core)

v1.3.76

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Performance
  • (es/compat) Improve time complexity of class_properties (#​7786) (76c6258)

v1.3.75

Compare Source

Bug Fixes
Features
Miscellaneous Tasks
Refactor

v1.3.74

Compare Source

Bug Fixes

v1.3.73

Compare Source

Bug Fixes
  • (es/minifier) Handle synthesized export default expression (#​7707) (5ea6f27)

  • (es/utils) Fix string evaluation of array literals (#​7731) (e8c58cf)

Features
  • (es/preset-env) Update builtin definitions for core-js imports (#​7715) (b4f3332)
Testing
  • (es/compat) Add a test for optional chaining with loose mode (#​7726) (216c4f1)

v1.3.72

Compare Source

Bug Fixes
  • (es/compat) Fix handling of private members in optional chaining pass (#​7610) (7ba7b6e)

  • (es/minifier) Do not drop used properties (#​7702) (f901b41)

  • (es/module) Do not determine module name for modules without exports in UMD (#​7718) (40136f7)

Features
Refactor
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.0.4

Compare Source

  • Fix #​198: Enable Babel if presets list is not empty
eslint/eslint (eslint)

v8.47.0

Compare Source

Features

  • 53d7508 feat: update regex for methods with thisArg (#​17439) (Francesco Trotta)

Bug Fixes

  • 631648e fix: do not report on shadowed constructors in no-new-wrappers (#​17447) (Francesco Trotta)

Documentation

Chores

v8.46.0

Compare Source

Features

Bug Fixes

  • 9803c7c fix: FlatESLint#getRulesMetaForResults shouldn't throw on unknown rules (#​17393) (Milos Djermanovic)
  • 42faa17 fix: Update no-loop-func to not overlap with no-undef (#​17358) (Matt Wilkinson)

Documentation

  • 4d474e3 docs: update with TypeScript info (#​17423) (James)
  • 091f44e docs: File extension named processor deprecation (#​17362) (Matt Wilkinson)
  • 9254a6c docs: Update README (GitHub Actions Bot)
  • 6d6dc51 docs: fix overlapping of open in playground button (#​17403) (Tanuj Kanti)
  • 7fc3a2c docs: Add private class features info to no-underscore-dangle (#​17386) (Matt Wilkinson)
  • da73e58 docs: Migrating eslint-env configuration comments (#​17390) (Francesco Trotta)
  • 80dffed docs: fix Ignoring Files section in config migration guide (#​17392) (Milos Djermanovic)
  • 8a9abb7 docs: Update README (GitHub Actions Bot)
  • 7e9be4b docs: Update README (GitHub Actions Bot)
  • 0b0bbe0 docs: Update README (GitHub Actions Bot)

Chores

  • d1eb7e4 chore: Update ecosystem dependencies (#​17427) (Nicholas C. Zakas)
  • fab9e97 chore: package.json update for eslint-config-eslint release (ESLint Jenkins)
  • 6246711 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 0aa0bc3 chore: Add PRs to triage project (#​17421) (Nicholas C. Zakas)
fastify/fastify (fastify)

v4.21.0

Compare Source

okonet/lint-staged (lint-staged)

v13.3.0

Compare Source

Bug Fixes
  • dependencies: update most dependencies (7443870)
  • detect duplicate redundant braces in pattern (d895aa8)
Features
  • dependencies: update listr2@​6.6.0 (09844ca)
prettier/prettier (prettier)

v3.0.1

Compare Source

diff

Fix cursor positioning for a special case (#​14812 by @​fisker)
// <|> is the cursor position

/* Input */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>  } from "fs"

/* Prettier 3.0.0 */
// All messages are represented in JSON.
// So, the prettier.py <|>controls a subprocess which spawns "node {this_file}".
import {} from "fs"

/* Prettier 3.0.1 */
// All messages are represented in JSON.
// So, the prettier.py controls a subprocess which spawns "node {this_file}".
import {<|>} from "fs"
Fix plugins/estree.d.ts to make it a module (#​15018 by @​kingyue737)

Add export {} in plugins/estree.d.ts to fix the "File is not a module" error

Add parenthesis around leading multiline comment in return statement (#​15037 by @​auvred)
// Input
function fn() {
  return (
    /**
     * @&#8203;type {...}
     */ expresssion
  )
}

// Prettier 3.0.0
function fn() {
  return /**
   * @&#8203;type {...}
   */ expresssion;
}

// Prettier 3.0.1
function fn() {
  return (
    /**
     * @&#8203;type {...}
     */ expresssion
  );
}
Add support for Vue "Generic Components" (#​15066 by @​auvred)

https://blog.vuejs.org/posts/vue-3-3#generic-components

<!-- Input -->
<script setup lang="ts" generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"></script>

<!-- Prettier 3.0.0 -->
<script
  setup
  lang="ts"
  generic="T extends Type1 & Type2 & (Type3 | Type4), U extends string | number | boolean"
></script>

<!-- Prettier 3.0.1 -->
<script
  setup
  lang="ts"
  generic="
    T extends Type1 & Type2 & (Type3 | Type4),
    U extends string | number | boolean
  "
></script>
Fix comments print in IfStatement (#​15076 by @​fisker)
function a(b) {
  if (b) return 1; // comment
  else return 2;
}

/* Prettier 3.0.0 */
Error: Comment "comment" was not printed. Please report this error!

/* Prettier 3.0.1 */
function a(b) {
  if (b) return 1; // comment
  else return 2;
}
Add missing type definition for printer.preprocess (#​15123 by @​so1ve)
export interface Printer<T = any> {
  // ...
+ preprocess?:
+   | ((ast: T, options: ParserOptions<T>) => T | Promise<T>)
+   | undefined;
}
Add missing getVisitorKeys method type definition for Printer (#​15125 by @​auvred)
const printer: Printer = {
  print: () => [],
  getVisitorKeys(node, nonTraversableKeys) {
    return ["body"];
  },
};
Add typing to support readonly array properties of AST Node (#​15127 by @​auvred)
// Input
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");

// Prettier 3.0.0
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");
//                  ^ Argument of type '"readonlyArray"' is not assignable to parameter of type '"regularArray"'. ts(2345)

// Prettier 3.0.1
interface TestNode {
  readonlyArray: readonly string[];
}

declare const path: AstPath<TestNode>;

path.map(() => "", "readonlyArray");
Add space before unary minus followed by a function call (#​15129 by @​pamelalozano)
// Input
div {
  margin: - func();
}

// Prettier 3.0.0
div {
  margin: -func();
}

// Prettier 3.0.1
div {
  margin: - func();
}
bluwy/publint (publint)

v0.2.0

Compare Source

Breaking changes

Note: If you're using publint from the CLI, these breaking changes should not affect you.

  • publint() now returns an object with messages instead of the messages array directly. This makes way for future APIs where publint will return more information than just messages.

    - const messages = await publint()
    + const { messages } = await publint()
  • Rename printMessage API to formatMessage to better reflect it's intent. (https://github.com/bluwy/publint/issues/43)

    - import { printMessage } from "publint/utils"
    + import { formatMessage } from "publint/utils"
    
    const { messages } = await publint()
    
    for (const message of messages) {
    - console.log(printMessage(message))
    + console.log(formatMessage(message))
    }
  • Remove filePath arg for the FILE_DOES_NOT_EXIST message.

    import type { Message } from "publint"
    import { getPkgPathValue } from "publint/utils"
    
    function messageToString(message: Message, pkg: Record<string, any>) {
      switch (message.code) {
        case "FILE_DOES_NOT_EXIST":
    -     return `The file "${message.args.filePath}" does not exist.`
    +     return `The file "${getPkgPathValue(pkg, message.path)}" does not exist.`
      }
    }
  • Remove the import condition for the publint package. This provides a better error message if you call require("publint").

Features
  • Improve warnings when the exported "types" condition has an invalid format in ESM or CJS. This ensures your library's types will work in both environments when dual publishing. (https://github.com/bluwy/publint/issues/46)

    It affects packages commonly packaged like:

    {
      "exports": {
        ".": {
          "types": "./index.d.ts", <-- only works in CJS
          "import": "./index.mjs",
          "require": "./index.js",
        }
      }
    }

    For more information, visit the rules documentation. This feature is inspired by https://arethetypeswrong.github.io.

Bug fixes

Full Changelog: bluwy/publint@v0.1.16...v0.2.0

socketio/socket.io (socket.io)

v4.7.2

Compare Source

Bug Fixes
  • clean up child namespace when client is rejected in middleware (#​4773) (0731c0d)
  • webtransport: properly handle WebTransport-only connections (3468a19)
  • webtransport: add proper framing (a306db0)
Dependencies
egoist/tsup (tsup)

v7.2.0

Compare Source

Bug Fixes
  • allow to kill onSuccess process using SIGKILL signal, closes #​936 (612cabf)
Features
vitejs/vite (vite)

v4.4.9

Compare Source

v4.4.8

Compare Source

brillout/vite-plugin-ssr (vite-plugin-ssr)

v0.4.135

Compare Source

Bug Fixes

v0.4.134

Compare Source

Bug Fixes
  • align vite(-plugin-ssr) tag colors (b71d927)
  • also install require shim in dev (40b6836)
  • also retrieve pageContext JSON when pageContextInit adds custom props (bbc6d12)
  • call client-side guard() hook after retrieving pageContext from server (fee58b2)
  • consolidate throw renderErrorPage() and throw renderUrl() into a single utility throw render() (#​926) (3c2be02)
  • fetch server-side pageContext before calling client-side onBeforeRender hook (c7d574c)
  • fix error page client-side rendering (cb82f14)
  • gracefully handle non-serilizable pageContext values (9bedf61)
  • hide redirect() statusCode option (#​926) (5ae9243)
  • improve 404 hint (f9bd674)
  • improve client-side handling of non-serialiable/missing pageContext value (ed5335f)
  • improve error message upon client runtime conflict (#​750) (62a4bf8)
  • improve error upon aborting pre-rendering (#​926) (3226c3e)
  • improve error upon invalid config.build.outDir (fix #​1046) (d958a41)
  • improve logging of abort errors (#​926) (61d3f71)
  • improve require shim (56fc5b3)
  • improve routes table (40818a6)
  • improve serialization error (b720277)
  • set includeAssetsImportedByServer to true by default (67aa8d4)
  • show warning instead of error upon dangerous HTML strings (#​999) (846a92e)
  • simplify and improve warning about error page missing (668e971)
  • use more nominal hook lifecycle for client-side error page rendering (145e9ba)
  • V1 design config HMR minor fix (ad15d8c)
Features
vitest-dev/vitest (vitest)

v0.34.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.34.0

[Compare Source]


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 force-pushed the renovate/all-minor-patch branch from 9ab6c92 to e75472a Compare July 31, 2023 09:37
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jul 31, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from a50bdc5 to e990b80 Compare August 7, 2023 13:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 6436134 to f09ff55 Compare August 13, 2023 21:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f09ff55 to 9b56d52 Compare August 13, 2023 22:06
@cyco130 cyco130 merged commit 24eaacc into main Aug 13, 2023
5 of 6 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch August 13, 2023 22:20
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.

None yet

1 participant