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 (main) #282

Merged
merged 2 commits into from
Sep 12, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 5, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/core (source) ^7.24.9 -> ^7.25.2 age adoption passing confidence
@babel/helper-module-transforms (source) ^7.24.9 -> ^7.25.2 age adoption passing confidence
@babel/plugin-syntax-import-assertions (source) ^7.24.7 -> ^7.25.6 age adoption passing confidence
@babel/plugin-transform-typescript (source) ^7.24.8 -> ^7.25.2 age adoption passing confidence
@babel/template (source) ^7.24.7 -> ^7.25.0 age adoption passing confidence
@babel/traverse (source) ^7.24.7 -> ^7.25.6 age adoption passing confidence
@babel/types (source) ^7.24.9 -> ^7.25.6 age adoption passing confidence
@types/node (source) ^20.14.12 -> ^20.16.5 age adoption passing confidence
@vitest/coverage-v8 (source) ^2.0.4 -> ^2.1.0 age adoption passing confidence
eslint (source) ^9.7.0 -> ^9.10.0 age adoption passing confidence
pkg-types ^1.1.3 -> ^1.2.0 age adoption passing confidence
pnpm (source) 9.4.0 -> 9.10.0 age adoption passing confidence
tinyexec ^0.2.0 -> ^0.3.0 age adoption passing confidence
typescript (source) ^5.5.4 -> ^5.6.2 age adoption passing confidence
vitest (source) ^2.0.4 -> ^2.1.0 age adoption passing confidence
webpack ^5.93.0 -> ^5.94.0 age adoption passing confidence

Release Notes

babel/babel (@​babel/core)

v7.25.2

Compare Source

🐛 Bug Fix
vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.0.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.10.0

Compare Source

v9.9.1

Compare Source

v9.9.0

Compare Source

Features

  • 41d0206 feat: Add support for TS config files (#​18134) (Arya Emami)
  • 3a4eaf9 feat: add suggestion to require-await to remove async keyword (#​18716) (Dave)

Documentation

  • 9fe068c docs: how to author plugins with configs that extend other configs (#​18753) (Alec Gibson)
  • 48117b2 docs: add version support page in the side navbar (#​18738) (Amaresh S M)
  • fec2951 docs: add version support page to the dropdown (#​18730) (Amaresh S M)
  • 38a0661 docs: Fix typo (#​18735) (Zaina Al Habash)
  • 3c32a9e docs: Update yarn command for creating ESLint config (#​18739) (Temitope Ogunleye)
  • f9ac978 docs: Update README (GitHub Actions Bot)

Chores

v9.8.0

Compare Source

unjs/pkg-types (pkg-types)

v1.2.0

Compare Source

compare changes

🚀 Enhancements
  • Add more fields into package.json (#​190)
🏡 Chore
❤️ Contributors
pnpm/pnpm (pnpm)

v9.10.0: pnpm 9.10

Compare Source

Minor Changes

  • Support for a new CLI flag, --exclude-peers, added to the list and why commands. When --exclude-peers is used, peer dependencies are not printed in the results, but dependencies of peer dependencies are still scanned #​8506.

  • Added a new setting to package.json at pnpm.auditConfig.ignoreGhsas for ignoring vulnerabilities by their GHSA code #​6838.

    For instance:

    {
      "pnpm": {
        "auditConfig": {
          "ignoreGhsas": [
            "GHSA-42xw-2xvc-qx8m",
            "GHSA-4w2v-q235-vp99",
            "GHSA-cph5-m8f7-6c5x",
            "GHSA-vh95-rmgr-6w4m"
          ]
        }
      }
    }

Patch Changes

  • Throw an exception if pnpm switches to the same version of itself.
  • Reduce memory usage during peer dependencies resolution.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors

v9.9.0

Compare Source

v9.8.0

Compare Source

v9.7.1

Compare Source

v9.7.0: pnpm 9.7

Compare Source

Minor Changes

  • Added pnpm version management. If the manage-package-manager-versions setting is set to true, pnpm will switch to the version specified in the packageManager field of package.json #​8363. This is the same field used by Corepack. Example:

    {
      "packageManager": "pnpm@9.3.0"
    }
  • Added the ability to apply patch to all versions #​8337.

    If the key of pnpm.patchedDependencies is a package name without a version (e.g. pkg), pnpm will attempt to apply the patch to all versions of the package. Failures will be skipped. If there's only one version of pkg installed, pnpm patch pkg and subsequent pnpm patch-commit $edit_dir will create an entry named pkg in pnpm.patchedDependencies. And pnpm will attempt to apply this patch to other versions of pkg in the future.

  • Change the default edit dir location when running pnpm patch from a temporary directory to node_modules/.pnpm_patches/pkg[@&#8203;version] to allow the code editor to open the edit dir in the same file tree as the main project #​8379.

  • Substitute environment variables in config keys #​6679.

Patch Changes

  • pnpm install should run node-gyp rebuild if the project has a binding.gyp file even if the project doesn't have an install script #​8293.
  • Print warnings to stderr #​8342.
  • Peer dependencies of optional peer dependencies should be automatically installed #​8323.

Platinum Sponsors

Gold Sponsors

Our Silver Sponsors


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 3 times, most recently from 3a60c47 to e2fd59d Compare August 9, 2024 21:54
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 5 times, most recently from b8c4e04 to daca030 Compare August 19, 2024 04:47
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 7 times, most recently from 05b1808 to f99c954 Compare August 29, 2024 10:43
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 4 times, most recently from 11e03f8 to be8cc26 Compare September 6, 2024 22:07
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch 5 times, most recently from 7f62eec to 1947ff8 Compare September 12, 2024 21:57
@renovate renovate bot force-pushed the renovate/main-all-minor-patch branch from 1947ff8 to c1b6e7c Compare September 12, 2024 21:57
Copy link
Contributor Author

renovate bot commented Sep 12, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@pi0 pi0 merged commit 758c1ee into main Sep 12, 2024
5 checks passed
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