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 #767

Merged
merged 1 commit into from
Jun 23, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 19, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@codemirror/language 6.7.0 -> 6.8.0 age adoption passing confidence
@codemirror/view 6.13.0 -> 6.13.2 age adoption passing confidence
@​mx-space/api-client 1.4.0 -> 1.4.2 age adoption passing confidence
@vueuse/core ^10.1.2 -> ^10.2.0 age adoption passing confidence
@vueuse/core 10.1.2 -> 10.2.0 age adoption passing confidence
eslint (source) ^8.42.0 -> ^8.43.0 age adoption passing confidence
marked (source) 5.0.5 -> 5.1.0 age adoption passing confidence
octokit 2.0.19 -> 2.1.0 age adoption passing confidence
openai 3.2.1 -> 3.3.0 age adoption passing confidence
pinia 2.1.3 -> 2.1.4 age adoption passing confidence
postcss-preset-env (source) 8.4.2 -> 8.5.1 age adoption passing confidence
rollup (source) ^3.24.0 -> ^3.25.1 age adoption passing confidence
rollup-plugin-visualizer 5.9.0 -> 5.9.2 age adoption passing confidence
socket.io-client 4.6.2 -> 4.7.0 age adoption passing confidence
vite-plugin-checker 0.6.0 -> 0.6.1 age adoption passing confidence
vue-eslint-parser 9.3.0 -> 9.3.1 age adoption passing confidence
xterm 5.2.0 -> 5.2.1 age adoption passing confidence

Release Notes

codemirror/language

v6.8.0

Compare Source

New features

The new baseIndentFor method in TreeIndentContext can be used to find the base indentation for an arbitrary node.

codemirror/view

v6.13.2

Compare Source

Bug fixes

Fix an issue in scroll position stabilization for changes above the visible, where Chrome already does this natively and we ended up compensating twice.

v6.13.1

Compare Source

Bug fixes

Fix a bug where the cursor would in some circumstances be drawn on the wrong side of an inline widget.

Fix an issue where scrollPastEnd could cause the scroll position of editors that weren't in view to be changed unnecessarily.

vueuse/vueuse

v10.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
eslint/eslint

v8.43.0

Compare Source

Features

  • 14581ff feat: directive prologue detection and autofix condition in quotes (#​17284) (Francesco Trotta)
  • e50fac3 feat: add declaration loc to message in block-scoped-var (#​17252) (Milos Djermanovic)
  • 1b7faf0 feat: add skipJSXText option to no-irregular-whitespace rule (#​17182) (Azat S)

Bug Fixes

  • 5338b56 fix: normalize cwd passed to ESLint/FlatESLint constructor (#​17277) (Milos Djermanovic)
  • 54383e6 fix: Remove no-extra-parens autofix for potential directives (#​17022) (Francesco Trotta)

Documentation

Chores

markedjs/marked

v5.1.0

Compare Source

Bug Fixes
Features
octokit/octokit.js

v2.1.0

Compare Source

Features

v2.0.22

Compare Source

Bug Fixes

v2.0.21

Compare Source

Bug Fixes

v2.0.20

Compare Source

Bug Fixes
openai/openai-node

v3.3.0

Compare Source

Add support for function calling in the Chat Completions API

Announcement: https://openai.com/blog/function-calling-and-other-api-updates
Documentation: https://platform.openai.com/docs/guides/gpt/function-calling

vuejs/pinia

v2.1.4

Compare Source

Please refer to CHANGELOG.md for details.

csstools/postcss-plugins

v8.5.1

Compare Source

June 21, 2023

  • Updated @csstools/postcss-media-minmax to 1.0.4 (patch)
  • Updated @csstools/postcss-media-queries-aspect-ratio-number-values to 1.0.4 (patch)
  • Updated postcss-custom-media to 9.1.5 (patch)

v8.5.0

Compare Source

June 14, 2023

  • Add warning when using the deprecated @nest rule
  • Updated @csstools/postcss-relative-color-syntax to 1.0.2 (patch)
  • Updated postcss-nesting to 11.3.0 (minor)
rollup/rollup

v3.25.1

Compare Source

2023-06-12

Bug Fixes
  • Respect __NO_SIDE_EFFECTS__ for async functions (#​5031)
Pull Requests

v3.25.0

Compare Source

2023-06-11

Features
  • Add this.info and this.debug plugin context logging functions (#​5026)
  • Add onLog option to read, map and filter logs (#​5026)
  • Add logLevel option to fully suppress logs by level (#​5026)
  • Support function logs in this.warn, this.info and this.debug to avoid heavy computations based on log level (#​5026)
  • Add onLog plugin hook to read, filter and map logs from plugins (#​5026)
Pull Requests

v3.24.1

Compare Source

2023-06-10

Bug Fixes
  • Fix an issue where bundles with @rollup/plugin-commonjs were missing internal dependencies when code-splitting (#​5029)
  • Do not use process.exit(0) in watch mode to avoid issues in embedded scenarios (#​5027)
Pull Requests
btd/rollup-plugin-visualizer

v5.9.2

Compare Source

v5.9.1

Compare Source

  • Update dependencies
  • Change a way code traversed for sourcemap in attempt to account for surrogate pairs
socketio/socket.io-client

v4.7.0

Compare Source

Bug Fixes
  • properly report timeout error when connecting (5bc94b5)
  • use same scope for setTimeout and clearTimeout calls (#​1568) (f2892ab)
Features
Support for WebTransport

The Engine.IO client can now use WebTransport as the underlying transport.

WebTransport is a web API that uses the HTTP/3 protocol as a bidirectional transport. It's intended for two-way communications between a web client and an HTTP/3 server.

References:

For Node.js clients: until WebTransport support lands in Node.js, you can use the @fails-components/webtransport package:

import { WebTransport } from "@​fails-components/webtransport";

global.WebTransport = WebTransport;

Added in 7195c0f.

Cookie management for the Node.js client

When setting the withCredentials option to true, the Node.js client will now include the cookies in the HTTP requests, making it easier to use it with cookie-based sticky sessions.

import { io } from "socket.io-client";

const socket = io("https://example.com", {
  withCredentials: true
});

Added in 5fc88a6.

Conditional import of the ESM build with debug logs

By default, the ESM build does not include the debug package in the browser environments, because it increases the bundle size (see 16b6569).

Which means that, unfortunately, debug logs are not available in the devtools console, even when setting the localStorage.debug = ... attribute.

You can now import the build which includes the debug packages with a conditional import. Example with vite:

import { defineConfig } from 'vite'
import react from '@​vitejs/plugin-react'

export default defineConfig({
  plugins: [react()],
  server: {
    port: 4000
  },
  resolve: {
    conditions: ["development"]
  }
})

Reference: https://v2.vitejs.dev/config/#resolve-conditions

Added in 781d753.

Dependencies
fi3ework/vite-plugin-checker

v0.6.1

Compare Source

Patch Changes
  • ec4366d: use virtual: for virtual module
  • 154ca0f: Able to resolve tsconfig when only root specified in build mode, as well as vue-tsc.
  • b3e0055: Should respect server.origin when it's provided.
  • e063617: Migrate runtime UI from svelte to vue, user should not aware this.
vuejs/vue-eslint-parser

v9.3.1

Compare Source

🐛 Bug Fixes

Full Changelog: vuejs/vue-eslint-parser@v9.3.0...v9.3.1

xtermjs/xterm.js

v5.2.1

Compare Source

🐞 Bug fixes


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 3 times, most recently from fdb1022 to 621095e Compare June 21, 2023 11:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 621095e to aeb4af7 Compare June 22, 2023 11:13
@Innei Innei merged commit 56bd200 into master Jun 23, 2023
@Innei Innei deleted the renovate/all-minor-patch branch June 23, 2023 02:58
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.

1 participant