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(ui): update all non-major dependencies #1058

Merged
merged 1 commit into from
Feb 5, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 2, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@iconify/utils (source) 2.1.20 -> 2.1.22 age adoption passing confidence
@swc/core (source) 1.3.107 -> 1.4.0 age adoption passing confidence
@swc/helpers (source) 0.5.3 -> 0.5.6 age adoption passing confidence
@types/react (source) 18.2.51 -> 18.2.53 age adoption passing confidence
google-auth-library 9.6.1 -> 9.6.2 age adoption passing confidence
inquirer (source) 9.2.13 -> 9.2.14 age adoption passing confidence
knip (source) 4.3.0 -> 4.3.1 age adoption passing confidence
libphonenumber-js 1.10.54 -> 1.10.55 age adoption passing confidence
lint-staged 15.2.1 -> 15.2.2 age adoption passing confidence
msw (source) 2.1.5 -> 2.1.6 age adoption passing confidence
prettier (source) 3.2.4 -> 3.2.5 age adoption passing confidence
react-i18next 14.0.1 -> 14.0.3 age adoption passing confidence
sherif 0.7.0 -> 0.8.1 age adoption passing confidence

Release Notes

swc-project/swc (@​swc/core)

v1.4.0

Compare Source

Bug Fixes
Features
Refactor
Testing
  • (es/minifer) Update the passing terser test list (#​8573) (8b86638)

  • (es/testing) Ensure that test_inline! is working properly (#​8590) (872a47b)

googleapis/google-auth-library-nodejs (google-auth-library)

v9.6.2

Compare Source

Bug Fixes
SBoudrias/Inquirer.js (inquirer)

v9.2.14

Compare Source

webpro/knip (knip)

v4.3.1

Compare Source

  • Make integration tests pass (5a7a80a)
  • Update integration tests (5bca404)
  • Add link to GitHub search for projects using Knip (bdd3c7b)
  • Safe-guard fixes (closes #​486) (cf3761b)
  • Add silent and shell-mode boolean flags to pnpm resolver (resolves #​491) (2d5c0b5)
  • Filter dependencies in vitest plugin for vite plugin (#​334) (d81a00f)
catamphetamine/libphonenumber-js (libphonenumber-js)

v1.10.55

Compare Source

okonet/lint-staged (lint-staged)

v15.2.2

Compare Source

Patch Changes
  • #​1391 fdcdad4 Thanks @​iiroj! - Lint-staged no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.
mswjs/msw (msw)

v2.1.6

Compare Source

v2.1.6 (2024-02-05)

Bug Fixes
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
@​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"
      }
    }
  ]
}
i18next/react-i18next (react-i18next)

v14.0.3

Compare Source

  • revert changes done in v14.0.2 since it breaks normal language change render updates

v14.0.2

Compare Source

  • Fix/bug 1691 make returned t function identical upon second effect run in strict mode 1716
QuiiBz/sherif (sherif)

v0.8.1

Compare Source

What's Changed

Full Changelog: QuiiBz/sherif@v0.8.0...v0.8.1

v0.8.0

Compare Source

Preserve the JSON indentation on autofix

If you're using a formatter (e.g. Prettier) for your package.json files, you might have noticed that Sherif ignores the indentation and always uses two spaces. This is no longer the case and Sherif will automatically detect and use the correct indentation (2 spaces, 4 spaces, tabs) when autofixing issues!

Yarn nohoist workspaces

We now support the Yarn nohoist workspaces configuration, where the root package.json's workspaces field looks like:

"workspaces": {
  "packages": ["packages/*"],
  "nohoist": []
}

Misc

  • The multiple-dependency-versions will now also report duplicated versions in peerDependencies
  • Reduce the binary size by half

What's Changed

Full Changelog: QuiiBz/sherif@v0.7.0...v0.8.0


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 is behind base branch, 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.

Copy link

vercel bot commented Feb 2, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
inreach-app ✅ Ready (Inspect) Visit Preview 💬 Add feedback Feb 5, 2024 3:42pm

@renovate renovate bot requested a review from JoeKarow as a code owner February 2, 2024 16:41
@renovate renovate bot added automerge Enable Kodiak auto-merge dependencies Change in project dependencies. kodiak: merge.method = 'squash' Kodiak will squash merge this PR. labels Feb 2, 2024
@ghost
Copy link

ghost commented Feb 2, 2024

👇 Click on the image for a new way to code review

Review these changes using an interactive CodeSee Map

Legend

CodeSee Map legend

Copy link

socket-security bot commented Feb 2, 2024

New and removed dependencies detected. Learn more about Socket for GitHub ↗︎

Package New capabilities Transitives Size Publisher
npm/@iconify/[email protected] Transitive: environment, filesystem, shell +29 1.86 MB cyberalien
npm/@swc/[email protected] environment, filesystem, shell +4 712 kB kdy1
npm/@swc/[email protected] None +1 314 kB kdy1
npm/@types/[email protected] None +3 1.67 MB types
npm/[email protected] Transitive: environment, filesystem, network +21 1.87 MB google-wombot
npm/[email protected] Transitive: environment, eval, filesystem, shell +58 6.23 MB sboudrias
npm/[email protected] environment, filesystem, shell, unsafe Transitive: network +221 48.1 MB webpro
npm/[email protected] None 0 8.27 MB catamphetamine
npm/[email protected] Transitive: environment, filesystem, shell +55 2.48 MB okonet
npm/[email protected] Transitive: environment, filesystem, shell +67 43.1 MB kettanaito
npm/[email protected] None 0 8.39 MB azz, duailibe, fisker, ...8 more
npm/[email protected] Transitive: environment +10 6.23 MB adrai, jamuhl
npm/[email protected] None 0 6.07 kB quiibz

🚮 Removed packages: npm/@iconify/[email protected], npm/@swc/[email protected], npm/@swc/[email protected], npm/@types/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected], npm/[email protected]

View full report↗︎

Copy link
Contributor

github-actions bot commented Feb 2, 2024

📦 Next.js Bundle Analysis for @weareinreach/app

This analysis was generated by the Next.js Bundle Analysis action. 🤖

This PR introduced no changes to the JavaScript bundle! 🙌

Copy link

alwaysmeticulous bot commented Feb 2, 2024

🤖 No test run has been triggered as your Meticulous project has been deactivated (since you haven't viewed any test results in a while). Click here to reactivate.

Last updated for commit 18fd6be. This comment will update as new commits are pushed.

@renovate renovate bot changed the title chore(): update dependency sherif to v0.8.0 chore(db): update all non-major dependencies Feb 2, 2024
@renovate renovate bot changed the title chore(db): update all non-major dependencies chore(ui): update all non-major dependencies Feb 3, 2024
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Copy link

sonarcloud bot commented Feb 5, 2024

Quality Gate Passed Quality Gate passed

Kudos, no new issues were introduced!

0 New issues
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@kodiakhq kodiakhq bot merged commit 8e571e5 into dev Feb 5, 2024
21 checks passed
@kodiakhq kodiakhq bot deleted the renovate/all-minor-patch branch February 5, 2024 16:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant