Skip to content

Commit 407bcda

Browse files
Log changes for 2.5.2 (#342)
and clean up regular expression
1 parent dee4229 commit 407bcda

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Released changes are shown in the
1111
## [Not released]
1212

1313
### Added
14+
- Persistent id.
1415

1516
### Changed
1617

@@ -19,9 +20,5 @@ Released changes are shown in the
1920
### Removed
2021

2122
### Fixed
22-
- Showing long utterances fully on hover in similar and perturbed utterances tables.
23-
- Webapp crash when no pipeline.
24-
- Sort confidence or prediction without postprocessing.
25-
- Crash on Safari and iOS browsers as they don't support lookbehind in regular expressions.
2623

2724
### Security

docs/docs/getting-started/changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Releases
22

3+
## [2.5.2] - 2022-12-20
4+
5+
### Fixed
6+
- Show long utterances fully on hover in similar and perturbed utterances tables.
7+
- Fixed webapp crash when there is no pipeline (with `"pipeline": null` configured).
8+
- Fixed sort utterance table by confidence or prediction without post-processing.
9+
- Fixed crash on Safari and iOS browsers as they don't support lookbehind in regular expressions.
10+
311
## [2.5.1] - 2022-12-05
412

513
### Fixed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "azimuth"
3-
version = "2.5.1"
3+
version = "2.5.2"
44
description = "Azimuth provides a unified error analysis experience to data scientists."
55
readme = "README.md"
66
authors = ["Azimuth team <[email protected]>"]

webapp/src/utils/format.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ export const formatRatioAsPercentageString = (
1414

1515
export const camelToTitleCase = (camelCase: string) =>
1616
// Safari and iOS browsers don't support lookbehind in regular expressions.
17-
camelCase.replace(/([a-z])(?=[A-Z0-9])|([A-Z0-9])(?=[A-Z][a-z])/g, "$1$2 ");
17+
camelCase.replace(/([a-z])(?=[A-Z0-9])|([A-Z0-9])(?=[A-Z][a-z])/g, "$& ");

0 commit comments

Comments
 (0)