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

[Tech] Bump the non-major-dev-dependencies group in /frontend with 8 updates #3609

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the non-major-dev-dependencies group in /frontend with 8 updates:

Package From To
@swc/core 1.7.21 1.7.22
@types/ramda 0.30.1 0.30.2
@types/react 18.3.4 18.3.5
cypress 13.14.0 13.14.1
esbuild 0.23.0 0.23.1
eslint-plugin-jest 28.8.0 28.8.1
husky 9.1.4 9.1.5
type-fest 4.23.0 4.26.0

Updates @swc/core from 1.7.21 to 1.7.22

Changelog

Sourced from @​swc/core's changelog.

[1.7.22] - 2024-08-30

Bug Fixes

  • (es/minifier) Iterate object properties in reverse direction while inlining property access (#9507) (f584ef7)
Commits
  • 6290dd3 chore: Publish 1.7.22 with swc_core v0.102.2
  • 2c505bf chore: Update changelog
  • 4313e27 chore: Publish 1.7.22-nightly-20240830.1 with swc_core v0.102.2
  • d0dd531 chore: Publish crates with swc_core v0.102.2
  • 222aca1 chore: Enable html publish pipeline
  • f584ef7 fix(es/minifier): Iterate object properties in reverse direction while inlini...
  • 8c0d79d chore: Update changelog
  • See full diff in compare view

Updates @types/ramda from 0.30.1 to 0.30.2

Commits

Updates @types/react from 18.3.4 to 18.3.5

Commits

Updates cypress from 13.14.0 to 13.14.1

Release notes

Sourced from cypress's releases.

v13.14.1

Changelog: https://docs.cypress.io/guides/references/changelog#13-14-1

Commits
  • e909c4a chore: release 13.14.1 (#30138)
  • 58abe80 chore: Update Chrome (stable) to 128.0.6613.113 (#30133)
  • f6e7af9 fix: adds a description for the JIT experiment which was overlooked on initia...
  • 0f77220 chore: fix kitchen sink running against staging to properly upload protocol d...
  • d83b9a0 chore: release @​cypress/webpack-dev-server-v3.11.0
  • bebb403 chore: release @​cypress/vite-dev-server-v5.2.0
  • See full diff in compare view

Updates esbuild from 0.23.0 to 0.23.1

Release notes

Sourced from esbuild's releases.

v0.23.1

  • Allow using the node: import prefix with es* targets (#3821)

    The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

    // Original code
    import fs from 'node:fs'
    fs.open
    // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "fs";
    fs.open;
    // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "node:fs";
    fs.open;

  • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

    Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

  • Fix incorrect location of certain error messages (#3845)

    This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

  • Print comments before case clauses in switch statements (#3838)

    With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

  • Fix a memory leak with pluginData (#3825)

    With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

Changelog

Sourced from esbuild's changelog.

0.23.1

  • Allow using the node: import prefix with es* targets (#3821)

    The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

    // Original code
    import fs from 'node:fs'
    fs.open
    // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "fs";
    fs.open;
    // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "node:fs";
    fs.open;

  • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

    Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

  • Fix incorrect location of certain error messages (#3845)

    This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

  • Print comments before case clauses in switch statements (#3838)

    With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

  • Fix a memory leak with pluginData (#3825)

    With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

Commits

Updates eslint-plugin-jest from 28.8.0 to 28.8.1

Release notes

Sourced from eslint-plugin-jest's releases.

v28.8.1

28.8.1 (2024-08-29)

Bug Fixes

  • prefer-importing-jest-globals: support typescript-eslint parser (#1639) (307f6a7)
Changelog

Sourced from eslint-plugin-jest's changelog.

28.8.1 (2024-08-29)

Bug Fixes

  • prefer-importing-jest-globals: support typescript-eslint parser (#1639) (307f6a7)
Commits
  • 1df45e9 chore(release): 28.8.1 [skip ci]
  • 307f6a7 fix(prefer-importing-jest-globals): support typescript-eslint parser (#1639)
  • 267702d chore(deps): lock file maintenance
  • f969f92 chore(deps): lock file maintenance
  • f5f3e99 chore(deps): lock file maintenance
  • See full diff in compare view

Updates husky from 9.1.4 to 9.1.5

Release notes

Sourced from husky's releases.

v9.1.5

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.4...v9.1.5

Commits

Updates type-fest from 4.23.0 to 4.26.0

Release notes

Sourced from type-fest's releases.

v4.26.0

sindresorhus/type-fest@v4.25.0...v4.26.0

v4.25.0

  • Add StringRepeat type (#938) a83e87e
  • Add Arrayable type #270 (#935) 9aabcb9

sindresorhus/type-fest@v4.24.0...v4.25.0

v4.24.0

  • Path: Add bracketNotation option (#926) 3b15a94

sindresorhus/type-fest@v4.23.0...v4.24.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the non-major-dev-dependencies group in /frontend with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [@swc/core](https://github.com/swc-project/swc) | `1.7.21` | `1.7.22` |
| [@types/ramda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ramda) | `0.30.1` | `0.30.2` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.4` | `18.3.5` |
| [cypress](https://github.com/cypress-io/cypress) | `13.14.0` | `13.14.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.23.0` | `0.23.1` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.8.0` | `28.8.1` |
| [husky](https://github.com/typicode/husky) | `9.1.4` | `9.1.5` |
| [type-fest](https://github.com/sindresorhus/type-fest) | `4.23.0` | `4.26.0` |


Updates `@swc/core` from 1.7.21 to 1.7.22
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.7.21...v1.7.22)

Updates `@types/ramda` from 0.30.1 to 0.30.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ramda)

Updates `@types/react` from 18.3.4 to 18.3.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `cypress` from 13.14.0 to 13.14.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v13.14.0...v13.14.1)

Updates `esbuild` from 0.23.0 to 0.23.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.23.0...v0.23.1)

Updates `eslint-plugin-jest` from 28.8.0 to 28.8.1
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.8.0...v28.8.1)

Updates `husky` from 9.1.4 to 9.1.5
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.4...v9.1.5)

Updates `type-fest` from 4.23.0 to 4.26.0
- [Release notes](https://github.com/sindresorhus/type-fest/releases)
- [Commits](sindresorhus/type-fest@v4.23.0...v4.26.0)

---
updated-dependencies:
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@types/ramda"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: cypress
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: esbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: eslint-plugin-jest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-major-dev-dependencies
- dependency-name: type-fest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-major-dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file tech. enhancement technical ehancement labels Sep 1, 2024
Copy link

sonarcloud bot commented Sep 1, 2024

@ivangabriele ivangabriele merged commit bf1743c into master Sep 4, 2024
26 checks passed
@ivangabriele ivangabriele deleted the dependabot/npm_and_yarn/frontend/non-major-dev-dependencies-790078cff4 branch September 4, 2024 00:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file tech. enhancement technical ehancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants