Skip to content

Commit

Permalink
add command with dev updates
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee authored Sep 28, 2023
1 parent fd0798a commit a38ab49
Showing 1 changed file with 37 additions and 9 deletions.
46 changes: 37 additions & 9 deletions dbatools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
RootModule = 'dbatools.psm1'

# Version number of this module.
ModuleVersion = '2.0.4'
ModuleVersion = '2.1.0'

# ID used to uniquely identify this module
GUID = '9d139310-ce45-41ce-8e8b-d76335aa1789'
Expand All @@ -29,7 +29,7 @@
Description = "The community module that enables SQL Server Pros to automate database development and server administration"

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @{ ModuleName = 'dbatools.library'; ModuleVersion = '2023.5.5' }
RequiredModules = @{ ModuleName = 'dbatools.library'; ModuleVersion = '2023.9.21' }

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @()
Expand Down Expand Up @@ -139,7 +139,7 @@
'Export-DbaLogin',
'Export-DbaPfDataCollectorSetTemplate',
'Export-DbaRegServer',
'Export-DbaRepServerSetting',
'Export-DbaReplServerSetting',
'Export-DbaScript',
'Export-DbaServerRole',
'Export-DbaSpConfigure',
Expand Down Expand Up @@ -350,9 +350,10 @@
'Get-DbaRegServer',
'Get-DbaRegServerGroup',
'Get-DbaRegServerStore',
'Get-DbaRepDistributor',
'Get-DbaRepPublication',
'Get-DbaRepServer',
'Get-DbaReplDistributor',
'Get-DbaReplPublication',
'Get-DbaReplPublisher',
'Get-DbaReplServer',
'Get-DbaResourceGovernor',
'Get-DbaRgClassifierFunction',
'Get-DbaRgResourcePool',
Expand Down Expand Up @@ -693,7 +694,7 @@
'Test-DbaOptimizeForAdHoc',
'Test-DbaPath',
'Test-DbaPowerPlan',
'Test-DbaRepLatency',
'Test-DbaReplLatency',
'Test-DbaSpn',
'Test-DbaTempDbConfig',
'Test-DbaWindowsLogin',
Expand Down Expand Up @@ -729,7 +730,23 @@
'Remove-DbaLinkedServerLogin',
'Remove-DbaCredential',
'Remove-DbaAgentProxy',
'Sync-DbaLoginPassword'
'Sync-DbaLoginPassword',

# NEW REPLICATION STUFF
'Disable-DbaReplDistributor',
'Enable-DbaReplDistributor',
'Disable-DbaReplPublishing',
'Enable-DbaReplPublishing',
'New-DbaReplPublication',
'Get-DbaReplArticle',
'Get-DbaReplArticleColumn',
'Add-DbaReplArticle',
'Remove-DbaReplArticle',
'Remove-DbaReplPublication',
'New-DbaReplSubscription',
'Remove-DbaReplSubscription',
'New-DbaReplCreationScriptOptions',
'Get-DbaReplSubscription'
)

# Cmdlets to export from this module
Expand All @@ -752,9 +769,20 @@
'Write-DbaDataTable',
'Get-DbaDbModule',
'Get-DbaBuildReference',
'Copy-DbaSysDbUserObject'
'Copy-DbaSysDbUserObject',

# replication aliases - these existed before the repl overhaul in 2.0+
'Get-DbaRepServer',
'Export-DbaRepServerSetting',
'Get-DbaRepDistributor',
'Test-DbaRepLatency',
'Get-DbaRepDistributor',
'Get-DbaRepPublication',
'Get-DbaRepServer'

)


# List of all modules packaged with this module
ModuleList = @()

Expand Down

0 comments on commit a38ab49

Please sign in to comment.