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

Update all non-major dependencies #411

Merged
merged 1 commit into from
Dec 2, 2023
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 2, 2023

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@biomejs/biome (source) 1.3.3 -> 1.4.1 age adoption passing confidence devDependencies minor
@swc/core (source) 1.3.99 -> 1.3.100 age adoption passing confidence devDependencies patch
JamesIves/github-pages-deploy-action v4.4.3 -> v4.5.0 age adoption passing confidence action minor
php 8.2.12 -> 8.3.0 age adoption passing confidence final minor
php 8.2-fpm -> 8.3-fpm age adoption passing confidence minor
shivammathur/setup-php 2.27.1 -> 2.28.0 age adoption passing confidence action minor

Release Notes

biomejs/biome (@​biomejs/biome)

v1.4.1

Compare Source

Editors
  • Fix #​933. Some files are properly ignored in the LSP too. E.g. package.json, tsconfig.json, etc.
Formatter
Bug fixes
  • Fix some accidental line breaks when printing array expressions within arrow functions and other long lines #​917. Contributed by @​faultyserver

  • Match Prettier's breaking strategy for ArrowChain layouts #​934. Contributed by @​faultyserver

  • Fix double-printing of leading comments in arrow chain expressions #​951. Contributed by @​faultyserver

Linter
Bug fixes
  • Fix #​910, where the rule noSvgWithoutTitle should skip elements that have aria-hidden attributes. Contributed by @​vasucp1207
New features
Enhancement
  • Implements #​924 and #​920. noUselessElse now ignores else clauses that follow at least one if statement that doesn't break early. Contributed by @​Conaclos

    For example, the following code is no longer reported by the rule:

    function f(x) {
        if (x < 0) {
          // this `if` doesn't break early.
        } else if (x > 0) {
            return x;
        } else {
            // This `else` block was previously reported as useless.
        }
    }
Bug fixes
Parser

v1.4.0

Compare Source

CLI
  • Remove the CLI options from the lsp-proxy, as they were never meant to be passed to that command. Contributed by @​ematipico

  • Add option --config-path to lsp-proxy and start commands. It's now possible to tell the Daemon server to load biome.json from a custom path. Contributed by @​ematipico

  • Add new --diagnostic-level option to let users control the level of diagnostics printed by the CLI. Possible values are: "info", "warn", "hint". Contributed by @​simonxabris

  • Add option --line-feed to the format command. Contributed by @​SuperchupuDev

  • Add option --bracket-same-line to the format command. Contributed by @​faultyserve

  • Add option --bracket-spacing to the format command. Contributed by @​faultyserve

Bug fixes
  • Fix the command format, now it returns a non-zero exit code when if there pending diffs. Contributed by @​ematipico
Configuration
Formatter
New features
  • Add a new option --line-ending. This option allows changing the type of line endings. Contributed by @​SuperchupuDev
  • Added a new option called --bracket-spacing to the formatter. This option allows you to control whether spaces are inserted around the brackets of object literals. #​627. Contributed by @​faultyserver
  • Added a new option called --bracket-same-line to the formatter. This option allows you to control whether spaces are inserted around the brackets of object literals. #​627. Contributed by @​faultyserver
Bug fixes
  • Fix #​832, the formatter no longer keeps an unnecessary trailing comma in type parameter lists. Contributed by @​Conaclos

  • Fix #​301, the formatter should not break before the in keyword. Contributed by @​ematipico

Linter
Promoted rules

The following rules are now recommended:

The following rules are now deprecated:

New features
Enhancements
Bug fixes
Parser
Bug fixes
  • Fix #​846 that erroneously parsed <const T,>() => {} as a JSX tag instead of an arrow function when both TypeScript and JSX are enabled.
VSCode
swc-project/swc (@​swc/core)

v1.3.100

Compare Source

Bug Fixes
Miscellaneous Tasks
Build
JamesIves/github-pages-deploy-action (JamesIves/github-pages-deploy-action)

v4.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: JamesIves/github-pages-deploy-action@v4.4.3...v4.5.0

shivammathur/setup-php (shivammathur/setup-php)

v2.28.0

Compare Source

Changelog

  • Specifying 8.3 in php-version now installs a stable build of PHP 8.3.
- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  • Specifying latest in php-version now installs PHP 8.3 as well.
- name: Setup Latest PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: 'latest'
  • Specifying nightly in php-version now installs PHP 8.4.
- name: Setup Nightly PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: 'nightly'
- name: Setup PHP with intl
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: intl-74.1
  • Added support to specify zts in phpts environment variable instead of ts to set up thread-safe PHP on Linux and Windows.
- name: Setup PHP 8.3 (ZTS)
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    phpts: zts
  • Fixed support for debug builds. (#​784)
- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
  env:
    debug: true
  • Added support for cached builds for PHP 8.3, PHP 8.4, and zts builds of all versions of PHP 5.6 and newer on Ubuntu GitHub Hosted environments. This should reduce the time it takes to set up these PHP versions.

  • Added swoole to the builds cache for GitHub-hosted environments for PHP 7.2 and newer.

- name: Setup PHP 8.3
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: swoole
  • Added PHP 8.3 and PHP 8.4 to the extension lists in the wiki. (#​787).

  • PHP 8.0 is now marked as End of life and PHP 8.1 is now marked as Security fixes only in README.
    See PHP Support in README.

  • Fixed support for Blackfire extension. The action now disabled Xdebug and pcov extensions by default when blackfire is specified in extensions input.

- name: Setup PHP with blackfire extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: blackfire
  • Fixed support for grpc_php_plugin when installed along with protoc on macOS.
- name: Setup PHP
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    tools: protoc, grpc_php_plugin
  • Fixed support for geos extension on PHP 8.3.
- name: Setup PHP with geos extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: geos
  • Fixed support for event extension on macOS to use openssl@3 formula.
- name: Setup PHP with geos extension
  uses: shivammathur/setup-php@v2
  with:
    php-version: '8.3'
    extensions: event
  • Update Node.js dependencies.

Merged Pull Requests

For the complete list of changes, please refer to the Full Changelog

Follow for updates

setup-php reddit setup-php twitter setup-php status


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

sonarcloud bot commented Dec 2, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

warning The version of Java (11.0.20) you have used to run this analysis is deprecated and we will stop accepting it soon. Please update to at least Java 17.
Read more here

@renovate renovate bot merged commit bac6e23 into master Dec 2, 2023
11 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch December 2, 2023 03:07
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.

0 participants