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

chore(deps): update all non-major dependencies #7603

Merged
merged 2 commits into from Apr 4, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 4, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@microsoft/api-extractor (source) ^7.19.5 -> ^7.20.0 age adoption passing confidence
@types/stylus ^0.48.36 -> ^0.48.37 age adoption passing confidence
@typescript-eslint/eslint-plugin ^5.16.0 -> ^5.17.0 age adoption passing confidence
@typescript-eslint/parser ^5.16.0 -> ^5.17.0 age adoption passing confidence
es-module-lexer ^0.10.4 -> ^0.10.5 age adoption passing confidence
node-forge ^1.3.0 -> ^1.3.1 age adoption passing confidence
playwright-chromium (source) ^1.20.1 -> ^1.20.2 age adoption passing confidence
pnpm (source) 6.32.3 -> 6.32.4 age adoption passing confidence
postcss-load-config ^3.1.3 -> ^3.1.4 age adoption passing confidence
prettier (source) 2.6.1 -> 2.6.2 age adoption passing confidence
react-refresh (source) ^0.11.0 -> ^0.12.0 age adoption passing confidence
tsconfck ^1.2.1 -> ^1.2.2 age adoption passing confidence

Release Notes

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.17.0

Compare Source

Features
  • eslint-plugin: [no-unused-vars] add destructuredArrayIgnorePattern options (#​4748) (6f8db8b)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.17.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

guybedford/es-module-lexer

v0.10.5

Compare Source

What's Changed

Full Changelog: guybedford/es-module-lexer@0.10.4...0.10.5

digitalbazaar/forge

v1.3.1

Compare Source

Fixes
  • RFC 3447 and RFC 8017 allow for optional DigestAlgorithm NULL parameters
    for sha* algorithms and require NULL paramters for md2 and md5
    algorithms.
Microsoft/playwright

v1.20.2

Compare Source

Highlights

This patch includes the following bug fixes:

https://github.com/microsoft/playwright/issues/13078 - [BUG] Extension required when importing other files with type="module"https://github.com/microsoft/playwright/issues/130999 - [BUG] beforeAll is called before each test (fullyParallelhttps://github.com/microsoft/playwright/issues/1320404 - [BUG] mask stalls the screenshot

Browser Versions

  • Chromium 101.0.4921.0
  • Mozilla Firefox 97.0.1
  • WebKit 15.4

This version was also tested against the following stable channels:

  • Google Chrome 99
  • Microsoft Edge 99
pnpm/pnpm

v6.32.4

Compare Source

Patch Changes
  • Show a friendly error message when it is impossible to get the current Git branch name during publish #​4488.
  • When checking if the lockfile is up-to-date, an empty dependenciesMeta field in the manifest should be satisfied by a not set field in the lockfile #​4463.
  • It should be possible to reference a workspace project that has no version specified in its package.json #​4487.
postcss/postcss-load-config

v3.1.4

Compare Source

Bug Fixes
  • deps: Add postcss to optional peer dependencies to fix types (#​233)
prettier/prettier

v2.6.2

Compare Source

diff

Fix LESS/SCSS format error (#​12536 by @​fisker)
// Input
.background-gradient(@​cut) {
    background: linear-gradient(
        to right,
        @​white 0%,
        @​white (@​cut - 0.01%),
        @​portal-background @​cut,
        @​portal-background 100%
    );
}

// Prettier 2.6.1
TypeError: Cannot read properties of undefined (reading 'endOffset')

// Prettier 2.6.2
.background-gradient(@​cut) {
  background: linear-gradient(
    to right,
    @​white 0%,
    @​white (@​cut - 0.01%),
    @​portal-background @​cut,
    @​portal-background 100%
  );
}
Update meriyah to fix several bugs (#​12567 by @​fisker, fixes in meriyah by @​3cp)

Fixes bugs when parsing following valid code:

foo(await bar());
const regex = /.*/ms;
const element = <p>{/w/.test(s)}</p>;
class A extends B {
  #privateMethod() {
    super.method();
  }
}
facebook/react

v0.12.0

Compare Source

React Core
Breaking Changes
  • key and ref moved off props object, now accessible on the element directly
  • React is now BSD licensed with accompanying Patents grant
  • Default prop resolution has moved to Element creation time instead of mount time, making them effectively static
  • React.__internals is removed - it was exposed for DevTools which no longer needs access
  • Composite Component functions can no longer be called directly - they must be wrapped with React.createFactory first. This is handled for you when using JSX.
New Features
  • Spread operator ({...}) introduced to deprecate this.transferPropsTo
  • Added support for more HTML attributes: acceptCharset, classID, manifest
Deprecations
  • React.renderComponent --> React.render
  • React.renderComponentToString --> React.renderToString
  • React.renderComponentToStaticMarkup --> React.renderToStaticMarkup
  • React.isValidComponent --> React.isValidElement
  • React.PropTypes.component --> React.PropTypes.element
  • React.PropTypes.renderable --> React.PropTypes.node
  • DEPRECATED React.isValidClass
  • DEPRECATED instance.transferPropsTo
  • DEPRECATED Returning false from event handlers to preventDefault
  • DEPRECATED Convenience Constructor usage as function, instead wrap with React.createFactory
  • DEPRECATED use of key={null} to assign implicit keys
Bug Fixes
  • Better handling of events and updates in nested results, fixing value restoration in "layered" controlled components
  • Correctly treat event.getModifierState as case sensitive
  • Improved normalization of event.charCode
  • Better error stacks when involving autobound methods
  • Removed DevTools message when the DevTools are installed
  • Correctly detect required language features across browsers
  • Fixed support for some HTML attributes:
    • list updates correctly now
    • scrollLeft, scrollTop removed, these should not be specified as props
  • Improved error messages
React With Addons
New Features
  • React.addons.batchedUpdates added to API for hooking into update cycle
Breaking Changes
  • React.addons.update uses assign instead of copyProperties which does hasOwnProperty checks. Properties on prototypes will no longer be updated correctly.
Bug Fixes
  • Fixed some issues with CSS Transitions
JSX
Breaking Changes
  • Enforced convention: lower case tag names are always treated as HTML tags, upper case tag names are always treated as composite components
  • JSX no longer transforms to simple function calls
New Features
  • @jsx React.DOM no longer required
  • spread ({...}) operator introduced to allow easier use of props
Bug Fixes
  • JSXTransformer: Make sourcemaps an option when using APIs directly (eg, for react-rails)
dominikg/tsconfck

v1.2.2

Compare Source

Bug Fixes
  • find-all: prevent errors for inaccessible or deleted directories (#​52) (e1e9b28)

Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

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

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Apr 4, 2022
@bluwy
Copy link
Member

bluwy commented Apr 4, 2022

Looks like this could break plugin-react since react-refresh now defines exports field, which would fail for

'react-refresh/cjs/react-refresh-runtime.development.js'

and

await loadPlugin('react-refresh/babel.js'),

The latter could be easily changed to remove the .js part, but the former now requires importing via react-refresh/runtime (which in turn imports the cjs path conditionally). cc @aleclarson

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a8465a6 to e4e0144 Compare April 4, 2022 10:26
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e4e0144 to 9af611a Compare April 4, 2022 13:24
@bluwy
Copy link
Member

bluwy commented Apr 4, 2022

Pushed ad462d9 to handle the changes above. This should be good now.

Also with the tsconfck update, it should close #5765 too

@Niputi Niputi linked an issue Apr 4, 2022 that may be closed by this pull request
7 tasks
@patak-dev patak-dev merged commit fc51a15 into main Apr 4, 2022
@patak-dev patak-dev deleted the renovate/all-minor-patch branch April 4, 2022 18:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dev sever fails to start when inaccessible paths exist in project root
4 participants