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 #31

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

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
@atom-ide-community/nuclide-commons-atom (source) 0.8.2 -> 0.8.3 age adoption passing confidence
@atom-ide-community/nuclide-debugger-common (source) 0.8.2 -> 0.8.3 age adoption passing confidence
atom-package-deps (source) ^6.0.0 -> ^8.0.0 age adoption passing confidence
react (source) 16.6.3 -> 18.2.0 age adoption passing confidence
vscode-chrome-debug-core ^3.20.2 -> ^6.0.0 age adoption passing confidence
vscode-chrome-debug-core 3.17.10 -> 6.8.11 age adoption passing confidence
vscode-debugadapter 1.32.1 -> 1.51.0 age adoption passing confidence
vscode-debugadapter 1.24.0 -> 1.51.0 age adoption passing confidence
vscode-nls ^2.0.2 -> ^5.0.0 age adoption passing confidence

Release Notes

steelbrain/package-deps (atom-package-deps)

v8.0.0

Compare Source

  • Potentially unstable: Minify the output to reduce size to ~10kb from ~30kb. (Thanks @​aminya)

Although none of the APIs have changed, this change may be potentially unstable, so marking it as semver-major
so consumers have to opt-in to this.

v7.2.3

Compare Source

v7.2.2

Compare Source

v7.2.1

Compare Source

v7.2.0

Compare Source

  • Add Typescript definitions
  • Fix installing dependencies in CI on Windows
  • Allow purely string entries for name in dependencies

v7.1.0

Compare Source

  • Readd ability to hide user prompt

v7.0.3

Compare Source

  • Fix support for notifications-plus package (Thanks @​UziTech)

v7.0.2

Compare Source

  • Fix a bug where error would be thrown if user already had one of the packages installed (Thanks @​lierdakil)

v7.0.1

Compare Source

  • Fix a dev dependency accidentally slipping into post-install script

v7.0.0

Compare Source

  • BREAKING Change function signature to get rid of promptUser
  • BREAKING Change format of package-deps in manifest from "my-name:my-version" to be { "name": "my-name", "minimumVersion": "my-version" }
  • BREAKING Instead of accepting a semver-range for version, you can now only specify a minimum version in x.y.z format, instead of for example >=2
  • Add support for optional/group packages where users only have to install one of many, and are given a choice at runtime. Signature becomes Dependency[][] instead of Dependency[]
  • Add support for using through CLI for CI and similar purposes
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.

v17.0.2

Compare Source

React DOM

v17.0.1

Compare Source

React DOM

v17.0.0

Compare Source

Today, we are releasing React 17!

Learn more about React 17 and how to update to it on the official React blog.

React
React DOM
React DOM Server
React Test Renderer
Concurrent Mode (Experimental)

v16.14.0

Compare Source

React

v16.13.1

Compare Source

React DOM
  • Fix bug in legacy mode Suspense where effect clean-up functions are not fired. This only affects users who use Suspense for data fetching in legacy mode, which is not technically supported. (@​acdlite in #​18238)
  • Revert warning for cross-component updates that happen inside class render lifecycles (componentWillReceiveProps, shouldComponentUpdate, and so on). (@​gaearon in #​18330)

v16.13.0

Compare Source

React
React DOM
Concurrent Mode (Experimental)

v16.12.0

Compare Source

React DOM
React Is

v16.11.0

Compare Source

React DOM
  • Fix mouseenter handlers from firing twice inside nested React containers. @​yuanoook in #​16928
  • Remove unstable_createRoot and unstable_createSyncRoot experimental APIs. (These are available in the Experimental channel as createRoot and createSyncRoot.) (@​acdlite in #​17088)

v16.10.2

Compare Source

React DOM
  • Fix regression in react-native-web by restoring order of arguments in event plugin extractors (@​necolas in #​16978)

v16.10.1

Compare Source

React DOM
  • Fix regression in Next.js apps by allowing Suspense mismatch during hydration to silently proceed (@​sebmarkbage in #​16943)

v16.10.0

Compare Source

React DOM
Scheduler (Experimental)
  • Improve queue performance by switching its internal data structure to a min binary heap. (@​acdlite in #​16245)
  • Use postMessage loop with short intervals instead of attempting to align to frame boundaries with requestAnimationFrame. (@​acdlite in #​16214)
useSubscription
  • Avoid tearing issue when a mutation happens and the previous update is still in progress. (@​bvaughn in #​16623)

v16.9.0

Compare Source

React
  • Add <React.Profiler> API for gathering performance measurements programmatically. (@​bvaughn in #​15172)
  • Remove unstable_ConcurrentMode in favor of unstable_createRoot. (@​acdlite in #​15532)
React DOM
React DOM Server
React Test Utilities and Test Renderer
ESLint Plugin: React Hooks

v16.8.6

Compare Source

React DOM

v16.8.5

Compare Source

React DOM
React DOM Server
React Shallow Renderer

v16.8.4

Compare Source

React DOM and other renderers
  • Fix a bug where DevTools caused a runtime error when inspecting a component that used a useContext hook. (@​bvaughn in #​14940)

v16.8.3

Compare Source

React DOM
React DOM Server
  • Unwind the context stack when a stream is destroyed without completing, to prevent incorrect values during a subsequent render. (@​overlookmotel in #​14706)
ESLint Plugin for React Hooks

v16.8.2

Compare Source

React DOM
React Test Utils and React Test Renderer

v16.8.1

Compare Source

React DOM and React Test Renderer
React Test Utils

v16.8.0

Compare Source

React
React DOM
React Test Renderer and Test Utils
  • Support Hooks in the shallow renderer. (@​trueadm in #​14567)
  • Fix wrong state in shouldComponentUpdate in the presence of getDerivedStateFromProps for Shallow Renderer. (@​chenesan in #​14613)
  • Add ReactTestRenderer.act() and ReactTestUtils.act() for batching updates so that tests more closely match real behavior. (@​threepointone in #​14744)
ESLint Plugin: React Hooks

v16.7.0

Compare Source

React DOM
Scheduler (Experimental)
  • Post to MessageChannel instead of window. (@​acdlite in [#&#82

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, check this box

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 9064209 to ba76134 Compare July 26, 2021 14:25
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 0b9a9b1 to 5a71c61 Compare June 19, 2023 10:27
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 93f2834 to 8ae7fd3 Compare July 9, 2023 11:48
@renovate
Copy link
Contributor Author

renovate bot commented Jul 19, 2023

⚠ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: src/debugger/node/VendorLib/vscode-node-debug2/yarn.lock
[15:53:05.954] INFO (9): Installing tool node v6.17.1...
npm ERR! weird error 1
[15:53:10.882] FATAL (9): Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-JhykMS --silent
    err: {
      "type": "Error",
      "message": "Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-JhykMS --silent",
      "stack":
          Error: Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-JhykMS --silent
              at makeError (/snapshot/dist/containerbase-cli.js:43662:13)
              at handlePromise (/snapshot/dist/containerbase-cli.js:44561:29)
              at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
              at async InstallNodeService.updateNodeGyp (/snapshot/dist/containerbase-cli.js:50682:5)
              at async InstallNodeService.install (/snapshot/dist/containerbase-cli.js:50836:7)
              at async InstallToolService.execute (/snapshot/dist/containerbase-cli.js:51325:11)
              at async InstallToolShortCommand.execute (/snapshot/dist/containerbase-cli.js:51651:14)
              at async InstallToolShortCommand.validateAndExecute (/snapshot/dist/containerbase-cli.js:1344:26)
              at async _Cli.run (/snapshot/dist/containerbase-cli.js:2457:22)
              at async _Cli.runExit (/snapshot/dist/containerbase-cli.js:2465:28)
      "shortMessage": "Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-JhykMS --silent",
      "command": "/opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-JhykMS --silent",
      "escapedCommand": "\"/opt/containerbase/tools/node/6.17.1/bin/npm\" explore npm -g --prefix \"/opt/containerbase/tools/node/6.17.1\" -- npm install \"node-gyp@latest\" --no-audit --cache \"/tmp/containerbase-npm-JhykMS\" --silent",
      "exitCode": 1,
      "cwd": "/opt/containerbase",
      "failed": true,
      "timedOut": false,
      "isCanceled": false,
      "killed": false
    }
[15:53:11.030] INFO (9): Installed tool node with errors in 5s.

File name: dist/debugger/node/VendorLib/vscode-node-debug2/yarn.lock
[15:53:12.196] INFO (9): Installing tool node v6.17.1...
npm ERR! weird error 1
[15:53:17.795] FATAL (9): Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-290wvT --silent
    err: {
      "type": "Error",
      "message": "Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-290wvT --silent",
      "stack":
          Error: Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-290wvT --silent
              at makeError (/snapshot/dist/containerbase-cli.js:43662:13)
              at handlePromise (/snapshot/dist/containerbase-cli.js:44561:29)
              at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
              at async InstallNodeService.updateNodeGyp (/snapshot/dist/containerbase-cli.js:50682:5)
              at async InstallNodeService.install (/snapshot/dist/containerbase-cli.js:50836:7)
              at async InstallToolService.execute (/snapshot/dist/containerbase-cli.js:51325:11)
              at async InstallToolShortCommand.execute (/snapshot/dist/containerbase-cli.js:51651:14)
              at async InstallToolShortCommand.validateAndExecute (/snapshot/dist/containerbase-cli.js:1344:26)
              at async _Cli.run (/snapshot/dist/containerbase-cli.js:2457:22)
              at async _Cli.runExit (/snapshot/dist/containerbase-cli.js:2465:28)
      "shortMessage": "Command failed with exit code 1: /opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-290wvT --silent",
      "command": "/opt/containerbase/tools/node/6.17.1/bin/npm explore npm -g --prefix /opt/containerbase/tools/node/6.17.1 -- npm install node-gyp@latest --no-audit --cache /tmp/containerbase-npm-290wvT --silent",
      "escapedCommand": "\"/opt/containerbase/tools/node/6.17.1/bin/npm\" explore npm -g --prefix \"/opt/containerbase/tools/node/6.17.1\" -- npm install \"node-gyp@latest\" --no-audit --cache \"/tmp/containerbase-npm-290wvT\" --silent",
      "exitCode": 1,
      "cwd": "/opt/containerbase",
      "failed": true,
      "timedOut": false,
      "isCanceled": false,
      "killed": false
    }
[15:53:18.289] INFO (9): Installed tool node with errors in 6s.

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.

0 participants