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 all non-major dependencies #202

Merged
merged 1 commit into from
Oct 11, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 1, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@adobe/jsonschema2md 7.1.1 -> 7.1.2 age adoption passing confidence devDependencies patch
@codemirror/commands 6.1.0 -> 6.1.1 age adoption passing confidence dependencies patch
@codemirror/view 6.2.5 -> 6.3.1 age adoption passing confidence dependencies minor
@ddadaal/tsgrpc-cli 0.13.5 -> 0.13.6 age adoption passing confidence devDependencies patch
@​ddadaal/tsgrpc-server 0.15.1 -> 0.15.2 age adoption passing confidence dependencies patch
@newhighsco/next-plugin-svgr 3.0.60 -> 3.0.61 age adoption passing confidence dependencies patch
@sinclair/typebox 0.24.43 -> 0.24.44 age adoption passing confidence dependencies patch
@sinclair/typebox 0.24.43 -> 0.24.44 age adoption passing confidence devDependencies patch
@types/jest (source) 29.0.3 -> 29.1.2 age adoption passing confidence devDependencies minor
@types/ssh2 (source) 1.11.5 -> 1.11.6 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 5.38.1 -> 5.40.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 5.38.1 -> 5.40.0 age adoption passing confidence devDependencies minor
antd (source) 4.23.2 -> 4.23.5 age adoption passing confidence dependencies patch
dotenv 16.0.2 -> 16.0.3 age adoption passing confidence devDependencies patch
dotenv 16.0.2 -> 16.0.3 age adoption passing confidence dependencies patch
eslint (source) 8.24.0 -> 8.25.0 age adoption passing confidence devDependencies minor
fastify (source) 4.6.0 -> 4.8.1 age adoption passing confidence dependencies minor
google-protobuf 3.21.0 -> 3.21.2 age adoption passing confidence dependencies patch
jest (source) 29.0.3 -> 29.1.2 age adoption passing confidence devDependencies minor
jest-environment-jsdom 29.0.3 -> 29.1.2 age adoption passing confidence devDependencies minor
next-transpile-modules 9.0.0 -> 9.1.0 age adoption passing confidence dependencies minor
pino (source) 8.6.0 -> 8.6.1 age adoption passing confidence dependencies patch
pino-http 8.2.0 -> 8.2.1 age adoption passing confidence dependencies patch
pino-pretty 9.1.0 -> 9.1.1 age adoption passing confidence devDependencies patch
pnpm (source) 7.12.2 -> 7.13.4 age adoption passing confidence packageManager minor
pnpm/action-setup v2.2.2 -> v2.2.3 age adoption passing confidence action patch
postcss (source) 8.4.16 -> 8.4.17 age adoption passing confidence devDependencies patch
styled-components (source) 5.3.5 -> 5.3.6 age adoption passing confidence dependencies patch
ts-jest (source) 29.0.2 -> 29.0.3 age adoption passing confidence devDependencies patch
typescript (source) 4.8.3 -> 4.8.4 age adoption passing confidence devDependencies patch
typescript (source) 4.8.3 -> 4.8.4 age adoption passing confidence dependencies patch
undici (source) 5.10.0 -> 5.11.0 age adoption passing confidence dependencies minor

Release Notes

adobe/jsonschema2md

v7.1.2

Compare Source

Bug Fixes
codemirror/commands

v6.1.1

Compare Source

Bug fixes

Make sure the selection endpoints are moved out of atomic ranges when applying a deletion command to a non-empty selection.

codemirror/view

v6.3.1

Compare Source

Bug fixes

Fix a crash when trying to scroll something into view in an editor that wasn't in the visible DOM.

Fix an issue where coordsAtPos returned the coordinates on the wrong side of a widget decoration wrapped in a mark decoration.

Fix an issue where content on long wrapped lines could fail to properly scroll into view.

Fix an issue where DOM change reading on Chrome Android could get confused when a transaction came in right after a beforeinput event for backspace, enter, or delete.

v6.3.0

Compare Source

Bug fixes

Reduce the amount of wrap-point jittering when scrolling through a very long wrapped line.

Fix an issue where scrolling to content that wasn't currently drawn due to being on a very long line would often fail to scroll to the right position.

Suppress double-space-adds-period behavior on Chrome Mac when it behaves weirdly next to widget.

New features

Key binding objects with an any property will now add handlers that are called for any key, within the ordering of the keybindings.

newhighsco/next-plugin-svgr

v3.0.61

Compare Source

Bug Fixes
sinclairzx81/typebox

v0.24.44

Compare Source

Updates:

  • 189 Both Value.Error(T, value) and TypeCheck.Error(value) now return an iterator for validation errors.
  • 191 TypeBox now provides a TypeGuard API that can be used to check the structural validity of TypeBox type. The TypeGuard can be used in reflection / code generation scenarios to resolve the appropriate inner TSchema type while traversing a outer type.
  • 197 TypeBox now implements conditional runtime type mapping. This functionality is offered as seperate import for the 0.24.0 release but may be provided as standard type in later releases. This API enables type T = Foo extends Bar ? true : false conditional checks to be implemented at runtime. This API also provides the Exclude and Extract utility types which are implemented through conditional types in TypeScript.
  • 199 TypeBox now provides better support for varidiac function and constructor signatures. Currently Variadics are mapped through Tuple types.
  • 200 The types TPick and TOmit now support types of TUnion<TLiteral<string>[]> to be used to select properties. Additionally, KeyOf now returns TUnion<TLiteral<string>[]>, allowing KeyOf schemas to be passed to TPick and TOmit.
  • 214 TypeBox now provides better support for i18n. To achieve this, TypeBox includes fixed mappable error codes on the ValueError type. These codes can be used by external implementors to create localized error messages. TypeBox may include localized error codes as an optional import in future releases.
  • 288 TypeBox now allows users to implement custom string validator formats. These formats are internally shared between the Value and TypeCompiler API's. TypeBox does not currently provide any built in formats, however the standard expected set (email, uuid, uri, etc) may be provided via optional import (inline with ajv-formats usage)
  • 229 The Value.Cast() function now implements automatic coersion of string, number and boolean types.
  • 231 TypeBox provides a new Value.Diff<T>() and Value.Patch<T>() utility API for JavaScript values. This API is intended to provide a basis for the efficient transmission of state updates across a network. This API can diff any JavaScript value (typed or untyped) but is recommended to be used in conjunction with a formal static type.
  • 236 TypeBox now implements the TNever type. This type is analogous to TypeScript's never type and is used in instances a composition results in a non-reconcilable type. Currently this type is implemented for empty TUnion<[]> types only. Future releases may utilize this type for planned updates to TIntersect (for example string & number resolves to never)
  • 241 247 TypeBox now exposes a ValuePointer API that can be used to mutate a value via an RFC6901 JSON Pointer. Previously this functionality was internally used by Value.Diff() and Value.Patch() functions but is now offered as an optional import for implementations that need to update values manually through pointer references.

Additional:

  • This project now includes two reference code generation utilities that can be used in custom build tooling. The first is TypeScriptCodeGen which will remap TypeScript interface and type definitions to TypeBox types. The second is TypeBoxCodeGen which will map existing TypeBox types into TypeScript type definitions. These implementations are not expected to be part of the TypeBox package, but users are free to clone and enhance them in their existing tool chains. Reference implementations can be found https://github.com/sinclairzx81/typebox/tree/master/codegen
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.40.0

Compare Source

Bug Fixes
  • eslint-plugin: [consistent-indexed-object-style] handle interface generic (#​5746) (7a8a0a3)
  • eslint-plugin: [no-unnecessary-condition] handle void (#​5766) (ac8f06b)
Features

v5.39.0

Compare Source

Features
  • eslint-plugin: allow using void as a default type for a generic argument if allowInGenericTypeArguments is specified (#​5671) (bb46ef0)

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/eslint-plugin

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

v5.40.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

v5.39.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

5.38.1 (2022-09-26)

Note: Version bump only for package @​typescript-eslint/parser

ant-design/ant-design

v4.23.5

Compare Source


v4.23.4

Compare Source


v4.23.3

Compare Source

  • 🆕 Tree showLeafIcon could accept ReactNode for a custom leaf icon.#​37144 @​xWiiLLz
  • 🆕 Uploader support Apple image format: heic, heif. #​37651 @​Johnny-young
  • 🐞 Fix Typography copyable.tooltip=false still shows the copied tooltip. #​37754
  • 🐞 Fix Typography ellipsis not working correctly in some cases. #​37700 @​zheeeng
  • 🐞 Fix Divider shows children when in vertical mode. #​37697
  • 🐞 Fix Anchor getCurrentAnchor not updated. #​37644
  • 🐞 Fix Tabs animated: true missing tabPane animation. #​37642
  • 🐞 Fix Table column.title render function missing filters props. #​37629
  • 🐞 Fix Modal.confirm instance ref legacy config visible: true back to show not work. #​37613
  • 💄 Fix the problem of rendering an empty element with styles when Badge not pass text property. #​37681 @​Wxh16144
  • 💄 Fix Button wave style not work in shadow dom. #​37677
  • 💄 Remove Tab.TabPane outline style when focused. #​37638
  • TypeScript
  • 🌐 Localization

  • 🆕 Tree showLeafIcon 属性支持自定义图标。#​37144 @​xWiiLLz
  • 🆕 Uploader 支持支持 Apple 图片格式: heic、heif。#​37651 @​Johnny-young
  • 🐞 修复 Typography 在 copyable.tooltip=false 时,复制内容后仍然会展示提示的问题。#​37754
  • 🐞 修复 Typography ellipsis 在某些情况下不精确的问题。#​37700 @​zheeeng
  • 🐞 修复 Divider 在 vertical 模式下仍然会错误展示 children 的问题。#​37697
  • 🐞 修复 Anchor getCurrentAnchor 不会及时更新的问题。#​37644
  • 🐞 修复 Tabs animated: true 时面板切换动画不生效的问题。#​37642
  • 🐞 修复 Table column.title 渲染函数丢失 filters 属性的问题。#​37629
  • 🐞 修复 Modal.confirm 实例引用配置废弃 visible: true 重新展示时不生效的问题。#​37613
  • 💄 修复 Badge 未传入 text 属性时,渲染了一个带有样式的空元素问题。#​37681 @​Wxh16144
  • 💄 修复 Button 波纹样式在 shadow dom 下不生效的问题。#​37677
  • 💄 移除 Tab.TabPane focus 时的 outline 样式。#​37638
  • TypeScript
  • 🌐 国际化
motdotla/dotenv

v16.0.3

Compare Source

Changed
  • Added library version to debug logs (#​682)
eslint/eslint

v8.25.0

Compare Source

Features

  • 173e820 feat: Pass --max-warnings value to formatters (#​16348) (Brandon Mills)
  • 6964cb1 feat: remove support for ignore files in FlatESLint (#​16355) (Milos Djermanovic)
  • 1cc4b3a feat: id-length counts graphemes instead of code units (#​16321) (Sosuke Suzuki)

Documentation

Chores

fastify/fastify

v4.8.1

Compare Source

⚠️ Security Release ⚠️

This release fixes GHSA-455w-c45v-86rg for the v4.x line.
This is a HIGH vulnerability that can lead to a crash, resulting in a total loss of availability.
The CVE for this vulnerability is CVE-2022-39288.

Full Changelog: fastify/fastify@v4.8.0...v4.8.1

v4.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: fastify/fastify@v4.7.0...v4.8.0

v4.7.0

Compare Source

What's Changed

New Contributors

Full Changelog: fastify/fastify@v4.6.0...v4.7.0

protocolbuffers/protobuf-javascript

v3.21.2

Compare Source

This is a hotfix release for #​141

[v3.21.1](https://togithub.com/protocolbuffers/protobuf-javascript


Configuration

📅 Schedule: Branch creation - "every weekend" (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, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from e9642a4 to 72b012e Compare October 6, 2022 15:45
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies Oct 6, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 650247a to 8743e3f Compare October 11, 2022 07:24
@codecov-commenter
Copy link

Codecov Report

Base: 70.36% // Head: 70.36% // No change to project coverage 👍

Coverage data is based on head (826de70) compared to base (8f21cac).
Patch has no changes to coverable lines.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #202   +/-   ##
=======================================
  Coverage   70.36%   70.36%           
=======================================
  Files          93       93           
  Lines        2359     2359           
  Branches      300      300           
=======================================
  Hits         1660     1660           
  Misses        652      652           
  Partials       47       47           

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@ddadaal ddadaal merged commit 1061502 into master Oct 11, 2022
@renovate renovate bot deleted the renovate/all-minor-patch branch October 11, 2022 08:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants