Skip to content

Conversation

@renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Aug 11, 2020

This PR contains the following updates:

Package Type Update Change
rollup (source) devDependencies minor 2.15.0 -> 2.26.8

Release Notes

rollup/rollup

v2.26.8

Compare Source

2020-08-29

Bug Fixes
  • Make sure that both unresolved and resolved ids are passed to the external option in all cases (#​3753)
Pull Requests

v2.26.7

Compare Source

2020-08-28

Bug Fixes
  • Avoid invalid code when rendering hoisted variable declarations from dead branches (#​3752)
  • Mark the options parameter of this.parse as optional for TypeScript plugins (#​3750)
Pull Requests

v2.26.6

Compare Source

2020-08-27

Bug Fixes
  • Avoid conflicts between the namespace of synthetic named exports and local variables (#​3747)
Pull Requests

v2.26.5

Compare Source

2020-08-22

Bug Fixes
  • Use correctly deconflicted variable names for reexported namespaces in ES formats (#​3742)
Pull Requests

v2.26.4

Compare Source

2020-08-19

Bug Fixes
  • Fix a situation where invalid code was rendered when dynamically importing a module with synthetic named exports when preserving modules (#​3738)
  • Create a proper namespace object when in a non-es format, a namespace is imported from a chunk with default export mode (#​3738)
  • Use the same variable when in a chunk, a namespace is both imported and reexported as a binding (#​3738)
  • Do not include the synthetic namespace in static entry points unless it is actually used (#​3738)
  • Make sure the chunking of one output does not interfere with the namespace objects of another output (#​3738)
Pull Requests

v2.26.3

Compare Source

2020-08-16

Bug Fixes
  • Fix a situation where line-breaks in a nested simplified conditional expression could result in broken code (#​3734)
Pull Requests

v2.26.2

Compare Source

2020-08-16

Bug Fixes
  • Fix a situation where line-breaks in a simplified conditional expression could result in broken code (#​3732)
Pull Requests

v2.26.1

Compare Source

2020-08-16

Bug Fixes
  • Correctly render external namespace imports when only generating SystemJS output (#​3731)
Pull Requests

v2.26.0

Compare Source

2020-08-15

Features
  • Add a new entry importedBindings to the bundle information to list bindings per dependency (#​3722)
Bug Fixes
  • Do not render an invalid UMD wrapper when no bindings are imported from a dependency (#​3724)
  • Avoid situations where removing the else branch from an if statement might catch the else branch from another one (#​3725)
Pull Requests

v2.25.0

Compare Source

2020-08-14

Features
  • Add --failAfterWarnings CLI flag that will complete builds with warnings but return an error at the end (#​3712)
Pull Requests

v2.24.0

Compare Source

2020-08-13

Features
  • Allow defining interop per dependency via a function (#​3710)
  • Support interop "auto" as a more compatible version of "true" (#​3710)
  • Support interop "default" and "esModule" to avoid unnecessary interop helpers (#​3710)
  • Support interop "defaultOnly" for simplified helpers and Node ESM interop compatible output (#​3710)
  • Respect interop option for external dynamic imports (#​3710)
  • Support live-bindings for external default imports in non-ES formats unless "externalLiveBindings" is "false" (#​3710)
  • Use shared default interop helpers for AMD, UMD and IIFE formats (#​3710)
  • Avoid unnecessarily deconflicted module variables in non-ES formats (#​3710)
  • Freeze generated interop namespace objects (#​3710)
  • Always mark interop helpers as pure (#​3710)
  • Avoid default export interop if there is already an interop namespace object (#​3710)
  • Sort all require statements to the top in CommonJS output for easier back-transpilation to ES modules by other tools (#​3710)
Bug Fixes
  • Handle accessing super in static class fields (#​3720)
  • Deconflict the names of helper variables introduced for interop (#​3710)
  • Generate proper namespace objects for static namespace imports in non-ES formats (#​3710)
  • Do not add unused interop helpers when using the renderDynamicImport hook (#​3710)
Pull Requests

v2.23.1

Compare Source

2020-08-07

Bug Fixes
  • Fix an issue where dynamically importing an entry point could return a malformed namespace for CJS and AMD formats (#​3709)
Pull Requests
  • #​3709: Properly construct namespace when dynamically importing chunks with facades in default export mode (@​lukastaegert)

v2.23.0

Compare Source

2020-07-23

Features
  • Handle environments with only globalThis in UMD output (#​3691)
Pull Requests

v2.22.2

Compare Source

2020-07-21

Bug Fixes
  • Always generate correct exports when an implicit entry is reexporting from another module (#​3688)
Pull Requests

v2.22.1

Compare Source

2020-07-18

Bug Fixes
  • Remove unused arguments when calling a conditional expression (#​3680)
Pull Requests
  • #​3680: Allow tree-shaking of arguments of functions that are returned by conditional expressions (@​lukastaegert)

v2.22.0

Compare Source

2020-07-18

Features
  • Allow resolving synthetic named exports via an arbitrary export name (#​3657)
  • Display a warning when the user does not explicitly select an export mode and would generate a chunk with default export mode when targeting CommonJS (#​3657)
Pull Requests

v2.21.0

Compare Source

2020-07-07

Features
  • Allow plugins to disable tree-shaking for individual modules to ensure even empty modules are associated with chunks (#​3663)
Pull Requests

v2.20.0

Compare Source

2020-07-06

Features
  • Support using a function to generate different chunk and asset naming patterns per chunk or asset (#​3658)
  • Add referencedFiles property to the chunk info in generateBundle to list referenced assets (#​3661)
Pull Requests

v2.19.0

Compare Source

2020-07-05

Features
  • Allow plugins to return a Promise in the options hook (#​3660)
Pull Requests

v2.18.2

Compare Source

2020-07-02

Bug Fixes
  • Do not remove spread element args when the corresponding positional parameter is unused (#​3652)
Pull Requests

v2.18.1

Compare Source

2020-06-26

Bug Fixes
  • Make sure synthetic exports are present when a module is imported dynamically (#​3648)
  • Strip the rollup-plugin- prefix off the plugin name when looking for the plugin export in a CLI plugin without a default export (#​3647)
  • Convert plugin names with dashes to camel case when looking for the plugin export in a CLI plugin without a default export (#​3647)
Pull Requests
  • #​3647: Strip rollup-plugin prefix to find named plugin exports, throw when export cannot be found (@​lukastaegert)
  • #​3648: Always create a dynamic namespace object when a module with synthetic named exports is imported dynamically (@​lukastaegert)

v2.18.0

Compare Source

2020-06-22

Features
  • inlineDynamicImports, manualChunks and preserveModules can now be used as output options (#​3645)
  • Use sourcemaps for certain warnings that reference source code locations (#​3645)
Bug Fixes
  • this.getFileName will now always return the correct file name for chunks when multiple outputs are created (#​3645)
Pull Requests

v2.17.1

Compare Source

2020-06-19

Bug Fixes
  • Properly resolve accessing properties of namespace members again (#​3643)
Pull Requests

v2.17.0

Compare Source

2020-06-17

Features
  • When importing Rollup via package.exports, always fall back to the browser ESM build for non-Node environments (#​3634)
  • Create more efficient code when handling namespace mutations (#​3637)
Bug Fixes
  • Fix a severe performance regression when the same module is imported by a lot of modules (#​3641)
  • Properly escape special characters in imports (#​3638)
Pull Requests

v2.16.1

Compare Source

2020-06-13

Bug Fixes
  • Do not produce invalid code when an external or chunk id contain quotes or line-breaks (#​3632)
  • Do not fail but emit a warning when mutating a namespace object (#​3633)
Pull Requests

v2.16.0

Compare Source

2020-06-12

Features
  • Add support for numeric separators (#​3626)
  • Switch to finalized ESTree optional chaining AST (#​3628)
Pull Requests

Renovate configuration

📅 Schedule: 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 WhiteSource Renovate. View repository job log here.

@google-cla google-cla bot added the cla: yes label Aug 11, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.23.1 Update dependency rollup to v2.24.0 Aug 13, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.24.0 Update dependency rollup to v2.25.0 Aug 14, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.25.0 Update dependency rollup to v2.26.0 Aug 15, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.0 Update dependency rollup to v2.26.1 Aug 16, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.1 Update dependency rollup to v2.26.2 Aug 16, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.2 Update dependency rollup to v2.26.3 Aug 16, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.3 Update dependency rollup to v2.26.4 Aug 19, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.4 Update dependency rollup to v2.26.5 Aug 22, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.5 Update dependency rollup to v2.26.6 Aug 27, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.6 Update dependency rollup to v2.26.7 Aug 28, 2020
@renovate-bot renovate-bot changed the title Update dependency rollup to v2.26.7 Update dependency rollup to v2.26.8 Aug 29, 2020
@samouri samouri merged commit 837ee38 into ampproject:main Aug 31, 2020
@renovate-bot renovate-bot deleted the renovate/rollup-2.x branch August 31, 2020 17:26
valleykid added a commit to icatjs/worker-dom that referenced this pull request Sep 9, 2020
* update to latest version of np (ampproject#915)

* update to latest version of np

* also update jsdom, some strange errors occuring with whatwg-url

* Mention that innerHTML has partial support (ampproject#911)

* Pin dependency jsdom to 16.4.0 (ampproject#916)

* Update Yarn to v1.22.5 (ampproject#918)

* Update dependency rollup-plugin-terser to v7 (ampproject#907)

* Update dependency rollup to v2.26.8 (ampproject#899)

* Update dependency acorn-walk to v8 (ampproject#922)

* HTMLElement.click() support (ampproject#919)

* HTMLElement: Support .click() function.

* HTMLElement.click() support

* update web compat table.

* Update dependency acorn to v8 (ampproject#908)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update dependency typescript to v4 (ampproject#923)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update dependency np to v6.5.0 (ampproject#921)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Support Dirty Flag for HTMLInputElement.value (ampproject#913)

* v0.25.1

* Support dirty flag for HTMLInputElement.value

* Support dirty flag for HTMLInputElement.value

* add a test

* fix progress

* update test for progress as well

* Bump size of worker.mjs

* Remove populated demo examples since tests now cover the functionality

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update Node.js to v14.9.0 (ampproject#889)

* v0.26.0 (ampproject#925)

* Update dependency rollup to v2.26.9 (ampproject#924)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency prettier to v2.1.1 (ampproject#920)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency css-loader to v4 (ampproject#906)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency webpack-cli to v3.3.12 (ampproject#905)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency webpack to v4.44.1 (ampproject#904)

* Update dependency tslint to v6.1.3 (ampproject#902)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Remove esmodule syntax (ampproject#927)

* v0.25.1

* Remove ESModules Package syntax since its not being used

* Use toUpper utility (ampproject#928)

* v0.25.1

* Use the utilities instead of direct methods

* Update dependency sirv to v1.0.6 (ampproject#901)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency sinon to v9.0.3 (ampproject#900)

* Update dependency rollup to v2.26.11 (ampproject#931)

* Update dependency css-loader to v4.3.0 (ampproject#934)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Refactor output (ampproject#929)

* v0.25.1

* Create production and debug outputs for AMP

* tweak tracked resources for filesize

* Additional tracking for nodom variant

* Update dependency husky to v4.3.0 (ampproject#933)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update Dependencies (ampproject#935)

* v0.25.1

* Update to latest versions

* Bump version + skip hooks for release (ampproject#936)

* v0.27.0

* skip hooks on release

* v0.27.1

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update Node.js to v14.10.0 (ampproject#930)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency preact to v10.4.8 (ampproject#898)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency mini-css-extract-plugin to v0.11.1 (ampproject#897)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency ava to v3.12.1 (ampproject#893)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency lint-staged to v10.3.0 (ampproject#896)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Ben Morss <morss@google.com>
Co-authored-by: WhiteSource Renovate <bot@renovateapp.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>
valleykid added a commit to icatjs/worker-dom that referenced this pull request Sep 9, 2020
* feat: sync from base-source (#1)

* update to latest version of np (ampproject#915)

* update to latest version of np

* also update jsdom, some strange errors occuring with whatwg-url

* Mention that innerHTML has partial support (ampproject#911)

* Pin dependency jsdom to 16.4.0 (ampproject#916)

* Update Yarn to v1.22.5 (ampproject#918)

* Update dependency rollup-plugin-terser to v7 (ampproject#907)

* Update dependency rollup to v2.26.8 (ampproject#899)

* Update dependency acorn-walk to v8 (ampproject#922)

* HTMLElement.click() support (ampproject#919)

* HTMLElement: Support .click() function.

* HTMLElement.click() support

* update web compat table.

* Update dependency acorn to v8 (ampproject#908)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update dependency typescript to v4 (ampproject#923)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update dependency np to v6.5.0 (ampproject#921)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Support Dirty Flag for HTMLInputElement.value (ampproject#913)

* v0.25.1

* Support dirty flag for HTMLInputElement.value

* Support dirty flag for HTMLInputElement.value

* add a test

* fix progress

* update test for progress as well

* Bump size of worker.mjs

* Remove populated demo examples since tests now cover the functionality

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update Node.js to v14.9.0 (ampproject#889)

* v0.26.0 (ampproject#925)

* Update dependency rollup to v2.26.9 (ampproject#924)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency prettier to v2.1.1 (ampproject#920)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency css-loader to v4 (ampproject#906)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency webpack-cli to v3.3.12 (ampproject#905)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency webpack to v4.44.1 (ampproject#904)

* Update dependency tslint to v6.1.3 (ampproject#902)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Remove esmodule syntax (ampproject#927)

* v0.25.1

* Remove ESModules Package syntax since its not being used

* Use toUpper utility (ampproject#928)

* v0.25.1

* Use the utilities instead of direct methods

* Update dependency sirv to v1.0.6 (ampproject#901)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency sinon to v9.0.3 (ampproject#900)

* Update dependency rollup to v2.26.11 (ampproject#931)

* Update dependency css-loader to v4.3.0 (ampproject#934)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Refactor output (ampproject#929)

* v0.25.1

* Create production and debug outputs for AMP

* tweak tracked resources for filesize

* Additional tracking for nodom variant

* Update dependency husky to v4.3.0 (ampproject#933)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>

* Update Dependencies (ampproject#935)

* v0.25.1

* Update to latest versions

* Bump version + skip hooks for release (ampproject#936)

* v0.27.0

* skip hooks on release

* v0.27.1

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update Node.js to v14.10.0 (ampproject#930)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency preact to v10.4.8 (ampproject#898)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency mini-css-extract-plugin to v0.11.1 (ampproject#897)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency ava to v3.12.1 (ampproject#893)

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* Update dependency lint-staged to v10.3.0 (ampproject#896)

Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Ben Morss <morss@google.com>
Co-authored-by: WhiteSource Renovate <bot@renovateapp.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>

* fix: package.json conflict

Co-authored-by: Jake Fried <samouri@users.noreply.github.com>
Co-authored-by: Ben Morss <morss@google.com>
Co-authored-by: WhiteSource Renovate <bot@renovateapp.com>
Co-authored-by: Kristofer Baxter <kristofer@kristoferbaxter.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants