Skip to content

Commit 631cb26

Browse files
authored
Merge pull request #44 from KelvinTegelaar/dev
[pull] dev from KelvinTegelaar:dev
2 parents 7483979 + 6d45d05 commit 631cb26

37 files changed

Lines changed: 297 additions & 272 deletions
-41.5 KB
Binary file not shown.

Modules/AzBobbyTables/3.4.0/CHANGELOG.md

Lines changed: 0 additions & 86 deletions
This file was deleted.
-44.5 KB
Binary file not shown.
Binary file not shown.
-1.07 MB
Binary file not shown.
42 KB
Binary file not shown.

Modules/AzBobbyTables/3.4.0/AzBobbyTables.psd1 renamed to Modules/AzBobbyTables/3.5.0/AzBobbyTables.psd1

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'AzBobbyTables.PS.dll'
55

66
# Version number of this module.
7-
ModuleVersion = '3.4.0'
7+
ModuleVersion = '3.5.0'
88

99
# Supported PSEditions
1010
CompatiblePSEditions = @('Core')
@@ -110,21 +110,7 @@ PrivateData = @{
110110
# IconUri = ''
111111

112112
# ReleaseNotes of this module
113-
ReleaseNotes = '## [3.4.0] - 2025-07-03
114-
115-
### Added
116-
117-
- Added SortedList as valid type for -Entity parameter [#52](https://github.com/PalmEmanuel/AzBobbyTables/issues/52)
118-
- New command `Get-AzDataTableSupportedEntityType` to get the supported data types for the module when using `-Entity` parameter
119-
120-
### Changed
121-
122-
- Dependency version bumps
123-
- Rewrote core module logic to add a converter system which allows for flexible entity types
124-
- Updated gitversion config for build and release
125-
- Improved module tests for the new type converter system
126-
127-
'
113+
ReleaseNotes = ''
128114

129115
# Prerelease string of this module
130116
# Prerelease = ''
@@ -146,3 +132,4 @@ PrivateData = @{
146132
# DefaultCommandPrefix = ''
147133

148134
}
135+
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Changelog for the module
2+
3+
The format is based on and uses the types of changes according to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4+
5+
## [Unreleased]
6+
7+
## [3.5.0] - 2026-04-20
8+
9+
### Changed
10+
11+
- Now shares a single HttpClient across all TableClient/TableServiceClient instances via HttpClientTransport, enabling TCP connection pooling and reducing socket churn in high-concurrency scenarios [#122](https://github.com/PalmEmanuel/AzBobbyTables/pull/122)
12+
- Bump System.Linq.Async from 7.0.0 to 7.0.1
13+
14+
## [3.4.2] - 2026-03-30
15+
16+
### Fixed
17+
18+
- Support Managed Identity on Azure VMs via IMDS fallback ([#116](https://github.com/PalmEmanuel/AzBobbyTables/pull/116))
19+
20+
### Changed
21+
22+
- Updated documentation to include `SortedList` as a supported entity type for `Add-`, `Update-`, and `Remove-AzDataTableEntity` ([#117](https://github.com/PalmEmanuel/AzBobbyTables/pull/117))
23+
24+
## [3.4.1] - 2026-03-05
25+
26+
### Changed
27+
28+
- Bump System.Linq.Async from 6.0.3 to 7.0.0
29+
- Improved error handling to respect -ErrorAction through WriteError
30+
31+
## [3.4.0] - 2025-07-03
32+
33+
### Added
34+
35+
- Added SortedList as valid type for -Entity parameter [#52](https://github.com/PalmEmanuel/AzBobbyTables/issues/52)
36+
- New command `Get-AzDataTableSupportedEntityType` to get the supported data types for the module when using `-Entity` parameter
37+
38+
### Changed
39+
40+
- Dependency version bumps
41+
- Rewrote core module logic to add a converter system which allows for flexible entity types
42+
- Updated gitversion config for build and release
43+
- Improved module tests for the new type converter system
44+
45+
## [3.3.2] - 2025-02-26
46+
47+
### Fixed
48+
49+
- Fixed bug where validation for Partition- and RowKey was not checking case sensitivity [#68](https://github.com/PalmEmanuel/AzBobbyTables/pull/81)
50+
51+
## [3.3.1] - 2024-10-19
52+
53+
### Added
54+
55+
- Added `-OperationType` parameter to `Add-AzDataTableEntity` and `Update-AzDataTableEntity` to support merge or replace operations [#81](https://github.com/PalmEmanuel/AzBobbyTables/pull/81)
56+
57+
## [3.3.0] - 2024-10-18
58+
59+
### Added
60+
61+
- Added command `Get-AzDataTable` to get the names of tables in a storage account [#77](https://github.com/PalmEmanuel/AzBobbyTables/issues/77)
62+
63+
### Changed
64+
65+
- Implemented TableServiceClient to support operations on tables in the storage account.
66+
67+
## [3.2.1] - 2024-07-09
68+
69+
### Fixed
70+
71+
- Fixed bug where empty lines were written to console.
72+
73+
## [3.2.0] - 2024-03-21
74+
75+
### Added
76+
77+
- ETag validation for Update- & Remove-AzDataTableEntity ([#58](https://github.com/PalmEmanuel/AzBobbyTables/issues/58))
78+
79+
### Fixed
80+
81+
- Missing examples of Remove-AzDataTableEntity ([#62](https://github.com/PalmEmanuel/AzBobbyTables/issues/62))
82+
83+
## [3.1.3] - 2024-01-20
84+
85+
### Added
86+
87+
- Added Sampler ([#48](https://github.com/PalmEmanuel/AzBobbyTables/issues/48)).
88+
- Added support for user-assigned managed identities ([#54](https://github.com/PalmEmanuel/AzBobbyTables/issues/54)).
89+
90+
## [3.1.2] - 2024-01-05
91+
92+
### Added
93+
94+
- Help documentation for a DateTime problem caused by the SDK (#43).
95+
96+
## 3.1.1 - 2023-05-03
97+
98+
[unreleased]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.5.0...HEAD
99+
[3.5.0]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.4.2...v3.5.0
100+
[3.4.2]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.4.1...v3.4.2
101+
[3.4.1]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.4.0...v3.4.1
102+
[3.4.0]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.3.2...v3.4.0
103+
[3.3.2]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.3.1...v3.3.2
104+
[3.3.1]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.3.0...v3.3.1
105+
[3.3.0]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.2.1...v3.3.0
106+
[3.2.1]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.2.0...v3.2.1
107+
[3.2.0]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.1.3...v3.2.0
108+
[3.1.3]: https://github.com/PalmEmanuel/AzBobbyTables/compare/v3.1.2...v3.1.3
109+
[3.1.2]: https://github.com/PalmEmanuel/AzBobbyTables/compare/d854153aca6c5cce35a123deb86653a0d3289b07...v3.1.2

0 commit comments

Comments
 (0)