Skip to content

Commit 9fee330

Browse files
authored
Version 2.2.356 (#1477)
* Update CHANGELOG.md * Update CHANGELOG.md * update analyzer version * update anonymizer version * update image redactor version * Update pyproject.toml * Update CHANGELOG.md
1 parent a081c22 commit 9fee330

File tree

5 files changed

+74
-6
lines changed

5 files changed

+74
-6
lines changed

CHANGELOG.md

Lines changed: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,74 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [unreleased]
6+
7+
### Analyzer
8+
9+
### Anonymizer
10+
11+
### Image Redactor
12+
13+
### Presidio Structured
14+
15+
### General
16+
17+
## [2.3.356] - 2024-12-15
18+
19+
### Analyzer
20+
- Added logic to handle phone numbers with country code (#1426) (Thanks @kauabh)
21+
- Added UK National Insurance Number Recognizer (#1446) (Thanks @hhobson)
22+
- Fixed regex match_time output (#1488) (Thanks @andrewisplinghoff)
23+
- Added fix to ensure configuration files are closed properly when loading them (#1423) (Thanks @saulbein)
24+
- Closing handles for YAML file (#1424) (Thanks @roeybc)
25+
- Reduce memory usage of Analyzer test suite (#1429) (Thanks @hhobson)
26+
- Added `batch_size` parameter to `BatchAnalyzerEngine` (#1449) (Thanks @roeybc)
27+
- Remove ignored labels from supported entities (#1454) (Thanks @omri374)
28+
- Update US_SSN CONTEXT and unit test (#1455) (Thanks @claesmk)
29+
- Fixed bug with Azure AI language context (#1458) (Thanks @omri374)
30+
- Add support for allow_list, allow_list_match, regex_flags in REST API (#1484) (Thanks @hdw868)
31+
- Add a link to model classes to simplify configuration (#1472) (Thanks @omri374)
32+
- Restricting spacy.cli for version 3.7.0 (#1495) (Thanks @kshitijcode)
33+
34+
### Anonymizer
35+
- No changes specified for Anonymizer in this release.
36+
37+
38+
### Presidio-Structured
39+
- Fix presidio-structured build - lock numpy version (#1465) (Thanks @SharonHart)
40+
41+
42+
### Image Redactor
43+
- Fix bug with image conversion (#1445) (Thanks @omri374)
44+
45+
### General
46+
- Removed Python 3.8 support (EOL) and added 3.12 (#1479) (Thanks @omri374)
47+
- Update Docker build to use gunicorn for containers (#1497) (Thanks @RKapadia01)
48+
- New Dev containers for analyzer, analyzer+transformers, anonymizer (#1459) (Thanks @roeybc)
49+
- Added dev containers for: analyzer, analyzer+transformers, anonymizer, and image redaction (#1450) (Thanks @roeybc)
50+
- Added support for allow_list, allow_list_match, regex_flags in REST API (#1488) (Thanks @hdw868)
51+
- Typo fix in if condition (#1419) (Thanks @omri374)
52+
- Minor notebook changes (#1420) (Thanks @omri374)
53+
- Do not release `presidio-cli` as part of the release pipeline (#1422) (Thanks @SharonHart)
54+
- (Docs) Use Presidio across Anthropic, Bedrock, VertexAI, Azure OpenAI, etc. with LiteLLM Proxy (#1421) (Thanks @krrishdholakia)
55+
- Update CI due to DockerCompose project name issue (#1428) (Thanks @omri374)
56+
- Update docker-compose installation docs (#1439) (Thanks @MWest2020)
57+
- Fix space typo in docs (#1459) (Thanks @artfuldev)
58+
- Unlock numpy after dropping 3.8 (#1480) (Thanks @SharonHart)
59+
60+
61+
## [2.2.355] - 2024-10-28
62+
### Added
63+
#### Docs
64+
* Add a link to HashiCorp vault operator resource ([#1468](https://github.com/microsoft/presidio/pull/1468)) (Thanks [Akshay Karle](https://github.com/akshaykarle))
65+
### Changed
66+
#### Analyzer
67+
* Updates to the transformers conf docs and yaml file ([#1467](https://github.com/microsoft/presidio/pull/1467))
68+
69+
#### Docs
70+
* docs: clarify the docs on deploying presidio to k8s ([#1453](https://github.com/microsoft/presidio/pull/1453)) (Thanks [Roel Fauconnier](https://github.com/roel4ez))
71+
72+
573
## [2.2.355] - July 9th 2024
674

775
> Note: A new YAML based mechanism has been added to support no-code customization and creation of recognizers.
@@ -431,8 +499,8 @@ Upgrade Analyzer spacy version to 3.0.5
431499

432500
#### Deanonymize:
433501
New endpoint for deanonymizing encrypted entities by the anonymizer.
434-
435-
[unreleased]: https://github.com/microsoft/presidio/compare/2.2.355...HEAD
502+
[unreleased]: https://github.com/microsoft/presidio/compare/2.2.356...HEAD
503+
[2.2.356]: https://github.com/microsoft/presidio/compare/2.2.355...356
436504
[2.2.355]: https://github.com/microsoft/presidio/compare/2.2.354...2.2.355
437505
[2.2.354]: https://github.com/microsoft/presidio/compare/2.2.353...2.2.354
438506
[2.2.353]: https://github.com/microsoft/presidio/compare/2.2.352...2.2.353

presidio-analyzer/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["poetry-core"]
44

55
[tool.poetry]
66
name = "presidio_analyzer"
7-
version = "2.2.355"
7+
version = "2.2.356"
88
description = "Presidio Analyzer package"
99
authors = ["Presidio <presidio@microsoft.com>"]
1010
license = "MIT"

presidio-anonymizer/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["poetry-core"]
44

55
[tool.poetry]
66
name = "presidio_anonymizer"
7-
version = "2.2.355"
7+
version = "2.2.356"
88
description = "Presidio Anonymizer package - replaces analyzed text with desired values."
99
authors = ["Presidio <presidio@microsoft.com>"]
1010
license = "MIT"

presidio-image-redactor/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["poetry-core"]
44

55
[tool.poetry]
66
name = "presidio-image-redactor"
7-
version = "0.0.53"
7+
version = "0.0.54"
88
description = "Presidio image redactor package"
99
authors = ["Presidio <presidio@microsoft.com>"]
1010
license = "MIT"

presidio-structured/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requires = ["poetry-core"]
44

55
[tool.poetry]
66
name = "presidio_structured"
7-
version = "0.0.2-alpha"
7+
version = "0.0.3-alpha"
88
description = "Presidio structured package - analyzes and anonymizes structured and semi-structured data."
99
authors = ["Presidio <presidio@microsoft.com>"]
1010
license = "MIT"

0 commit comments

Comments
 (0)