Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

patch: Update external-non-major #781

Merged
1 commit merged into from Sep 4, 2021
Merged

patch: Update external-non-major #781

1 commit merged into from Sep 4, 2021

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 4, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@emotion/react ^11.4.0 -> ^11.4.1 age adoption passing confidence
@sentry/browser ^6.10.0 -> ^6.12.0 age adoption passing confidence
@storybook/react ^6.3.6 -> ^6.3.8 age adoption passing confidence
fast-json-patch ^3.0.0-1 -> ^3.1.0 age adoption passing confidence
lint-staged ^11.1.1 -> ^11.1.2 age adoption passing confidence
node-emoji ^1.10.0 -> ^1.11.0 age adoption passing confidence
react-redux ^7.2.4 -> ^7.2.5 age adoption passing confidence
react-router-dom ^5.2.0 -> ^5.3.0 age adoption passing confidence
redux (source) ^4.1.0 -> ^4.1.1 age adoption passing confidence
rendition ^21.5.3 -> ^21.6.8 age adoption passing confidence
simple-git-hooks ^2.5.1 -> ^2.6.1 age adoption passing confidence
styled-components (source) ^5.3.0 -> ^5.3.1 age adoption passing confidence
typescript (source) ^4.3.5 -> ^4.4.2 age adoption passing confidence

Release Notes

emotion-js/emotion

v11.4.1

Compare Source

Patch Changes
  • #​2441 24557d9d Thanks @​garronej! - Exposed __unsafe_useEmotionCache which can be used to access the current Emotion's cache in an easier way than before. Using this might break 0-config SSR and is not recommended to be used unless there you know what you are doing and you are OK with the mentioned downside.

  • #​2424 cd25b62d Thanks @​tills13! - Use theme context when rendering components at all times. This removes a conditional usage of a React hook that could break Rules of Hooks in some scenarios.

  • #​2428 a69929d6 Thanks @​eps1lon! - Added display names to public React contexts in development builds. This helps to recognize them in React Developer Tools.

  • Updated dependencies [405af5ca]:

getsentry/sentry-javascript

v6.12.0

Compare Source

  • fix(nextjs): Differentiate between webpack 4 and 5 in server builds (#​3878)
  • fix(core): Skip native frames while searching frame URLs. (#​3897)
  • fix(vue): Attach props only if VM is available (#​3902)
  • feat(tracing): Add pg-native support to Postgres integration. (#​3894)
  • ref(ember): Update addon to support Ember 4.0.0 (beta) (#​3915)
  • feat(react): Make Profiler _mountSpan attribute protected (#​3904)
  • fix(ember): allow ember-beta to fail (#​3910)
  • fix(tracing): Prevent metrics erroring module load in web workers (#​3941)
  • misc(browser): Log when event is dropped by Dedupe integration (#​3943)

v6.11.0

Compare Source

  • feat(nextjs): Allow for TypeScript user config files (#​3847)
  • fix(browser): Make sure handler exists for LinkedErrors Integration (#​3861)
  • fix(core): Skip anonymous callbacks while searching frame URLs. (#​3842)
  • fix(core): Stop rejecting in flush and close when client undefined (#​3846)
  • fix(nextjs): Stop SentryWebpackPlugin from uploading unnecessary files (#​3845)
  • fix(react): Require ReactElement in ErrorBoundary props and render (#​3857)
  • fix(tests): Allow tests to run on Windows without WSL (#​3813)
  • fix(utils): Fix false-positive circular references when normalizing Event objects (#​3864)
  • fix(vue): Make Router.name type optional to match VueRouter (#​3843)
  • ref(core): Prevent redundant setup work (#​3862)
  • ref(nextjs): Stop reinitializing the server SDK unnecessarily (#​3860)
storybookjs/storybook

v6.3.8

Compare Source

Maintenance
  • Core: Write JSON stats file in streaming fashion and omit chunks for brevity (#​15889)

v6.3.7

Compare Source

Fix bad publish of 6.4.0-alpha.27 to the latest tag

Starcounter-Jack/JSON-Patch

v3.1.0

Compare Source

Use ES6 Modules

List of changes

okonet/lint-staged

v11.1.2

Compare Source

Bug Fixes
  • try to automatically fix and warn about invalid brace patterns (#​992) (b3d97cf)
omnidan/node-emoji

v1.11.0

Compare Source

reduxjs/react-redux

v7.2.5

Compare Source

This release shrinks the size of our internal Subscription class, and updates useSelector to avoid an unnecessary selector call on mount.

Changes

Subscription Size Refactor

Our internal Subscription implementation has been written as a class ever since it was added in v5. By rewriting it as a closure factory, we were able to shave a few bytes off the final bundle size.

useSelector Mount Optimization

A user noticed that useSelector had never been given an early "bail out if the root state is the same" check to match how connect works. This resulted in a usually-unnecessary second call to the provided selector on mount. We've added that check.

Entry Point Consolidation

We've consolidated the list of exported public APIs into a single file, and both the index.js and alternate-renderers.js entry points now re-export everything from that file. No meaningful change here, just shuffling lines of code around for consistency.

Other Updates

React-Redux v8 and React 18 Development

With the announcement of React 18, we've been working with the React team to plan our migration path to keep React-Redux fully compatible with React's upcoming features.

We've already migrated the React-Redux main development branch to TypeScript, and are prototyping compatibility implementation updates. We'd appreciate any assistance from the community in testing out these changes so that we can ensure React-Redux works great for everyone when React 18 is ready!

Internal Tooling Updates

Our master branch now uses Yarn v2 for package management, is built with TypeScript, and we've made CI updates to test against multiple TS versions.

The 7.x branch has also been updated to use Yarn v2 for consistency.

These only affect contributors to the React-Redux package itself.

Changelog

ReactTraining/react-router

v5.3.0

Compare Source

This release of react-router-dom adds support for passing a function to either the className or style props to conditionally apply values based on the link's active state.

This provides similar functionality as the existing activeClassName and activeStyle props, but is a bit more powerful. For example, you can now easily apply styles exclusively to an inactive NavLink as well. This offers a nicer experience for folks who use utility class-based CSS tools such as Tailwind.

function Comp() {
  return (
    <NavLink
      to="/"
      className={({ isActive }) =>
        `px-3 py-2 text-gray-${isActive ? 200 : 800}`
      }
    >
      Home
    </NavLink>
  );
}

Note that as of v6.0.0-beta.3, the activeClassName and activeStyle props are removed completely. Adding support for functional className and style props to both v5 and v6 will give v5 users an easier upgrade path.

Thanks to @​tim-phillips for raising the issue that inspired the change! 🥳

v5.2.1

Compare Source

This release fixes a bug with <Link> so that, when the to location is the same as the current, the history state entry is replaced instead of pushed to the stack. See https://github.com/remix-run/react-router/issues/5362 for details. 🥳

Thanks to @​guidobouman for the PR and for everyone else who weighed in for the fix!

reduxjs/redux

v4.1.1

Compare Source

Just a small fix for Safari users in development mode.

Changes

balena-io-modules/rendition

v21.6.8

Compare Source

(2021-09-01)

  • Fix unknown event handler onSort in TableBase [Matthew Yarmolinsky]

v21.6.7

Compare Source

(2021-08-31)

  • patch: Update dependency recompose to v0.30.0 [Renovate Bot]

v21.6.6

Compare Source

(2021-08-31)

  • patch: Update dependency mermaid to ^8.12.0 [Renovate Bot]

v21.6.5

Compare Source

(2021-08-31)

  • Filters/SchemaSieve: Improve filter() return type inference [Thodoris Greasidis]

v21.6.4

Compare Source

(2021-08-31)

  • autoUI: Fix sorting non-string colums [Thodoris Greasidis]

v21.6.3

Compare Source

(2021-08-30)

  • Update Jest transformIgnorePatterns [JSReds]
  • patch: Update dependency json-e to ^4.4.1 [Renovate Bot]

v21.6.2

Compare Source

(2021-08-25)

  • patch: Update dependency monaco-editor-webpack-plugin to ^4.1.2 [Renovate Bot]

v21.6.1

Compare Source

(2021-08-25)

  • DataTypes: Add initial support for array types [Thodoris Greasidis]
  • Update snapshots [Thodoris Greasidis]

v21.6.0

Compare Source

(2021-08-19)

  • Add renovate packages rules [JSReds]

v21.5.6

Compare Source

(2021-08-13)

  • Replace tilde import to fix downstream error in TS 4.3.5 [Thodoris Greasidis]

v21.5.5

Compare Source

(2021-08-06)

  • Memoize tag differences in TagManagementModal [Matthew Yarmolinsky]

v21.5.4

Compare Source

(2021-08-05)

  • Fix infinite updating notice when applying no tag changes [Matthew Yarmolinsky]
toplenboren/simple-git-hooks

v2.6.1

Compare Source

  • Add the support for .cjs configs
styled-components/styled-components

v5.3.1

Compare Source

  • Fix forced server-side mode not triggering global styles (See #​3566)

  • Fix SSR collisions caused by insufficient hash inputs and reordering of groups on the client, which is a regression in v5.2.0 (See #​3563)

  • Fix dynamic creation React warning for React v18, backported to v5 by @​lynndylanhurley (See #​3564)

  • Add missing typeof window check when checking for duplicate instances of styled-components (See #​3553)

  • Prevent ServerStyleSheet from emitting empty style tags, which would cause issues in IE11 (See #​3555)

  • Support css tagged templates inside style objects, by @​roginfarrer and @​dvingo (See #​3469)

Microsoft/TypeScript

v4.4.2

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:


Configuration

📅 Schedule: "every weekend" (UTC).

🚦 Automerge: Enabled.

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

@renovate renovate bot added the dependencies label Sep 4, 2021
@renovate renovate bot force-pushed the renovate/external-non-major branch from 10f3d97 to 366a775 Compare September 4, 2021 20:36
@ghost ghost merged commit cad58a1 into master Sep 4, 2021
@ghost ghost deleted the renovate/external-non-major branch September 4, 2021 20:45
This pull request was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant