redux-eggs
redux-eggs copied to clipboard
chore(deps): update dependency rollup to v2.79.1
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
rollup (source) | 2.67.3 -> 2.79.1 |
Release Notes
rollup/rollup
v2.79.1
2022-09-22
Bug Fixes
- Avoid massive performance degradation when creating thousands of chunks (#4643)
Pull Requests
- #4639: fix: typo docs and contributors link in CONTRIBUTING.md (@takurinton)
- #4641: Update type definition of resolveId (@ivanjonas)
- #4643: Improve performance of chunk naming collision check (@lukastaegert)
v2.79.0
2022-08-31
Features
- Add
amd.forceJsExtensionForImports
to enforce using.js
extensions for relative AMD imports (#4607)
Pull Requests
v2.78.1
2022-08-19
Bug Fixes
- Avoid inferring "arguments" as name for a default export placeholder variable (#4613)
Pull Requests
- #4613: Prevent using arguments for generated variable names (@lukastaegert)
v2.78.0
2022-08-14
Features
- Support writing plugin hooks as objects with a "handler" property (#4600)
- Allow changing execution order per plugin hook (#4600)
- Add flag to execute plugins in async parallel hooks sequentially (#4600)
Pull Requests
- #4600: Allow using objects as hooks to change execution order (@lukastaegert)
v2.77.3
2022-08-11
Bug Fixes
- Correctly resolve preserveModulesRoot in Vite (#4591)
Pull Requests
- #4591: resolve currentPath (@cleverpp)
v2.77.2
2022-07-27
Bug Fixes
- Avoid a rendering failure when mixing outputs with inlined and non-inlined dynamic imports (#4589)
Pull Requests
- #4589: Handle generating non-inlined imports after inlined ones (@lukastaegert)
v2.77.1
2022-07-26
Bug Fixes
- Ensure IIFE output generates a global variable when generating ES5 (#4588)
Pull Requests
- #4577: broken link removed (@Jawad-H)
- #4580: Update dependencies (@lukastaegert)
- #4584: Documentation clarity and syntax improvements (@berniegp)
- #4588: Use var for IIFE (@lukastaegert)
v2.77.0
2022-07-15
Features
- Introduce
maxParallelFileOps
to limit both read and write operations, default to 20 and replacesmaxParallelFileRead
(#4570)
Bug Fixes
- Avoid including variables referenced from return statements that are never reached (#4573)
Pull Requests
- #4570: Introduce maxParallelFileOps to limit parallel writes (@lukastaegert)
- #4572: Document more ways to read package.json in ESM (@berniegp)
- #4573: Do not include unused return expressions (@lukastaegert)
v2.76.0
2022-07-08
Features
- Allow setting a
sourcmapBaseUrl
for absolute paths in sourcemaps (#4527)
Bug Fixes
- Support absolute CLI plugin paths on Windows (#4533)
Pull Requests
- #4527: Add sourcemapBaseUrl option (@nickgarlis)
- #4533: Add support for absolute plugin paths (@ygoe)
- #4538: chore: Included githubactions in the dependabot config (@naveensrinivasan)
- #4546: Adapt Node versions on CI to prepare for v3 (@lukastaegert)
- #4556: Improve error message for invalid patterns (@DysphoricUnicorn)
- #4559: Update dependencies (@lukastaegert)
- #4560: Bump peter-evans/create-or-update-comment from 1 to 2 (@dependabot)
- #4561: Bump peter-evans/find-comment from 1 to 2 (@dependabot)
- #4562: Bump codecov/codecov-action from 1 to 3 (@dependabot)
v2.75.7
2022-06-20
Bug Fixes
- Mark Array.prototype.group/groupToMap as side effect free. (#4531)
Pull Requests
- #4523: chore: remove source map workaround, bump deps (@dnalborczyk)
- #4525: Add regression tests for instanceof (@lukastaegert)
- #4528: chore: Set permissions for GitHub actions (@naveensrinivasan)
- #4531: fix: rename Array.prototype.group/groupToMap (@dnalborczyk)
- #4535: chore: bump resolve from 1.22.0 to 1.22.1 (@pos777)
v2.75.6
2022-06-07
Bug Fixes
- Properly deoptimize "this" when using member expressions with getters/setters in for loops and update expressions (#4522)
Pull Requests
- #4522: Refactor side effect handling for property interactions (@lukastaegert)
v2.75.5
2022-06-01
Bug Fixes
- Avoid crashes when using logical expressions for unused constructor arguments (#4519)
- Fix missing parameter defaults for calls from try statements and functions returned by functions (#4520)
Pull Requests
- #4519: Try to make logical expression deoptimization more robust (@lukastaegert)
- #4520: Roll back parameter default tree shaking (@lukastaegert)
v2.75.4
2022-05-31
Bug Fixes
- Ensure parameter defaults are retained when a function is used as an object property (#4516)
Pull Requests
- #4516: Deoptimize parameter defaults when referenced from object/array/class literals (@lukastaegert)
v2.75.3
2022-05-29
Bug Fixes
- Retain parameter defaults for functions that are defaults themselves (#4515)
- Track mutations for objects as default values (#4515)
Pull Requests
- #4515: Ensure parameter defaults are deoptimized (@lukastaegert)
v2.75.2
v2.75.1
2022-05-28
Pull Requests
- #4513: Update link to node polyfill repo (@lukastaegert)
v2.75.0
2022-05-27
Features
- Re-implement default parameter tree-shaking for top-level functions (#4510)
- Do not consider calling string methods like
.trim()
on template literals a side effect (#4511)
Pull Requests
- #4510: Tree-shake parameter defaults (replaces #4498) (@lukastaegert)
- #4511: Tree-shake side-effect-free string methods on template literals (@lukastaegert)
v2.74.1
2022-05-19
Bug Fixes
- Revert #4498 until some issues are understood and resolved
v2.74.0
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
- #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
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
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
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
2022-04-30
Bug Fixes
- Allow importing loadConfigFile without extension (#4483)
Pull Requests
- #4483: Add exports exception for loadConfigFile (@lukastaegert)
v2.71.0
2022-04-30
v2.70.2
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
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
2022-03-07
Features
- Make the
watchChange
andcloseWatcher
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)
v2.69.2
2022-03-06
Bug Fixes
- Mark
Object.entries
andObject.fromEntries
as pure (#4429) - Make sure new properties on Array.prototype and Object.prototype are not evaluated as "undefined" (#4428)
Pull Requests
- #4428: Treat unknown prototype props as unknown (@lukastaegert)
- #4429: Treat unknown prototype props as unknown (@869288142)
v2.69.1
2022-03-04
Bug Fixes
- Approximate source position instead of ignoring it when using a low-resolution source map in a transform hook (#4334)
Pull Requests
- #4334: fix(sourcemap): fall back to low-resolution line mapping (@aleclarson and @lukastaegert)
v2.69.0
2022-03-02
Features
- Introduce new
output.generatedCode.symbols
to control the usage of Symbols in Rollup-generated code (#4378) - soft-deprecate
output.namespaceToStringTag
in favor ofoutput.generatedCode.symbols
(#4378)
Bug Fixes
- Properly handle
./
and../
as external dependencies (#4419) - Make generated "Module" namespace toStringTag non-enumerable for correct Object.assign/spread behaviour (#4378)
- Add file name to error when top-level-await is used in disallowed formats (#4421)
Pull Requests
- #4378: Make namespace @@toStringTag "Module" non-enumerable (@dnalborczyk and @lukastaegert)
- #4413: refactor: some code and type fixes (@dnalborczyk)
- #4418: chore: bump deps (@dnalborczyk)
- #4419: Properly handle upper directories as external dependencies (@lukastaegert)
- #4421: Improve the error prompt and output the error file name (@caoxiemeihao)
- #4423: Update 999-big-list-of-options.md (@leoj3n)
v2.68.0
2022-02-22
Features
- provide information about cached import resolutions in
shouldTransformCachedModule
(#4414) - Add "types" field to Rollup's package exports (#4416)
Pull Requests
- #4410: refactor: use map for declarations and name suggestions (@dnalborczyk)
- #4411: refactor: use map for namespace reexports by name (@dnalborczyk)
- #4412: refactor: use includes where appropriate (@dnalborczyk)
- #4414: Add resolved sources to shouldTransformCachedModule (@lukastaegert)
- #4416: Add Typescript 4.5 nodenext node12 module resolution support (@frank-dspeed)
Configuration
📅 Schedule: Branch creation - "every weekend" in timezone Europe/Moscow, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.
This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployments, click below or on the icon next to each commit.
redux-eggs-example-next – ./examples/example-next
🔍 Inspect: https://vercel.com/fostyfost/redux-eggs-example-next/5EYxktVDihyL3wvJXWnR37ncrDvW
✅ Preview: https://redux-eggs-example-next-git-renovate-rollup-2x-fostyfost.vercel.app
redux-eggs-example-next-gip – ./examples/example-next-gip
🔍 Inspect: https://vercel.com/fostyfost/redux-eggs-example-next-gip/X28hUnNBch2j3B41MiwuA1wixpyp
✅ Preview: https://redux-eggs-example-next-gip-git-renovate-rollup-2x-fostyfost.vercel.app
redux-eggs-example-next-rtk – ./examples/example-next-rtk
🔍 Inspect: https://vercel.com/fostyfost/redux-eggs-example-next-rtk/H571CDNEBGpsybWsMU5GwbCRJBKQ
✅ Preview: https://redux-eggs-example-next-rtk-git-renovate-rollup-2x-fostyfost.vercel.app
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
redux-eggs-example-next | ❌ Failed (Inspect) | May 7, 2023 7:38pm | ||
redux-eggs-example-next-gip | ❌ Failed (Inspect) | May 7, 2023 7:38pm | ||
redux-eggs-example-next-rtk | ❌ Failed (Inspect) | May 7, 2023 7:38pm |
Deployment failed with the following error:
Resource is limited - try again in 21 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again in 20 hours (more than 100, code: "api-deployments-free-per-day").
Deployment failed with the following error:
Resource is limited - try again in 2 hours (more than 100, code: "api-deployments-free-per-day").
Renovate Ignore Notification
Because you closed this PR without merging, Renovate will ignore this update (2.79.1). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps
array of your Renovate config.
If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.