Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 17, 2021

This PR contains the following updates:

Package Change Age Confidence
@apollo/react-ssr 3.1.5 -> 4.0.0 age confidence
@emotion/core (source) 10.1.1 -> 11.0.0 age confidence
@emotion/styled (source) 10.0.27 -> 11.14.1 age confidence
apollo-server-express (source) 2.19.2 -> 3.13.0 age confidence
bs-css-emotion 2.2.0 -> 7.1.1 age confidence
cross-fetch 3.1.5 -> 4.1.0 age confidence
dotenv 8.2.0 -> 17.2.3 age confidence
emoji-datasource 6.0.0 -> 16.0.0 age confidence
emotion (source) 10.0.27 -> 11.0.0 age confidence
emotion-server (source) 10.0.27 -> 11.0.0 age confidence
emotion-theming (source) 10.0.27 -> 11.0.0 age confidence
execa 5.0.0 -> 9.6.0 age confidence
graphql 15.4.0 -> 16.12.0 age confidence
helmet (source) 4.4.1 -> 8.1.0 age confidence
ioredis 4.19.4 -> 5.8.2 age confidence
lru-cache 6.0.0 -> 11.2.2 age confidence
newrelic 7.1.0 -> 13.6.2 age confidence
open 7.3.1 -> 10.2.0 age confidence
react (source) 17.0.1 -> 19.2.0 age confidence
react-dom (source) 17.0.1 -> 19.2.0 age confidence
react-spring 8.0.27 -> 10.0.3 age confidence
sanitize.css 12.0.1 -> 13.0.0 age confidence
screenfull 5.1.0 -> 6.0.2 age confidence

Release Notes

apollographql/react-apollo (@​apollo/react-ssr)

v4.0.0

Compare Source

⚠️ Deprecation Notice ⚠️

Please note that this is the final version of all React Apollo packages, and that this repository is going to be archived. React Apollo functionality is now directly available from @apollo/client >= 3. While using the @apollo/react-X packages will still work, we recommend using the following imports from @apollo/client directly instead:

  • old: @apollo/react-components --> new: @apollo/client/react/components
  • old: @apollo/react-hoc --> new: @apollo/client/react/hoc
  • old: @apollo/react-ssr --> new: @apollo/client/react/ssr
  • old: @apollo/react-testing --> new: @apollo/client/testing
  • old: @apollo/react-hooks --> new: @apollo/client
Breaking Changes
  • React Apollo 4.0.0 is dependent on @apollo/client >= 3. If you are using apollo-client 2.x and are not ready to update to @apollo/client, please use React Apollo 3.x.

  • The react-apollo package has been fully removed. Please use @apollo/client or @apollo/react-X packages directly.

    @​hwillson in #​4037

  • Due to changes made in Apollo Client, the previous SSR testing pattern of:

    return getDataFromTree(app).then(() => {
      const markup = ReactDOM.renderToString(app);
      expect(markup).toMatch(/Waldo/);
    });

    will no longer work (ReactDOM.renderToString(app) will just return the initial loading state of the component under test). Instead, we can leverage the markup returned when getDataFromTree's Promise resolves:

    return getDataFromTree(app).then((markup) => {
      expect(markup).toMatch(/Waldo/);
    });
  • We are no longer building UMD versions of React Apollo.

emotion-js/emotion (@​emotion/core)

v11.0.0

Compare Source

Major Changes
  • b8476e08 #​1675 Thanks @​mitchellhamilton! - Rename @emotion/core to @emotion/react. Please change any imports of @emotion/core to import @emotion/react or use the @emotion/pkg-renaming ESLint rule from @emotion/eslint-plugin.

v10.3.1

Compare Source

Patch Changes
  • #​2576 33c01578 Thanks @​Methuselah96! - Export Keyframes type to avoid TypeScript inserting import("@​emotion/serialize").Keyframes references into declaration files emitted based on a source files exporting keyframes result. This avoids issues with strict package managers that don't allow accessing undeclared dependencies.

v10.3.0

Compare Source

Minor Changes
  • #​2566 122e9f11 Thanks @​eps1lon, @​Andarist! - Fixed hydration mismatches if React.useId (an upcoming API in React 18) is used within a tree below our components.

  • #​2560 b5a26619 Thanks @​eps1lon! - Dropped usage of a deprecated SFC React type in favor of FC. The FC type has been introduced in @types/react@16.7.2 so this version of this package is now a minimum requirement for TypeScript users.

apollographql/apollo-server (apollo-server-express)

v3.13.0

Compare Source

v3.12.1

Compare Source

v3.12.0

Compare Source

v3.11.1

Compare Source

v3.11.0

Compare Source

v3.10.4

Compare Source

v3.10.3

Compare Source

v3.10.2

Compare Source

v3.10.1

Compare Source

v3.10.0

Compare Source

v3.9.0

Compare Source

v3.8.2

Compare Source

v3.8.1

Compare Source

v3.8.0

Compare Source

v3.7.0

Compare Source

v3.6.8

Compare Source

v3.6.7

Compare Source

v3.6.6

Compare Source

v3.6.5

Compare Source

v3.6.4

Compare Source

v3.6.3

Compare Source

v3.6.2

Compare Source

v3.6.1

Compare Source

v3.6.0

Compare Source

v3.5.0

Compare Source

v3.4.1

Compare Source

v3.4.0

Compare Source

v3.3.0

Compare Source

v3.2.0

Compare Source

v3.1.2

Compare Source

v3.1.1

Compare Source

v3.1.0

Compare Source

v3.0.2

Compare Source

v3.0.1

Compare Source

v3.0.0

Compare Source

v2.26.2

Compare Source

v2.26.1

Compare Source

v2.26.0

Compare Source

v2.25.4

Compare Source

v2.25.3

Compare Source

v2.25.2

Compare Source

v2.25.1

Compare Source

v2.25.0

Compare Source

v2.24.1

Compare Source

v2.24.0

Compare Source

v2.23.0

Compare Source

v2.22.2

Compare Source

v2.22.1

Compare Source

v2.22.0

Compare Source

v2.21.2

Compare Source

v2.21.1

Compare Source

v2.21.0

Compare Source

v2.20.0

Compare Source

reasonml-labs/bs-css (bs-css-emotion)

v7.1.1

Compare Source

  • Fix compilation errors for Rescript v12

bs-css-dom@​6.1.1, bs-css-emotion@​7.1.1, bs-css-fela@​5.1.1

v7.1.0

Compare Source

  • Implement colorScheme function
  • Add lightDark function to Color.t
  • Add Var in Color.t

bs-css-dom@​6.1.0, bs-css-emotion@​7.1.0, bs-css-fela@​5.1.0

v7.0.1

Compare Source

  • BREAKING CHANGE - Fix spelling error with #substract - #​278

  • Add min/max in PercentageLengthCalc

bs-css-dom@​6.0.1, bs-css-emotion@​7.0.1, bs-css-fela@​5.0.1

v7.0.0

Compare Source

v6.0.2

Compare Source

The calc function is now defined outside the Length type.
If you find missing usages, enter a github issue.

  • BREAKING CHANGE - Reworked the calc function - #​271

  • BREAKING CHANGE - Refactor time as Time, not int by @​davesnx - #​264

  • Add missing quotes to contentRule if not present - #​263

bs-css-dom@​5.0.2, bs-css-emotion@​6.0.2, bs-css-fela@​4.0.2

v6.0.1

Compare Source

  • BREAKING CHANGE - Fix spelling error with #substract - #​278

  • Add min/max in PercentageLengthCalc

bs-css-dom@​6.0.1, bs-css-emotion@​7.0.1, bs-css-fela@​5.0.1

v6.0.0

Compare Source

  • BREAKING CHANGE - use an array for areas type

  • BREAKING CHANGE - rename Geomety to Geometry (missing r)

  • Make height and width respect all the interface by @​davesnx - #​262

  • Add missing values by @​davesnx - #​257

  • Update README example to use CssJs and Rescript syntax by hugihlynsson

bs-css-dom@​4.0.0, bs-css-emotion@​5.0.0, bs-css-fela@​3.0.0

v5.2.0

bs-css-dom@​4.2.0, bs-css-emotion@​5.2.0, bs-css-fela@​3.2.0

v5.1.0

  • Implement colorScheme function
  • Add lightDark function to Color.t
  • Add Var in Color.t

bs-css-dom@​6.1.0, bs-css-emotion@​7.1.0, bs-css-fela@​5.1.0

v5.0.0

  • BREAKING CHANGE - use an array for areas type

  • BREAKING CHANGE - rename Geomety to Geometry (missing r)

  • Make height and width respect all the interface by @​davesnx - #​262

  • Add missing values by @​davesnx - #​257

  • Update README example to use CssJs and Rescript syntax by hugihlynsson

bs-css-dom@​4.0.0, bs-css-emotion@​5.0.0, bs-css-fela@​3.0.0

v4.3.1

  • Convert bs-css files to Rescript - #​260

bs-css-dom@​3.3.1, bs-css-emotion@​4.3.1, bs-css-fela@​2.3.1

v4.3.0

bs-css-dom@​3.3.0, bs-css-emotion@​4.3.0, bs-css-fela@​2.3.0

v4.2.0

bs-css-dom@​4.2.0, bs-css-emotion@​5.2.0, bs-css-fela@​3.2.0

v4.1.1

bs-css-dom@​3.1.1, bs-css-emotion@​4.1.1, bs-css-fela@​2.1.1

v4.1.0

bs-css-dom@​4.1.0, bs-css-emotion@​5.1.0, bs-css-fela@​3.1.0

v4.0.2

The calc function is now defined outside the Length type.
If you find missing usages, enter a github issue.

  • BREAKING CHANGE - Reworked the calc function - #​271

  • BREAKING CHANGE - Refactor time as Time, not int by @​davesnx - #​264

  • Add missing quotes to contentRule if not present - #​263

bs-css-dom@​5.0.2, bs-css-emotion@​6.0.2, bs-css-fela@​4.0.2

v4.0.1

  • BREAKING CHANGE - use rescript and @​rescript/react

  • BREAKING CHANGE - for better consistency in CssJs, use array instead of list in gradient definition

  • BREAKING CHANGE - for better consistency in CssJs, uncurry selector and media functions - #​244

  • Fix global injection in legacy mode - #​238

  • Add borderRadius4 by @​davesnx - #​247

  • Add `start in TextAlign by @​davesnx - #​246

bs-css-dom@​3.0.1, bs-css-emotion@​4.0.1, bs-css-fela@​2.0.1

v4.0.0

  • BREAKING CHANGE - use an array for areas type

  • BREAKING CHANGE - rename Geomety to Geometry (missing r)

  • Make height and width respect all the interface by @​davesnx - #​262

  • Add missing values by @​davesnx - #​257

  • Update README example to use CssJs and Rescript syntax by hugihlynsson

bs-css-dom@​4.0.0, bs-css-emotion@​5.0.0, bs-css-fela@​3.0.0

v3.0.0

  • BREAKING CHANGE - use an array for areas type

  • BREAKING CHANGE - rename Geomety to Geometry (missing r)

  • Make height and width respect all the interface by @​davesnx - #​262

  • Add missing values by @​davesnx - #​257

  • Update README example to use CssJs and Rescript syntax by hugihlynsson

bs-css-dom@​4.0.0, bs-css-emotion@​5.0.0, bs-css-fela@​3.0.0

v2.5.1

  • Fix test helper dependency - #​237

bs-css-dom@​2.5.1, bs-css-emotion@​2.5.1, bs-css-fela@​1.0.1

v2.5.0

  • BREAKING CHANGE bs-css: updated the Css_Core API to accept renderer. it should have no impact on existing implementations.
  • Added bs-css-fela with a dependency to the fela library

bs-css-dom@​2.5.0, bs-css-emotion@​2.5.0, bs-css-fela@​1.0.0

v2.4.1

  • Move react dependency out of bs-css-emotion
  • Use peer dependencies in bs-css-dom
  • Fix broken link to rei (doc) by @​abenoit - #​234
  • Add support for focus-visible pseudo-class by @​TomiS - #​233

bs-css-dom@​2.4.1, bs-css-emotion@​2.4.1

v2.4.0

bs-css-dom@​2.4.0, bs-css-emotion@​2.4.0

v2.3.0

bs-css-dom@​3.3.0, bs-css-emotion@​4.3.0, bs-css-fela@​2.3.0

lquixada/cross-fetch (cross-fetch)

v4.1.0

Compare Source

Features
Bug Fixes

v4.0.0

Compare Source

v3.2.0

Compare Source

What's Changed

FEATURES

  • Upgraded node-fetch from 2.6.12 to 2.7.0. Please refer to node-fetch release notes for features and bug fixes.
  • Upgraded whatwg-fetch from 3.0.0 to 3.6.20. Please refer to whatwg-fetch release notes for features and bug fixes.

v3.1.8

Compare Source

What's Changed

  • Restored caret range to node-fetch version for automatic feature and fix updates.

Full Changelog: lquixada/cross-fetch@v3.1.7...v3.1.8

v3.1.7

Compare Source

What's Changed

  • Updated node-fetch version to 2.6.12

Full Changelog: lquixada/cross-fetch@v3.1.6...v3.1.7

v3.1.6

Compare Source

What's Changed

  • Updated node-fetch version to 2.6.11
  • Added caret range to node-fetch version for automatic feature and fix updates.

Full Changelog: lquixada/cross-fetch@v3.1.5...v3.1.6

motdotla/dotenv (dotenv)

v17.2.3

Compare Source

Changed
  • Fixed typescript error definition (#​912)

v17.2.2

Compare Source

Added
  • 🙏 A big thank you to new sponsor Tuple.app - the premier screen sharing app for developers on macOS and Windows. Go check them out. It's wonderful and generous of them to give back to open source by sponsoring dotenv. Give them some love back.

v17.2.1

Compare Source

Changed
  • Fix clickable tip links by removing parentheses (#​897)

v17.2.0

Compare Source

Added
  • Optionally specify DOTENV_CONFIG_QUIET=true in your environment or .env file to quiet the runtime log (#​889)
  • Just like dotenv any DOTENV_CONFIG_ environment variables take precedence over any code set options like ({quiet: false})

v17.1.0

Compare Source

Added
  • Add additional security and configuration tips to the runtime log (#​884)
  • Dim the tips text from the main injection information text
const TIPS = [
  '🔐 encrypt with dotenvx: https://dotenvx.com',
  '🔐 prevent committing .env to code: https://dotenvx.com/precommit',
  '🔐 prevent building .env in docker: https://dotenvx.com/prebuild',
  '🛠️  run anywhere with `dotenvx run -- yourcommand`',
  '⚙️  specify custom .env file path with { path: \'/custom/path/.env\' }',
  '⚙️  enable debug logging with { debug: true }',
  '⚙️  override existing env vars with { override: true }',
  '⚙️  suppress all logs with { quiet: true }',
  '⚙️  write to custom object with { processEnv: myObject }',
  '⚙️  load multiple .env files with { path: [\'.env.local\', \'.env\'] }'
]

v17.0.1

Compare Source

Changed
  • Patched injected log to count only populated/set keys to process.env (#​879)

v17.0.0

Compare Source

Changed
  • Default quiet to false - informational (file and keys count) runtime log message shows by default (#​875)

v16.6.1

Compare Source

Changed
  • Default quiet to true – hiding the runtime log message (#​874)
  • NOTICE: 17.0.0 will be released with quiet defaulting to false. Use config({ quiet: true }) to suppress.
  • And check out the new dotenvx. As coding workflows evolve and agents increasingly handle secrets, encrypted .env files offer a much safer way to deploy both agents and code together with secure secrets. Simply switch require('dotenv').config() for require('@​dotenvx/dotenvx').config().

v16.6.0

Compare Source

Added
  • Default log helpful message [dotenv@16.6.0] injecting env (1) from .env (#​870)
  • Use { quiet: true } to suppress
  • Aligns dotenv more closely with dotenvx.

v16.5.0

Compare Source

Added
  • 🎉 Added new sponsor Graphite - the AI developer productivity platform helping teams on GitHub ship higher quality software, faster.

[!TIP]
Become a sponsor

The dotenvx README is viewed thousands of times DAILY on GitHub and NPM.
Sponsoring dotenv is a great way to get in front of developers and give back to the developer community at the same time.

Changed
  • Remove _log method. Use _debug #​862

v16.4.7

Compare Source

Changed
  • Ignore .tap folder when publishing. (oops, sorry about that everyone. - @​motdotla) #​848

v16.4.6

Compare Source

Changed
  • Clean up stale dev dependencies #​847
  • Various README updates clarifying usage and alternative solutions using dotenvx

v16.4.5

Compare Source

Changed
  • 🐞 Fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #​814

v16.4.4

Compare Source

Changed
  • 🐞 Replaced chaining operator ?. with old school && (fixing node 12 failures) #​812

v16.4.3

Compare Source

Changed
  • 🐞 Fix recent regression when using path option. return to historical behavior: do not attempt to auto find .env if path set. (regression was introduced in 16.4.3) #​814

v16.4.2

Compare Source

Changed

v16.4.1

Compare Source

  • Patch support for array as path option #​797

v16.4.0

Compare Source

  • Add error.code to error messages around .env.vault decryption handling #​795
  • Add ability to find .env.vault file when filename(s) passed as an array #​784

v16.3.2

Compare Source

Added
  • Add debug message when no encoding set #​735
Changed
  • Fix output typing for populate #​792
  • Use subarray instead of slice #​793

v16.3.1

Compare Source

Added
  • Add missing type definitions for processEnv and DOTENV_KEY options. #​756

v16.3.0

Compare Source

Added
  • Optionally pass DOTENV_KEY to options rather than relying on process.env.DOTENV_KEY. Defaults to process.env.DOTENV_KEY #​754

v16.2.0

Compare Source

Added
  • Optionally write to your own target object rather than process.env. Defaults to process.env. #​753
  • Add import type URL to types file #​751

v16.1.4

Compare Source

Added
  • Added .github/ to .npmignore #​747

v16.1.3

[Compare Source](https://redirect.github.com/motdotla/dote


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 17, 2021 15:45 Inactive
@renovate renovate bot changed the title feat(deps): update all dependencies (major) (major) feat(deps): update all dependencies (major) Jan 17, 2021
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 16b951f to 77664c5 Compare January 19, 2021 10:36
@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 19, 2021 10:36 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 77664c5 to 61d0a30 Compare January 19, 2021 10:40
@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 19, 2021 10:40 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 61d0a30 to fbb8aea Compare January 20, 2021 21:08
@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 20, 2021 21:08 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from fbb8aea to 8dc1e22 Compare January 22, 2021 08:04
@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 22, 2021 08:04 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 8dc1e22 to 48e475d Compare January 31, 2021 09:25
@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 31, 2021 09:26 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 48e475d to a4ea505 Compare January 31, 2021 09:34
@simonkberg simonkberg temporarily deployed to simon-pr-1180 January 31, 2021 09:35 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from a4ea505 to eeb604e Compare February 2, 2021 22:11
@simonkberg simonkberg temporarily deployed to simon-pr-1180 February 2, 2021 22:11 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from eeb604e to ee10639 Compare February 6, 2021 12:03
@simonkberg simonkberg temporarily deployed to simon-pr-1180 February 6, 2021 12:03 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from ee10639 to d2a038d Compare March 2, 2021 12:20
@simonkberg simonkberg temporarily deployed to simon-pr-1180 March 2, 2021 12:20 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from d2a038d to e9e9d34 Compare March 2, 2021 15:05
@simonkberg simonkberg temporarily deployed to simon-pr-1180 March 2, 2021 15:05 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from e9e9d34 to 956246c Compare March 3, 2021 08:46
@simonkberg simonkberg temporarily deployed to simon-pr-1180 March 3, 2021 08:46 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 956246c to f63da38 Compare March 18, 2021 13:09
@simonkberg simonkberg temporarily deployed to simon-pr-1180 March 18, 2021 13:10 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from f63da38 to c99a7f0 Compare March 21, 2021 17:13
@simonkberg simonkberg temporarily deployed to simon-pr-1180 March 21, 2021 17:14 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from c99a7f0 to ec1eb6c Compare March 23, 2021 12:45
@simonkberg simonkberg temporarily deployed to simon-pr-1180 March 23, 2021 12:45 Inactive
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 86153a2 to 3252850 Compare June 4, 2025 19:00
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 8 times, most recently from c0b45f0 to 48ebd35 Compare July 1, 2025 16:07
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 5 times, most recently from fc125d2 to b507cf5 Compare July 14, 2025 13:57
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from b507cf5 to 6a186ec Compare July 16, 2025 12:11
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 6a186ec to 0c6ee12 Compare August 8, 2025 03:55
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 45ffda3 to d3b279b Compare August 23, 2025 23:41
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from b82c832 to 8e8acbe Compare September 8, 2025 17:09
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 8e8acbe to f60d505 Compare September 11, 2025 03:35
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from f60d505 to 659b4e2 Compare October 6, 2025 12:07
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 659b4e2 to 1a86638 Compare November 1, 2025 07:54
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 1a86638 to 2143b2c Compare November 1, 2025 16:44
@renovate renovate bot changed the title feat(deps): update all dependencies (major) (major) feat(deps): update all dependencies (major) (major) - autoclosed Nov 4, 2025
@renovate renovate bot closed this Nov 4, 2025
@renovate renovate bot deleted the renovate/major-all-major-dependencies branch November 4, 2025 06:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant