dauxio / daux.io

Daux.io is an documentation generator that uses a simple folder structure and Markdown files to create custom documentation on the fly. It helps you create great looking documentation in a developer friendly way.
https://daux.io/
MIT License
795 stars 196 forks source link

Update all non-major dependencies #376

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@swissquote/crafty 1.22.0 -> 1.22.1 age adoption passing confidence devDependencies patch
@swissquote/crafty-preset-babel 1.22.0 -> 1.22.1 age adoption passing confidence devDependencies patch
@swissquote/crafty-preset-postcss 1.22.0 -> 1.22.1 age adoption passing confidence devDependencies patch
@swissquote/crafty-runner-gulp 1.22.0 -> 1.22.1 age adoption passing confidence devDependencies patch
@swissquote/crafty-runner-rollup 1.22.0 -> 1.22.1 age adoption passing confidence devDependencies patch
shivammathur/setup-php 2.24.0 -> 2.25.1 age adoption passing confidence action minor

Release Notes

swissquote/crafty ### [`v1.22.1`](https://togithub.com/swissquote/crafty/releases/tag/v1.22.1): 1.22.1 [Compare Source](https://togithub.com/swissquote/crafty/compare/v1.22.0...v1.22.1) ##### Highlights - properly declare peerDependencies in packages needing them to avoid bad surprises when modules are installed - Support compiling `.mjs` and `.mts` files in gulp - Support testing `.mts` files with dependencies to other `.mts` files. Same for `.cts` ##### Updates - Update SWC from 1.3.49 to 1.3.51 - Update postcss from 8.4.21 to 8.4.22 **Full Changelog**: https://github.com/swissquote/crafty/compare/v1.22.0...v1.22.1
shivammathur/setup-php ### [`v2.25.1`](https://togithub.com/shivammathur/setup-php/releases/tag/2.25.1) [Compare Source](https://togithub.com/shivammathur/setup-php/compare/2.25.0...2.25.1) ##### Changelog - Fixed regression in support for event extension in `2.25.0` ([#​722](https://togithub.com/shivammathur/setup-php/issues/722)). - Added fallback to GitHub API in `Add-DebugSymbols` on Windows. - Updated Node.js dependencies. **Full Changelog**: https://github.com/shivammathur/setup-php/compare/2.25.0...2.25.1

Follow for updates

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

### [`v2.25.0`](https://togithub.com/shivammathur/setup-php/releases/tag/2.25.0) [Compare Source](https://togithub.com/shivammathur/setup-php/compare/2.24.0...2.25.0) ##### Changelog - Dropped support for Ubuntu 18.04. ([#​717](https://togithub.com/shivammathur/setup-php/issues/717)) Please use `ubuntu-22.04` or `ubuntu-20.04` runners. ```diff - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 ##### or - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 ``` - Added support for `php-version-file` input to read the input PHP version from a file [Docs](https://togithub.com/shivammathur/setup-php#php-version-file-optional). ([#​690](https://togithub.com/shivammathur/setup-php/issues/690)) **Example**: If you have a file `.php-version` in your file structure with the PHP version as its content, you can use the `php-version-file` input. ```yml - name: Checkout uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version-file: .php-version ``` - Added support for `intl` extension with `ICU 73.1`. [https://github.com/shivammathur/icu-intl/pull/5](https://togithub.com/shivammathur/icu-intl/pull/5) ```yml - name: Setup PHP uses: shivammathur/setup-php@v2 with: extensions: intl-73.1 ``` - Added support for `snmp` and `uuid` on macOS using `shivammathur/extensions` tap. ([https://github.com/shivammathur/homebrew-extensions/issues/2426](https://togithub.com/shivammathur/homebrew-extensions/issues/2426), [https://github.com/shivammathur/homebrew-extensions/issues/2452](https://togithub.com/shivammathur/homebrew-extensions/issues/2452)) ```yml - name: Setup PHP uses: shivammathur/setup-php@v2 with: extensions: snmp, uuid ``` - Added retry logic across Windows to decrease the network failure rate. ([#​700](https://togithub.com/shivammathur/setup-php/issues/700), [#​711](https://togithub.com/shivammathur/setup-php/issues/711)) - Switched to using `phpenmod` script to enable extensions on Linux. - Switched to using `Write-Error` instead of `Exit` on Windows as that did not stop the workflow on errors. ([#​709](https://togithub.com/shivammathur/setup-php/issues/709)) - Improved support for `relay` extension. [#​719](https://togithub.com/shivammathur/setup-php/issues/719) - Fixed support for `zts` build of `zephir_parser` extension. [#​701](https://togithub.com/shivammathur/setup-php/issues/701) - Fixed parameters in the `xargs` call. [#​712](https://togithub.com/shivammathur/setup-php/issues/712) - Fixed minor shellcheck error. - Fixed the wrapper used to install Debian packages to check for broken package failures. - Fixed the JIT config set up to match the docs. - Updated Node.js dependencies. **Full Changelog**: https://github.com/shivammathur/setup-php/compare/2.24.0...2.25.0 ##### Contributions - Fix DocBlock in `utils.ts` by [@​viktorruskai](https://togithub.com/viktorruskai) in [https://github.com/shivammathur/setup-php/pull/689](https://togithub.com/shivammathur/setup-php/pull/689) - Support .php-version file for version detection by [@​stevelacey](https://togithub.com/stevelacey) in [https://github.com/shivammathur/setup-php/pull/690](https://togithub.com/shivammathur/setup-php/pull/690) - Move php version default out of action.yml and update inputs by [@​stevelacey](https://togithub.com/stevelacey) in [https://github.com/shivammathur/setup-php/pull/691](https://togithub.com/shivammathur/setup-php/pull/691) - docs: improve sentence structure slightly by [@​G-Rath](https://togithub.com/G-Rath) in [https://github.com/shivammathur/setup-php/pull/707](https://togithub.com/shivammathur/setup-php/pull/707) - Add support for ICU 73-1 by [@​jderusse](https://togithub.com/jderusse) in [https://github.com/shivammathur/icu-intl/pull/5](https://togithub.com/shivammathur/icu-intl/pull/5) ##### New Contributors - [@​viktorruskai](https://togithub.com/viktorruskai) made their first contribution in [https://github.com/shivammathur/setup-php/pull/689](https://togithub.com/shivammathur/setup-php/pull/689) - [@​stevelacey](https://togithub.com/stevelacey) made their first contribution in [https://github.com/shivammathur/setup-php/pull/690](https://togithub.com/shivammathur/setup-php/pull/690) - [@​G-Rath](https://togithub.com/G-Rath) made their first contribution in [https://github.com/shivammathur/setup-php/pull/707](https://togithub.com/shivammathur/setup-php/pull/707) Thanks! for the contribution 🎉

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: Disabled by config. Please merge this manually once you are satisfied.

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.



This PR has been generated by Mend Renovate. View repository job log here.

sonarcloud[bot] commented 1 year ago

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