Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

chore(deps): update all non-major dependencies #512

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/react (source) 11.11.1 -> 11.11.3 age adoption passing confidence
@react-native-community/datetimepicker 7.6.1 -> 7.6.2 age adoption passing confidence
@react-native-community/slider 4.4.2 -> 4.5.0 age adoption passing confidence
@types/jest (source) 29.5.11 -> 29.5.12 age adoption passing confidence
@types/node (source) 20.11.15 -> 20.11.16 age adoption passing confidence
husky 9.0.9 -> 9.0.10 age adoption passing confidence
prettier (source) 3.2.4 -> 3.2.5 age adoption passing confidence

Release Notes

emotion-js/emotion (@​emotion/react)

v11.11.3

Compare Source

Patch Changes
react-native-community/datetimepicker (@​react-native-community/datetimepicker)

v7.6.2

Compare Source

Bug Fixes

This release is also available on:

callstack/react-native-slider (@​react-native-community/slider)

v4.5.0: : Support for React Native Vision OS

Compare Source

This release introduces the Slider now supporting the React Native Vision OS,
Huge thanks to @​okwasniewski delivering it in #​560.

Also, please checkout the React Native Vision OS and all the work that is being done there!

v4.4.4: : iOS and Android dependencies and configuration

Compare Source

This release introduces:

As always - thank you very much to contributors! 🙏

v4.4.3: : Bugfixes and improvements

Compare Source

This release brings couple of fixes:

  • Upper/lower limits not working (#​469)
    PR #​525
  • Invariant Violation: [4113,"RNCSlider",{"value":"<>"}] is not usable as a native method argument (#​345)
    PR #​513

as well as some "under-the-hood" improvements:

typicode/husky (husky)

v9.0.10

Compare Source

prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}

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 added the lint label Oct 8, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ae3c3b2 to b9d33e5 Compare October 8, 2023 13:01
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-storybook to v0.6.15 chore(deps): update all non-major dependencies Oct 8, 2023
@codecov
Copy link

codecov bot commented Oct 8, 2023

Codecov Report

Merging #512 (5ee0c1c) into main (1bbf896) will decrease coverage by 0.51%.
Report is 1 commits behind head on main.
The diff coverage is n/a.

❗ Current head 5ee0c1c differs from pull request most recent head 7fbab48. Consider uploading reports for the commit 7fbab48 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #512      +/-   ##
==========================================
- Coverage   75.47%   74.97%   -0.51%     
==========================================
  Files          36       36              
  Lines         946      951       +5     
  Branches      432      433       +1     
==========================================
- Hits          714      713       -1     
- Misses        227      233       +6     
  Partials        5        5              

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 2e3d737 to 52c4f38 Compare October 15, 2023 16:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from b54e260 to b9fc7bc Compare October 24, 2023 17:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 13ce501 to 7e2b548 Compare October 25, 2023 21:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 1f8e7ac to acc3cfb Compare January 27, 2024 19:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from 7ece95e to 39d54ae Compare February 4, 2024 08:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 39d54ae to 6f5d72c Compare February 4, 2024 14:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6f5d72c to 7fbab48 Compare February 4, 2024 15:22
@hyochan hyochan closed this Feb 4, 2024
@hyochan hyochan deleted the renovate/all-minor-patch branch February 4, 2024 16:06
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant