Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency rollup to v0.68.2 - abandoned #196

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 26, 2018

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rollup (source) 0.60.7 -> 0.68.2 age adoption passing confidence

Release Notes

rollup/rollup

v0.68.2

Compare Source

2018-12-23

Bug Fixes
  • Do not assume hoisted variables to have been initialized (#​2607)
Pull Requests
  • #​2607: Fix an issues where hoisted variables were assumed to have been initialized (@​lye)

v0.68.1

Compare Source

2018-12-19

Bug Fixes
  • Fix an issue with UMD wrappers where a variable is used without being defined (#​2600)
Pull Requests

v0.68.0

Compare Source

2018-12-16

Breaking Changes
  • optimizeChunks is renamed to experimentalOptimizeChunks to reflect this feature is not production-ready yet (#​2575)
Features
  • Plugins can iterate all module ids via this.moduleIds (#​2565)
  • Plugins can get graph information about a module via this.getModuleInfo(id) (#​2565)
  • Plugins and JS API users get more information about the generated chunks: dynamicImports, facadeModuleId, isDynamicEntry, name (#​2575)
  • Tree-shaken dynamic imports will no longer create chunks or influence chunking in any way (#​2575)
  • Dynamic imports will no longer follow the entryFileNames but the chunkFileNames property reflecting those are solely internally used (#​2575)
  • If there are chunk naming conflicts, entry chunks will always take precedence (#​2575)
  • If an entry facade is created, only the facade chunk is marked as isEntry (#​2575)
  • Dynamic chunks will only be marked as isEntry if they are actually entry chunks as well; thus there is now a 1-to-1 correspondence between modules listed in input and chunks marked as isEntry (#​2575)
  • Chunks no longer contain imports for variables that are tree-shaken in the chunk but used in other chunks (#​2584)
  • Chunks will always import re-exported variables directly from the chunk where they are originally exported from (#​2584)
  • Null characters will be pruned from chunk ids to allow for virtually created chunks and make rollup-plugin-multi-entry compatible with code-splitting and thus the upcoming 1.0 version (#​2590)
  • Simplify the UMD wrapper code as much as possible, especially if there are no exports (#​2594)
  • The UMD wrapper will now work in strict mode by checking for self before this when determining the global variable (#​2594)
Bug Fixes
  • If a facade is created for a dynamic entry point, this facade will be imported instead of the facaded chunk (#​2575)
  • Manual chunks that include multiple entry points will have proper facades created for all entry points if necessary (#​2575)
  • If missing exports are shimmed, the shim variable will not be global but created on a per-module basis and is deconflicted with variables having the same name (#​2584)
  • Missing export shims work properly in SystemJS (#​2584)
  • preserveModules now handles dynamic namespace imports (#​2584)
  • Fix chunk execution order in certain scenarios (#​2584)
  • Exports and assignments using destructuring syntax will properly update the exported variables when generating SystemJS output (#​2587)
  • Hashes in chunk names will now also take dynamic imports into account (#​2596)
Pull Requests
  • #​2565: Provide module graph information on the plugin context (@​samccone)
  • #​2575: Extend bundle information, tree-shake dynamic imports, fix dynamic import facade creation, support manual chunks with multiple entry points, make optimizeChunks experimental (@​lukastaegert)
  • #​2577: Update dependencies (@​lukastaegert)
  • #​2584: Prune tree-shaken chunk imports, fix missing export shimming, support dynamic namespaces when preserving modules, improve chunk execution order (@​lukastaegert)
  • #​2587: Support exports using destructuring declarations and assignments in SystemJS (@​lukastaegert)
  • #​2590: Make sure chunk ids do not contain invalid characters to allow for chunks to correspond to virtual modules (@​lukastaegert)
  • #​2594: Simplify UMD wrapper code and make sure it works in strict mode (@​lukastaegert)
  • #​2596: Take both static and dynamic dependencies into account when calculating hashes (@​lukastaegert)

v0.67.4

Compare Source

2018-12-03

Bug Fixes
  • Prevent corrupt source maps for files with very long lines (#​2571)
Pull Requests

v0.67.3

Compare Source

2018-11-17

Bug Fixes
  • Make sure the ESM browser build is actually published to npm (#​2560)
  • Throw proper error when using inlineDynamicImports with experimentalPreserveModules (#​2560)
Pull Requests

v0.67.2

Compare Source

2018-11-17

Bug Fixes
  • Prevent crash when not returning sourcemaps from renderChunk plugin hook (#​2558)
Pull Requests

v0.67.1

Compare Source

2018-11-11

Bug Fixes
  • Deconflict CLI entry points with same name but on different paths if no explicit naming is used (#​2548)
Pull Requests
  • #​2548: Deconflict CLI entry points with same name but on different paths if no explicit naming is used (@​lukastaegert)

v0.67.0

Compare Source

2018-11-04

Breaking Changes

none

Features
  • Do not resolve external dynamic imports via plugins to match the logic for static external imports again (#​2505)
  • Support virtual modules created by plugins when preserving modules (#​2511)
  • Add new output.sourcemapExcludeSources option to exclude the actual sources from sourcemaps (#​2531)
Bug Fixes
  • Fix TypeScript type for sourcemaps (#​2507)
  • Fix order of external and inter-chunk imports to match the proper execution order (#​2508)
  • Do not tree-shake children of unknown nodes to e.g. properly handle do-expressions via acorn plugin (#​2510)
  • Prevent memory leak when using the bundle as cache (#​2522)
  • Fix mis-placed semicolons for certain SystemJS exports (#​2529)
Pull Requests

v0.66.6

Compare Source

2018-10-10

  • Properly deconflict function and class declaration ids of reassigned default exports (#​2502)

v0.66.5

Compare Source

2018-10-09

  • Remove cache from memory once no longer needed (#​2496)
  • Provide better error message when reexporting external namespace reexports (#​2499)

v0.66.4

Compare Source

2018-10-04

  • Fix links in warnings and errors (#​2471)

v0.66.3

Compare Source

2018-10-03

  • Detect side-effects in string.replace function arguments (#​2476)
  • Make sure chunk ids are assigned before creating output bundle (#​2483)
  • Use proper plugin name in error (#​2470)
  • Update TypeScript version and fix type errors (#​2488)

v0.66.2

Compare Source

2018-09-21

  • Add additional information to parse errors messages in JSON and other non-JS files (#​2466)

v0.66.1

Compare Source

2018-09-19

  • Ignore falsy plugins (#​2464)
  • Switch back to official TypeScript plugin (#​2465)

v0.66.0

Compare Source

2018-09-16

  • Support ES2019 optional catch bindings (#​2455)
  • Add option to transform paths within sourcemaps (#​2430)
  • Add renderStart and renderEnd plugin hooks (#​2438)
  • Expose ESM browser build and minify browser builds (#​2437
  • Associate hoisted variables in function bodys with function parameters (#​2456)
  • Fix issue when deconflicting variables used as pattern defaults (#​2446)
  • Properly deconflict default exported class and function expressions with ids (#​2458)
  • Faster internal test builds (#​2457)
  • Switch to rollup-plugin-typescript2 (#​2460)
  • Fix internal "perf" script (#​2433)
  • Test that errors are passed to the buildEnd hook (#​2450)

v0.65.2

Compare Source

2018-09-05

  • Prevent watch mode memory leak (#​2441)

v0.65.1

Compare Source

2018-09-05

  • Prevent globbing when using chokidar (#​2432)

v0.65.0

Compare Source

2018-08-25

  • Refactor and unify plugin system (#​2382)
  • Implement plugin cache API (#​2389)
  • Add watchChange plugin hook to watch changed files, deprecate asset dependencies (#​2405)
  • Refine asset handling (#​2369)
  • Implement renderChunk hook to replace transformChunk and transformBundle hooks (#​2406)
  • Add rollup version to plugin context (#​2394)
  • Do not resume stdin in watch mode to fix it for Lerna users (#​2410)
  • Allow [format] placeholder for id generation (#​2387)
  • Always log error stacks even when a code frame is given (#​2417)
  • Do not test module ids starting with \0 as external (#​2400)
  • Fix tracing of namespace variables (#​2408)
  • Fix re-tracing of namespace variables (#​2420)
  • Properly wrap comment annotations in SystemJS exports (#​2408)
  • Fix renaming of destructured parameters (#​2419)
  • Do not display version in watch mode when using --silent (#​2392)
  • Make cacheExpiry an experimental option for now (#​2401)
  • Lint test configs on commit (#​2402)
  • Add code of conduct (#​2388)
  • Move to CircleCI (#​2390)
  • Update pull request template (#​2404)

v0.64.1

Compare Source

2018-08-07

  • Do not render initializers of hoisted variables in dead branches (#​2384)

v0.64.0

Compare Source

2018-08-07

  • Print memory consumption together with performance timings (#​2370)
  • Enable plugins to mark imports as external by returning false for resolveId (#​2351)
  • Always retain empty manual chunks (#​2362)
  • Ensure CLI warnings are shown on errors and add error for external id collisions (#​2334)
  • Remove unnecessary dependency, update dependencies, fix linting of test config (#​2376)
  • Add targeted Github issue templates (#​2356)

v0.63.5

Compare Source

2018-08-01

  • Ensure onwrite plugin hooks execute in sequence (#​2364)
  • Always warn when no name is provided for a global module (#​2359)
  • Add utility type for user created plugins (#​2355)
  • Remove deprecated es6 format from types (#​2349)
  • Mark inlineDynamicImports as optional in types (#​2348)

v0.63.4

Compare Source

2018-07-20

  • Use turbocolor instead of chalk (#​2339)

v0.63.3

Compare Source

2018-07-20

  • Handle expressions where "in" and "instanceof" are applied to primitive values (#​2344)

v0.63.2

Compare Source

2018-07-18

  • Fix bind order in for-of loops (#​2338)

v0.63.1

Compare Source

2018-07-18

v0.63.0

Compare Source

2018-07-17

  • Fix many tree-shaking related issues (#​2315)
  • Add experimental support for top-level await (#​2235)
  • Prevent duplicate version printout in watch mode (#​2325)
  • Respect error frames provided by plugins (#​2309)
  • Add esm format alias to types (#​2327)
  • Further unify internal test setup (#​2329)

v0.62.0

Compare Source

2018-06-27

  • Add option to automatically shim missing exports (#​2118)
  • Inline dynamic imports that are also imported statically and only used in a single chunk (#​2295)
  • Handle caching and invalidation of assets (#​2267)
  • Fix plugin related types (#​2299)

v0.61.2

Compare Source

2018-06-23

  • Improve watcher error handling, only rebuild invalidated outputs (#​2296)
  • Update dependencies, make watcher more stable (#​2297)

v0.61.1

Compare Source

2018-06-21

  • Do not try to deconflict "undefined" (#​2291)
  • Properly track values for loop interator declarations and reassigned namespaces, add smoke test (#​2292)

v0.61.0

Compare Source

2018-06-20

  • Declare file dependencies via transform plugin hooks (#​2259)
  • Handle undefined values when evaluating conditionals (#​2264)
  • Handle known undefined properties when evaluating conditionals (#​2265)
  • Access watch events via the plugin context (#​2261)
  • Add option to suppress __esModule flag in output (#​2287)
  • Fix issue when re-declaring variables, track reassignments in more cases (#​2279)
  • Add VSCode debug settings (#​2276)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 9568756 to 13d265d Compare June 27, 2018 06:14
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.61.2 chore(deps): update dependency rollup to v0.62.0 Jun 27, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 13d265d to e556923 Compare July 6, 2018 07:36
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from e556923 to fba2ad5 Compare July 17, 2018 19:53
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.62.0 chore(deps): update dependency rollup to v0.63.0 Jul 17, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from fba2ad5 to 25dbabb Compare July 18, 2018 08:05
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.63.0 chore(deps): update dependency rollup to v0.63.2 Jul 18, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 25dbabb to 794d56e Compare July 20, 2018 12:22
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.63.2 chore(deps): update dependency rollup to v0.63.3 Jul 20, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 794d56e to e6c5573 Compare July 20, 2018 15:29
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.63.3 chore(deps): update dependency rollup to v0.63.4 Jul 20, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from e6c5573 to cd1af9c Compare August 1, 2018 07:08
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.63.4 chore(deps): update dependency rollup to v0.63.5 Aug 1, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from cd1af9c to d30b9f9 Compare August 7, 2018 06:42
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.63.5 chore(deps): update dependency rollup to v0.64.0 Aug 7, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from d30b9f9 to 1bb7e84 Compare August 7, 2018 18:39
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.64.0 chore(deps): update dependency rollup to v0.64.1 Aug 7, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 1bb7e84 to 72d6a50 Compare August 25, 2018 13:50
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.64.1 chore(deps): update dependency rollup to v0.65.0 Aug 25, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 72d6a50 to c9b970b Compare September 5, 2018 06:41
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.65.0 chore(deps): update dependency rollup to v0.65.1 Sep 5, 2018
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.65.1 chore(deps): update dependency rollup to v0.65.2 Sep 5, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from c9b970b to aabfff4 Compare September 5, 2018 18:59
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.65.2 chore(deps): update dependency rollup to v0.66.0 Sep 16, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from aabfff4 to d112db3 Compare September 16, 2018 07:26
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.0 chore(deps): update dependency rollup to v0.66.1 Sep 19, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from d112db3 to 0ea2d7a Compare September 19, 2018 17:57
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.1 chore(deps): update dependency rollup to v0.66.2 Sep 21, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 0ea2d7a to 309173c Compare September 21, 2018 04:25
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.2 chore(deps): update dependency rollup to v0.66.3 Oct 3, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 309173c to d59d0b7 Compare October 3, 2018 12:08
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.3 chore(deps): update dependency rollup to v0.66.4 Oct 4, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from d59d0b7 to 6675a7f Compare October 4, 2018 06:30
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.4 chore(deps): update dependency rollup to v0.66.5 Oct 9, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 6675a7f to 79dd29b Compare October 9, 2018 05:34
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.5 chore(deps): update dependency rollup to v0.66.6 Oct 10, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 79dd29b to c87b817 Compare October 10, 2018 14:55
@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.66.6 Update dependency rollup to v0.66.6 Oct 11, 2018
@renovate renovate bot changed the title Update dependency rollup to v0.66.6 Update dependency rollup to v0.67.0 Nov 4, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from c87b817 to 5b375f3 Compare November 4, 2018 12:58
@renovate renovate bot changed the title Update dependency rollup to v0.67.0 Update dependency rollup to v0.67.1 Nov 11, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 5b375f3 to f40c508 Compare November 11, 2018 14:52
@renovate renovate bot changed the title Update dependency rollup to v0.67.1 Update dependency rollup to v0.67.2 Nov 17, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from f40c508 to 3f903e7 Compare November 17, 2018 07:09
@renovate renovate bot changed the title Update dependency rollup to v0.67.2 Update dependency rollup to v0.67.3 Nov 17, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 3f903e7 to 80f423d Compare November 17, 2018 08:08
@renovate renovate bot changed the title Update dependency rollup to v0.67.3 Update dependency rollup to v0.67.4 Dec 3, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 80f423d to 067ee7f Compare December 3, 2018 06:34
@renovate renovate bot changed the title Update dependency rollup to v0.67.4 Update dependency rollup to v0.68.0 Dec 16, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 067ee7f to ee1814f Compare December 16, 2018 10:23
@renovate renovate bot changed the title Update dependency rollup to v0.68.0 Update dependency rollup to v0.68.1 Dec 19, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from ee1814f to f84e38a Compare December 19, 2018 21:52
@renovate renovate bot changed the title Update dependency rollup to v0.68.1 Update dependency rollup to v0.68.2 Dec 23, 2018
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from f84e38a to 529d0c4 Compare December 23, 2018 16:43
@renovate renovate bot force-pushed the renovate/rollup-0.x branch from 529d0c4 to 564d5b2 Compare January 8, 2019 13:00
@renovate renovate bot changed the title Update dependency rollup to v0.68.2 chore(deps): update dependency rollup to v0.68.2 Mar 18, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Mar 25, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot changed the title chore(deps): update dependency rollup to v0.68.2 chore(deps): update dependency rollup to v0.68.2 - abandoned Dec 8, 2024
Copy link
Contributor Author

renovate bot commented Dec 8, 2024

Autoclosing Skipped

This PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant