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

Update: dependencies 🆙 (major) #169

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2021

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

6.1.1 (2023-01-18)

Bug Fixes

v6.1.3

Compare Source

Bug Fixes

v6.1.2

Compare Source

Bug Fixes

v6.1.1

Compare Source

Bug Fixes

v6.1.0

Compare Source

Bug Fixes

v6.0.4

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

  • fix(icon): using icon in ssr environment no longer errors on HTMLElement (#​1035) 3ec9271

v6.0.0

Compare Source

  • fix(icon): avoid type collisions with ariaLabel and ariaHidden (#​1014) 1038a7f
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: inikulin/parse5@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: inikulin/parse5@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: inikulin/parse5@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 renovate bot requested a review from DHedgecock as a code owner August 1, 2021 00:34
@renovate renovate bot added the Renovate label Aug 1, 2021
@renovate renovate bot changed the title Update: Package webpack-sources to v3 🆙 Update: dependencies 🆙 (major) Oct 20, 2021
@renovate renovate bot force-pushed the renovate/major-dependencies branch from b83214c to bf65ce2 Compare October 20, 2021 14:57
@renovate renovate bot force-pushed the renovate/major-dependencies branch from bf65ce2 to b85255b Compare November 8, 2021 22:01
@renovate renovate bot force-pushed the renovate/major-dependencies branch from b85255b to 9ce465f Compare January 19, 2022 20:46
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 9ce465f to 87814a9 Compare March 29, 2022 18:14
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 5a67755 to d4d5532 Compare April 26, 2022 22:42
@renovate renovate bot force-pushed the renovate/major-dependencies branch from d4d5532 to a69cf15 Compare May 31, 2022 23:12
@renovate renovate bot force-pushed the renovate/major-dependencies branch from a69cf15 to c9a2b3e Compare June 14, 2022 20:36
@renovate renovate bot changed the title Update: dependencies 🆙 (major) Update: update: dependencies 🆙 (major) Jun 27, 2022
@renovate renovate bot changed the title Update: update: dependencies 🆙 (major) Update: dependencies 🆙 (major) Jun 28, 2022
@renovate renovate bot changed the title Update: dependencies 🆙 (major) Update: dependencies to v6 🆙 (major) Aug 9, 2022
@renovate renovate bot changed the title Update: dependencies to v6 🆙 (major) Update: dependencies 🆙 (major) Aug 10, 2022
@renovate renovate bot force-pushed the renovate/major-dependencies branch from c9a2b3e to 2734be3 Compare August 26, 2022 15:02
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 2734be3 to 5c21272 Compare November 8, 2022 21:21
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 5c21272 to 5ef7470 Compare January 1, 2023 04:34
@renovate renovate bot force-pushed the renovate/major-dependencies branch 4 times, most recently from 7b36fc3 to 8d6182d Compare January 19, 2023 02:38
@renovate renovate bot force-pushed the renovate/major-dependencies branch 3 times, most recently from 2eda101 to c848bd8 Compare February 9, 2023 20:39
@renovate renovate bot force-pushed the renovate/major-dependencies branch 2 times, most recently from 459b81c to 9a70b8c Compare March 7, 2023 13:55
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 9a70b8c to 6a9cd12 Compare March 15, 2023 02:03
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 6a9cd12 to d2c5e41 Compare March 23, 2023 20:12
@renovate renovate bot force-pushed the renovate/major-dependencies branch from d2c5e41 to d41cba2 Compare April 6, 2023 03:29
@renovate renovate bot force-pushed the renovate/major-dependencies branch from d41cba2 to a849227 Compare May 23, 2023 18:42
@renovate renovate bot force-pushed the renovate/major-dependencies branch from a849227 to 7cb62ca Compare May 30, 2023 21:28
@renovate renovate bot force-pushed the renovate/major-dependencies branch from 7cb62ca to a43462e Compare October 10, 2023 17:22
@renovate renovate bot force-pushed the renovate/major-dependencies branch from a43462e to 8ea01d7 Compare December 13, 2023 15:54
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.

0 participants