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

fix(deps): update dependencies - autoclosed #24

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 24, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@rocket/blog (source) ^0.3.0 -> ^0.4.0 age adoption passing confidence
@rocket/cli (source) ^0.6.0 -> ^0.10.0 age adoption passing confidence
@rocket/launch (source) ^0.4.0 -> ^0.6.0 age adoption passing confidence
@rocket/search (source) ^0.3.2 -> ^0.6.0 age adoption passing confidence
lit-element (source) ^2.4.0 -> ^3.0.0 age adoption passing confidence

Release Notes

modernweb-dev/rocket (@​rocket/blog)

v0.4.0

Compare Source

Minor Changes
  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

Patch Changes
modernweb-dev/rocket (@​rocket/cli)

v0.10.2

Compare Source

Patch Changes

v0.10.1

Compare Source

Patch Changes
  • 15a82c0: Enable including script files into the simulator via <script src=".." mdjs-use>

  • 15a82c0: Allow only a limited set of characters for simulator includes [a-zA-Z0-9\/\-_].
    Notably, there is no:

    • : to prevent http://... includes
    • . so filenames as this.is.my.js are not supported. Also includes will be without file endings which will be added automatically

v0.10.0

Compare Source

Minor Changes
  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

Patch Changes

v0.9.11

Compare Source

Patch Changes
  • 7301a0f: Pass on rocketConfig to the eleventy function to enable conditional configurations/filters
  • 42418f2: Disable the service worker for local development
  • 5ac6aa6: Set the encoding of the simulator to utf8 via a html meta tag

v0.9.10

Compare Source

Patch Changes
  • 738941a: In rocket.config.js you can now supply a rollup config function.

    export default {
      rollup: config => {
        // config will be the fully generated config object after all presets have been applied
        if (config.plugins.includes('...')) {
          // change some config options
        }
        return config;
      },
    };

v0.9.9

Compare Source

Patch Changes
  • adf0f1d: use img openEnd to insert responsive image

v0.9.8

Compare Source

Patch Changes

v0.9.7

Compare Source

Patch Changes

v0.9.6

Compare Source

Patch Changes
  • bf99541: Adjust copy logic to

    1. for _assets/_static copy over everything
    2. for all other paths copy over everything except *.html and *.md
  • 579e8e7: Unordered joiningBlocks are now considered with the order number 10 000 and will generally be at the bottom.
    You can use numbers > 10 000 to place files even after unordered joiningBlocks.

v0.9.5

Compare Source

Patch Changes
  • 1b9559f: Adds before11ty hook to config and presets

v0.9.4

Compare Source

Patch Changes
  • 2b5c61d: Allow configuring the imagePreset ignore rules via the option ignore

    export default {
      imagePresets: {
        responsive: {
          // ...
          ignore: ({ src }) =>
            src.endsWith('.jpeg') || src.endsWith('svg') || src.includes('rocket-unresponsive.'),
        },
      },
    };
  • 2b5c61d: Do not generate responsive images for files ending in .svg or that include rocket-ignore.

  • ce0b00e: don't transform external images

  • 3b1a0cf: Allow to configure check-html-links

    export default {
      checkLinks: {
        /* ... */
      },
    };

v0.9.3

Compare Source

Patch Changes
  • 795a361: The server worker url should respect a set pathPrefix.

v0.9.2

Compare Source

Patch Changes
  • 5330740: When replacing images with responsive picture tags do this from the bottom up so the initial dom parsing locations still hold true.

v0.9.1

Compare Source

Patch Changes
  • 7301a0f: Pass on rocketConfig to the eleventy function to enable conditional configurations/filters
  • 42418f2: Disable the service worker for local development
  • 5ac6aa6: Set the encoding of the simulator to utf8 via a html meta tag

v0.9.0

Compare Source

Minor Changes
  • eae2007: Update to mdjs version that uses lit 2 and renders stories to light dom
Patch Changes

v0.8.2

Compare Source

Patch Changes

v0.8.1

Compare Source

Patch Changes
  • c338696: Updated dependency of eleventy-img for M1 compatibility

v0.8.0

Compare Source

Minor Changes
  • 8bba4a8: Every content image in markdown will outputted in multiple widths and formats to ensure small image file sizes while retaining quality.
    You can adjust the defaults by setting imagePresets.responsive.

    export default {
      imagePresets: {
        responsive: {
          widths: [600, 900, 1640],
          formats: ['avif', 'jpeg'],
          sizes: '(min-width: 1024px) 820px, calc(100vw - 40px)',
        },
      },
    };

v0.7.0

Compare Source

Minor Changes
  • 2724f07: The service worker no longer precaches all urls and assets. It now

    • caches already visited pages
    • caches assets of visited pages (up to 100 files then it replaces older entries)
    • on service worker activation it will reload the page if a newer version is available
Patch Changes
modernweb-dev/rocket (@​rocket/launch)

v0.6.0

Compare Source

Minor Changes
  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

v0.5.6

Compare Source

Patch Changes

v0.5.5

Compare Source

Patch Changes
  • 3d22fbb: Prevent styles from applying to lion components that are rendered in light dom

v0.5.4

Compare Source

Patch Changes
  • d91e46b: Add noscript styles which explicity show unregistered custom elements

v0.5.3

Compare Source

Patch Changes
  • b7d5cba: remove footer extra comma

v0.5.2

Compare Source

Patch Changes
  • 9e3c2f5: Only show the help & feedback link if a site.helpUrl is defined

  • 9625b94: Remove footer urls to pages that users would need to create

  • 1f79d7a: Add font-family CSS variables

    • --primary-font-family for body text
    • --secondary-font-family for emphasis (e.g. call-to-action)
    • --heading-font-family for headings (defaults to --primary-font-family)
    • --monospace-font-family for code blocks

v0.5.1

Compare Source

Patch Changes
  • cf44221: Adds a Slack invite to social links
  • f5d349e: add used fonts from google fonts

v0.5.0

Compare Source

Minor Changes
  • 8bba4a8: Configure responsive image sizes to align with the launch preset breakpoints.
    The set value is sizes: '(min-width: 1024px) 820px, calc(100vw - 40px)'.
modernweb-dev/rocket (@​rocket/search)

v0.6.0

Compare Source

Minor Changes

v0.5.1

Compare Source

Patch Changes

v0.5.0

Compare Source

Minor Changes
  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

Patch Changes

v0.4.1

Compare Source

Patch Changes

v0.4.0

Compare Source

Minor Changes
  • 6cabdba: BREAKING: upgraded search to lit version 2
lit/lit

v3.2.2

Compare Source

Patch Changes
  • #​3132 2fe2053f - Added "types" entry to package exports. This tells newer versions of TypeScript where to look for typings for each module.

v3.2.1

Compare Source

Patch Changes
  • #​2978 634d4560 - Changed the caching behavior of the css`` template literal tag so that same-text styles do not share a CSSStyleSheet. Note that this may be a breaking change in some very unusual scenarios on Chromium and Firefox > 101 only.

v3.2.0

Compare Source

Minor Changes
  • #​2401 2c9d0008 - Added a devlog events system that may be used for debugging and visualizing Lit's internals.
Patch Changes

v3.1.2

Compare Source

Patch Changes
  • #​2370 7453e365 - Replace square bracket links with the linkcode JSDoc tag.
    Editors will create a jump to definition hyperlink for the linkcode tag if the identifier is in scope.

  • #​2410 b9a6962b - Correct the link path of CONTRIBUTING.md in README.md files

v3.1.1

Compare Source

Patch Changes

v3.1.0

Compare Source

Minor Changes
  • #​2327 49ecf623 - Add queryAssignedElements decorator for a declarative API that calls HTMLSlotElement.assignedElements() on a specified slot. selector option allows filtering returned elements with a CSS selector.
Patch Changes

v3.0.2

Compare Source

Patch Changes
  • #​2236 5fc3818a - Prevent polyfillSupport.noPatchSupported from implicitly being any.
    Deduplicate types for DevMode-suffixed polyfill support functions.

v3.0.1

Compare Source

Patch Changes
  • #​2152 ba5e1391 - Replace dynamic name lookups for polyfill support functions with static names.

v3.0.0

Compare Source

Major Changes
  • Most users should no longer import directly from lit-element, and instead prefer importing LitElement from the lit packages. The default entry point for lit-element remains backward-compatible and includes all decorators. However, it's recommended to use import {LitElement} from 'lit'; and import decorators from lit/decorators as necessary. See the Upgrade Guide for more details.

  • UpdatingElement has been moved from the lit-element package to the @lit/reactive-element package and renamed to ReactiveElement. See the ReactiveElement API documentation for more details. In addition, the source for css-tag, and all decorators have been moved to @lit/reactive-element. However, all symbols are re-exported from both lit and lit-element packages.

  • The @internalProperty decorator has been renamed to @state.

  • Errors that occur during the update cycle were previously squelched to allow subsequent updates to proceed normally. Now errors are re-fired asynchronously so they can be detected. Errors can be observed via an unhandledrejection event handler on window.

  • The lib folder has been removed.

  • Rendering of renderRoot/shadowRoot) via createRenderRoot and support for static styles has moved from LitElement to ReactiveElement.

  • The createRenderRoot method is now called just before the first update rather than in the constructor. Element code can not assume the renderRoot exists before the element hasUpdated. This change was made for compatibility with SSR.

  • ReactiveElement's initialize method has been removed. This work is now done in the element constructor.

  • The static render has been removed.

  • For consistency, renamed _getUpdateComplete to getUpdateComplete.

  • When a property declaration is reflect: true and its toAttribute function returns undefined the attribute is now removed where previously it was left unchanged (#​872).

  • The dirty check in attributeChangedCallback has been removed. While technically breaking, in practice it should very rarely be (#​699).

  • LitElement's adoptStyles method has been removed. Styling is now adopted in createRenderRoot. This method may be overridden to customize this behavior.

  • LitElement's static getStyles method has been renamed to static finalizeStyles and now takes a list of styles the user provided and returns the styles which should be used in the element. If this method is overridden to integrate into a style management system, typically the super implementation should be called.

  • Removed build support for TypeScript 3.4.

  • Decorators are no longer exported from the lit-element module. Instead, import any decorators you use from lit/decorators/*.

  • lit-html has been updated to 2.x.

  • Support for running in older browsers has been removed from the default configuration. Import the polyfill-support module to support Shady DOM. Note also that Lit parts inside <style> elements are no longer supported. See Polyfills for more details.

  • For simplicity, requestUpdate no longer returns a Promise. Instead await the updateComplete Promise.

  • Removed requestUpdateInternal. The requestUpdate method is now identical to this method and should be used instead.

  • #​2103 15a8356d - Updates the exports field of package.json files to replace the subpath
    folder
    mapping

    syntax with an explicit list of all exported files.

    The /-suffixed syntax for subpath folder mapping originally used in these
    files is deprecated. Rather than update to the new syntax, this change replaces
    these mappings with individual entries for all exported files so that (a) users
    must import using extensions and (b) bundlers or other tools that don't resolve
    subpath folder mapping exactly as Node.js does won't break these packages'
    expectations around how they're imported.

Minor Changes
  • A public renderOptions class field now exists on LitElement and can be set/overridden to modify the options passed to lit-html.
  • Adds static shadowRootOptions for customizing shadowRoot options. Rather than implementing createRenderRoot, this property can be set. For example, to create a closed shadowRoot using delegates focus: static shadowRootOptions = {mode: 'closed', delegatesFocus: true}.
  • Adds development mode, which can be enabled by setting the development Node exports condition. See Development and production builds for more details.
Patch Changes
  • #​1964 f43b811 - Don't publish src/ to npm.
  • For efficiency, the css function now maintains a cache and will use a cached value if available when the same style text is requested.
  • Fixed reflecting a property when it is set in a setter of another property that is called because its attribute changed (#​965).
  • Fixed exceptions when parsing attributes from JSON (#​722).
  • Fixed issue with combining static get properties on an undefined superclass with @property on a subclasss ([#​890]https://github.com/Polymer/lit-element/issues/890));

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 908b7df to 46bea4a Compare July 26, 2022 23:04
@aminya aminya closed this Jul 27, 2022
@renovate renovate bot changed the title fix(deps): update dependencies fix(deps): update dependencies - autoclosed Jul 27, 2022
@renovate renovate bot deleted the renovate/dependencies branch July 27, 2022 00:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant