@nordicsemiconductor/pc-nrfconnect-shared 253.0.0 → 255.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Changelog.md CHANGED
@@ -7,6 +7,22 @@ This project does _not_ adhere to
7
7
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
8
8
  every new version is a new major version.
9
9
 
10
+ ## 255.0.0 - 2026-07-17
11
+
12
+ ### Fixed
13
+
14
+ - Running Jest was broken with shared 254.
15
+
16
+ ### Removed
17
+
18
+ - `removeAnsi` string helper because of a problematic library.
19
+
20
+ ## 254.0.0 - 2026-07-08
21
+
22
+ ### Added
23
+
24
+ - `removeAnsi` string helper to strip ANSI control sequences from text.
25
+
10
26
  ## 253.0.0 - 2026-07-03
11
27
 
12
28
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nordicsemiconductor/pc-nrfconnect-shared",
3
- "version": "253.0.0",
3
+ "version": "255.0.0",
4
4
  "description": "Shared commodities for developing pc-nrfconnect-* packages",
5
5
  "repository": {
6
6
  "type": "git",
package/release_notes.md CHANGED
@@ -1,17 +1,7 @@
1
- ### Changed
1
+ ### Fixed
2
2
 
3
- - Updated and pinned protobufjs dependency. There was a vulnerability in old
4
- protobufjs versions. https://github.com/advisories/GHSA-wcpc-wj8m-hjx6
3
+ - Running Jest was broken with shared 254.
5
4
 
6
- The preconditions from the advisory are not really met in our case, but
7
- updating is low effort.
5
+ ### Removed
8
6
 
9
- ### Added
10
-
11
- - Mocking of global `TextEncoder` and `TextDecoder`.
12
-
13
- ### Steps to upgrade when using this package
14
-
15
- - In `pc-nrfconnect-matter-quickstart`, `pc-nrfconnect-cellularmonitor`, and
16
- `pc-nrfconnect-ble-5`: Remove the now obsolete mocking of `TextEncoder` and
17
- `TextDecoder`.
7
+ - `removeAnsi` string helper because of a problematic library.