Skip to content

Releases: balena-io-modules/ui-shared-components

v14.0.2

09 Sep 12:05
aee8f79

Choose a tag to compare

3f03706 (Update analytics-client, 2025-09-03)

v14.0.1

05 Sep 10:00
718623a

Choose a tag to compare

94f02df (Align orderbyBuilder with Pine orderby format, 2025-09-05)

v14.0.0

28 Jul 13:04
e87893c

Choose a tag to compare

c55a335 (Remove Announcement component, 2025-07-28)

v13.0.0

23 Jul 15:51
b54a77f

Choose a tag to compare

8f20b28 (Rename Widget extraContext to resource, 2025-05-08)
5d38465 (Mark Widget resource as required, 2025-05-08)
74b8145 (widgetFactory: Move uiOptions to last parameter and make it optional, 2025-05-15)
e51c7ac (Drop deprecated interface OsSpecificDeviceTypeJsonInstructions, 2025-05-16)
45c7216 (Drop deprecated interface DeviceTypeOptions, 2025-05-16)
c0622e2 (Drop rjstGetModelForCollection in favor of rjstGetModelForCollection2, 2025-05-27)
2bb56b8 (Rename rjstGetModelForCollection2 to rjstGetModelForCollection, 2025-05-27)

v12.5.2

22 Jul 06:32
7f06405

Choose a tag to compare

0d1187f (Run npm audit fix, 2025-07-21)

v12.5.1

13 Jun 12:47
491c6c8

Choose a tag to compare

d5a3a57 (Run npm audit fix, 2025-06-13)

v12.5.0

10 Jun 13:27
d96a6b4

Choose a tag to compare

3996098 (Form/SelectWidget: Support the placeholder property, 2025-06-10)

v12.4.4

03 Jun 12:45
80c123a

Choose a tag to compare

4c6afa8 (Disable interactivity on all tooltips, 2025-06-03)

v12.4.3

02 Jun 14:52
11be6d3

Choose a tag to compare

df74d24 (Remove unused icon, 2025-05-29)
6b3d0e8 (Replace Material Icons with FontAwsomeIcons, 2025-05-29)
a0c9aa2 (Uninstall unused package @mui/icons-material, 2025-05-29)

v12.4.2

29 May 18:27
031ce82

Choose a tag to compare

Update dependency lint-staged to v16

Notable changes

  • #​1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:
  • #​1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@​":
  • #​1544 5561321 Thanks @​YimingIsCOLD! - Correctly handle colon (:) characters in staged filenames.
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.
  • #​1504 1c7a45e Thanks @​iiroj! - Default TypeScript config filenames match JS equivalents.
  • #​1504 9cc18c9 Thanks @​iiroj! - Add missing conditional exports syntax for TypeScript types.
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:
  • #​1501 9b79364 Thanks @​iiroj! - Handle possible failures when logging user shell for debug info.
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.
  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.
  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.
lint-staged/lint-staged (lint-staged)

v16.0.0

Compare Source

Major Changes
  • #​1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #​1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@​":

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

##...

Read more