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

Merged
merged 1 commit into from
Jun 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@capacitor/android (source) 5.7.5 -> 5.7.6 age adoption passing confidence
@capacitor/app 5.0.7 -> 5.0.8 age adoption passing confidence
@capacitor/cli (source) 5.7.5 -> 5.7.6 age adoption passing confidence
@capacitor/clipboard 5.0.7 -> 5.0.8 age adoption passing confidence
@capacitor/core (source) 5.7.5 -> 5.7.6 age adoption passing confidence
@capacitor/filesystem 5.2.1 -> 5.2.2 age adoption passing confidence
@capacitor/ios (source) 5.7.5 -> 5.7.6 age adoption passing confidence
@capacitor/preferences 5.0.7 -> 5.0.8 age adoption passing confidence
@types/node (source) 20.13.0 -> 20.14.2 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.11.0 -> 7.13.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.11.0 -> 7.13.0 age adoption passing confidence
cypress (source) 13.10.0 -> 13.11.0 age adoption passing confidence
daisyui (source) 4.11.1 -> 4.12.2 age adoption passing confidence
prettier (source) 3.3.0 -> 3.3.2 age adoption passing confidence
sass 1.77.4 -> 1.77.5 age adoption passing confidence
tailwindcss (source) 3.4.3 -> 3.4.4 age adoption passing confidence
webpack 5.91.0 -> 5.92.0 age adoption passing confidence

Release Notes

ionic-team/capacitor (@​capacitor/android)

v5.7.6

Compare Source

Bug Fixes
  • http: don't override readyState for non POST requests (#​7510) (a56f9b9)
  • ios: check if urlSchemeTask is stopped before calling its methods (#​7483) (7bf365c)
ionic-team/capacitor-plugins (@​capacitor/app)

v5.0.8

Compare Source

Note: Version bump only for package @​capacitor/keyboard

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

v7.13.0

Compare Source

🚀 Features
  • typescript-estree: require import = require() argument to be a string literal

  • typescript-estree: forbid .body, .async, .generator on declare function

  • eslint-plugin: [no-dynamic-delete] allow all string literals as index

🩹 Fixes
  • ast-spec: function-call-like callee should be Expression not LeftHandSideExpression

  • scope-manager: handle index signature in class

  • eslint-plugin: [init-declarations] refine report locations

  • eslint-plugin: [no-base-to-string] make error message more nuanced

  • eslint-plugin: [no-unsafe-assignment] be more specific about error types

  • eslint-plugin: [no-magic-numbers] fix implementation of the ignore option

❤️ Thank You
  • Fotis Papadogeorgopoulos
  • Joshua Chen
  • Kirk Waiblinger
  • Tobiloba Adedeji
  • Vinccool96
  • YeonJuan

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

v7.12.0

Compare Source

🚀 Features
  • eslint-plugin: [no-useless-template-literals] rename to no-useless-template-expression (deprecate no-useless-template-literals)

  • rule-tester: check for parsing errors in suggestion fixes

  • rule-tester: port checkDuplicateTestCases from ESLint

  • eslint-plugin: [no-floating-promises] add option 'allowForKnownSafePromises'

🩹 Fixes
  • no-useless-template-expression -> no-unnecessary-template-expression

  • eslint-plugin: [no-unnecessary-type-assertion] combine template literal check with const variable check

  • eslint-plugin: [dot-notation] fix false positive when accessing private/protected property with optional chaining

  • eslint-plugin: [explicit-member-accessibility] refine report locations

  • eslint-plugin: [no-unnecessary-type-assertion] declares are always defined, so always check declares

  • eslint-plugin: [prefer-literal-enum-member] allow using member it self on allowBitwiseExpressions

  • eslint-plugin: [return-await] clean up in-try-catch detection and make autofixes safe

  • eslint-plugin: [member-ordering] also TSMethodSignature can be get/set

❤️ Thank You
  • Abraham Guo
  • Han Yeong-woo
  • Joshua Chen
  • Kim Sang Du
  • Kirk Waiblinger
  • YeonJuan

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

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

v7.13.0

Compare Source

🚀 Features
  • parser, typescript-estree: export withoutProjectParserOptions utility
❤️ Thank You
  • Fotis Papadogeorgopoulos
  • Joshua Chen
  • Kirk Waiblinger
  • Tobiloba Adedeji
  • Vinccool96
  • YeonJuan

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

v7.12.0

Compare Source

🩹 Fixes
  • types: correct typing ParserOptions
❤️ Thank You
  • Abraham Guo
  • Han Yeong-woo
  • Joshua Chen
  • Kim Sang Du
  • Kirk Waiblinger
  • YeonJuan

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

cypress-io/cypress (cypress)

v13.11.0

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-11-0

saadeghi/daisyui (daisyui)

v4.12.2

Compare Source

prettier/prettier (prettier)

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };
sass/dart-sass (sass)

v1.77.5

Compare Source

  • Fully trim redundant selectors generated by @extend.
tailwindlabs/tailwindcss (tailwindcss)

v3.4.4

Compare Source

Fixed
  • Make it possible to use multiple <alpha-value> placeholders in a single color definition (#​13740)
  • Don't prefix classes in arbitrary values of has-*, group-has-*, and peer-has-* variants (#​13770)
  • Support negative values for {col,row}-{start,end} utilities (#​13781)
  • Update embedded browserslist database (#​13792)
webpack/webpack (webpack)

v5.92.0

Compare Source


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 force-pushed the renovate/all-minor-patch branch from 1f70ed6 to 2a9ff32 Compare June 3, 2024 17:40
@renovate renovate bot changed the title chore(deps): update dependency @types/node to v20.14.0 chore(deps): update all non-major dependencies Jun 3, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 0a896ca to 6aaf2dd Compare June 5, 2024 21:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 6e54c9c to 9df4b7e Compare June 11, 2024 19:11
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jun 11, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 88828f5 to 4e51002 Compare June 13, 2024 14:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4e51002 to e6c8f22 Compare June 14, 2024 17:59
@anton-gustafsson anton-gustafsson merged commit b90c23c into main Jun 14, 2024
2 checks passed
@anton-gustafsson anton-gustafsson deleted the renovate/all-minor-patch branch June 14, 2024 18: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.

1 participant