withastro/language-tools (@astrojs/check)
### [`v0.9.2`](https://togithub.com/withastro/language-tools/blob/HEAD/packages/astro-check/CHANGELOG.md#092)
[Compare Source](https://togithub.com/withastro/language-tools/compare/@astrojs/check@0.9.1...@astrojs/check@0.9.2)
##### Patch Changes
- [`e8e18a8`](https://togithub.com/withastro/language-tools/commit/e8e18a8): Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file
- Updated dependencies \[[`e8e18a8`](https://togithub.com/withastro/language-tools/commit/e8e18a8)]
- [@astrojs/language-server](https://togithub.com/astrojs/language-server)[@2](https://togithub.com/2).13.2
conventional-changelog/commitlint (@commitlint/cli)
### [`v19.4.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/cli/CHANGELOG.md#1940-2024-08-07)
[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.3.0...v19.4.0)
##### Features
- support command line options from a file ([#4109](https://togithub.com/conventional-changelog/commitlint/issues/4109)) ([a20e890](https://togithub.com/conventional-changelog/commitlint/commit/a20e890f6b6c8bacdc511d40cb41f29415bdd044))
- support linting from the last tag ([#4110](https://togithub.com/conventional-changelog/commitlint/issues/4110)) ([4b204ec](https://togithub.com/conventional-changelog/commitlint/commit/4b204ecfb43dd6a00e24b51111aadbd78f9d58e1))
eslint/eslint (@eslint/js)
### [`v9.9.0`](https://togithub.com/eslint/eslint/compare/v9.8.0...59dba1b3404391f5d968be578f0205569d5d41b2)
[Compare Source](https://togithub.com/eslint/eslint/compare/v9.8.0...v9.9.0)
withastro/astro (astro)
### [`v4.13.3`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4133)
[Compare Source](https://togithub.com/withastro/astro/compare/astro@4.13.2...astro@4.13.3)
##### Patch Changes
- [#11653](https://togithub.com/withastro/astro/pull/11653) [`32be549`](https://togithub.com/withastro/astro/commit/32be5494f6d33dbe32208704405162c95a64f0bc) Thanks [@florian-lefebvre](https://togithub.com/florian-lefebvre)! - Updates `astro:env` docs to reflect current developments and usage guidance
- [#11658](https://togithub.com/withastro/astro/pull/11658) [`13b912a`](https://togithub.com/withastro/astro/commit/13b912a8702afb96e2d0bc20dcc1b4135ae58147) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Fixes `orThrow()` type when calling an Action without an `input` validator.
- [#11603](https://togithub.com/withastro/astro/pull/11603) [`f31d466`](https://togithub.com/withastro/astro/commit/f31d4665c1cbb0918b9e00ba1431fb6f264025f7) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Improves user experience when render an Action result from a form POST request:
- Removes "Confirm post resubmission?" dialog when refreshing a result.
- Removes the `?_astroAction=NAME` flag when a result is rendered.
Also improves the DX of directing to a new route on success. Actions will now redirect to the route specified in your `action` string on success, and redirect back to the previous page on error. This follows the routing convention of established backend frameworks like Laravel.
For example, say you want to redirect to a `/success` route when `actions.signup` succeeds. You can add `/success` to your `action` string like so:
```astro
```
- On success, Astro will redirect to `/success`.
- On error, Astro will redirect back to the current page.
You can retrieve the action result from either page using the `Astro.getActionResult()` function.
##### Note on security
This uses a temporary cookie to forward the action result to the next page. The cookie will be deleted when that page is rendered.
⚠ **The action result is not encrypted.** In general, we recommend returning minimal data from an action handler to a) avoid leaking sensitive information, and b) avoid unexpected render issues once the temporary cookie is deleted. For example, a `login` function may return a user's session id to retrieve from your Astro frontmatter, rather than the entire user object.
### [`v4.13.2`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4132)
[Compare Source](https://togithub.com/withastro/astro/compare/astro@4.13.1...astro@4.13.2)
##### Patch Changes
- [#11648](https://togithub.com/withastro/astro/pull/11648) [`589d351`](https://togithub.com/withastro/astro/commit/589d35158da1a2136387d0ad76609f5c8535c03a) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Fixes unexpected error when refreshing a POST request from a form using Actions.
- [#11600](https://togithub.com/withastro/astro/pull/11600) [`09ec2ca`](https://togithub.com/withastro/astro/commit/09ec2cadce01a9a1f9c54ac433f137348907aa56) Thanks [@ArmandPhilippot](https://togithub.com/ArmandPhilippot)! - Deprecates `getEntryBySlug` and `getDataEntryById` functions exported by `astro:content` in favor of `getEntry`.
- [#11593](https://togithub.com/withastro/astro/pull/11593) [`81d7150`](https://togithub.com/withastro/astro/commit/81d7150e02472430eab555dfc4f053738bf99bb6) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Adds support for `Date()`, `Map()`, and `Set()` from action results. See [devalue](https://togithub.com/Rich-Harris/devalue) for a complete list of supported values.
Also fixes serialization exceptions when deploying Actions with edge middleware on Netlify and Vercel.
- [#11617](https://togithub.com/withastro/astro/pull/11617) [`196092a`](https://togithub.com/withastro/astro/commit/196092ae69eb1249206846ddfc162049b03f42b4) Thanks [@abubakriz](https://togithub.com/abubakriz)! - Fix toolbar audit incorrectly flagging images as above the fold.
- [#11634](https://togithub.com/withastro/astro/pull/11634) [`2716f52`](https://togithub.com/withastro/astro/commit/2716f52aae7194439ebb2336849ddd9e8226658a) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Fixes internal server error when calling an Astro Action without arguments on Vercel.
- [#11628](https://togithub.com/withastro/astro/pull/11628) [`9aaf58c`](https://togithub.com/withastro/astro/commit/9aaf58c1339b54f2c1394e718a0f6f609f0b6342) Thanks [@madbook](https://togithub.com/madbook)! - Ensures consistent CSS chunk hashes across different environments
eslint/eslint (eslint)
### [`v9.9.0`](https://togithub.com/eslint/eslint/releases/tag/v9.9.0)
[Compare Source](https://togithub.com/eslint/eslint/compare/v9.8.0...v9.9.0)
#### Features
- [`41d0206`](https://togithub.com/eslint/eslint/commit/41d02066935b987d2e3b13a08680cc74d7067986) feat: Add support for TS config files ([#18134](https://togithub.com/eslint/eslint/issues/18134)) (Arya Emami)
- [`3a4eaf9`](https://togithub.com/eslint/eslint/commit/3a4eaf921543b1cd5d1df4ea9dec02fab396af2a) feat: add suggestion to `require-await` to remove `async` keyword ([#18716](https://togithub.com/eslint/eslint/issues/18716)) (Dave)
#### Documentation
- [`9fe068c`](https://togithub.com/eslint/eslint/commit/9fe068c60db466277a785434496a8f90a9090bed) docs: how to author plugins with configs that extend other configs ([#18753](https://togithub.com/eslint/eslint/issues/18753)) (Alec Gibson)
- [`48117b2`](https://togithub.com/eslint/eslint/commit/48117b27e98639ffe7e78a230bfad9a93039fb7f) docs: add version support page in the side navbar ([#18738](https://togithub.com/eslint/eslint/issues/18738)) (Amaresh S M)
- [`fec2951`](https://togithub.com/eslint/eslint/commit/fec2951d58c704c57bea7e89ffde119e4dc621e3) docs: add version support page to the dropdown ([#18730](https://togithub.com/eslint/eslint/issues/18730)) (Amaresh S M)
- [`38a0661`](https://togithub.com/eslint/eslint/commit/38a0661872dd6f1db2f53501895c58e8cf4e8064) docs: Fix typo ([#18735](https://togithub.com/eslint/eslint/issues/18735)) (Zaina Al Habash)
- [`3c32a9e`](https://togithub.com/eslint/eslint/commit/3c32a9e23c270d83bd8b2649e78aabb76992928e) docs: Update yarn command for creating ESLint config ([#18739](https://togithub.com/eslint/eslint/issues/18739)) (Temitope Ogunleye)
- [`f9ac978`](https://togithub.com/eslint/eslint/commit/f9ac978de629c9a702febcf478a743c5ab11fcf6) docs: Update README (GitHub Actions Bot)
#### Chores
- [`461b2c3`](https://togithub.com/eslint/eslint/commit/461b2c35786dc5fd5e146f370bdcafd32938386f) chore: upgrade to `@eslint/js@9.9.0` ([#18765](https://togithub.com/eslint/eslint/issues/18765)) (Francesco Trotta)
- [`59dba1b`](https://togithub.com/eslint/eslint/commit/59dba1b3404391f5d968be578f0205569d5d41b2) chore: package.json update for [@eslint/js](https://togithub.com/eslint/js) release (Jenkins)
- [`fea8563`](https://togithub.com/eslint/eslint/commit/fea8563d3372a663aa7a1a676290c34cfb8452ba) chore: update dependency [@eslint/core](https://togithub.com/eslint/core) to ^0.3.0 ([#18724](https://togithub.com/eslint/eslint/issues/18724)) (renovate\[bot])
- [`aac191e`](https://togithub.com/eslint/eslint/commit/aac191e6701495666c264f71fc440207ea19251f) chore: update dependency [@eslint/json](https://togithub.com/eslint/json) to ^0.3.0 ([#18760](https://togithub.com/eslint/eslint/issues/18760)) (renovate\[bot])
- [`b97fa05`](https://togithub.com/eslint/eslint/commit/b97fa051375d1a4592faf251c783691d0b0b9ab9) chore: update wdio dependencies for more stable tests ([#18759](https://togithub.com/eslint/eslint/issues/18759)) (Christian Bromann)
remeda/remeda (remeda)
### [`v2.10.1`](https://togithub.com/remeda/remeda/releases/tag/v2.10.1)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.10.0...v2.10.1)
##### Bug Fixes
- **drop:** an even more accurate return type for literal Ns ([#816](https://togithub.com/remeda/remeda/issues/816)) ([4d2100c](https://togithub.com/remeda/remeda/commit/4d2100c2c2e25053648bb0b6d8e645577bdd0899)), closes [#795](https://togithub.com/remeda/remeda/issues/795)
### [`v2.10.0`](https://togithub.com/remeda/remeda/releases/tag/v2.10.0)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.9.1...v2.10.0)
##### Features
- **drop:** refined return type for literal Ns ([#795](https://togithub.com/remeda/remeda/issues/795)) ([a82e107](https://togithub.com/remeda/remeda/commit/a82e10780e37a45d3fbee80fa9db05a4bd08d81b)), closes [#794](https://togithub.com/remeda/remeda/issues/794)
### [`v2.9.1`](https://togithub.com/remeda/remeda/releases/tag/v2.9.1)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.9.0...v2.9.1)
##### Bug Fixes
- **takeXXX,dropXXX:** Support unions of arrays/tuples ([#789](https://togithub.com/remeda/remeda/issues/789)) ([9f1f4c1](https://togithub.com/remeda/remeda/commit/9f1f4c1c1aff1a1958e4e36e003c95a8e717caf5))
### [`v2.9.0`](https://togithub.com/remeda/remeda/releases/tag/v2.9.0)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.8.0...v2.9.0)
##### Features
- Add toUpperCase, toLowerCase, capitalize, uncapitalize, toCamelCase, startsWith, endsWith ([#790](https://togithub.com/remeda/remeda/issues/790)) ([57a6825](https://togithub.com/remeda/remeda/commit/57a68256f3920bdee4e351dd5195adae3319c790)), closes [#509](https://togithub.com/remeda/remeda/issues/509)
### [`v2.8.0`](https://togithub.com/remeda/remeda/releases/tag/v2.8.0)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.7.2...v2.8.0)
##### Features
- **unique, uniqueWith, uniqueBy:** Use input shape to improve return type. ([#813](https://togithub.com/remeda/remeda/issues/813)) ([880255c](https://togithub.com/remeda/remeda/commit/880255c6c0da36867d7f953059ddbed43324b1dc))
### [`v2.7.2`](https://togithub.com/remeda/remeda/releases/tag/v2.7.2)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.7.1...v2.7.2)
##### Bug Fixes
- **build:** remove test files from package ([#807](https://togithub.com/remeda/remeda/issues/807)) ([a858984](https://togithub.com/remeda/remeda/commit/a8589845849d55f1ae53d47deffbc86399c6a6b5)), closes [#774](https://togithub.com/remeda/remeda/issues/774)
### [`v2.7.1`](https://togithub.com/remeda/remeda/releases/tag/v2.7.1)
[Compare Source](https://togithub.com/remeda/remeda/compare/v2.7.0...v2.7.1)
##### Bug Fixes
- **dropLast, takeLast:** handle overflows ([#812](https://togithub.com/remeda/remeda/issues/812)) ([90a6674](https://togithub.com/remeda/remeda/commit/90a667441a765e09798b0461049339419b5e4cbd)), closes [#796](https://togithub.com/remeda/remeda/issues/796)
typescript-eslint/typescript-eslint (typescript-eslint)
### [`v8.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#801-2024-08-05)
[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v8.0.0...v8.0.1)
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.
Configuration
📅 Schedule: Branch creation - "after 3am on Sunday" (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 contains the following updates:
0.9.1
->0.9.2
19.3.0
->19.4.0
9.8.0
->9.9.0
22.1.0
->22.2.0
4.13.1
->4.13.3
9.8.0
->9.9.0
2.7.0
->2.10.1
8.0.0
->8.0.1
Release Notes
withastro/language-tools (@astrojs/check)
### [`v0.9.2`](https://togithub.com/withastro/language-tools/blob/HEAD/packages/astro-check/CHANGELOG.md#092) [Compare Source](https://togithub.com/withastro/language-tools/compare/@astrojs/check@0.9.1...@astrojs/check@0.9.2) ##### Patch Changes - [`e8e18a8`](https://togithub.com/withastro/language-tools/commit/e8e18a8): Fixes an issue where errors inside script and style tags could be offset by a few characters when multi bytes characters were present in the file - Updated dependencies \[[`e8e18a8`](https://togithub.com/withastro/language-tools/commit/e8e18a8)] - [@astrojs/language-server](https://togithub.com/astrojs/language-server)[@2](https://togithub.com/2).13.2conventional-changelog/commitlint (@commitlint/cli)
### [`v19.4.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@commitlint/cli/CHANGELOG.md#1940-2024-08-07) [Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v19.3.0...v19.4.0) ##### Features - support command line options from a file ([#4109](https://togithub.com/conventional-changelog/commitlint/issues/4109)) ([a20e890](https://togithub.com/conventional-changelog/commitlint/commit/a20e890f6b6c8bacdc511d40cb41f29415bdd044)) - support linting from the last tag ([#4110](https://togithub.com/conventional-changelog/commitlint/issues/4110)) ([4b204ec](https://togithub.com/conventional-changelog/commitlint/commit/4b204ecfb43dd6a00e24b51111aadbd78f9d58e1))eslint/eslint (@eslint/js)
### [`v9.9.0`](https://togithub.com/eslint/eslint/compare/v9.8.0...59dba1b3404391f5d968be578f0205569d5d41b2) [Compare Source](https://togithub.com/eslint/eslint/compare/v9.8.0...v9.9.0)withastro/astro (astro)
### [`v4.13.3`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4133) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.13.2...astro@4.13.3) ##### Patch Changes - [#11653](https://togithub.com/withastro/astro/pull/11653) [`32be549`](https://togithub.com/withastro/astro/commit/32be5494f6d33dbe32208704405162c95a64f0bc) Thanks [@florian-lefebvre](https://togithub.com/florian-lefebvre)! - Updates `astro:env` docs to reflect current developments and usage guidance - [#11658](https://togithub.com/withastro/astro/pull/11658) [`13b912a`](https://togithub.com/withastro/astro/commit/13b912a8702afb96e2d0bc20dcc1b4135ae58147) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Fixes `orThrow()` type when calling an Action without an `input` validator. - [#11603](https://togithub.com/withastro/astro/pull/11603) [`f31d466`](https://togithub.com/withastro/astro/commit/f31d4665c1cbb0918b9e00ba1431fb6f264025f7) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Improves user experience when render an Action result from a form POST request: - Removes "Confirm post resubmission?" dialog when refreshing a result. - Removes the `?_astroAction=NAME` flag when a result is rendered. Also improves the DX of directing to a new route on success. Actions will now redirect to the route specified in your `action` string on success, and redirect back to the previous page on error. This follows the routing convention of established backend frameworks like Laravel. For example, say you want to redirect to a `/success` route when `actions.signup` succeeds. You can add `/success` to your `action` string like so: ```astro ``` - On success, Astro will redirect to `/success`. - On error, Astro will redirect back to the current page. You can retrieve the action result from either page using the `Astro.getActionResult()` function. ##### Note on security This uses a temporary cookie to forward the action result to the next page. The cookie will be deleted when that page is rendered. ⚠ **The action result is not encrypted.** In general, we recommend returning minimal data from an action handler to a) avoid leaking sensitive information, and b) avoid unexpected render issues once the temporary cookie is deleted. For example, a `login` function may return a user's session id to retrieve from your Astro frontmatter, rather than the entire user object. ### [`v4.13.2`](https://togithub.com/withastro/astro/blob/HEAD/packages/astro/CHANGELOG.md#4132) [Compare Source](https://togithub.com/withastro/astro/compare/astro@4.13.1...astro@4.13.2) ##### Patch Changes - [#11648](https://togithub.com/withastro/astro/pull/11648) [`589d351`](https://togithub.com/withastro/astro/commit/589d35158da1a2136387d0ad76609f5c8535c03a) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Fixes unexpected error when refreshing a POST request from a form using Actions. - [#11600](https://togithub.com/withastro/astro/pull/11600) [`09ec2ca`](https://togithub.com/withastro/astro/commit/09ec2cadce01a9a1f9c54ac433f137348907aa56) Thanks [@ArmandPhilippot](https://togithub.com/ArmandPhilippot)! - Deprecates `getEntryBySlug` and `getDataEntryById` functions exported by `astro:content` in favor of `getEntry`. - [#11593](https://togithub.com/withastro/astro/pull/11593) [`81d7150`](https://togithub.com/withastro/astro/commit/81d7150e02472430eab555dfc4f053738bf99bb6) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Adds support for `Date()`, `Map()`, and `Set()` from action results. See [devalue](https://togithub.com/Rich-Harris/devalue) for a complete list of supported values. Also fixes serialization exceptions when deploying Actions with edge middleware on Netlify and Vercel. - [#11617](https://togithub.com/withastro/astro/pull/11617) [`196092a`](https://togithub.com/withastro/astro/commit/196092ae69eb1249206846ddfc162049b03f42b4) Thanks [@abubakriz](https://togithub.com/abubakriz)! - Fix toolbar audit incorrectly flagging images as above the fold. - [#11634](https://togithub.com/withastro/astro/pull/11634) [`2716f52`](https://togithub.com/withastro/astro/commit/2716f52aae7194439ebb2336849ddd9e8226658a) Thanks [@bholmesdev](https://togithub.com/bholmesdev)! - Fixes internal server error when calling an Astro Action without arguments on Vercel. - [#11628](https://togithub.com/withastro/astro/pull/11628) [`9aaf58c`](https://togithub.com/withastro/astro/commit/9aaf58c1339b54f2c1394e718a0f6f609f0b6342) Thanks [@madbook](https://togithub.com/madbook)! - Ensures consistent CSS chunk hashes across different environmentseslint/eslint (eslint)
### [`v9.9.0`](https://togithub.com/eslint/eslint/releases/tag/v9.9.0) [Compare Source](https://togithub.com/eslint/eslint/compare/v9.8.0...v9.9.0) #### Features - [`41d0206`](https://togithub.com/eslint/eslint/commit/41d02066935b987d2e3b13a08680cc74d7067986) feat: Add support for TS config files ([#18134](https://togithub.com/eslint/eslint/issues/18134)) (Arya Emami) - [`3a4eaf9`](https://togithub.com/eslint/eslint/commit/3a4eaf921543b1cd5d1df4ea9dec02fab396af2a) feat: add suggestion to `require-await` to remove `async` keyword ([#18716](https://togithub.com/eslint/eslint/issues/18716)) (Dave) #### Documentation - [`9fe068c`](https://togithub.com/eslint/eslint/commit/9fe068c60db466277a785434496a8f90a9090bed) docs: how to author plugins with configs that extend other configs ([#18753](https://togithub.com/eslint/eslint/issues/18753)) (Alec Gibson) - [`48117b2`](https://togithub.com/eslint/eslint/commit/48117b27e98639ffe7e78a230bfad9a93039fb7f) docs: add version support page in the side navbar ([#18738](https://togithub.com/eslint/eslint/issues/18738)) (Amaresh S M) - [`fec2951`](https://togithub.com/eslint/eslint/commit/fec2951d58c704c57bea7e89ffde119e4dc621e3) docs: add version support page to the dropdown ([#18730](https://togithub.com/eslint/eslint/issues/18730)) (Amaresh S M) - [`38a0661`](https://togithub.com/eslint/eslint/commit/38a0661872dd6f1db2f53501895c58e8cf4e8064) docs: Fix typo ([#18735](https://togithub.com/eslint/eslint/issues/18735)) (Zaina Al Habash) - [`3c32a9e`](https://togithub.com/eslint/eslint/commit/3c32a9e23c270d83bd8b2649e78aabb76992928e) docs: Update yarn command for creating ESLint config ([#18739](https://togithub.com/eslint/eslint/issues/18739)) (Temitope Ogunleye) - [`f9ac978`](https://togithub.com/eslint/eslint/commit/f9ac978de629c9a702febcf478a743c5ab11fcf6) docs: Update README (GitHub Actions Bot) #### Chores - [`461b2c3`](https://togithub.com/eslint/eslint/commit/461b2c35786dc5fd5e146f370bdcafd32938386f) chore: upgrade to `@eslint/js@9.9.0` ([#18765](https://togithub.com/eslint/eslint/issues/18765)) (Francesco Trotta) - [`59dba1b`](https://togithub.com/eslint/eslint/commit/59dba1b3404391f5d968be578f0205569d5d41b2) chore: package.json update for [@eslint/js](https://togithub.com/eslint/js) release (Jenkins) - [`fea8563`](https://togithub.com/eslint/eslint/commit/fea8563d3372a663aa7a1a676290c34cfb8452ba) chore: update dependency [@eslint/core](https://togithub.com/eslint/core) to ^0.3.0 ([#18724](https://togithub.com/eslint/eslint/issues/18724)) (renovate\[bot]) - [`aac191e`](https://togithub.com/eslint/eslint/commit/aac191e6701495666c264f71fc440207ea19251f) chore: update dependency [@eslint/json](https://togithub.com/eslint/json) to ^0.3.0 ([#18760](https://togithub.com/eslint/eslint/issues/18760)) (renovate\[bot]) - [`b97fa05`](https://togithub.com/eslint/eslint/commit/b97fa051375d1a4592faf251c783691d0b0b9ab9) chore: update wdio dependencies for more stable tests ([#18759](https://togithub.com/eslint/eslint/issues/18759)) (Christian Bromann)remeda/remeda (remeda)
### [`v2.10.1`](https://togithub.com/remeda/remeda/releases/tag/v2.10.1) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.10.0...v2.10.1) ##### Bug Fixes - **drop:** an even more accurate return type for literal Ns ([#816](https://togithub.com/remeda/remeda/issues/816)) ([4d2100c](https://togithub.com/remeda/remeda/commit/4d2100c2c2e25053648bb0b6d8e645577bdd0899)), closes [#795](https://togithub.com/remeda/remeda/issues/795) ### [`v2.10.0`](https://togithub.com/remeda/remeda/releases/tag/v2.10.0) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.9.1...v2.10.0) ##### Features - **drop:** refined return type for literal Ns ([#795](https://togithub.com/remeda/remeda/issues/795)) ([a82e107](https://togithub.com/remeda/remeda/commit/a82e10780e37a45d3fbee80fa9db05a4bd08d81b)), closes [#794](https://togithub.com/remeda/remeda/issues/794) ### [`v2.9.1`](https://togithub.com/remeda/remeda/releases/tag/v2.9.1) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.9.0...v2.9.1) ##### Bug Fixes - **takeXXX,dropXXX:** Support unions of arrays/tuples ([#789](https://togithub.com/remeda/remeda/issues/789)) ([9f1f4c1](https://togithub.com/remeda/remeda/commit/9f1f4c1c1aff1a1958e4e36e003c95a8e717caf5)) ### [`v2.9.0`](https://togithub.com/remeda/remeda/releases/tag/v2.9.0) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.8.0...v2.9.0) ##### Features - Add toUpperCase, toLowerCase, capitalize, uncapitalize, toCamelCase, startsWith, endsWith ([#790](https://togithub.com/remeda/remeda/issues/790)) ([57a6825](https://togithub.com/remeda/remeda/commit/57a68256f3920bdee4e351dd5195adae3319c790)), closes [#509](https://togithub.com/remeda/remeda/issues/509) ### [`v2.8.0`](https://togithub.com/remeda/remeda/releases/tag/v2.8.0) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.7.2...v2.8.0) ##### Features - **unique, uniqueWith, uniqueBy:** Use input shape to improve return type. ([#813](https://togithub.com/remeda/remeda/issues/813)) ([880255c](https://togithub.com/remeda/remeda/commit/880255c6c0da36867d7f953059ddbed43324b1dc)) ### [`v2.7.2`](https://togithub.com/remeda/remeda/releases/tag/v2.7.2) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.7.1...v2.7.2) ##### Bug Fixes - **build:** remove test files from package ([#807](https://togithub.com/remeda/remeda/issues/807)) ([a858984](https://togithub.com/remeda/remeda/commit/a8589845849d55f1ae53d47deffbc86399c6a6b5)), closes [#774](https://togithub.com/remeda/remeda/issues/774) ### [`v2.7.1`](https://togithub.com/remeda/remeda/releases/tag/v2.7.1) [Compare Source](https://togithub.com/remeda/remeda/compare/v2.7.0...v2.7.1) ##### Bug Fixes - **dropLast, takeLast:** handle overflows ([#812](https://togithub.com/remeda/remeda/issues/812)) ([90a6674](https://togithub.com/remeda/remeda/commit/90a667441a765e09798b0461049339419b5e4cbd)), closes [#796](https://togithub.com/remeda/remeda/issues/796)typescript-eslint/typescript-eslint (typescript-eslint)
### [`v8.0.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/typescript-eslint/CHANGELOG.md#801-2024-08-05) [Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v8.0.0...v8.0.1) This was a version bump only for typescript-eslint to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.Configuration
📅 Schedule: Branch creation - "after 3am on Sunday" (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.
This PR was generated by Mend Renovate. View the repository job log.