svg-symbol-sprite-loader icon indicating copy to clipboard operation
svg-symbol-sprite-loader copied to clipboard

Update: dependencies 🆙 (major)

Open renovate[bot] opened this issue 3 years ago • 0 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ionicons (source) 5.5.1 -> 7.2.2 age adoption passing confidence
parse5 6 -> 7 age adoption passing confidence
react (source) 17.0.2 -> 18.2.0 age adoption passing confidence
react-dom (source) 17.0.2 -> 18.2.0 age adoption passing confidence
webpack-sources 2 -> 3 age adoption passing confidence

Release Notes

ionic-team/ionicons (ionicons)

v7.2.2

Compare Source

Bug Fixes

v7.2.1

Compare Source

Bug Fixes

v7.2.0

Compare Source

Bug Fixes
Features

7.1.2 (2023-05-30)

Bug Fixes

7.1.1 (2023-05-23)

Bug Fixes

v7.1.2

Compare Source

Bug Fixes

v7.1.1

Compare Source

Bug Fixes

v7.1.0

Compare Source

Features

v7.0.0

Compare Source

Migration Note: Developers should ensure that their <ion-icon> usages have either aria-label or aria-hidden to avoid accessibility issues. See https://ionic.io/ionicons/usage for more information.

Bug Fixes

6.1.3 (2023-02-09)

Bug Fixes

6.1.2 (2023-02-08)

Bug Fixes

6.1.1 (2023-01-18)

Bug Fixes
  • icon: remove during build step (<a href="https://togithub.com/ionic-team/ionicons/issues/1169" rel="nofollow" target="_blank" >#​1169</a>) (<a href="https://togithub.com/ionic-team/ionicons/commit/93b4fa449b0a072b24ef920fe73e1cb04d6f9b43" rel="nofollow" target="_blank" >93b4fa4</a>), closes <a href="https://togithub.com/ionic-team/ionicons/issues/1168" rel="nofollow" target="_blank" >#​1168</a>

6.1.1 (2023-01-18)

Bug Fixes
  • icon: remove during build step (<a href="https://togithub.com/ionic-team/ionicons/issues/1169" rel="nofollow" target="_blank" >#​1169</a>) (<a href="https://togithub.com/ionic-team/ionicons/commit/93b4fa449b0a072b24ef920fe73e1cb04d6f9b43" rel="nofollow" target="_blank" >93b4fa4</a>), closes <a href="https://togithub.com/ionic-team/ionicons/issues/1168" rel="nofollow" target="_blank" >#​1168</a>

v6.1.3

Compare Source

Bug Fixes

v6.1.2

Compare Source

Bug Fixes

v6.1.1

Compare Source

Bug Fixes
  • icon: remove during build step (<a href="https://togithub.com/ionic-team/ionicons/issues/1169" rel="nofollow" target="_blank" >#​1169</a>) (<a href="https://togithub.com/ionic-team/ionicons/commit/93b4fa449b0a072b24ef920fe73e1cb04d6f9b43" rel="nofollow" target="_blank" >93b4fa4</a>), closes <a href="https://togithub.com/ionic-team/ionicons/issues/1168" rel="nofollow" target="_blank" >#​1168</a>

v6.1.0

Compare Source

Bug Fixes
  • icon: remove default (<a href="https://togithub.com/ionic-team/ionicons/issues/1166" rel="nofollow" target="_blank" >#​1166</a>) (<a href="https://togithub.com/ionic-team/ionicons/commit/e0efa5f28d61adcaf2e1fa121f7e2f10cfad6d65" rel="nofollow" target="_blank" >e0efa5f</a>), closes <a href="https://togithub.com/ionic-team/ionicons/issues/838" rel="nofollow" target="_blank" >#​838</a> <a href="https://togithub.com/ionic-team/ionicons/issues/1049" rel="nofollow" target="_blank" >#​1049</a> <a href="https://togithub.com/ionic-team/ionicons/issues/1082" rel="nofollow" target="_blank" >#​1082</a>

v6.0.4

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

BREAKING CHANGE:

The ariaLabel and ariaHidden properties have been removed in favor of using the aria-label and aria-hidden attributes. For most developers there will be no change in behavior. Please review the migration steps below to see if you need to update your application:

  1. Using Ionicons via JavaScript:
// Before
iconEl.ariaHidden = "true";

// After
iconEl.setAttribute('aria-hidden', 'true');
  1. Using Ionicons via JSX in React
{/* Before */}
<IonIcon ariaHidden="true" />

{/* After */}
<IonIcon aria-hidden="true" />

This change is more aligned with what React expects: https://reactjs.org/docs/accessibility.html#wai-aria

v5.5.4

Compare Source

v5.5.3

Compare Source

v5.5.2

Compare Source

inikulin/parse5 (parse5)

v7.1.2

Compare Source

This release includes parse5 and parse5-parser-stream.

Full Changelog: https://github.com/inikulin/parse5/compare/v7.1.0...v7.1.2

v7.1.1

Compare Source

v7.1.0

Compare Source

This release is only for the parse5 module.

What's Changed

New Contributors

Full Changelog: https://github.com/inikulin/parse5/compare/v7.0.0...v7.1.0

v7.0.0

Compare Source

Welcome to parse5@​7.0.0! ✨ This is a huge release with many changes, features and fixes.

From an organisational perspective, the most important change is that parse5 is now maintained by a team, consisting of James (@​43081j), Titus (@​wooorm) and me (@​fb55). We come from three projects that rely on parse5 — namely Cheerio, rehype, and Lit.

We need your support to continue the project! If you care about parse5, please support us financially on OpenCollective.

Headlining features of this release are ES Modules, TypeScript, and performance improvements: 7.0.0 is 45% faster than 6.0.1 with default options, and 167% faster with location information enabled (for the bench/perf benchmark, on an M1 Mac). Version 7.0.0 is a revamp of every part of the library. There are too many changes to list them all here, so here is a high-level overview:

Breaking: ESM

All of parse5’s packages are now ECMAScript Modules. We are providing dual packages for parse5 and parse5-htmlparser2-tree-adapter for now (see https://github.com/inikulin/parse5/pull/418 and https://github.com/inikulin/parse5/pull/496).

To migrate, please read this Gist on how to update. Note that private internals are no longer available; instead, everything that you need should be imported from the main package.

Implemented by @​43081j in #​351

Breaking: TypeScript

The codebase has been ported to TypeScript. This helped uncover a number of subtle logic bugs, such as dc4e269, b4b5d4a, or a0aff95. TypeScript also helps us refactor with confidence and a lot of the changes in this release would have been much harder to do without it.

To migrate, please remove @types/parse5* as we now ship our own types.

Implemented by @​fb55 in #​362

Potentially breaking changes

If you are using deep imports for any parts of the codebase, you will likely encounter some breakages:

Show internal changes

Other changes

  • minor add hooks for stack events to tree adapter interface #​385
  • minor add support for fragments in parse5-parser-stream #​487
  • minor add serializeOuter (like .outerHTML), scriptingEnabled option #​383
  • patch fix parsing of << in comments parsed wrongly as <! (#​326)
  • patch fix position of endTag for mixed-case foreign elements (#​353)
  • patch fix end position of html, body (#​436)
  • docs: parse5 has a new documentation website at parse5.js.org #​443

New Contributors

Thanks @​anko, @​TrySound, @​samouri, @​alan-agius4, and @​pmdartus!

Full Changelog: https://github.com/inikulin/parse5/compare/v6.0.1...v7.0.0

facebook/react (react)

v18.2.0

Compare Source

React DOM
React DOM Server
Server Components (Experimental)

v18.1.0

Compare Source

React DOM
React DOM Server
ESLint Plugin: React Hooks
Use Subscription

v18.0.0

Compare Source

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 18 release post and React 18 upgrade guide for more information.

New Features
React
  • useId is a new hook for generating unique IDs on both the client and server, while avoiding hydration mismatches. It is primarily useful for component libraries integrating with accessibility APIs that require unique IDs. This solves an issue that already exists in React 17 and below, but it’s even more important in React 18 because of how the new streaming server renderer delivers HTML out-of-order.
  • startTransition and useTransition let you mark some state updates as not urgent. Other state updates are considered urgent by default. React will allow urgent state updates (for example, updating a text input) to interrupt non-urgent state updates (for example, rendering a list of search results).
  • useDeferredValue lets you defer re-rendering a non-urgent part of the tree. It is similar to debouncing, but has a few advantages compared to it. There is no fixed time delay, so React will attempt the deferred render right after the first render is reflected on the screen. The deferred render is interruptible and doesn't block user input.
  • useSyncExternalStore is a new hook that allows external stores to support concurrent reads by forcing updates to the store to be synchronous. It removes the need for useEffect when implementing subscriptions to external data sources, and is recommended for any library that integrates with state external to React.
  • useInsertionEffect is a new hook that allows CSS-in-JS libraries to address performance issues of injecting styles in render. Unless you’ve already built a CSS-in-JS library we don’t expect you to ever use this. This hook will run after the DOM is mutated, but before layout effects read the new layout. This solves an issue that already exists in React 17 and below, but is even more important in React 18 because React yields to the browser during concurrent rendering, giving it a chance to recalculate layout.
React DOM Client

These new APIs are now exported from react-dom/client:

  • createRoot: New method to create a root to render or unmount. Use it instead of ReactDOM.render. New features in React 18 don't work without it.
  • hydrateRoot: New method to hydrate a server rendered application. Use it instead of ReactDOM.hydrate in conjunction with the new React DOM Server APIs. New features in React 18 don't work without it.

Both createRoot and hydrateRoot accept a new option called onRecoverableError in case you want to be notified when React recovers from errors during rendering or hydration for logging. By default, React will use reportError, or console.error in the older browsers.

React DOM Server

These new APIs are now exported from react-dom/server and have full support for streaming Suspense on the server:

  • renderToPipeableStream: for streaming in Node environments.
  • renderToReadableStream: for modern edge runtime environments, such as Deno and Cloudflare workers.

The existing renderToString method keeps working but is discouraged.

webpack/webpack-sources (webpack-sources)

v3.2.3

Compare Source

v3.2.2

Compare Source

Bugfixes

  • Source Code is splitted into lines via custom code instead of using a RegExp
    • In weird edge cases the RegExp caused a Stack Overflow

v3.2.1

Compare Source

Bugfixes

  • RawSources with Buffers can now be concatenated with ConcatSource
  • Source Code is splitted into lines via custom code instead of using a RegExp
    • In weird edge cases the RegExp caused a Stack Overflow

v3.2.0

Compare Source

Performance

  • add SourceMapSource.buffer for better performance
  • more efficient serialization of source mappings

Bugfix

  • avoid crashing when trying to compare the name with the original source, but there is no sourcesContent in SourceMap

v3.1.2

Compare Source

Bugfix

  • improve handling of invalid mappings (like zero sized or negative)

v3.1.1

Compare Source

equal to 3.1.0

v3.1.0

Compare Source

Bugfix

  • improve handling of null sources and sourceContents

Performance

  • faster streaming when only lines are mapped

v3.0.4

Compare Source

Bugfix

  • fix invalid mappings when multiple lines with multiple chunks are replaced

v3.0.3

Compare Source

Bugfix

  • restore backward-compat format for storing end position of replacements

v3.0.2

Compare Source

Bugfix

  • fix incorrect offset sign when doing replacements

v3.0.1

Compare Source

Bugfixes

  • fix ConcatSource off-by-1 bug

v3.0.0

Compare Source

Performance

  • remove all dependencies
  • refactoring for performance
    • remove node() and listMap()
    • add streamChunks()

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (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, check this box

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

renovate[bot] avatar Aug 01 '21 00:08 renovate[bot]