CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
CHANGELOG.md254 linesDownload Raw Back to eslint-module-utils
1# Change Log2All notable changes to this module will be documented in this file.3This project adheres to [Semantic Versioning](https://semver.org/).4This change log adheres to standards from [Keep a CHANGELOG](https://keepachangelog.com).5 6## Unreleased7 8## v2.12.1 - 2025-06-199 10### Fixed11- `unambiguous`: detect modules exported from minified code ([#3124], thanks [@michaelfaith])12 13### Changed14- [refactor] `parse`: avoid using a regex here (thanks [@ljharb])15 16## v2.12.0 - 2024-09-2617 18### Added19- `hash`: add support for hashing functions ([#3072], thanks [@michaelfaith])20 21## v2.11.1 - 2024-09-2322 23### Fixed24- `parse`: remove unneeded extra backticks ([#3057], thanks [@G-Rath])25- `parse`: espree parser isn't working with flat config ([#3061], thanks [@michaelfaith])26- `parse`: add `ecmaVersion` and `sourceType` to `parserOptions` ([#3061], thanks [@michaelfaith])27 28## v2.11.0 - 2024-09-0529 30### New31- `declaredScope`: take a `node` for modern eslint versions (thanks [@michaelfaith])32 33## v2.10.0 - 2024-09-0534 35### New36- add context compatibility helpers ([#3049], thanks [@michaelfaith])37 38## v2.9.0 - 2024-09-0239 40### New41- add support for Flat Config ([#3018], thanks [@michaelfaith])42 43## v2.8.2 - 2024-08-2544 45### Fixed46- `parse`: also delete `parserOptions.projectService` ([#3039], thanks [@Mysak0CZ])47 48### Changed49- [types] use shared config (thanks [@ljharb])50- [meta] add `exports`, `main`51- [meta] add `repository.directory` field52- [refactor] avoid hoisting53 54## v2.8.1 - 2024-02-2655 56### Fixed57- `parse`: also delete `parserOptions.EXPERIMENTAL_useProjectService` ([#2963], thanks [@JoshuaKGoldberg])58 59### Changed60- add types (thanks [@ljharb])61 62## v2.8.0 - 2023-04-1463 64### New65- `parse`: support flat config ([#2714], thanks [@DMartens])66 67### Fixed68- Improve performance of `fullResolve` for large projects ([#2755], thanks [@leipert])69 70## v2.7.4 - 2022-08-1171 72### Fixed73- [Fix] Ignore hashbang and BOM while parsing ([#2431], thanks [@silverwind])74 75### Changed76- [patch] mark eslint as an optional peer dep ([#2523], thanks [@wmertens])77 78## v2.7.3 - 2022-01-2679 80### Fixed81- `parse`: restore compatibility by making the return value `ast` again ([#2350], thanks [@ljharb])82 83## v2.7.2 - 2022-01-0184 85### Fixed86- [patch] Fix `@babel/eslint-parser` 8 compatibility ([#2343], thanks [@nicolo-ribaudo])87 88### Changed89- [Refactor] inline `pkgDir` implementation; remove `pkg-dir`90 91## v2.7.1 - 2021-10-1392 93### Fixed94- fixed SyntaxError in node <= 6: Unexpected token ) in parse.js ([#2261], thanks [@VitusFW])95 96## v2.7.0 - 2021-10-1197 98### Added99- `fileExistsWithCaseSync`: add `strict` argument ([#1262], thanks [@sergei-startsev])100- add `visit`, to support dynamic imports ([#1660], [#2212], thanks [@maxkomarychev], [@aladdin-add], [@Hypnosphi])101- create internal replacement for `pkg-up` and `read-pkg-up` ([#2047], [@mgwalker])102 103## v2.6.2 - 2021-08-08104 105### Fixed106- Use `context.getPhysicalFilename()` when available (ESLint 7.28+) ([#2160], thanks [@pmcelhaney])107 108## v2.6.1 - 2021-05-13109 110### Fixed111- `no-unresolved`: check `import()` ([#2026], thanks [@aladdin-add])112- Add fix for Windows Subsystem for Linux ([#1786], thanks [@manuth])113 114### Changed115- [deps] update `debug`116- [Refactor] use `Array.isArray` instead of `instanceof Array`117 118## v2.6.0 - 2020-03-28119 120### Added121- Print more helpful info if parsing fails ([#1671], thanks [@kaiyoma])122 123## v2.5.2 - 2020-01-12124 125### Fixed126- Makes the loader resolution more tolerant ([#1606], thanks [@arcanis])127- Use `createRequire` instead of `createRequireFromPath` if available ([#1602], thanks [@iamnapo])128 129## v2.5.1 - 2020-01-11130 131### Fixed132- Uses createRequireFromPath to resolve loaders ([#1591], thanks [@arcanis])133- report the error stack on a resolution error ([#599], thanks [@sompylasar])134 135## v2.5.0 - 2019-12-07136 137### Added138- support `parseForESLint` from custom parser ([#1435], thanks [@JounQin])139 140### Changed141 - Avoid superfluous calls and code ([#1551], thanks [@brettz9])142 143## v2.4.1 - 2019-07-19144 145### Fixed146 - Improve parse perf when using `@typescript-eslint/parser` ([#1409], thanks [@bradzacher])147 - Improve support for TypeScript declare structures ([#1356], thanks [@christophercurrie])148 149## v2.4.0 - 2019-04-13150 151### Added152 - no-useless-path-segments: Add noUselessIndex option ([#1290], thanks [@timkraut])153 154### Fixed155 - Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-import`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01])156 157 158## v2.3.0 - 2019-01-22159### Fixed160- use `process.hrtime()` for cache dates ([#1160], thanks [@hulkish])161 162## v2.2.0 - 2018-03-29163### Changed164- `parse`: attach node locations by default.165- `moduleVisitor`: visitor now gets the full `import` statement node as a second166  argument, so rules may report against the full statement / `require` call instead167  of only the string literal node.168 169## v2.1.1 - 2017-06-22170 171Re-releasing v2.1.0 after vetting (again) and unable to reproduce issue.172 173 174## v2.1.0 - 2017-06-02 [YANKED]175 176Yanked due to critical issue with cache key resulting from #839.177 178### Added179- `parse` now additionally passes `filePath` to `parser` in `parserOptions` like `eslint` core does180 181## v2.0.0 - 2016-11-07182### Changed183- `unambiguous` no longer exposes fast test regex184 185### Fixed186- `unambiguous.test()` regex is now properly in multiline mode187 188[#3124]: https://github.com/import-js/eslint-plugin-import/pull/3124189[#3072]: https://github.com/import-js/eslint-plugin-import/pull/3072190[#3061]: https://github.com/import-js/eslint-plugin-import/pull/3061191[#3057]: https://github.com/import-js/eslint-plugin-import/pull/3057192[#3049]: https://github.com/import-js/eslint-plugin-import/pull/3049193[#3039]: https://github.com/import-js/eslint-plugin-import/pull/3039194[#3018]: https://github.com/import-js/eslint-plugin-import/pull/3018195[#2963]: https://github.com/import-js/eslint-plugin-import/pull/2963196[#2755]: https://github.com/import-js/eslint-plugin-import/pull/2755197[#2714]: https://github.com/import-js/eslint-plugin-import/pull/2714198[#2523]: https://github.com/import-js/eslint-plugin-import/pull/2523199[#2431]: https://github.com/import-js/eslint-plugin-import/pull/2431200[#2350]: https://github.com/import-js/eslint-plugin-import/issues/2350201[#2343]: https://github.com/import-js/eslint-plugin-import/pull/2343202[#2261]: https://github.com/import-js/eslint-plugin-import/pull/2261203[#2212]: https://github.com/import-js/eslint-plugin-import/pull/2212204[#2160]: https://github.com/import-js/eslint-plugin-import/pull/2160205[#2047]: https://github.com/import-js/eslint-plugin-import/pull/2047206[#2026]: https://github.com/import-js/eslint-plugin-import/pull/2026207[#1786]: https://github.com/import-js/eslint-plugin-import/pull/1786208[#1671]: https://github.com/import-js/eslint-plugin-import/pull/1671209[#1660]: https://github.com/import-js/eslint-plugin-import/pull/1660210[#1606]: https://github.com/import-js/eslint-plugin-import/pull/1606211[#1602]: https://github.com/import-js/eslint-plugin-import/pull/1602212[#1591]: https://github.com/import-js/eslint-plugin-import/pull/1591213[#1551]: https://github.com/import-js/eslint-plugin-import/pull/1551214[#1435]: https://github.com/import-js/eslint-plugin-import/pull/1435215[#1409]: https://github.com/import-js/eslint-plugin-import/pull/1409216[#1356]: https://github.com/import-js/eslint-plugin-import/pull/1356217[#1290]: https://github.com/import-js/eslint-plugin-import/pull/1290218[#1262]: https://github.com/import-js/eslint-plugin-import/pull/1262219[#1218]: https://github.com/import-js/eslint-plugin-import/pull/1218220[#1166]: https://github.com/import-js/eslint-plugin-import/issues/1166221[#1160]: https://github.com/import-js/eslint-plugin-import/pull/1160222[#1035]: https://github.com/import-js/eslint-plugin-import/issues/1035223[#599]: https://github.com/import-js/eslint-plugin-import/pull/599224 225[@aladdin-add]: https://github.com/aladdin-add226[@arcanis]: https://github.com/arcanis227[@bradzacher]: https://github.com/bradzacher228[@brettz9]: https://github.com/brettz9229[@christophercurrie]: https://github.com/christophercurrie230[@DMartens]: https://github.com/DMartens231[@G-Rath]: https://github.com/G-Rath232[@hulkish]: https://github.com/hulkish233[@Hypnosphi]: https://github.com/Hypnosphi234[@iamnapo]: https://github.com/iamnapo235[@JoshuaKGoldberg]: https://github.com/JoshuaKGoldberg236[@JounQin]: https://github.com/JounQin237[@kaiyoma]: https://github.com/kaiyoma238[@leipert]: https://github.com/leipert239[@ljharb]: https://github.com/ljharb240[@manuth]: https://github.com/manuth241[@maxkomarychev]: https://github.com/maxkomarychev242[@mgwalker]: https://github.com/mgwalker243[@michaelfaith]: https://github.com/michaelfaith244[@Mysak0CZ]: https://github.com/Mysak0CZ245[@nicolo-ribaudo]: https://github.com/nicolo-ribaudo246[@pmcelhaney]: https://github.com/pmcelhaney247[@sergei-startsev]: https://github.com/sergei-startsev248[@silverwind]: https://github.com/silverwind249[@sompylasar]: https://github.com/sompylasar250[@timkraut]: https://github.com/timkraut251[@vikr01]: https://github.com/vikr01252[@VitusFW]: https://github.com/VitusFW253[@wmertens]: https://github.com/wmertens254 
basant307/AI_Governance_Project · CoolFace