qiwi / semantic-release-monorepo-hooks

Workarounds to handle `semantic-release-monorepo` multipublishing
MIT License
33 stars 4 forks source link

fix(deps): update dependency cosmiconfig to v9 #37

Open renovate[bot] opened 10 months ago

renovate[bot] commented 10 months ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cosmiconfig ^8.0.0 -> ^9.0.0 age adoption passing confidence

Release Notes

cosmiconfig/cosmiconfig (cosmiconfig) ### [`v9.0.0`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#900) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.6...v9.0.0) - Added `searchStrategy` option: - The `none` value means that cosmiconfig does not traverse any directories upwards. - **Breaking change:** This is the default value if you don't pass a `stopDir` option, which means that cosmiconfig no longer traverses directories by default, and instead just looks in the current working directory. - If you want to achieve maximum backwards compatibility without adding an explicit `stopDir`, add the `searchStrategy: 'global'` option. - The `project` value means that cosmiconfig traverses upwards until it finds a `package.json` (or `.yaml`) file. - The `global` value means that cosmiconfig traverses upwards until the passed `stopDir`, or your home directory if no `stopDir` is given. - **Breaking change:** Meta config files (i.e. `config.js` and similar) are not looked for in the current working directory anymore. Instead, it looks in the `.config` subfolder. - **Breaking change:** When defining `searchPlaces` in a meta config file, the tool-defined `searchPlaces` are merged into this. Users may specify `mergeSearchPlaces: false` to disable this. - Added support for a special `$import` key which will import another configuration file - The imported file will act as a base file - all properties from that file will be applied to the configuration, but can be overridden by the importing file - For more information, read the [import section of the README](README.md#imports) - Added searching in OS conventional folders (XDG compatible on Linux, %APPDATA% on Windows, Library/Preferences on macOS) for `searchStrategy: 'global'` - Fixed crash when trying to load a file that is not readable due to file system permissions - Fixed wrong ERR_REQUIRE_ESM error being thrown when there is an issue loading an ESM file ### [`v8.3.6`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#836) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.5...cosmiconfig-v8.3.6) - Ignore search place if accessing it causes ENOTDIR (i.e. if access of a subpath of a file is attempted) ### [`v8.3.5`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#835) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.4...cosmiconfig-v8.3.5) - Fixed regression in transform option ### [`v8.3.4`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#834) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.3...cosmiconfig-v8.3.4) - Fixed crash in older node versions ### [`v8.3.3`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#833) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.2...cosmiconfig-v8.3.3) - Added back node 14 compat to package.json ### [`v8.3.2`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#832) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.1...cosmiconfig-v8.3.2) - Fixed some issues with TypeScript config loading ### [`v8.3.1`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#831) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/cosmiconfig-v8.3.0...cosmiconfig-v8.3.1) - Fixed crash when `stopDir` was given but undefined ### [`v8.3.0`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#830) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/v8.2.0...cosmiconfig-v8.3.0) - Add support for TypeScript configuration files ### [`v8.2.0`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#820) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/v8.1.3...v8.2.0) - Add support for ECMAScript modules (ESM) to the [*asynchronous* API](./README.md#asynchronous-api). End users running Node versions that support ESM can provide `.mjs` files, or `.js` files whose nearest parent `package.json` file contains `"type": "module"`. - `${moduleName}rc.mjs` and `${moduleName}.config.mjs` are included in the default `searchPlaces` of the asynchronous API. - The [synchronous API](./README.md#synchronous-api) does not support ECMAScript modules, so does not look for `.mjs` files. - To learn more, read ["Loading JS modules"](./README.md#loading-js-modules). ### [`v8.1.3`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#813) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/v8.1.2...v8.1.3) - Fixed: existence of meta config breaking default loaders ### [`v8.1.2`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#812) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/v8.1.1...v8.1.2) - Fixed: generation of TypeScript types going to the wrong output path ### [`v8.1.1`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#811) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/v8.1.0...v8.1.1) - Fixed: meta config overriding original options completely (now merges correctly) ### [`v8.1.0`](https://togithub.com/cosmiconfig/cosmiconfig/blob/HEAD/CHANGELOG.md#810) [Compare Source](https://togithub.com/cosmiconfig/cosmiconfig/compare/v8.0.0...v8.1.0) - Added: always look at `.config.{yml,yaml,json,js,cjs}` file to configure cosmiconfig itself, and look for tool configuration in it using `packageProp` (similar to package.json) - For more info on this, look at the [end user configuration section of the README](README.md#usage-for-end-users)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR was generated by Mend Renovate. View the repository job log.