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 yaml, @jetbrains/ring-ui, @jetbrains/stylelint-config and stylelint in /plugins/base/frontend #2980

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 25, 2023

Removes yaml. It's no longer used after updating ancestor dependencies yaml, @jetbrains/ring-ui, @jetbrains/stylelint-config and stylelint. These dependencies need to be updated together.

Removes yaml

Updates @jetbrains/ring-ui from 4.1.3 to 5.0.137

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
  • dce4e7e 5.0.137
  • 2b26448 Merge branch 'focus-visible'
  • 114e935 Merge branch 'dependabot/npm_and_yarn/storybook/addon-storysource-7.0.7'
  • a9bf70c Merge branch 'dependabot/npm_and_yarn/storybook/addon-docs-7.0.7'
  • 57e75bf Merge branch 'dependabot/npm_and_yarn/glob-10.2.2'
  • 550a3c8 Merge branch 'dependabot/npm_and_yarn/webpack-cli-5.0.2'
  • f45c39a Merge branch 'dependabot/npm_and_yarn/types/react-18.0.38'
  • 4a5411b Merge branch 'dependabot/npm_and_yarn/stylelint-15.6.0'
  • 095d258 chore(deps-dev): bump @​storybook/addon-storysource from 7.0.6 to 7.0.7
  • 53d2ef8 chore(deps-dev): bump @​storybook/source-loader from 7.0.6 to 7.0.7
  • Additional commits viewable in compare view

Updates @jetbrains/stylelint-config from 3.0.2 to 4.0.1

Changelog

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

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)
Commits
  • a7d22d4 chore(release): 4.0.1
  • eacdc6a Update .gitignore
  • 3b9b23c chore(release): 4.0.0
  • 2d4987b feat([publish]): migrate to Stylelint 15
  • 6214b82 Create CODE_OF_CONDUCT.md
  • f9a8c63 Merge pull request #8 from JetBrains/dependabot/npm_and_yarn/ansi-regex-3.0.1
  • c9e7e07 chore(deps): bump ansi-regex from 3.0.0 to 3.0.1
  • 23d36a2 Merge pull request #7 from JetBrains/dependabot/npm_and_yarn/nanoid-3.2.0
  • 24ffa74 chore(deps): bump nanoid from 3.1.30 to 3.2.0
  • See full diff in compare view

Updates stylelint from 14.1.0 to 15.6.0

Release notes

Sourced from stylelint's releases.

15.6.0

  • Added: allowEmptyInput, cache, fix options to configuration object (#6778) (@​mattxwang).
  • Added: ignore: ["with-var-inside"] to color-function-notation (#6802) (@​mattxwang).
  • Fixed: declaration-block-no-duplicate-properties autofix for 3 or more duplicates (#6801) (@​mattxwang).
  • Fixed: declaration-block-no-duplicate-properties false positives with option ignore: ["consecutive-duplicates-with-different-syntaxes"] (#6797) (@​romainmenke).
  • Fixed: declaration-block-no-duplicate-properties syntax error (#6792) (@​yoyo837).
  • Fixed: declaration-block-no-redundant-longhand-properties autofix for grid-template (#6777) (@​mattxwang).
  • Fixed: function-url-quotes autofix for comments in SCSS function (#6800) (@​ybiquitous).

15.5.0

  • Added: ignore: ["consecutive-duplicates-with-different-syntaxes"] to declaration-block-no-duplicate-properties (#6772) (@​kimulaco).
  • Added: ignoreProperties: [] to declaration-block-no-duplicate-custom-properties (#6773) (@​mattxwang).
  • Added: raw regex support to ignoreProperties for declaration-block-no-duplicate-properties (#6764) (@​ybiquitous).
  • Fixed: block-no-empty false positives with non-whitespace characters (#6782) (@​ybiquitous).
  • Fixed: color-function-notation false positives for namespaced imports (#6774) (@​mattxwang).
  • Fixed: custom-property-empty-line-before false positives for CSS-in-JS (#6767) (@​ybiquitous).
  • Fixed: media-feature-range-notation parse error (#6760) (@​fpetrakov).
  • Fixed: CLI help improvements (#6783) (@​ybiquitous).

15.4.0

15.3.0

15.2.0

  • Added: messageArgs to 76 rules (#6589) (@​kizu).
  • Fixed: TypeScript error to export Plugin and RuleContext (#6664) (@​henryruhs).
  • Fixed: overrides.extends order when including same rules (#6660) (@​kuoruan).
  • Fixed: annotation-no-unknown false positives for CSS-in-JS template literals (#6666) (@​hudochenkov).
  • Fixed: declaration-property-value-no-unknown false positives for at-rule descriptors (#6669) (@​FloEdelmann).
  • Fixed: declaration-property-value-no-unknown parse error for alpha(opacity=n) to report as violation (#6650) (@​romainmenke).
  • Fixed: function-name-case false positives for CSS-in-JS template literals (#6666) (@​hudochenkov).
  • Fixed: function-no-unknown false positives for CSS-in-JS template literals (#6666) (@​hudochenkov).
  • Fixed: unit-no-unknown false positives for CSS-in-JS template literals (#6666) (@​hudochenkov).
  • Fixed: value-keyword-case false positives for CSS-in-JS template literals (#6666) (@​hudochenkov).

... (truncated)

Changelog

Sourced from stylelint's changelog.

15.6.0

  • Added: allowEmptyInput, cache, fix options to configuration object (#6778) (@​mattxwang).
  • Added: ignore: ["with-var-inside"] to color-function-notation (#6802) (@​mattxwang).
  • Fixed: declaration-block-no-duplicate-properties autofix for 3 or more duplicates (#6801) (@​mattxwang).
  • Fixed: declaration-block-no-duplicate-properties false positives with option ignore: ["consecutive-duplicates-with-different-syntaxes"] (#6797) (@​romainmenke).
  • Fixed: declaration-block-no-duplicate-properties syntax error (#6792) (@​yoyo837).
  • Fixed: declaration-block-no-redundant-longhand-properties autofix for grid-template (#6777) (@​mattxwang).
  • Fixed: function-url-quotes autofix for comments in SCSS function (#6800) (@​ybiquitous).

15.5.0

  • Added: ignore: ["consecutive-duplicates-with-different-syntaxes"] to declaration-block-no-duplicate-properties (#6772) (@​kimulaco).
  • Added: ignoreProperties: [] to declaration-block-no-duplicate-custom-properties (#6773) (@​mattxwang).
  • Added: raw regex support to ignoreProperties for declaration-block-no-duplicate-properties (#6764) (@​ybiquitous).
  • Fixed: block-no-empty false positives with non-whitespace characters (#6782) (@​ybiquitous).
  • Fixed: color-function-notation false positives for namespaced imports (#6774) (@​mattxwang).
  • Fixed: custom-property-empty-line-before false positives for CSS-in-JS (#6767) (@​ybiquitous).
  • Fixed: media-feature-range-notation parse error (#6760) (@​fpetrakov).
  • Fixed: CLI help improvements (#6783) (@​ybiquitous).

15.4.0

15.3.0

15.2.0

  • Added: messageArgs to 76 rules (#6589) (@​kizu).
  • Fixed: TypeScript error to export Plugin and RuleContext (#6664) (@​henryruhs).
  • Fixed: overrides.extends order when including same rules (#6660) (@​kuoruan).
  • Fixed: annotation-no-unknown false positives for CSS-in-JS template literals (#6666) (@​hudochenkov).
  • Fixed: declaration-property-value-no-unknown false positives for at-rule descriptors (#6669) (@​FloEdelmann).
  • Fixed: declaration-property-value-no-unknown parse error for alpha(opacity=n) to report as violation (#6650) (@​romainmenke).

... (truncated)

Commits
  • 380e920 15.6.0
  • a0b7f71 Prepare release (#6794)
  • fffbb4c Add ignore: ["with-var-inside"] to color-function-notation (#6802)
  • b089a42 Add allowEmptyInput, cache, fix options to configuration object (#6778)
  • 2e31353 Fix declaration-block-no-redundant-longhand-properties autofix for `grid-te...
  • 61d53ff Fix declaration-block-no-duplicate-properties autofix for 3 or more duplica...
  • 56ba4c5 Fix function-url-quotes autofix for comments in SCSS function (#6800)
  • 28328a6 Fix declaration-block-no-duplicate-properties false positives with option `...
  • afe410a Bump postcss from 8.4.21 to 8.4.22 (#6789)
  • d14a883 Bump @​csstools/media-query-list-parser from 2.0.2 to 2.0.4 (#6786)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ybiquitous, a new releaser for stylelint since your current version.


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 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.

Removes [yaml](https://github.com/eemeli/yaml). It's no longer used after updating ancestor dependencies [yaml](https://github.com/eemeli/yaml), [@jetbrains/ring-ui](https://github.com/JetBrains/ring-ui), [@jetbrains/stylelint-config](https://github.com/JetBrains/stylelint-config-jetbrains) and [stylelint](https://github.com/stylelint/stylelint). These dependencies need to be updated together.


Removes `yaml`

Updates `@jetbrains/ring-ui` from 4.1.3 to 5.0.137
- [Release notes](https://github.com/JetBrains/ring-ui/releases)
- [Changelog](https://github.com/JetBrains/ring-ui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/JetBrains/ring-ui/compare/@jetbrains/ring-ui@4.1.3...v5.0.137)

Updates `@jetbrains/stylelint-config` from 3.0.2 to 4.0.1
- [Release notes](https://github.com/JetBrains/stylelint-config-jetbrains/releases)
- [Changelog](https://github.com/JetBrains/stylelint-config/blob/master/CHANGELOG.md)
- [Commits](JetBrains/stylelint-config@v3.0.2...v4.0.1)

Updates `stylelint` from 14.1.0 to 15.6.0
- [Release notes](https://github.com/stylelint/stylelint/releases)
- [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint@14.1.0...15.6.0)

---
updated-dependencies:
- dependency-name: yaml
  dependency-type: indirect
- dependency-name: "@jetbrains/ring-ui"
  dependency-type: direct:production
- dependency-name: "@jetbrains/stylelint-config"
  dependency-type: direct:development
- dependency-name: stylelint
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 25, 2023
@IgnatBeresnev IgnatBeresnev self-requested a review April 25, 2023 19:28
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 11, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/plugins/base/frontend/yaml-and-jetbrains/ring-ui-and-jetbrains/stylelint-config-and-stylelint--removed branch October 11, 2023 22:46
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.

None yet

1 participant