Skip to content

Commit 01303a7

Browse files
author
Uwe Janke
committed
v1.9.1.0: export Invoke-sqmLogging (was private)
The new sibling project sqmPartitionTool (RequiredModules = @('dbatools', 'sqmSQLTool')) reuses this module's logging instead of duplicating it - private functions are not visible to other modules even with a declared RequiredModules dependency, so Invoke-sqmLogging had to be added to FunctionsToExport. No behavior change for sqmSQLTool itself.
1 parent dc0e0d0 commit 01303a7

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# sqmSQLTool — Changelog
22

3+
## [1.9.1.0] — 2026-07-03
4+
5+
### Erweiterung
6+
7+
**`Invoke-sqmLogging`** — jetzt exportiert (war bisher private)
8+
- Grund: das neue Schwester-Projekt `sqmPartitionTool` (eigenstaendiges Modul,
9+
`RequiredModules = @('dbatools','sqmSQLTool')`) soll das etablierte Logging
10+
wiederverwenden statt es zu duplizieren. Private Funktionen sind aber auch
11+
bei erklaerter Modul-Abhaengigkeit fuer andere Module nicht sichtbar -
12+
`Invoke-sqmLogging` musste dafuer in `FunctionsToExport` aufgenommen werden.
13+
- Kein Verhaltensunterschied fuer sqmSQLTool selbst; reine Sichtbarkeits-
14+
Erweiterung fuer Cross-Module-Nutzung.
15+
316
## [1.9.0.0] — 2026-07-02
417

518
### Neue Funktion

sqmSQLTool.psd1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
RootModule = 'sqmSQLTool.psm1'
1818

1919
# Version number of this module.
20-
ModuleVersion = '1.9.0.0'
20+
ModuleVersion = '1.9.1.0'
2121

2222
# ID used to uniquely identify this module
2323
GUID = 'c4b10ba2-aee2-4d8d-ad86-a6e97c346ba6'
@@ -146,6 +146,7 @@
146146
'Invoke-sqmFailover',
147147
'Invoke-sqmFormatDrive64k',
148148
'Invoke-sqmInstanceInventory',
149+
'Invoke-sqmLogging',
149150
'Invoke-sqmLoginAudit',
150151
'Invoke-sqmLogShrink',
151152
'Invoke-sqmMonitoringKey',

0 commit comments

Comments
 (0)