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

Merged
merged 1 commit into from
Aug 21, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 19, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@codemirror/language 6.8.0 -> 6.9.0 age adoption passing confidence
@types/node (source) 18.17.5 -> 18.17.6 age adoption passing confidence
@typescript-eslint/eslint-plugin 6.3.0 -> 6.4.0 age adoption passing confidence
@typescript-eslint/parser 6.3.0 -> 6.4.0 age adoption passing confidence
antd (source) 5.8.3 -> 5.8.4 age adoption passing confidence
dotenv-cli 7.2.1 -> 7.3.0 age adoption passing confidence
eslint-plugin-import 2.28.0 -> 2.28.1 age adoption passing confidence
node-mocks-http 1.12.2 -> 1.13.0 age adoption passing confidence
postcss (source) 8.4.27 -> 8.4.28 age adoption passing confidence
ts-proto 1.156.3 -> 1.156.7 age adoption passing confidence
tslib (source) 2.6.1 -> 2.6.2 age adoption passing confidence
zod (source) 3.21.4 -> 3.22.2 age adoption passing confidence

Release Notes

codemirror/language (@​codemirror/language)

v6.9.0

Compare Source

Bug fixes

Make getIndentation return null, rather than 0, when there is no syntax tree available.

New features

The new preparePlaceholder option to codeFolding makes it possible to display contextual information in a folded range placeholder widget.

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

v6.4.0

Compare Source

Bug Fixes
  • eslint-plugin: [non-nullable-type-assertion-style] consider operator precedence when fixing (#​7289) (bad37a2)
  • eslint-plugin: [strict-boolean-expressions] replace dangerous fixer with suggestions (#​7394) (ad8401a)

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

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

v6.4.0

Compare Source

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

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

ant-design/ant-design (antd)

v5.8.4

Compare Source

  • ColorPicker
    • 🐞 Fix the cursor jumps when entering lowercase English letters in the ColorPicker color value input box. #​44137 @​gouge666
    • 🐞 Fix the ColorPicker style is deformed under different sizes. #​44273 @​kouchao
  • 🐞 Fix Descriptions throwing key is not a prop error message. #​44278 @​RedJue
  • 🐞 Fix the node is still rendered when Pagination itemRender is customized to null. #​44226
  • 🐞 Fix Modal in Dropdown menu.items, rapid mouse movement when expanding Modal will make Dropdown reopen. #​44204
  • DatePicker
  • 💄 Fix clicking on the Tabs area on the mobile terminal triggers a color change. #​44200 @​yilaikesi
  • RTL

  • ColorPicker
  • 🐞 修复 Descriptions 抛出 key is not a prop 的错误提示。#​44278 @​RedJue
  • 🐞 修复 Pagination itemRender 自定义为 null 时,仍然渲染节点的问题。#​44226
  • 🐞 修复 Modal 在 Dropdown menu.items 中,展开 Modal 时快速移动鼠标会使 Dropdown 重新打开的问题。#​44204
  • DatePicker
  • 💄 修复移动端点击 Tabs 区域触发颜色改变的问题。#​44200 @​yilaikesi
  • RTL
entropitor/dotenv-cli (dotenv-cli)

v7.3.0

Compare Source

import-js/eslint-plugin-import (eslint-plugin-import)

v2.28.1

Compare Source

Fixed
Changed
howardabrams/node-mocks-http (node-mocks-http)

v1.13.0

Compare Source

postcss/postcss (postcss)

v8.4.28

Compare Source

  • Fixed Root.source.end for better source map (by Romain Menke).
  • Fixed Result.root types when process() has no parser.
stephenh/ts-proto (ts-proto)

v1.156.7

Compare Source

Bug Fixes

v1.156.6

Compare Source

Bug Fixes

v1.156.5

Compare Source

Bug Fixes

v1.156.4

Compare Source

Bug Fixes
  • enum default value when remove-enum-prefix and string-enum both on (#​902) (594b137)
Microsoft/tslib (tslib)

v2.6.2: tslib 2.6.2

Compare Source

What's Changed

Full Changelog: microsoft/tslib@v2.6.1...v2.6.2

colinhacks/zod (zod)

v3.22.2

Compare Source

Commits:

v3.22.1

Compare Source

Commits:

Fix handing of this in ZodFunction schemas. The parse logic for function schemas now requires the Reflect API.

const methodObject = z.object({
  property: z.number(),
  method: z.function().args(z.string()).returns(z.number()),
});
const methodInstance = {
  property: 3,
  method: function (s: string) {
    return s.length + this.property;
  },
};
const parsed = methodObject.parse(methodInstance);
parsed.method("length=8"); // => 11 (8 length + 3 property)

v3.22.0

Compare Source

ZodReadonly

This release introduces ZodReadonly and the .readonly() method on ZodType.

Calling .readonly() on any schema returns a ZodReadonly instance that wraps the original schema. The new schema parses all inputs using the original schema, then calls Object.freeze() on the result. The inferred type is also marked as readonly.

const schema = z.object({ name: string }).readonly();
type schema = z.infer<typeof schema>;
// Readonly<{name: string}>

const result = schema.parse({ name: "fido" });
result.name = "simba"; // error

The inferred type uses TypeScript's built-in readonly types when relevant.

z.array(z.string()).readonly();
// readonly string[]

z.tuple([z.string(), z.number()]).readonly();
// readonly [string, number]

z.map(z.string(), z.date()).readonly();
// ReadonlyMap<string, Date>

z.set(z.string()).readonly();
// ReadonlySet<Promise<string>>

Commits:


Configuration

📅 Schedule: Branch creation - "on sunday" in timezone Asia/Shanghai, 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.

@changeset-bot
Copy link

changeset-bot bot commented Aug 19, 2023

⚠️ No Changeset found

Latest commit: f6fedad

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@codecov
Copy link

codecov bot commented Aug 21, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (72875e7) 70.65% compared to head (f6fedad) 70.65%.
Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master     #814   +/-   ##
=======================================
  Coverage   70.65%   70.65%           
=======================================
  Files         126      126           
  Lines        3612     3612           
  Branches      465      465           
=======================================
  Hits         2552     2552           
  Misses        974      974           
  Partials       86       86           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@ddadaal ddadaal merged commit 7ba26b8 into master Aug 21, 2023
10 checks passed
@ddadaal ddadaal deleted the renovate/all-minor-patch branch August 21, 2023 10:40
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.

1 participant