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 all major dependencies (major) #17

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 6, 2020

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@juggle/resize-observer (source) 2.5.0 -> 3.4.0 age adoption passing confidence dependencies major
@​types/autoprefixer 9.6.1 -> 10.2.0 age adoption passing confidence devDependencies major
@types/dotenv-webpack (source) 1.7.0 -> 7.0.7 age adoption passing confidence devDependencies major
@types/eslint (source) 6.1.3 -> 9.6.1 age adoption passing confidence devDependencies major
@types/eslint-plugin-prettier (source) 2.2.0 -> 3.1.3 age adoption passing confidence devDependencies major
@types/node (source) 11.15.3 -> 20.16.5 age adoption passing confidence devDependencies major
@​types/prettier 1.19.0 -> 3.0.0 age adoption passing confidence devDependencies major
@​types/rimraf 2.0.3 -> 4.0.5 age adoption passing confidence devDependencies major
@types/styled-components (source) 4.4.1 -> 5.1.34 age adoption passing confidence devDependencies major
@types/webpack (source) 4.41.0 -> 5.28.5 age adoption passing confidence devDependencies major
@​types/webpack-dev-server 3.9.0 -> 4.7.2 age adoption passing confidence devDependencies major
@​types/webpack-merge 4.1.5 -> 5.0.0 age adoption passing confidence devDependencies major
@​types/workbox-webpack-plugin 4.1.0 -> 6.0.0 age adoption passing confidence devDependencies major
actions/setup-node v1 -> v4 age adoption passing confidence action major
autoprefixer 9.7.3 -> 10.4.20 age adoption passing confidence devDependencies major
babel-loader 8.0.6 -> 9.2.1 age adoption passing confidence devDependencies major
copy-webpack-plugin 5.1.1 -> 12.0.2 age adoption passing confidence devDependencies major
dotenv-webpack 1.7.0 -> 8.1.0 age adoption passing confidence devDependencies major
eslint-loader 3.0.3 -> 4.0.2 age adoption passing confidence devDependencies major
file-loader 4.3.0 -> 6.2.0 age adoption passing confidence devDependencies major
fork-ts-checker-webpack-plugin 3.1.1 -> 9.0.2 age adoption passing confidence devDependencies major
html-loader 0.5.5 -> 5.1.0 age adoption passing confidence devDependencies major
html-webpack-plugin 3.2.0 -> 5.6.0 age adoption passing confidence devDependencies major
image-webpack-loader 6.0.0 -> 8.1.0 age adoption passing confidence devDependencies major
jest-styled-components 6.3.4 -> 7.2.0 age adoption passing confidence devDependencies major
peaceiris/actions-gh-pages v3 -> v4 age adoption passing confidence action major
react-redux 7.1.3 -> 9.1.2 age adoption passing confidence dependencies major
react-three-fiber 4.0.0-beta.6 -> 6.0.13 age adoption passing confidence dependencies major
react-use-gesture (source) 6.0.14 -> 9.1.3 age adoption passing confidence dependencies major
redux (source) 4.0.4 -> 5.0.1 age adoption passing confidence dependencies major
resolve-url-loader (source) 3.1.1 -> 5.0.0 age adoption passing confidence devDependencies major
rimraf 3.0.0 -> 6.0.1 age adoption passing confidence devDependencies major
styled-components (source) 4.4.1 -> 6.1.13 age adoption passing confidence dependencies major
tsconfig-paths-webpack-plugin 3.2.0 -> 4.1.0 age adoption passing confidence devDependencies major
typescript (source) 4.1.3 -> 5.6.2 age adoption passing confidence devDependencies major
ubuntu 18.04 -> 22.04 age adoption passing confidence github-runner major
webpack 4.41.3 -> 5.94.0 age adoption passing confidence devDependencies major
webpack-cli (source) 3.3.10 -> 5.1.4 age adoption passing confidence devDependencies major
webpack-dev-server 3.9.0 -> 5.1.0 age adoption passing confidence devDependencies major
webpack-merge 4.2.2 -> 6.0.1 age adoption passing confidence devDependencies major

Release Notes

juggle/resize-observer (@​juggle/resize-observer)

v3.4.0

Compare Source

Aligns polyfill with spec changes.

Initial value of lastReportedSize changed from 0, 0 to -1, -1 allowing for consistent notifications to be triggered when an element is observed for the first time.

const el = document.createElement('div');
const ro = new ResizeObserver(() => { ... });
ro.observe(el); // Will now notify with size `0, 0`.

https://github.com/w3c/csswg-drafts/issues/3664#issuecomment-1218270926

v3.3.1

Compare Source

  • Fixes an issue where isElement sometimes returns false on elements within an iFrame. Thanks @​JayaKrishnaNamburu!

v3.3.0

Compare Source

  • Reports readonly ResizeObserverSize[] to the observer callback
  • Exposes ResizeObserverSize

v3.2.0

Compare Source

  • Fixes issue where calling disconnect would prevent the observer from being used to observe again (#​104).
  • Uses time instead of frame counts to capture certain events.
  • Replaces Map with WeakMap

v3.1.3

Compare Source

  • Fixes issue with older versions of chromium.
    No notifications were fired due to differences in MutationObserver implementation.

Tested:
Chromium 45.0.2454.0 (64-bit)

v3.1.2

Compare Source

  • Add missing device-pixel-content-box option to readme.

v3.1.1

Compare Source

  • Fixes issue where elements observed inside of an IFrame could not be unobserved.

v3.1.0

Compare Source

  • Support observing elements from other documents (#​97)
  • Adds ResizeObserverEntry.toJSON()
const elFromIFrame = iframe.contentDocument.querySelector('body');
const ro = new ResizeObserver(() => {
 ...
});
ro.observe(elFromIFrame);

v3.0.2

Compare Source

  • Removed next tag
  • Tagged in npm as latest

v3.0.1

Compare Source

  • Improved readme

v3.0.0

Compare Source

Updates library to follow the latest specification. This includes some breaking changes from 2.x.

Breaking changes from 2.x:

  • Updates ResizeObserverEntry to return a sequence of sizes, for future fragment support (#​84)
  • Removes default exports and now returns ResizeObserver and ResizeObserverEntry

Notable improvements:

  • Adds UMD bundle for SSR and other CJS loaders (Jest)
  • Adds new box option device-pixel-content-box (#​85)
  • Observes CSS box of root SVG elements (#​72)

Other improvements:

  • Fix circular dependency - thanks @​kei-ito!
  • Fix this rewritten to undefined warning in rollup.
actions/setup-node (actions/setup-node)

v4

Compare Source

v3

Compare Source

v2

Compare Source

postcss/autoprefixer (autoprefixer)

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.

v10.4.19

Compare Source

  • Removed end value has mixed support, consider using flex-end warning
    since end/start now have good support.

v10.4.18

Compare Source

  • Fixed removing -webkit-box-orient on -webkit-line-clamp (@​Goodwine).

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.

v10.4.16

Compare Source

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).

v10.4.15

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).

v10.4.14

Compare Source

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).

v10.4.13

Compare Source

  • Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.

v10.4.12

Compare Source

  • Fixed support of unit-less zero angle in backgrounds (by 一丝).

v10.4.11

Compare Source

  • Fixed text-decoration prefixes by moving to MDN data (by Romain Menke).

v10.4.10

Compare Source

  • Fixed unicode-bidi prefixes by moving to MDN data.

v10.4.9

Compare Source

  • Fixed css-unicode-bidi issue from latest Can I Use.

v10.4.8

Compare Source

  • Do not print color-adjust warning if print-color-adjust also is in rule.

v10.4.7

Compare Source

  • Fixed print-color-adjust support in Firefox.

v10.4.6

Compare Source

  • Fixed print-color-adjust support.

v10.4.5

Compare Source

v10.4.4

Compare Source

  • Fixed package.funding to have same value between all PostCSS packages.

v10.4.3

Compare Source

  • Fixed package.funding (by Álvaro Mondéjar).

v10.4.2

Compare Source

  • Fixed missed -webkit- prefix for width: stretch.

v10.4.1

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).

v10.4.0: 10.4 “ǃke e꞉ ǀxarra ǁke”

Compare Source

Coat of arms of South Africa

In Autoprefixer 10.4 @​lukewarlow added :autofill support:

input:-webkit-autofill {
  background-color: red;
}

input:autofill {
  background-color: red;
}

v10.3.7

Compare Source

  • Replaced nanocolors to picocolors.

v10.3.6

Compare Source

  • Updated nanocolors.
  • Reduced package size.

v10.3.5

Compare Source

  • Replaced colorette to nanocolors.

v10.3.4

Compare Source

  • Fixed stretch value in latest Firefox.

v10.3.3

Compare Source

  • Fixed wrong -moz- prefix from ::file-selector-button (by Usman Yunusov).

v10.3.2

Compare Source

  • Fixed ::file-selector-button support (by Usman Yunusov).

v10.3.1

Compare Source

  • Fixed adding wrong prefixes to content (by Luke Warlow).

v10.3.0: 10.3 “Чести своей не отдам никому”

Compare Source

Pskov, coat of arms

In Autoprefixer 10.3 @​lukewarlow added ::file-selector-button support.

::-webkit-file-upload-button {
  border: 2px solid #​6c5ce7;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #a29bfe;
}

::file-selector-button {
  border: 2px solid #​6c5ce7;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #a29bfe;
}

v10.2.6

Compare Source

v10.2.5

Compare Source

  • Fixed : support in @supports (by Dmitry Semigradsky).
  • Fixed docs (by Christian Oliff).

v10.2.4

Compare Source

  • Fixed browser names in npx autoprefixer --info.

v10.2.3

Compare Source

  • Fixed PostCSS 8 support.

v10.2.2

Compare Source

  • Fixed PostCSS 8 plugins compatibility.

v10.2.1

Compare Source

v10.2.0: 10.2 “Sub rosa”

Compare Source

Tudor rose

Autoprefixer 10.2 now has built-in TypeScript definitions. You do not need @types/autoprefixer anymore.

Thanks to @​Semigradsky and DefinitelyTyped’s contributors.

@​Sheraff also improved docs.

v10.1.0: 10.1 “Pula”

Compare Source

Coat of arms of Botswana

Autoprefixer 10.1 improved min-resolution support.

@​infusion added dpcm unit support and num2fraction with Fraction.js, which uses Farey Sequences as a rational approximation (more precise) and simplifies the fraction using continued fractions to ɛ <0.001 afterward.

/* input */
@&#8203;media (min-resolution: 113.38dpcm) {
  …
}

/* output */
@&#8203;media (-webkit-min-device-pixel-ratio: 3),
       (min--moz-device-pixel-ratio: 3),
       (-o-min-device-pixel-ratio: 3/1),
       (min-resolution: 113.38dpcm) {
  …
}

v10.0.4

Compare Source

  • Fixed Cannot read property 'proxyOf' of undefined error (by Igor Kamyshev).

v10.0.3

Compare Source

  • Fixed substract to subtract value for mask-composite (by Michelle Enos).

v10.0.2

Compare Source

  • Removed -ms-user-select: all because IE and old Edge don’t support it.
  • Fixed Grid Layout warning.

v10.0.1

Compare Source

  • Fix PostCSS 8.1 compatability.
  • Add our OpenCollective to package.json.
  • Clean up code (by Sukka).

v10.0.0: 10.0 “Alis volat propriis”

Compare Source

Coat of arms of Oregon

Autoprefixer 10 is based on top of PostCSS 8 (check Known Issues section before updating).

Node.js 6.x, 8.x, 11.x support was removed.

Now you need to install Autoprefixer by npm install --save-dev autoprefixer postcss. We moved postcss from dependencies to peerDependencies according to new PostCSS plugin guidelines.

v9.8.8

Compare Source

  • Replaced nanocolors with picocolors.
  • Reduced package size.

v9.8.7

Compare Source

  • Replaced colorette with nanocolors.
  • Reduced package size.

v9.8.6

Compare Source

  • Fixed env option.

v9.8.5

Compare Source

  • Improved Grid Layout warnings (by Daniel Tonon).
  • Fixed align-self and justify-self with display: flex (by Daniel Tonon).

v9.8.4

Compare Source

  • Replace color output library.

v9.8.3

Compare Source

  • Return old non-LTS Node.js versions to avoid breaking changes.

v9.8.2

Compare Source

  • Remove Node.js 13.0-13.7 from supported engines, because of buggy ESM support.

v9.8.1

Compare Source

  • Replace chalk to kleur (by Luke Edwards).
  • Update docs (by @​mbomb007).

v9.8.0: 9.8 “Vigilo Confido”

Compare Source

XCOM coat of arms

Autoprefixer 9.8 brings IE support for :placeholder-shown.

Placeholder Shown

@​tkrotoff found that input:placeholder-shown can be emulated with input:-ms-input-placeholder.

input:-ms-input-placeholder {
  box-shadow: 0 0 0 1px blue;
}

input:placeholder-shown {
  box-shadow: 0 0 0 1px blue;
}

Note, that we already had support for ::placeholder. Selector ::placeholder is for the text of the placeholder. :placeholder-shown is for the input, where placeholder text is shown. In ::placeholder you can’t change the border or size of the <input>.

v9.7.6

Compare Source

  • Revert -webkit-stretch fix.

v9.7.5

Compare Source

  • Fix -webkit-stretch support.

v9.7.4

Compare Source

  • Fix warning text (by Dmitry Ishkov).
babel/babel-loader (babel-loader)

v9.2.1

Compare Source

v9.2.0

Compare Source

v9.1.3

Compare Source

Security dependency updates

New Contributors

Full Changelog: babel/babel-loader@v9.1.2...v9.1.3

v9.1.2

Compare Source

9.1.1 was a broken release, it didn't include all the commits.

Dependencies updates

Misc


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 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Jan 6, 2020
@renovate renovate bot changed the title Update dependency file-loader to v5 chore(deps): update dependency file-loader to v5 Jan 6, 2020
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 4c9a80f to 2650f1b Compare January 7, 2020 12:12
@renovate renovate bot changed the title chore(deps): update dependency file-loader to v5 fix(deps): update all major dependencies (major) Jan 7, 2020
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from 605f7f4 to e567620 Compare January 17, 2020 10:55
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 11 times, most recently from 04f5d61 to 8af7c3b Compare January 27, 2020 19:05
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 7 times, most recently from 9fdb182 to 9e028fb Compare February 4, 2020 17:44
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 3 times, most recently from e6b2fe9 to 3acdd50 Compare February 7, 2020 10:54
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 3acdd50 to aa0784f Compare February 13, 2020 08:06
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 5 times, most recently from f82b544 to ec7fa73 Compare July 11, 2024 19:42
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 5 times, most recently from a07600d to 87e07b4 Compare July 23, 2024 18:21
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from aeb7124 to af285b7 Compare July 28, 2024 10:47
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 2 times, most recently from 627b5bf to c46e188 Compare August 2, 2024 22:08
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from c46e188 to 1d96e9b Compare August 9, 2024 19:11
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from b11a853 to e2d26be Compare August 22, 2024 16:20
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from 4fb5f02 to 65e907d Compare September 1, 2024 13:51
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch 4 times, most recently from d0c7156 to 5fb28bc Compare September 9, 2024 16:51
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 5fb28bc to 4a020f0 Compare September 16, 2024 12:39
@renovate renovate bot force-pushed the renovate/major-all-major-dependencies branch from 4a020f0 to 319b9e1 Compare September 16, 2024 16:41
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