All Versions
627
Latest Version
Avg Release Cycle
5 days
Latest Release
-

Changelog History
Page 4

  • v2.74.1 Changes

    2022-05-19

    ๐Ÿ› Bug Fixes

    • โช Revert #4498 until some issues are understood and resolved
  • v2.74.0 Changes

    2022-05-19

    ๐Ÿ”‹ Features

    • โœ‚ Remove unneeded default values for function parameters (#4498)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ Use a consistent mechanism to resolve the config file to avoid issues on Windows (#4501)
    • ๐Ÿ— Avoid an inaccurate warning about an event emitter leak for complicated builds (#4502)
    • Ensure that reexporting values from other chunks via dynamic imports does not reference non-imported variables (#4499)

    Pull Requests

    • 0๏ธโƒฃ #4498: Tree shake parameter defaults (@lukastaegert)
    • #4499: Ensure reexports are available for namespaces (@lukastaegert)
    • ๐Ÿ #4501: fix: config path problem on windows (@pos777)
    • โš  #4502: Avoid maximum listeners exceeded warning (@lukastaegert)
  • v2.73.0 Changes

    2022-05-13

    ๐Ÿ”‹ Features

    • Do not treat Object.defineProperty/ies as side effect when called on an unused object (#4493)
    • Do not assume that assigning a property can create a getter with side effects (#4493)
    • Do not treat string.prototype.replace(All) as side effect when used with two literals (#4493)

    ๐Ÿ› Bug Fixes

    • Detect side effects when manually declaring getters on functions (#4493)

    Pull Requests

    • #4493: Handle getters on functions and improve property deoptimization (@lukastaegert)
    • #4494: Do not treat string.replace as side effect when used with a literal (@lukastaegert)
    • โšก๏ธ #4495: Update docs for --configPlugin using typescript (@Jimmydalecleveland)
  • v2.72.1 Changes

    2022-05-07

    ๐Ÿ› Bug Fixes

    • ๐Ÿ‘Œ Improve tree-shaking of classes with super classes in certain scenarios (#4489)

    Pull Requests

    • โšก๏ธ #4489: Do not deoptimize entire super class when adding a property (@lukastaegert)
  • v2.72.0 Changes

    2022-05-05

    ๐Ÿ”‹ Features

    • โž• Add CLI hooks to run external commands at certain points in watch mode (#4457)

    ๐Ÿ› Bug Fixes

    • ๐Ÿ›  Fix an issue that could accidentally treat relevant assignments as side effect free (#4486)

    Pull Requests

    • #4457: feat: CLI event hook flags (@Harris-Miller)
    • #4486: Fix reassignment tracking (@lukastaegert)
  • v2.71.1 Changes

    2022-04-30

    ๐Ÿ› Bug Fixes

    • ๐Ÿ‘ Allow importing loadConfigFile without extension (#4483)

    Pull Requests

    • ๐Ÿ‘ป #4483: Add exports exception for loadConfigFile (@lukastaegert)
  • v2.71.0 Changes

    2022-04-30

  • v2.70.2 Changes

    2022-04-15

    ๐Ÿ› Bug Fixes

    • Do not enforce undefined return values in TypeScript types (#4463)

    Pull Requests

    • #4463: use void for options hook instead of undefined (@ycmjason)
  • v2.70.1 Changes

    2022-03-14

    ๐Ÿ› Bug Fixes

    • ๐ŸŒฒ Handle unfinished hook action errors as regular errors and avoid console logging (#4434)
    • ๐Ÿ‘ Allow access to "dist" folder in a Node 17 compatible way (#4436)

    Pull Requests

    • #4434: Track unfinished hook actions as regular errors (@lukastaegert)
    • โšก๏ธ #4436: Update package.json (@frank-dspeed)
  • v2.70.0 Changes

    2022-03-07

    ๐Ÿ”‹ Features

    • ๐Ÿ‘‰ Make the watchChange and closeWatcher hooks asynchronous and make Rollup wait for these hooks before continuing (#4427)

    ๐Ÿ› Bug Fixes

    • Do not abort watch mode for errors in watchChange but display them properly (#4427)

    Pull Requests

    • #4427: Do not abort watch mode on errors in watchChange (@lukastaegert)