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

Bump the development-dependencies group in /native_gg with 4 updates #126

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 9, 2024

Bumps the development-dependencies group in /native_gg with 4 updates: @babel/preset-env, @babel/runtime, @biomejs/biome and @react-native/typescript-config.

Updates @babel/preset-env from 7.23.7 to 7.23.8

Release notes

Sourced from @​babel/preset-env's releases.

v7.23.8 (2024-01-08)

🐛 Bug Fix

↩️ Revert

🔬 Output optimization

  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-parameters, babel-plugin-transform-react-jsx, babel-plugin-transform-runtime, babel-plugin-transform-spread, babel-plugin-transform-typescript, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

Committers: 3

Changelog

Sourced from @​babel/preset-env's changelog.

v7.23.8 (2024-01-08)

🐛 Bug Fix

↩️ Revert

🔬 Output optimization

  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-parameters, babel-plugin-transform-react-jsx, babel-plugin-transform-runtime, babel-plugin-transform-spread, babel-plugin-transform-typescript, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
Commits

Updates @babel/runtime from 7.23.7 to 7.23.8

Release notes

Sourced from @​babel/runtime's releases.

v7.23.8 (2024-01-08)

🐛 Bug Fix

↩️ Revert

🔬 Output optimization

  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-parameters, babel-plugin-transform-react-jsx, babel-plugin-transform-runtime, babel-plugin-transform-spread, babel-plugin-transform-typescript, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime

Committers: 3

Changelog

Sourced from @​babel/runtime's changelog.

v7.23.8 (2024-01-08)

🐛 Bug Fix

↩️ Revert

🔬 Output optimization

  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-transform-class-properties, babel-plugin-transform-classes, babel-plugin-transform-function-name, babel-plugin-transform-parameters, babel-plugin-transform-react-jsx, babel-plugin-transform-runtime, babel-plugin-transform-spread, babel-plugin-transform-typescript, babel-preset-env, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
Commits

Updates @biomejs/biome from 1.4.1 to 1.5.0

Release notes

Sourced from @​biomejs/biome's releases.

CLI v1.5.0

Biome now scores 97% compatibility with Prettier and features more than 190 linter rules.

CLI

New features

  • Biome now shows a diagnostic when it encounters a protected file. Contributed by @​ematipico

  • The command biome migrate now updates the $schema if there's an outdated version.

  • The CLI now takes in consideration the .gitignore in the home directory of the user, if it exists. Contributed by @​ematipico

  • The biome ci command is now able to print GitHub Workflow Commands when there are diagnostics in our code. Contributed by @​nikeee This might require setting the proper permissions on your GitHub action:

    permissions:
      pull-requests: write
  • The commands format, lint, check and ci now accept two new arguments: --changed and --since. Use these options with the VCS integration is enabled to process only the files that were changed. Contributed by @​simonxabris

    biome format --write --changed
  • Introduced a new command called biome explain, which has the capability to display documentation for lint rules. Contributed by @​kalleep

  • You can use the command biome explain to print the documentation of lint rules. Contributed by @​kalleep

    biome explain noDebugger
    biome explain useAltText
  • You can use the command biome explain to print the directory where daemon logs are stored. Contributed by @​ematipico

    biome explain daemon-logs
  • Removed the hard coded limit of 200 printable diagnostics. Contributed by @​ematipico

Bug fixes

  • Fix #1247, Biome now prints a warning diagnostic if it encounters files that can't handle. Contributed by @​ematipico

    You can ignore unknown file types using the files.ignoreUnknown configuration in biome.json:

    {
      "files": {
        "ignoreUnknown": true
      }
    }

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

1.5.0 (2024-01-08)

Biome now scores 97% compatibility with Prettier and features more than 180 linter rules.

Analyzer

CLI

New features

  • Biome now shows a diagnostic when it encounters a protected file. Contributed by @​ematipico

  • The command biome migrate now updates the $schema if there's an outdated version.

  • The CLI now takes in consideration the .gitignore in the home directory of the user, if it exists. Contributed by @​ematipico

  • The biome ci command is now able to print GitHub Workflow Commands when there are diagnostics in our code. Contributed by @​nikeee This might require setting the proper permissions on your GitHub action:

    permissions:
      pull-requests: write
  • The commands format, lint, check and ci now accept two new arguments: --changed and --since. Use these options with the VCS integration is enabled to process only the files that were changed. Contributed by @​simonxabris

    biome format --write --changed
  • Introduced a new command called biome explain, which has the capability to display documentation for lint rules. Contributed by @​kalleep

  • You can use the command biome explain to print the documentation of lint rules. Contributed by @​kalleep

    biome explain noDebugger
    biome explain useAltText
  • You can use the command biome explain to print the directory where daemon logs are stored. Contributed by @​ematipico

    biome explain daemon-logs
  • Removed the hard coded limit of 200 printable diagnostics. Contributed by @​ematipico

Bug fixes

  • Fix #1247, Biome now prints a warning diagnostic if it encounters files that can't handle. Contributed by @​ematipico

    You can ignore unknown file types using the files.ignoreUnknown configuration in biome.json:

    {
      "files": {
        "ignoreUnknown": true

... (truncated)

Commits
  • c1fdabc release: 1.5.0 (#1231)
  • a42f202 feat(lint/noGlobalAssign): add rule (#1377)
  • 6f2a887 feat(lint/useImportType): add rule (#1204)
  • dcf34c4 docs(README): update rule count (#1434)
  • b88f8b7 feat(lint/noGlobalEval): add rule (#1133)
  • ff8862b fix(lint/useHookAtTopLevel): fix false positives, don't require hook config (...
  • 9b07bc8 feat(lint/useFilenamingConvention): allow PascalCase in config (#1414)
  • cc7c00e feat(style/useConsistentArrayType): add rule (#1137)
  • 79df704 refactor(lint/useNumberNamespace): improve rule (#1399)
  • 9c0243f refactor(useNodejsImportProtocol,noNodejsModules): improve rules (#1397)
  • Additional commits viewable in compare view

Updates @react-native/typescript-config from 0.73.1 to 0.74.0

Release notes

Sourced from @​react-native/typescript-config's releases.

0.73.2

Added

  • Unhandled promise rejection - attach non-standard Error object stack info if possible (655b12dbfa by @​ospfranco)

Changed

iOS specific

Fixed

iOS specific


You can participate in the conversation on the status of this release in this discussion


To help you upgrade to this version, you can use the upgrade helper ⚛️


You can find the whole changelog history in the CHANGELOG.md file.

Changelog

Sourced from @​react-native/typescript-config's changelog.

Changelog

v0.73.2

Added

  • Unhandled promise rejection - attach non-standard Error object stack info if possible (655b12dbfa by @​ospfranco)

Changed

iOS specific

Fixed

iOS specific

This file contains all changelogs for latest releases, from 0.70.0 onward. Please check out the other CHANGELOG-*.md files for previous versions.

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 development-dependencies group in /native_gg with 4 updates: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env), [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime), [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) and [@react-native/typescript-config](https://github.com/facebook/react-native/tree/HEAD/packages/typescript-config).


Updates `@babel/preset-env` from 7.23.7 to 7.23.8
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.8/packages/babel-preset-env)

Updates `@babel/runtime` from 7.23.7 to 7.23.8
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.23.8/packages/babel-runtime)

Updates `@biomejs/biome` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.5.0/packages/@biomejs/biome)

Updates `@react-native/typescript-config` from 0.73.1 to 0.74.0
- [Release notes](https://github.com/facebook/react-native/releases)
- [Changelog](https://github.com/facebook/react-native/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react-native/commits/HEAD/packages/typescript-config)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@babel/runtime"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@react-native/typescript-config"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 9, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 9, 2024

The group that created this PR has been removed from your configuration.

@dependabot dependabot bot closed this Jan 9, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/native_gg/development-dependencies-c8696e99c8 branch January 9, 2024 19:33
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants