Skip to content

chore(deps): update dependency @nordicsemiconductor/pc-nrfconnect-shared to v244#42

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/nordicsemiconductor-pc-nrfconnect-shared-244.x
Open

chore(deps): update dependency @nordicsemiconductor/pc-nrfconnect-shared to v244#42
renovate[bot] wants to merge 1 commit intomainfrom
renovate/nordicsemiconductor-pc-nrfconnect-shared-244.x

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate bot commented Jan 24, 2026

This PR contains the following updates:

Package Change Age Confidence
@nordicsemiconductor/pc-nrfconnect-shared ^204.0.0^244.0.0 age confidence

Release Notes

NordicSemiconductor/pc-nrfconnect-shared (@​nordicsemiconductor/pc-nrfconnect-shared)

v244.0.0

Compare Source

Changed
  • Major upgrade of esbuild and esbuild-sass-plugin which brings along Sass
    updates and deprecations.

v243.0.0

Compare Source

Fixed
  • shared@​232 introduced a bug that the NRFUTIL_* env variables were not
    cleared which could cause problems if users set them in their environment.
Changed
  • Added an ESLint error if the module 'process' is imported. This is usually not
    needed (because it is available as the global process) and might cause
    problems (if it is imported as process it may hinder replacing NODE_ENV
    during compilation).

v242.0.0

Compare Source

Added
  • Export types Range, RangeOrValues, and Values, used by Slider.
Changed
  • Build scripts:
    • Moved artifact generation from postinstall to prepare so that
      generated artifacts are included in the published package.
    • Simplified build script for apps.
    • Place all generated files in dist/.
  • Enabled the ESLint rule @typescript-eslint/consistent-type-imports to assert
    that type imports are always marked as such.
Steps to upgrade when using this package
  • The additional linting rule will most likely show that some type imports are
    not marked as such. Those should be fixable by running
    npm run lint -- --fix.

v241.0.0

Compare Source

Added
  • Product links for the nRF54LV10 DK.
Changed
  • Product links for the nRF9151 SMA DK.

v240.0.0

Compare Source

Changed
  • Duplicate Tailwind classes and surrounding whitespaces are now removed.
Fixed
  • Checking the order of Tailwind classes was not done anymore.

v239.0.0

Compare Source

Added
  • Link to the nRF54LM20 DK product page.
Changed
  • The width of buttons with the variants primary, success, info,
    warning, and danger is slightly increased to match the width of the
    variant secondary.

v238.0.0

Compare Source

Fixed
  • A typo in Group props.
Steps to upgrade when using this package
  • Rename prop collapseStatePersistanceId to collapseStatePersistenceId
    everywhere it is used. Running the type check will highlight remaining
    occurrences. No data migration is needed; only the prop name changed.

v237.0.0

Compare Source

Changed
  • The logger now also supports being used in the renderer process of the
    launcher.

v236.0.0

Compare Source

Changed
  • In a ConfirmationDialog a cancel button is only displayed if onCancel is
    defined (before it was mandatory to define it).

v235.0.0

Compare Source

Fixed
  • A text sizing problem with Dropdown's chevron.

v234.0.0

Compare Source

Changed
  • In Telemetry disabled sending dependency events.

v233.0.0

Compare Source

Changed
  • Use correct Chrome version when building for the renderer process.

v232.0.0

Compare Source

Changed
  • Disabled deprecated no-return-await ESLint rule.
  • Changed no-unused-vars ESLint rule config so that only unused args and vars
    beginning with an underscore are allowed.
Added
  • Functions createDisposableTempDir and createDisposableTempFile for use in
    the main process.
Fixed
  • nrfutil-core is now directly installed with the requested version. Before
    the bootstrap-version was first installed, which can lead to problems, if the
    bootstrap-version does not run correctly.

v231.0.0

Compare Source

Changed
  • Updated Prettier 2.8.8 → 3.6.2
  • Updated typescript-eslint 5.57.1 → 8.45.0
  • Updated TypeScript 4.9.5 → 5.9.2
Steps to upgrade when using this package
  • The new version of prettier will lead to some formatting changes, especially
    added commas and changed whitespaces, but most of those should be
    automatically solvable by running npm run check:lint -- --fix.
  • Some linting rules slightly changed and you may need to update some
    constructs. E.g. if in a catch block the exception is intentionally not
    used, then you must now remove it: try {…} catch (e) {/* Ignore */}
    try {…} catch {/* Ignore */}.
  • Run npm run check:types to check if the new TypeScript version breaks the
    type checks. As described at
    https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-9.html#libdts-changes,
    a typical problem occurs when you use Buffer. First run
    npm update @​types/node --save-dev, because that might already fix most
    problems. For the rest, also first check what is written in the above linked
    section of the release notes of TypeScript 5.9.

v230.0.0

Compare Source

Added
  • Property nrfConnectForDesktop.fixedSize an app can specify, to have a window
    with a fixed size, like the Quick Start app.

v229.0.0

Compare Source

Fixed
  • Remove all event emitter listeners on shellParser unregister.

v228.0.0

Compare Source

Changed
  • Bump the version of nrfutil-core for apps who do not declare it themselves
    to 8.1.1
Steps to upgrade when using this package
  • In apps in package.json bump nrfConnectForDesktop.nrfutilCore to 8.1.1.

v227.0.0

Compare Source

Added
  • Added Nordic Thingy:53 to known devices.
Fixed
  • No problematic check for the nRF Util core version.

v226.0.0

Compare Source

Changed
  • The required lincense file was slightly changed.
Steps to upgrade when using this package

v225.0.0

Compare Source

Added
  • Added nRF9151 SMA DK to known devices.

v224.0.0

Compare Source

Fixed
  • Apps did not reload after restoring the default settings.
Removed
  • Removed the isSkipUpdate* properties from the launcher config.

v223.0.0

Compare Source

Changed
  • Return value of getDownloadableApps has less fields now and some more
    exports were removed, because they were only needed in the launcher and having
    them in shared made changes harder in the launcher.

v221.0.0

Compare Source

Added
  • Custom tailwind font-size text-2xs (0.625rem/10px).
  • Narrower Dropdown variant.
  • Automatic character limit derivation for number input components based on
    their range constraints.
Fixed
  • Running build scripts failed on Windows.

v220.0.0

Added
  • Option to persist the Group collapse state.
Changed
  • Use tsx instead of ts-node.
  • Switched releasing shared from Azure to GitHub Actions.

v219.0.0

Fixed
  • Error when verbose logging was turned on.

v218.0.0

Fixed
  • Add missing active class for the selected option in StateSelector.

v217.0.0

Changed
  • Update PCA number of the supported device.

v216.0.0

Added
  • Extended the supported devices.
Changed
  • The state selector options are now with equally divided widths.
Fixed
  • InfoDialog: corrected default icon from mdi-info to mdi-information.

v215.0.0

Added
  • generateSystemReport now includes relevant app information.
Changed
  • StateSelector:Refactored with tailwind. Added size prop to control the
    height of the selector.

v214.0.0

Changed
  • macOS: Removed check if the universal variant of J-Link is used.
Fixed
  • While publishing apps, updated files on files.nordicsemi.com might become
    stale on files.nordicsemi.cn.

v213.0.0

Fixed
  • Typecheck error when using a recent version of the dependency logform.

v212.0.0

Added
  • Specify what core version of nRF Util an app depends on.
Removed
  • Function prepareSandbox.
Changed
  • Signature of xRead.
Steps to upgrade when using this package
  • In apps in package.json set the field nrfConnectForDesktop.nrfutilCore to
    the core version of nRF Util that the nRF Util commands will use.
  • Replace usage of prepareSandbox with NrfutilSandbox.create
  • Update calls of xRead.

v211.0.0

Fixed
  • It was observed on macOS that we get multiple arrive events and the only
    change is the number of serial ports. Now the selected device in redux is also
    updated to reflect these changes.

v210.0.0

Fixed
  • Scrollbars no longer appear in the device list for a second when disconnecting
    a device.
  • Dropdown active label now handles overflow.
  • nRF Util device batch will not run if no subcommand has been added to the
    batch.
Steps to upgrade when using this package
  • Minimum version of nrfutil device is 2.7.16.

v209.0.0

Changed
  • nrfutil device use of fw-read is replaced with x-read.
Steps to upgrade when using this package
  • Any use of firmwareRead() must be replaced with xRead().

v208.0.0

Changed
  • The functions openFile, openFileLocation, and openUrl are now async.
Steps to upgrade when using this package
  • In package.json bump engines.nrfconnect to at least >=5.2.0.

v207.0.0

Added
  • Logging onDeviceDisconnected, onDeviceConnected and onDeviceIsReady
    events.
Steps to upgrade when using this package
  • Remove logging of onDeviceDisconnected, onDeviceConnected and
    onDeviceIsReady events.

v206.0.0

Fixed
  • Rolled back the use of simpler Artifactory URLs from v205, because older
    versions of the launcher need the URLs using the download API.

v205.0.0

Added
  • Add title to the ExternalLink component.
Removed
  • Unused mocks for pc-nrfjprog-js, nrf-device-setup, usb packages.
Changed
  • Use simpler Artifactory URLs for app metadata.
Fixed
  • Missing check for target in isMcuBootProgrammingOptions

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.

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


  • 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 requested a review from a team as a code owner January 24, 2026 00:13
@renovate renovate bot changed the title Update dependency @nordicsemiconductor/pc-nrfconnect-shared to v244 chore(deps): update dependency @nordicsemiconductor/pc-nrfconnect-shared to v244 Jan 26, 2026
@renovate renovate bot force-pushed the renovate/nordicsemiconductor-pc-nrfconnect-shared-244.x branch from ace6688 to 799c60d Compare February 3, 2026 07:13
@renovate renovate bot force-pushed the renovate/nordicsemiconductor-pc-nrfconnect-shared-244.x branch 2 times, most recently from 879c696 to 6cbe52f Compare February 19, 2026 07:36
@renovate renovate bot force-pushed the renovate/nordicsemiconductor-pc-nrfconnect-shared-244.x branch from 6cbe52f to 0181443 Compare March 8, 2026 09:43
@renovate renovate bot force-pushed the renovate/nordicsemiconductor-pc-nrfconnect-shared-244.x branch from 0181443 to a5d343b Compare March 14, 2026 08:31
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.

0 participants