Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 813bcee

Browse files
chore(lambda): bump eslint-plugin-prettier from 5.0.1 to 5.1.2 in /lambdas (#3693)
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 5.0.1 to 5.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/eslint-plugin-prettier/releases">eslint-plugin-prettier's releases</a>.</em></p> <blockquote> <h2>v5.1.2</h2> <h2>5.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/623">#623</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/8210e44309b168c7c06185eae8249b2d0eb65815"><code>8210e44</code></a> Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>! - Add exports mapping to package.json, to allow <code>import eslintPluginRecommended from 'eslint-plugin-prettier/recommended'</code> to work as expected.</p> <p>Strictly speaking this is a breaking change as it removes the ability for people to import from &quot;eslint-plugin-prettier/eslint-plugin-prettier.js&quot; and &quot;eslint-plugin-prettier/recommended.js&quot; but the former was never recommended in the first place and the latter has only been available for a few days.</p> </li> <li> <p><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/621">#621</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/2b09e7fc64f38297c8ca39d087dba1f122ef999c"><code>2b09e7f</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support parsing <code>markdown</code> via <code>eslint-mdx</code> natively</p> <p>What means the following is unnecessary anymore when using with <code>eslint-mdx</code>/<code>eslint-plugin-mdx</code>!</p> <pre lang="json5"><code>[ { files: [&quot;**/*.md&quot;], rules: { &quot;prettier/prettier&quot;: [&quot;error&quot;, { parser: &quot;markdown&quot; }] }, }, { files: [&quot;**/*.mdx&quot;], rules: { &quot;prettier/prettier&quot;: [&quot;error&quot;, { parser: &quot;mdx&quot; }] }, }, ] </code></pre> </li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.1...v5.1.2">https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.1...v5.1.2</a></p> <h2>v5.1.1</h2> <h2>5.1.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/619">#619</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/b5c0dc5715616a0f2a0da8b8c077434efc618a3e"><code>b5c0dc5</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - chore: skip formatting inline scripts in pug files</li> </ul> <h2>v.5.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/616">#616</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135"><code>3856413</code></a> Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>! - Add recommended config for the flat config format.</p> <p>If you are using flat config, import the recommended config from <code>eslint-plugin-prettier/recommended</code>. Like the legacy format recommended config, this automatically includes the contents of <code>eslint-config-prettier</code>.</p> <pre lang="js"><code>// eslint.config.js const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended'); <p>module.exports = [ // Any other config imports go at the top eslintPluginPrettierRecommended, ]; </code></pre></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md">eslint-plugin-prettier's changelog</a>.</em></p> <blockquote> <h2>5.1.2</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/623">#623</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/8210e44309b168c7c06185eae8249b2d0eb65815"><code>8210e44</code></a> Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>! - Add exports mapping to package.json, to allow <code>import eslintPluginRecommended from 'eslint-plugin-prettier/recommended'</code> to work as expected.</p> <p>Strictly speaking this is a breaking change as it removes the ability for people to import from &quot;eslint-plugin-prettier/eslint-plugin-prettier.js&quot; and &quot;eslint-plugin-prettier/recommended.js&quot; but the former was never recommended in the first place and the latter has only been available for a few days.</p> </li> <li> <p><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/621">#621</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/2b09e7fc64f38297c8ca39d087dba1f122ef999c"><code>2b09e7f</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - feat: support parsing <code>markdown</code> via <code>eslint-mdx</code> natively</p> <p>What means the following is unnecessary anymore when using with <code>eslint-mdx</code>/<code>eslint-plugin-mdx</code>!</p> <pre lang="json5"><code>[ { files: ['**/*.md'], rules: { 'prettier/prettier': ['error', { parser: 'markdown' }] }, }, { files: ['**/*.mdx'], rules: { 'prettier/prettier': ['error', { parser: 'mdx' }] }, }, ] </code></pre> </li> </ul> <h2>5.1.1</h2> <h3>Patch Changes</h3> <ul> <li><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/619">#619</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/b5c0dc5715616a0f2a0da8b8c077434efc618a3e"><code>b5c0dc5</code></a> Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>! - chore: skip formatting inline scripts in pug files</li> </ul> <h2>5.1.0</h2> <h3>Minor Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/616">#616</a> <a href="https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135"><code>3856413</code></a> Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>! - Add recommended config for the flat config format.</p> <p>If you are using flat config, import the recommended config from <code>eslint-plugin-prettier/recommended</code>. Like the legacy format recommended config, this automatically includes the contents of <code>eslint-config-prettier</code>.</p> <pre lang="js"><code>// eslint.config.js const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended'); <p>module.exports = [ // Any other config imports go at the top eslintPluginPrettierRecommended, ]; </code></pre></p> </li> </ul> <h3>Patch Changes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/d102278c850227d3370c5169caeed5ab9cd8b2b8"><code>d102278</code></a> chore: release eslint-plugin-prettier (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/624">#624</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/b02fe90fdff8e7488297c0c4660d2bbe4ceeacfd"><code>b02fe90</code></a> chore: bump all upgradable (dev)Dependencies (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/625">#625</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/2b09e7fc64f38297c8ca39d087dba1f122ef999c"><code>2b09e7f</code></a> feat: support parsing <code>markdown</code> via <code>eslint-mdx</code> natively (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/621">#621</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/5f762df82d9e9ea56b5e3a09a10b448c052298a7"><code>5f762df</code></a> docs: change open collective funding info (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/626">#626</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/8210e44309b168c7c06185eae8249b2d0eb65815"><code>8210e44</code></a> fix: add package.json exports field (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/623">#623</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/5a517330fb25d7958b7ef382a788fe65ccffa58e"><code>5a51733</code></a> chore: release eslint-plugin-prettier (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/620">#620</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/b5c0dc5715616a0f2a0da8b8c077434efc618a3e"><code>b5c0dc5</code></a> chore: skip formatting inline scripts in pug files (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/619">#619</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/183f45c050188809a19c5088832b06ccc5b2e5b4"><code>183f45c</code></a> chore: release eslint-plugin-prettier (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/604">#604</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135"><code>3856413</code></a> Add flat recommended config (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/616">#616</a>)</li> <li><a href="https://github.com/prettier/eslint-plugin-prettier/commit/78c8b80f514719ad59a6e20fe2aa5318108f8c6d"><code>78c8b80</code></a> Use flat config for the project's eslint configuration (<a href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/615">#615</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/eslint-plugin-prettier/compare/v5.0.1...v5.1.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-prettier&package-manager=npm_and_yarn&previous-version=5.0.1&new-version=5.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4a9f868 commit 813bcee

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

Diff for: lambdas/functions/ami-housekeeper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"aws-sdk-client-mock": "^3.0.0",
2727
"aws-sdk-client-mock-jest": "^3.0.0",
2828
"eslint": "^8.56.0",
29-
"eslint-plugin-prettier": "5.0.1",
29+
"eslint-plugin-prettier": "5.1.2",
3030
"jest": "^29.5",
3131
"jest-mock": "^29.5.0",
3232
"jest-mock-extended": "^3.0.4",

Diff for: lambdas/functions/control-plane/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"aws-sdk-client-mock": "^3.0.0",
2727
"aws-sdk-client-mock-jest": "^3.0.0",
2828
"eslint": "^8.56.0",
29-
"eslint-plugin-prettier": "5.0.1",
29+
"eslint-plugin-prettier": "5.1.2",
3030
"jest": "^29.5",
3131
"jest-mock": "^29.5.0",
3232
"jest-mock-extended": "^3.0.4",

Diff for: lambdas/functions/gh-agent-syncer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"aws-sdk-client-mock": "^3.0.0",
2929
"aws-sdk-client-mock-jest": "^3.0.0",
3030
"eslint": "^8.56.0",
31-
"eslint-plugin-prettier": "5.0.1",
31+
"eslint-plugin-prettier": "5.1.2",
3232
"jest": "^29.5",
3333
"jest-mock": "^29.5.0",
3434
"prettier": "3.1.1",

Diff for: lambdas/functions/webhook/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@vercel/ncc": "0.38.1",
2828
"body-parser": "^1.20.2",
2929
"eslint": "^8.56.0",
30-
"eslint-plugin-prettier": "5.0.1",
30+
"eslint-plugin-prettier": "5.1.2",
3131
"express": "^4.18.2",
3232
"jest": "^29.5",
3333
"jest-mock": "^29.5.0",

Diff for: lambdas/libs/aws-powertools-util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@vercel/ncc": "0.38.1",
2626
"body-parser": "^1.20.2",
2727
"eslint": "^8.56.0",
28-
"eslint-plugin-prettier": "5.0.1",
28+
"eslint-plugin-prettier": "5.1.2",
2929
"express": "^4.18.2",
3030
"jest": "^29.5",
3131
"jest-mock": "^29.5.0",

Diff for: lambdas/libs/aws-ssm-util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@vercel/ncc": "0.38.1",
2626
"body-parser": "^1.20.2",
2727
"eslint": "^8.56.0",
28-
"eslint-plugin-prettier": "5.0.1",
28+
"eslint-plugin-prettier": "5.1.2",
2929
"express": "^4.18.2",
3030
"jest": "^29.5",
3131
"jest-mock": "^29.5.0",

Diff for: lambdas/yarn.lock

+13-13
Original file line numberDiff line numberDiff line change
@@ -2036,7 +2036,7 @@
20362036
resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
20372037
integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
20382038

2039-
"@pkgr/utils@^2.3.1":
2039+
"@pkgr/utils@^2.4.2":
20402040
version "2.4.2"
20412041
resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc"
20422042
integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==
@@ -4410,13 +4410,13 @@ escape-string-regexp@^4.0.0:
44104410
resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
44114411
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
44124412

4413-
eslint-plugin-prettier@5.0.1:
4414-
version "5.0.1"
4415-
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz#a3b399f04378f79f066379f544e42d6b73f11515"
4416-
integrity sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==
4413+
eslint-plugin-prettier@5.1.2:
4414+
version "5.1.2"
4415+
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.2.tgz#584c94d4bf31329b2d4cbeb10fd600d17d6de742"
4416+
integrity sha512-dhlpWc9vOwohcWmClFcA+HjlvUpuyynYs0Rf+L/P6/0iQE6vlHW9l5bkfzN62/Stm9fbq8ku46qzde76T1xlSg==
44174417
dependencies:
44184418
prettier-linter-helpers "^1.0.0"
4419-
synckit "^0.8.5"
4419+
synckit "^0.8.6"
44204420

44214421
eslint-scope@^7.2.2:
44224422
version "7.2.2"
@@ -8315,13 +8315,13 @@ supports-preserve-symlinks-flag@^1.0.0:
83158315
resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
83168316
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
83178317

8318-
synckit@^0.8.5:
8319-
version "0.8.5"
8320-
resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3"
8321-
integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==
8318+
synckit@^0.8.6:
8319+
version "0.8.6"
8320+
resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.6.tgz#b69b7fbce3917c2673cbdc0d87fb324db4a5b409"
8321+
integrity sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==
83228322
dependencies:
8323-
"@pkgr/utils" "^2.3.1"
8324-
tslib "^2.5.0"
8323+
"@pkgr/utils" "^2.4.2"
8324+
tslib "^2.6.2"
83258325

83268326
tar-stream@~2.2.0:
83278327
version "2.2.0"
@@ -8522,7 +8522,7 @@ tslib@^1.11.1:
85228522
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
85238523
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
85248524

8525-
tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.0:
8525+
tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.6.0, tslib@^2.6.2:
85268526
version "2.6.2"
85278527
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
85288528
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==

0 commit comments

Comments
 (0)