Skip to content

Commit ad8e0e4

Browse files
committed
release: 0.0.2
1 parent c5bcf21 commit ad8e0e4

File tree

2 files changed

+95
-85
lines changed

2 files changed

+95
-85
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 0.0.2
4+
5+
### Various fixes & improvements
6+
7+
- add changelog (c5bcf218) by @vaind
8+
- chore: use env file to change craft log level (4431f857) by @vaind
9+
- chore: change craft log level to trace (77ffea0c) by @vaind
10+
- docs: add sentry psgallery link (bd550ba5) by @vaind
11+
- fixup psd links (9b04cf8a) by @vaind
12+
313
## 0.0.1
414

515
Initial manual release of the PowerShell Sentry SDK.

modules/Sentry/Sentry.psd1

+85-85
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,85 @@
1-
# https://learn.microsoft.com/en-us/powershell/scripting/developer/module/how-to-write-a-powershell-module-manifest
2-
@{
3-
# Script module or binary module file associated with this manifest.
4-
RootModule = 'Sentry.psm1'
5-
6-
# Version number of this module.
7-
ModuleVersion = '0.0.1'
8-
9-
# Supported PSEditions
10-
CompatiblePSEditions = @('Desktop', 'Core')
11-
12-
# ID used to uniquely identify this module
13-
GUID = '4062b4a0-74d3-4aee-a3ec-9889342d4025'
14-
15-
# Author of this module
16-
Author = 'Sentry'
17-
18-
# Company or vendor of this module
19-
CompanyName = 'Sentry'
20-
21-
# Copyright statement for this module
22-
Copyright = '(c) Sentry. All rights reserved.'
23-
24-
# Description of the functionality provided by this module
25-
Description = 'An error reporting module that sends reports to Sentry.io'
26-
27-
# Minimum version of the PowerShell engine required by this module
28-
PowerShellVersion = '5.1'
29-
30-
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
31-
ScriptsToProcess = @('assemblies-loader.ps1')
32-
33-
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
34-
FunctionsToExport = @(
35-
'Add-SentryBreadcrumb',
36-
'Edit-SentryScope',
37-
'Invoke-WithSentry',
38-
'Out-Sentry',
39-
'Start-Sentry',
40-
'Start-SentryTransaction',
41-
'Stop-Sentry'
42-
)
43-
44-
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
45-
CmdletsToExport = @()
46-
47-
# Variables to export from this module
48-
VariablesToExport = @()
49-
50-
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
51-
AliasesToExport = @()
52-
53-
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
54-
PrivateData = @{
55-
PSData = @{
56-
# Tags applied to this module. These help with module discovery in online galleries.
57-
Tags = @('Sentry', 'PSEdition_Core', 'PSEdition_Desktop', 'Windows', 'Linux', 'macOS')
58-
59-
60-
# A URL to the license for this module.
61-
LicenseUri = 'https://raw.githubusercontent.com/getsentry/sentry-powershell/main/LICENSE'
62-
63-
# A URL to the main website for this project.
64-
ProjectUri = 'https://github.com/getsentry/sentry-powershell'
65-
66-
# A URL to an icon representing this module.
67-
IconUri = 'https://raw.githubusercontent.com/getsentry/platformicons/4e407e832f1a2a95d77ca8ca0ea2a195a38eec24/svg/sentry.svg'
68-
69-
# ReleaseNotes of this module
70-
ReleaseNotes = 'https://raw.githubusercontent.com/getsentry/sentry-powershell/main/CHANGELOG.md'
71-
72-
# Prerelease string of this module
73-
Prerelease = 'dev'
74-
75-
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
76-
# RequireLicenseAcceptance = $false
77-
78-
# External dependent modules of this module
79-
# ExternalModuleDependencies = @()
80-
} # End of PSData hashtable
81-
} # End of PrivateData hashtable
82-
83-
# HelpInfo URI of this module
84-
HelpInfoURI = 'https://docs.sentry.io/platforms/powershell'
85-
}
1+
# https://learn.microsoft.com/en-us/powershell/scripting/developer/module/how-to-write-a-powershell-module-manifest
2+
@{
3+
# Script module or binary module file associated with this manifest.
4+
RootModule = 'Sentry.psm1'
5+
6+
# Version number of this module.
7+
ModuleVersion = '0.0.2'
8+
9+
# Supported PSEditions
10+
CompatiblePSEditions = @('Desktop', 'Core')
11+
12+
# ID used to uniquely identify this module
13+
GUID = '4062b4a0-74d3-4aee-a3ec-9889342d4025'
14+
15+
# Author of this module
16+
Author = 'Sentry'
17+
18+
# Company or vendor of this module
19+
CompanyName = 'Sentry'
20+
21+
# Copyright statement for this module
22+
Copyright = '(c) Sentry. All rights reserved.'
23+
24+
# Description of the functionality provided by this module
25+
Description = 'An error reporting module that sends reports to Sentry.io'
26+
27+
# Minimum version of the PowerShell engine required by this module
28+
PowerShellVersion = '5.1'
29+
30+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
31+
ScriptsToProcess = @('assemblies-loader.ps1')
32+
33+
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
34+
FunctionsToExport = @(
35+
'Add-SentryBreadcrumb',
36+
'Edit-SentryScope',
37+
'Invoke-WithSentry',
38+
'Out-Sentry',
39+
'Start-Sentry',
40+
'Start-SentryTransaction',
41+
'Stop-Sentry'
42+
)
43+
44+
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
45+
CmdletsToExport = @()
46+
47+
# Variables to export from this module
48+
VariablesToExport = @()
49+
50+
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
51+
AliasesToExport = @()
52+
53+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
54+
PrivateData = @{
55+
PSData = @{
56+
# Tags applied to this module. These help with module discovery in online galleries.
57+
Tags = @('Sentry', 'PSEdition_Core', 'PSEdition_Desktop', 'Windows', 'Linux', 'macOS')
58+
59+
60+
# A URL to the license for this module.
61+
LicenseUri = 'https://raw.githubusercontent.com/getsentry/sentry-powershell/main/LICENSE'
62+
63+
# A URL to the main website for this project.
64+
ProjectUri = 'https://github.com/getsentry/sentry-powershell'
65+
66+
# A URL to an icon representing this module.
67+
IconUri = 'https://raw.githubusercontent.com/getsentry/platformicons/4e407e832f1a2a95d77ca8ca0ea2a195a38eec24/svg/sentry.svg'
68+
69+
# ReleaseNotes of this module
70+
ReleaseNotes = 'https://raw.githubusercontent.com/getsentry/sentry-powershell/main/CHANGELOG.md'
71+
72+
# Prerelease string of this module
73+
Prerelease = ''
74+
75+
# Flag to indicate whether the module requires explicit user acceptance for install/update/save
76+
# RequireLicenseAcceptance = $false
77+
78+
# External dependent modules of this module
79+
# ExternalModuleDependencies = @()
80+
} # End of PSData hashtable
81+
} # End of PrivateData hashtable
82+
83+
# HelpInfo URI of this module
84+
HelpInfoURI = 'https://docs.sentry.io/platforms/powershell'
85+
}

0 commit comments

Comments
 (0)