adobe / helix-status

Report status for OpenWhisk Microservices for New Relic (and others) Uptime (HTTP) checks
Apache License 2.0
4 stars 12 forks source link

chore(deps): update external fixes #520

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
eslint (source) 8.48.0 -> 8.49.0 age adoption passing confidence
esmock 2.3.8 -> 2.4.1 age adoption passing confidence

Release Notes

eslint/eslint (eslint) ### [`v8.49.0`](https://togithub.com/eslint/eslint/releases/tag/v8.49.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v8.48.0...v8.49.0) #### Features - [`da09f4e`](https://togithub.com/eslint/eslint/commit/da09f4e641141f585ef611c6e9d63d4331054706) feat: Implement onUnreachableCodePathStart/End ([#​17511](https://togithub.com/eslint/eslint/issues/17511)) (Nicholas C. Zakas) - [`32b2327`](https://togithub.com/eslint/eslint/commit/32b2327aafdd3b911fabab69ed75c9ff97658c60) feat: Emit deprecation warnings in RuleTester ([#​17527](https://togithub.com/eslint/eslint/issues/17527)) (Nicholas C. Zakas) - [`acb7df3`](https://togithub.com/eslint/eslint/commit/acb7df35b9a7485f26bc6b3e1f9083d1c585dce9) feat: add new `enforce` option to `lines-between-class-members` ([#​17462](https://togithub.com/eslint/eslint/issues/17462)) (Nitin Kumar) #### Documentation - [`ecfb54f`](https://togithub.com/eslint/eslint/commit/ecfb54ff4cdd18f28b4f9b78f0a78fb4cf80f1b8) docs: Update README (GitHub Actions Bot) - [`de86b3b`](https://togithub.com/eslint/eslint/commit/de86b3b2e58edd5826200c23255d8325abe375e1) docs: update `no-promise-executor-return` examples ([#​17529](https://togithub.com/eslint/eslint/issues/17529)) (Nitin Kumar) - [`032c4b1`](https://togithub.com/eslint/eslint/commit/032c4b1476a7b8cfd917a66772d2221950ea87eb) docs: add typescript template ([#​17500](https://togithub.com/eslint/eslint/issues/17500)) (James) - [`cd7da5c`](https://togithub.com/eslint/eslint/commit/cd7da5cc3154f86f7ca45fb58929d27a7af359ed) docs: Update README (GitHub Actions Bot) #### Chores - [`b7621c3`](https://togithub.com/eslint/eslint/commit/b7621c3b16cf7d5539f05336a827e1b32d95e6ac) chore: remove browser test from `npm test` ([#​17550](https://togithub.com/eslint/eslint/issues/17550)) (Milos Djermanovic) - [`cac45d0`](https://togithub.com/eslint/eslint/commit/cac45d04b890b0700dd8908927300608adad05fe) chore: upgrade [@​eslint/js](https://togithub.com/eslint/js)[@​8](https://togithub.com/8).49.0 ([#​17549](https://togithub.com/eslint/eslint/issues/17549)) (Milos Djermanovic) - [`cd39508`](https://togithub.com/eslint/eslint/commit/cd395082bffcb4b68efa09226d7c682cef56179e) chore: package.json update for [@​eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins) - [`203a971`](https://togithub.com/eslint/eslint/commit/203a971c0abc3a95ae02ff74104a01e569707060) ci: bump actions/checkout from 3 to 4 ([#​17530](https://togithub.com/eslint/eslint/issues/17530)) (dependabot\[bot]) - [`a40fa50`](https://togithub.com/eslint/eslint/commit/a40fa509922b36bb986eb1be9394591f84f62d9e) chore: use eslint-plugin-jsdoc's flat config ([#​17516](https://togithub.com/eslint/eslint/issues/17516)) (Milos Djermanovic) - [`926a286`](https://togithub.com/eslint/eslint/commit/926a28684282aeec37680bbc52a66973b8055f54) test: replace Karma with Webdriver.IO ([#​17126](https://togithub.com/eslint/eslint/issues/17126)) (Christian Bromann) - [`f591d2c`](https://togithub.com/eslint/eslint/commit/f591d2c88bf15af72e3a207b34fa872b4b90464b) chore: Upgrade config-array ([#​17512](https://togithub.com/eslint/eslint/issues/17512)) (Nicholas C. Zakas)
iambumblehead/esmock (esmock) ### [`v2.4.1`](https://togithub.com/iambumblehead/esmock/releases/tag/v2.4.1): detect null and undefined loader-returned sources [Compare Source](https://togithub.com/iambumblehead/esmock/compare/v2.4.0...v2.4.1) [Detects null AND undefined](https://togithub.com/iambumblehead/esmock/pull/238) loader-returned source definitions ```diff diff --git a/src/esmockLoader.js b/src/esmockLoader.js index 69dedd4..e835ec3 100644 --- a/src/esmockLoader.js +++ b/src/esmockLoader.js @​@​ -145,7 +145,8 @​@​ const load = async (url, context, nextLoad) => { if (!/^(commonjs|module)$/.test(nextLoadRes.format)) return nextLoad(url, context) - const source = nextLoadRes.source === null + // nextLoadRes.source sometimes 'undefined' and other times 'null' :( + const source = nextLoadRes.source === null || nextLoadRes.source === undefined ? String(await fs.readFile(new URL(url))) : String(nextLoadRes.source) const hbang = (source.match(hashbangRe) || [])[0] || '' ``` ### [`v2.4.0`](https://togithub.com/iambumblehead/esmock/releases/tag/v2.4.0): node v20.6 solutions [Compare Source](https://togithub.com/iambumblehead/esmock/compare/v2.3.8...v2.4.0) node v20.6 caused some issues. The primary issue was that the newest `import.meta.resolve` defined by node has significantly and suddenly changed. The newer import.meta.resolve is less useful and no longer supports the parent param as in the call `import.meta.resolve(moduleId, parent)`, - [remove usage of import.meta.resolve,](https://togithub.com/iambumblehead/esmock/pull/237) - [only process 'module' and 'commonjs'](https://togithub.com/iambumblehead/esmock/pull/237) at the loader - [remove esmockDummy](https://togithub.com/iambumblehead/esmock/pull/233) - [resolve any other issues](https://togithub.com/iambumblehead/esmock/issues/234) affecting node-v20.6

Configuration

📅 Schedule: Branch creation - "after 2pm on Saturday" in timezone Europe/Zurich, 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.



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

github-actions[bot] commented 1 year ago

This PR will trigger no release when merged.

codecov[bot] commented 1 year ago

Codecov Report

Merging #520 (57d74f3) into main (90dcb7a) will not change coverage. The diff coverage is n/a.

@@            Coverage Diff            @@
##              main      #520   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            2         2           
  Lines          305       305           
  Branches         1         1           
=========================================
  Hits           305       305           

:mega: We’re building smart automated test selection to slash your CI/CD build times. Learn more

github-actions[bot] commented 1 year ago

:tada: This PR is included in version 10.0.10 :tada:

The release is available on:

Your semantic-release bot :package::rocket: