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

chore(deps): update all non-major dependencies (main) (patch) #6030

Merged
merged 2 commits into from
Jul 8, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 8, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@cypress/code-coverage 3.12.39 -> 3.12.41 age adoption passing confidence devDependencies patch
@semantic-release/github 10.0.6 -> 10.0.7 age adoption passing confidence devDependencies patch
@types/node (source) 20.14.9 -> 20.14.10 age adoption passing confidence devDependencies patch
@ui5/webcomponents (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence peerDependencies patch
@ui5/webcomponents (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence dependencies patch
@ui5/webcomponents-base (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence peerDependencies patch
@ui5/webcomponents-compat (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence dependencies patch
@ui5/webcomponents-fiori (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence peerDependencies patch
@ui5/webcomponents-fiori (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence dependencies patch
@ui5/webcomponents-icons (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence peerDependencies patch
@ui5/webcomponents-icons (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence dependencies patch
@ui5/webcomponents-tools (source) 2.0.0-rc.6 -> 2.0.1 age adoption passing confidence devDependencies patch
JamesIves/github-pages-deploy-action v4.6.1 -> v4.6.3 age adoption passing confidence action patch
cssnano 7.0.3 -> 7.0.4 age adoption passing confidence devDependencies patch
glob 10.4.2 -> 10.4.3 age adoption passing confidence devDependencies patch
lerna (source) 8.1.5 -> 8.1.6 age adoption passing confidence devDependencies patch
npm-run-all2 6.2.0 -> 6.2.2 age adoption passing confidence devDependencies patch
rimraf 5.0.7 -> 5.0.8 age adoption passing confidence devDependencies patch
typescript (source) 5.5.2 -> 5.5.3 age adoption passing confidence devDependencies patch
vite (source) 5.3.2 -> 5.3.3 age adoption passing confidence devDependencies patch

Release Notes

cypress-io/code-coverage (@​cypress/code-coverage)

v3.12.41

Compare Source

Bug Fixes

v3.12.40

Compare Source

Bug Fixes
semantic-release/github (@​semantic-release/github)

v10.0.7

Compare Source

Bug Fixes
  • replace github search api with graphql in success lifecycle method (#​857) (be394cf)
SAP/ui5-webcomponents (@​ui5/webcomponents)

v2.0.1

Compare Source

Bug Fixes

v2.0.0

Compare Source

Bug Fixes
Code Refactoring
Features
BREAKING CHANGES
  • ui5-li: The image property of the ui5-li is removed and the imageContent slot is renamed to image.
    If you have previously used the image property:
<ui5-li image="./img/HT-1022.jpg">Standard List Item</ui5-li>

or the imageContent slot:

<ui5-li> Avatar inside imageContent slot
	<ui5-avatar slot="imageContent" shape="Square" initials="ABC" color-scheme="Accent2"></ui5-avatar>
</ui5-li>

Now use image slot instead:

<ui5-li> Avatar inside image slot
	<ui5-avatar slot="image" shape="Square" initials="ABC" color-scheme="Accent2"></ui5-avatar>
</ui5-li>

Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887, https://github.com/SAP/ui5-webcomponents/issues/9200

  • ui5-combobox, ui5-multi-combobox: The ui5-cb-item-group & ui5-mcb-item-group text property is renamed to header-text.
    If you previously used the text property:
Now you must rename it to header-text: * The `ListSeparators` (plural form) enum has been renamed to `ListSeparator` (singular form). If you previously imported the `ListSeparators`: ```ts import ListSeparators from "@​ui5/webcomponents/dist/types/ListSeparators.js"; import type ListSeparators from "@​ui5/webcomponents/dist/types/ListSeparators.js"; ```

Now, you must import the ListSeparator enumeration as follows:

import ListSeparator from "@&#8203;ui5/webcomponents/dist/types/ListSeparator.js";
import type ListSeparator from "@&#8203;ui5/webcomponents/dist/types/ListSeparator.js";

Related to: https://github.com/SAP/ui5-webcomponents/issues/8461

  • ui5-input: remove type, description, icon, iconEnd, image from ui5-suggestion-item and introduce ui5-suggestion-item-custom

ui5-suggestion-item:

  • type property is removed, use ui5-suggestion-item-custom instead.
  • description property is removed, use ui5-suggestion-item-custom instead.
  • icon property is removed, use ui5-suggestion-item-custom instead.
  • iconEnd property is removed, use ui5-suggestion-item-custom instead.
  • image property is removed, use ui5-suggestion-item-custom instead.

ui5-suggestion-group-item:

  • renamed to ui5-suggestion-item-group
  • text is removed, use headerText instead

ui5-suggestion-item-custom:

  • custom suggestion item with open content similar to ui5-li-custom
  • to be used for custom scenarios
  • to highlight custom items use @ui5/webcomponents-base/dist/util/generateHighlightedMarkup.js

All suggestion items are now physical items and can be overstyled.
Grouping now works with via nesting: e.g.

<ui5-input show-suggestions>
  <ui5-suggestion-item-group header-text="Group 1">
    <ui5-suggestion-item text="Group Item 1"></ui5-suggestion-item>
  </ui5-suggestion-item-group>
</ui5-input>
  • @​property decorator must be adapted according to new type parameter
  • ui5-menu-separator: startsSection property removed from MenuItems

Before:

Now:

SAP/ui5-webcomponents (@​ui5/webcomponents-base)

v2.0.1

Compare Source

Note: Version bump only for package @​ui5/webcomponents-base

v2.0.0

Compare Source

Bug Fixes
  • UI5Element: component invalidated when children change slots (#​9104) (a882721)
Features
BREAKING CHANGES
  • @​property decorator must be adapted according to new type parameter
SAP/ui5-webcomponents (@​ui5/webcomponents-compat)

v2.0.1

Compare Source

Note: Version bump only for package @​ui5/webcomponents-compat

v2.0.0

Compare Source

Features
BREAKING CHANGES
  • @​property decorator must be adapted according to new type parameter
SAP/ui5-webcomponents (@​ui5/webcomponents-fiori)

v2.0.1

Compare Source

Bug Fixes

v2.0.0

Compare Source

Bug Fixes
Code Refactoring
Features
BREAKING CHANGES
  • ui5-illustrated-message: The enum IllustrationMessageSize is renamed to IllustrationMessageDesign.
    If you have previously imported the enum:

import IllustrationMessageSize from "@​ui5/webcomponents-base/dist/types/IllustrationMessageSize.js";
Now import IllustrationMessageDesign instead:

import IllustrationMessageDesign from "@​ui5/webcomponents-base/dist/types/IllustrationMessageDesign.js";

  • ui5-view-settings-dialog: Removed show and close methods.

Before, the ui5-view-settings-dialog could be opened and closed by calling show() and close():

const viewSettingsDialog = document.getElementById("exampleID");
viewSettingsDialog.show();
viewSettingsDialog.close();

Now, the dialog is opened and closed by setting the open property to true or false:

const viewSettingsDialog = document.getElementById("exampleID");
viewSettingsDialog.open = true;
viewSettingsDialog.open = false;

fixes: https://github.com/SAP/ui5-webcomponents/issues/9240

  • @​property decorator must be adapted according to new type parameter
SAP/ui5-webcomponents (@​ui5/webcomponents-icons)

v2.0.1

Compare Source

Note: Version bump only for package @​ui5/webcomponents-icons

v2.0.0

Compare Source

Note: Version bump only for package @​ui5/webcomponents-icons

SAP/ui5-webcomponents (@​ui5/webcomponents-tools)

v2.0.1

Compare Source

Note: Version bump only for package @​ui5/webcomponents-tools

v2.0.0

Compare Source

Bug Fixes
Features
BREAKING CHANGES
  • @​property decorator must be adapted according to new type parameter
JamesIves/github-pages-deploy-action (JamesIves/github-pages-deploy-action)

v4.6.3

Compare Source

What's Changed

Build 🔧
  • Consolidated a number of build scripts to make publishing easier.

Full Changelog: JamesIves/github-pages-deploy-action@v4...v4.6.3

v4.6.2

Compare Source

cssnano/cssnano (cssnano)

v7.0.4: v7.0.4

Compare Source

Bug fixes

isaacs/node-glob (glob)

v10.4.3

Compare Source

lerna/lerna (lerna)

v8.1.6

Compare Source

Bug Fixes
bcomnes/npm-run-all2 (npm-run-all2)

v6.2.2

Compare Source

Commits
  • Revert "Compatibility: npm, yarn and pnpm run scripts" fc35f0d

v6.2.1

Compare Source

Merged
  • Compatibility: npm, yarn and pnpm run scripts #143
  • Use neostandard + add more static code analysis #142
  • Upgrade: Bump c8 from 9.1.0 to 10.0.0 #141
  • Upgrade: Bump p-queue from 7.4.1 to 8.0.1 #138
isaacs/rimraf (rimraf)

v5.0.8

Compare Source

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

vitejs/vite (vite)

v5.3.3

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 requested a review from MarcusNotheis as a code owner July 8, 2024 01:43
@renovate renovate bot added the dependencies PR or issue concerning dependency files label Jul 8, 2024
@renovate renovate bot requested a review from Lukas742 as a code owner July 8, 2024 01:43
@renovate renovate bot enabled auto-merge (squash) July 8, 2024 01:43
@renovate renovate bot force-pushed the renovate/main-patch-root-all-minor-patch branch 2 times, most recently from 6898224 to bc19ccc Compare July 8, 2024 06:17
@coveralls
Copy link

coveralls commented Jul 8, 2024

Pull Request Test Coverage Report for Build 9835303081

Warning: This coverage report may be inaccurate.

This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • 1 unchanged line in 1 file lost coverage.
  • Overall coverage decreased (-0.02%) to 80.802%

Files with Coverage Reduction New Missed Lines %
packages/main/src/components/AnalyticalTable/hooks/useKeyboardNavigation.ts 1 77.61%
Totals Coverage Status
Change from base Build 9834872459: -0.02%
Covered Lines: 4714
Relevant Lines: 5834

💛 - Coveralls

@renovate renovate bot force-pushed the renovate/main-patch-root-all-minor-patch branch 2 times, most recently from 9513688 to 690a747 Compare July 8, 2024 06:32
@renovate renovate bot force-pushed the renovate/main-patch-root-all-minor-patch branch from 690a747 to 90abfa9 Compare July 8, 2024 06:52
Copy link
Contributor Author

renovate bot commented Jul 8, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@renovate renovate bot merged commit 91b0268 into main Jul 8, 2024
22 of 23 checks passed
@renovate renovate bot deleted the renovate/main-patch-root-all-minor-patch branch July 8, 2024 07:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies PR or issue concerning dependency files
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants