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

Bump the npm_and_yarn group group with 4 updates #31

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 7, 2023

Bumps the npm_and_yarn group group with 4 updates: @jetbrains/ring-ui, css-loader, postcss-loader and @jetbrains/stylelint-config.

Updates @jetbrains/ring-ui from 1.0.0-beta.198 to 5.1.21

Changelog

Sourced from @​jetbrains/ring-ui's changelog.

[5.0.0]

BREAKING CHANGES

  • Design of some components is changed, see RG-2156. By default, controls (buttons, inputs etc.) have 28px height. To bring back the old compact 24px height, wrap your app into ControlsHeightContext.Provider:

    import {ControlsHeight, ControlsHeightContext} from '@jetbrains/ring-ui/components/global/controls-height';
    <ControlsHeightContext.Provider value={ControlsHeight.S}>
    <App />
    </ControlsHeightContext.Provider>

  • Input: removed compact and renderUnderline props

  • Select: removed Type.MATERIAL

  • Toggle: added Size.Size14 which is the new default

  • Button Group: caption should be pllaced outside of the group

    // Before
    <ButtonGroup>
      <Caption>Side:</Caption>
      <Button>Left</Button>
      <Button>Right</Button>
    </ButtonGroup>
    

    // After <> <Caption>Side:</Caption> <ButtonGroup> <Button>Left</Button> <Button>Right</Button> </ButtonGroup> </>

  • Components no longer accept theme prop, themes are managed using CSS Custom Properties instead. To apply a theme to your app or some part of it, wrap it into ThemeProvider:

    import Theme, {ThemeProvider} from '@jetbrains/ring-ui/components/global/theme';
    <ThemeProvider theme={Theme.DARK}>{children}</ThemeProvider>

    If you still need to apply theme to the global scope, here is a solution:

      import Theme, {applyTheme} from '@jetbrains/ring-ui/components/global/theme';
    applyTheme(Theme.DARK, document.body);

    You can also pass Theme.AUTO to use the user-defined system theme. The only exceptions are the components that provide dark context by default: Alert, Header, Message. Those still accept a theme prop.

  • --ring-dark-* CSS custom properties are removed, --ring-dark-text-color is renamed to --ring-white-text-color

  • --ring-message-background-color is removed in favor of --ring-popup-background-color

  • The codebase has migrated to TypeScript

... (truncated)

Commits
  • 21b1d88 5.1.21
  • fb65821 RG-2330 update ProgressBar screenshots
  • 6214265 RG-2314 set overscroll-behavior for Scroll's popup [Publish]
  • 91c8d9f RG-2330 add demo case
  • 378853a RG-2330 add staticColor styles
  • 640a8a9 RG-2330 add staticColor prop
  • 7cc42e0 Merge branch 'dependabot/npm_and_yarn/storybook/addon-a11y-7.6.2'
  • e569b28 Merge branch 'dependabot/npm_and_yarn/storybook/addon-storysource-7.6.2'
  • aae22ff chore(deps-dev): bump storybook from 7.6.1 to 7.6.2
  • 2965537 chore(deps-dev): bump @​storybook/addon-a11y from 7.5.3 to 7.6.2
  • Additional commits viewable in compare view

Updates css-loader from 0.28.9 to 6.8.1

Release notes

Sourced from css-loader's releases.

v6.8.1

6.8.1 (2023-05-28)

Bug Fixes

  • use cause for original errors and warnings (#1526) (ae3d8ae)

v6.8.0

6.8.0 (2023-05-27)

Features

  • use template literal when it possible to prevent Maximum call stack size exceeded (#1525) (6eb5661)

Bug Fixes

v6.7.4

6.7.4 (2023-05-19)

Bug Fixes

  • bugs in css modules (c3099fb)
  • output warning when built-in CSS support enabled (#1520) (0700ce8)

v6.7.3

6.7.3 (2022-12-14)

Bug Fixes

v6.7.2

6.7.2 (2022-11-13)

Bug Fixes

  • css modules generation with inline syntax (#1480) (2f4c273)

v6.7.1

6.7.1 (2022-03-08)

... (truncated)

Changelog

Sourced from css-loader's changelog.

6.8.1 (2023-05-28)

Bug Fixes

  • use cause for original errors and warnings (#1526) (ae3d8ae)

6.8.0 (2023-05-27)

Features

  • use template literal when it possible to prevent Maximum call stack size exceeded (#1525) (6eb5661)

Bug Fixes

6.7.4 (2023-05-19)

Bug Fixes

  • bugs in css modules (c3099fb)
  • output warning when built-in CSS support enabled (#1520) (0700ce8)

6.7.3 (2022-12-14)

Bug Fixes

6.7.2 (2022-11-13)

Bug Fixes

  • css modules generation with inline syntax (#1480) (2f4c273)

6.7.1 (2022-03-08)

Bug Fixes

6.7.0 (2022-03-04)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for css-loader since your current version.


Updates postcss-loader from 2.1.0 to 7.3.3

Release notes

Sourced from postcss-loader's releases.

v7.3.3

7.3.3 (2023-06-10)

Bug Fixes

  • perf: avoid using klona for postcss options (#658) (e754c3f)
  • bug with loading configurations after updating cosmiconfig to version 8.2 (684d265)

v7.3.2

7.3.2 (2023-05-28)

Bug Fixes

  • use cause to keep original errors and warnings (#655) (e8873f4)

v7.3.1

7.3.1 (2023-05-26)

Bug Fixes

  • warning and error serialization (65748ec)

v7.3.0

7.3.0 (2023-04-28)

Features

  • use jiti for typescript configurations (#649) (8b876fa)

v7.2.4

7.2.4 (2023-04-04)

Bug Fixes

v7.2.3

7.2.3 (2023-04-03)

Bug Fixes

v7.2.2

... (truncated)

Changelog

Sourced from postcss-loader's changelog.

7.3.3 (2023-06-10)

Bug Fixes

  • perf: avoid using klona for postcss options (#658) (e754c3f)
  • bug with loading configurations after updating cosmiconfig to version 8.2 (684d265)

7.3.2 (2023-05-28)

Bug Fixes

  • use cause to keep original errors and warnings (#655) (e8873f4)

7.3.1 (2023-05-26)

Bug Fixes

  • warning and error serialization (65748ec)

7.3.0 (2023-04-28)

Features

  • use jiti for typescript configurations (#649) (8b876fa)

7.2.4 (2023-04-04)

Bug Fixes

7.2.3 (2023-04-03)

Bug Fixes

7.2.2 (2023-04-03)

Bug Fixes

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by evilebottnawi, a new releaser for postcss-loader since your current version.


Updates @jetbrains/stylelint-config from 1.3.2 to 4.0.2

Changelog

Sourced from @​jetbrains/stylelint-config's changelog.

4.0.2 (2023-10-04)

4.0.1 (2023-02-15)

4.0.0 (2023-02-15)

⚠ BREAKING CHANGES

  • [publish]: peer dependency to stylelint raised to >=15.0.0. Other dependencies updated: stylelint-config-css-modules, stylelint-config-standard, stylelint-order

Features

  • [publish]: migrate to Stylelint 15 (2d4987b)

3.0.2 (2021-11-08)

Bug Fixes

  • [publish]: disable some controversary new rules (3b8baa2)

3.0.1 (2021-11-04)

3.0.0 (2021-11-04)

⚠ BREAKING CHANGES

  • update dependencies: Stylelint 14 is now required

build

  • update dependencies: [publish] (e1bf51b)

2.0.1 (2020-03-12)

2.0.0 (2019-11-29)

⚠ BREAKING CHANGES

  • update dependencies: Added an explicit stylelint peer dependency

build

  • update dependencies: [publish] (43d2e32)

... (truncated)

Commits
  • 575cae8 chore(release): 4.0.2
  • 21e7f76 bump stylelint-config-standard
  • 989e6f9 bump stylelint-config-standard [Publish]
  • 2ae96ee Merge pull request #13 from JetBrains/dependabot/npm_and_yarn/word-wrap-1.2.4
  • 2c56a1a chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4
  • 11c503c Merge pull request #12 from JetBrains/dependabot/npm_and_yarn/semver-5.7.2
  • 3fb1962 chore(deps): bump semver from 5.7.1 to 5.7.2
  • ac066df Merge pull request #10 from JetBrains/dependabot/npm_and_yarn/yaml-and-commit...
  • ffc5a31 chore(deps): bump yaml and @​commitlint/load
  • a7d22d4 chore(release): 4.0.1
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the npm_and_yarn group group with 4 updates: [@jetbrains/ring-ui](https://github.com/JetBrains/ring-ui), [css-loader](https://github.com/webpack-contrib/css-loader), [postcss-loader](https://github.com/webpack-contrib/postcss-loader) and [@jetbrains/stylelint-config](https://github.com/JetBrains/stylelint-config-jetbrains).


Updates `@jetbrains/ring-ui` from 1.0.0-beta.198 to 5.1.21
- [Changelog](https://github.com/JetBrains/ring-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/JetBrains/ring-ui/compare/@jetbrains/[email protected])

Updates `css-loader` from 0.28.9 to 6.8.1
- [Release notes](https://github.com/webpack-contrib/css-loader/releases)
- [Changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/css-loader@v0.28.9...v6.8.1)

Updates `postcss-loader` from 2.1.0 to 7.3.3
- [Release notes](https://github.com/webpack-contrib/postcss-loader/releases)
- [Changelog](https://github.com/webpack-contrib/postcss-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/postcss-loader@v2.1.0...v7.3.3)

Updates `@jetbrains/stylelint-config` from 1.3.2 to 4.0.2
- [Changelog](https://github.com/JetBrains/stylelint-config/blob/master/CHANGELOG.md)
- [Commits](JetBrains/stylelint-config@v1.3.2...v4.0.2)

---
updated-dependencies:
- dependency-name: "@jetbrains/ring-ui"
  dependency-type: direct:production
- dependency-name: css-loader
  dependency-type: direct:production
- dependency-name: postcss-loader
  dependency-type: direct:production
- dependency-name: "@jetbrains/stylelint-config"
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 7, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 20, 2023

Superseded by #34.

@dependabot dependabot bot closed this Dec 20, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/jetbrains/ring-ui-and-css-loader-and-postcss-loader-and-jetbrains/stylelint-config-5.1.21 branch December 20, 2023 17:49
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.

0 participants