diff --git a/reference/5.1/Microsoft.PowerShell.Core/About/about_Language_Modes.md b/reference/5.1/Microsoft.PowerShell.Core/About/about_Language_Modes.md index 395440d721ea..195a78423759 100644 --- a/reference/5.1/Microsoft.PowerShell.Core/About/about_Language_Modes.md +++ b/reference/5.1/Microsoft.PowerShell.Core/About/about_Language_Modes.md @@ -1,7 +1,7 @@ --- description: Explains language modes and their effect on PowerShell sessions. Locale: en-US -ms.date: 10/04/2023 +ms.date: 04/03/2025 no-loc: [FullLanguage, ConstrainedLanguage, RestrictedLanguage, NoLanguage] online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_language_modes?view=powershell-5.1&WT.mc_id=ps-gethelp schema: 2.0.0 @@ -50,6 +50,9 @@ For example: ```powershell $ExecutionContext.SessionState.LanguageMode +``` + +```Output ConstrainedLanguage ``` @@ -57,7 +60,7 @@ However, in sessions with `RestrictedLanguage` and `NoLanguage` modes, you can't use the [member-access operator][02] (`.`) to get property values. Instead, the error message reveals the language mode. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a +When you access `$ExecutionContext.SessionState.LanguageMode` in a `RestrictedLanguage` session, PowerShell returns the **PropertyReferenceNotSupportedInDataSection** and **VariableReferenceNotSupportedInDataSection** error messages. @@ -68,8 +71,9 @@ When you run the `$ExecutionContext.SessionState.LanguageMode` command in a referenced in restricted language mode or a Data section is being referenced. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a -NoLanguage session, PowerShell returns the **ScriptsNotAllowed** error message. +When you access `$ExecutionContext.SessionState.LanguageMode` in a +`NoLanguage` session, PowerShell returns the **ScriptsNotAllowed** error +message. - **ScriptsNotAllowed**: The syntax isn't supported by this runspace. This might be because it's in no-language mode. @@ -82,6 +86,9 @@ language mode by getting the value of the **LanguageMode** property. ```powershell (Get-PSSessionConfiguration -Name Test).LanguageMode +``` + +```Output FullLanguage ``` @@ -117,11 +124,10 @@ application control policy. For example, there are additional restrictions to dot-sourcing and module importing under a policy. When a PowerShell session is started under a policy, it runs in -`ConstrainedLanguage` mode. This mode allows for a usable interactive shell -experience while limiting access to features and APIs that could be abused by a -malicious actor. Users can run cmdlets and native commands and have access to -basic language elements. Access to PowerShell, .NET, and COM APIs is -restricted. +`ConstrainedLanguage` mode. This mode allows users to have a usable interactive +shell experience, running cmdlets and native commands, as well as access to +basic language elements. But the user can't access PowerShell, .NET, or COM +APIs that could be abused by a malicious actor. Any script or script-based module executed in this session runs in `ConstrainedLanguage` mode. However, any script or script-based module allowed @@ -146,13 +152,13 @@ For more information, see [JEA Session configurations][01] and This section describes the language modes in PowerShell sessions. -### FullLanguage mode +### `FullLanguage` mode The `FullLanguage` mode permits all language elements in the session. `FullLanguage` is the default language mode for default sessions on all versions of Windows. -### RestrictedLanguage mode +### `RestrictedLanguage` mode In `RestrictedLanguage` mode, users can run commands (cmdlets, functions, CIM commands, and workflows), but can't use script blocks. This mode is also used @@ -175,8 +181,7 @@ additional variables: - `$PSScriptRoot` - `$PSEdition` -- `$EnabledExperimentalFeatures` -- Any environment variables, like `$Env:TEMP` +- Any environment variable, like `$env:TEMP` Only the following comparison operators are permitted: @@ -186,7 +191,7 @@ Only the following comparison operators are permitted: Assignment statements, property references, and method calls aren't permitted. -### ConstrainedLanguage mode +### `ConstrainedLanguage` mode `ConstrainedLanguage` mode is designed to allow basic language elements such as loops, conditionals, string expansion, and access to object properties. The @@ -221,7 +226,7 @@ The features of `ConstrainedLanguage` mode are as follows: The following .NET types are permitted in `ConstrainedLanguage` mode. Users can get properties, invoke methods, and convert objects to these types. -Allowed Types: +Allowed types: - `[adsi]` - `[adsisearcher]` @@ -230,7 +235,6 @@ Allowed Types: - `[AllowEmptyString]` - `[AllowNull]` - `[ArgumentCompleter]` -- `[ArgumentCompletions]` - `[array]` - `[bigint]` - `[bool]` @@ -249,9 +253,6 @@ Allowed Types: - `[DscLocalConfigurationManager]` - `[DscProperty]` - `[DscResource]` -- `[ExperimentAction]` -- `[Experimental]` -- `[ExperimentalFeature]` - `[float]` - `[guid]` - `[hashtable]` @@ -267,7 +268,6 @@ Allowed Types: - `[NullString]` - `[Object[]]` - `[ObjectSecurity]` -- `[ordered]` - `[OutputType]` - `[Parameter]` - `[PhysicalAddress]` @@ -278,24 +278,18 @@ Allowed Types: - `[psobject]` - `[psprimitivedictionary]` - `[PSTypeNameAttribute]` -- `[ref]` - `[regex]` - `[sbyte]` - `[securestring]` -- `[semver]` -- `[short]` - `[single]` - `[string]` - `[SupportsWildcards]` - `[switch]` - `[timespan]` -- `[uint]` - `[uint16]` - `[uint32]` - `[uint64]` -- `[ulong]` - `[uri]` -- `[ushort]` - `[ValidateCount]` - `[ValidateDrive]` - `[ValidateLength]` @@ -323,7 +317,17 @@ Only the following COM object types are permitted: - `Scripting.FileSystemObject` - `VBScript.RegExp` -### NoLanguage mode +Special cases: + +- `[ref]` - Casting an object to type `[ref]` or + `[Management.Automation.PSReference]` is not permitted. Other uses are + permitted. +- `[ordered]` - The `[ordered] @{}` expression is permitted and creates an + object of type `[Collections.Specialized.OrderedDictionary]`. However, + accessing methods of the object or directly instantiating an + **OrderedDictionary** is not permitted. + +### `NoLanguage` mode PowerShell `NoLanguage` mode disables PowerShell scripting language completely. You can't run scripts or use variables. You can only run native commands and diff --git a/reference/7.4/Microsoft.PowerShell.Core/About/about_Language_Modes.md b/reference/7.4/Microsoft.PowerShell.Core/About/about_Language_Modes.md index 57aee59a21cd..74fef858a52a 100644 --- a/reference/7.4/Microsoft.PowerShell.Core/About/about_Language_Modes.md +++ b/reference/7.4/Microsoft.PowerShell.Core/About/about_Language_Modes.md @@ -1,7 +1,7 @@ --- description: Explains language modes and their effect on PowerShell sessions. Locale: en-US -ms.date: 10/04/2023 +ms.date: 04/03/2025 no-loc: [FullLanguage, ConstrainedLanguage, RestrictedLanguage, NoLanguage] online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_language_modes?view=powershell-7.4&WT.mc_id=ps-gethelp schema: 2.0.0 @@ -53,6 +53,9 @@ For example: ```powershell $ExecutionContext.SessionState.LanguageMode +``` + +```Output ConstrainedLanguage ``` @@ -60,7 +63,7 @@ However, in sessions with `RestrictedLanguage` and `NoLanguage` modes, you can't use the [member-access operator][02] (`.`) to get property values. Instead, the error message reveals the language mode. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a +When you access `$ExecutionContext.SessionState.LanguageMode` in a `RestrictedLanguage` session, PowerShell returns the **PropertyReferenceNotSupportedInDataSection** and **VariableReferenceNotSupportedInDataSection** error messages. @@ -71,8 +74,9 @@ When you run the `$ExecutionContext.SessionState.LanguageMode` command in a referenced in restricted language mode or a Data section is being referenced. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a -NoLanguage session, PowerShell returns the **ScriptsNotAllowed** error message. +When you access `$ExecutionContext.SessionState.LanguageMode` in a +`NoLanguage` session, PowerShell returns the **ScriptsNotAllowed** error +message. - **ScriptsNotAllowed**: The syntax isn't supported by this runspace. This might be because it's in no-language mode. @@ -85,6 +89,9 @@ language mode by getting the value of the **LanguageMode** property. ```powershell (Get-PSSessionConfiguration -Name Test).LanguageMode +``` + +```Output FullLanguage ``` @@ -149,13 +156,13 @@ For more information, see [JEA Session configurations][01] and This section describes the language modes in PowerShell sessions. -### FullLanguage mode +### `FullLanguage` mode The `FullLanguage` mode permits all language elements in the session. `FullLanguage` is the default language mode for default sessions on all versions of Windows. -### RestrictedLanguage mode +### `RestrictedLanguage` mode In `RestrictedLanguage` mode, users can run commands (cmdlets, functions, CIM commands, and workflows), but can't use script blocks. This mode is also used @@ -179,7 +186,7 @@ additional variables: - `$PSScriptRoot` - `$PSEdition` - `$EnabledExperimentalFeatures` -- Any environment variables, like `$Env:TEMP` +- Any environment variable, like `$env:TEMP` Only the following comparison operators are permitted: @@ -189,7 +196,7 @@ Only the following comparison operators are permitted: Assignment statements, property references, and method calls aren't permitted. -### ConstrainedLanguage mode +### `ConstrainedLanguage` mode `ConstrainedLanguage` mode is designed to allow basic language elements such as loops, conditionals, string expansion, and access to object properties. The @@ -219,10 +226,10 @@ The features of `ConstrainedLanguage` mode are as follows: The following .NET types are permitted in `ConstrainedLanguage` mode. Users can get properties, invoke methods, and convert objects to these types. -Allowed Types: +Allowed types: -- `[adsi]` -- `[adsisearcher]` +- `[adsi]` (Windows-only) +- `[adsisearcher]` (Windows-only) - `[Alias]` - `[AllowEmptyCollection]` - `[AllowEmptyString]` @@ -277,7 +284,6 @@ Allowed Types: - `[psobject]` - `[psprimitivedictionary]` - `[PSTypeNameAttribute]` -- `[ref]` - `[regex]` - `[sbyte]` - `[securestring]` @@ -310,9 +316,9 @@ Allowed Types: - `[version]` - `[void]` - `[WildcardPattern]` -- `[wmi]` -- `[wmiclass]` -- `[wmisearcher]` +- `[wmi]` (Windows-only) +- `[wmiclass]` (Windows-only) +- `[wmisearcher]` (Windows-only) - `[X500DistinguishedName]` - `[X509Certificate]` - `[xml]` @@ -323,7 +329,13 @@ Only the following COM object types are permitted: - `Scripting.FileSystemObject` - `VBScript.RegExp` -### NoLanguage mode +Special cases: + +- `[ref]` - Casting an object to type `[ref]` or + `[Management.Automation.PSReference]` is not permitted. Other uses are + permitted. + +### `NoLanguage` mode PowerShell `NoLanguage` mode disables PowerShell scripting language completely. You can't run scripts or use variables. You can only run native commands and diff --git a/reference/7.5/Microsoft.PowerShell.Core/About/about_Language_Modes.md b/reference/7.5/Microsoft.PowerShell.Core/About/about_Language_Modes.md index bf113f57fb7c..f07079946635 100644 --- a/reference/7.5/Microsoft.PowerShell.Core/About/about_Language_Modes.md +++ b/reference/7.5/Microsoft.PowerShell.Core/About/about_Language_Modes.md @@ -1,7 +1,7 @@ --- description: Explains language modes and their effect on PowerShell sessions. Locale: en-US -ms.date: 10/04/2023 +ms.date: 04/03/2025 no-loc: [FullLanguage, ConstrainedLanguage, RestrictedLanguage, NoLanguage] online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_language_modes?view=powershell-7.5&WT.mc_id=ps-gethelp schema: 2.0.0 @@ -53,6 +53,9 @@ For example: ```powershell $ExecutionContext.SessionState.LanguageMode +``` + +```Output ConstrainedLanguage ``` @@ -60,7 +63,7 @@ However, in sessions with `RestrictedLanguage` and `NoLanguage` modes, you can't use the [member-access operator][02] (`.`) to get property values. Instead, the error message reveals the language mode. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a +When you access `$ExecutionContext.SessionState.LanguageMode` in a `RestrictedLanguage` session, PowerShell returns the **PropertyReferenceNotSupportedInDataSection** and **VariableReferenceNotSupportedInDataSection** error messages. @@ -71,8 +74,9 @@ When you run the `$ExecutionContext.SessionState.LanguageMode` command in a referenced in restricted language mode or a Data section is being referenced. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a -NoLanguage session, PowerShell returns the **ScriptsNotAllowed** error message. +When you access `$ExecutionContext.SessionState.LanguageMode` in a +`NoLanguage` session, PowerShell returns the **ScriptsNotAllowed** error +message. - **ScriptsNotAllowed**: The syntax isn't supported by this runspace. This might be because it's in no-language mode. @@ -85,6 +89,9 @@ language mode by getting the value of the **LanguageMode** property. ```powershell (Get-PSSessionConfiguration -Name Test).LanguageMode +``` + +```Output FullLanguage ``` @@ -149,13 +156,13 @@ For more information, see [JEA Session configurations][01] and This section describes the language modes in PowerShell sessions. -### FullLanguage mode +### `FullLanguage` mode The `FullLanguage` mode permits all language elements in the session. `FullLanguage` is the default language mode for default sessions on all versions of Windows. -### RestrictedLanguage mode +### `RestrictedLanguage` mode In `RestrictedLanguage` mode, users can run commands (cmdlets, functions, CIM commands, and workflows), but can't use script blocks. This mode is also used @@ -179,7 +186,7 @@ additional variables: - `$PSScriptRoot` - `$PSEdition` - `$EnabledExperimentalFeatures` -- Any environment variables, like `$Env:TEMP` +- Any environment variable, like `$env:TEMP` Only the following comparison operators are permitted: @@ -189,7 +196,7 @@ Only the following comparison operators are permitted: Assignment statements, property references, and method calls aren't permitted. -### ConstrainedLanguage mode +### `ConstrainedLanguage` mode `ConstrainedLanguage` mode is designed to allow basic language elements such as loops, conditionals, string expansion, and access to object properties. The @@ -219,10 +226,10 @@ The features of `ConstrainedLanguage` mode are as follows: The following .NET types are permitted in `ConstrainedLanguage` mode. Users can get properties, invoke methods, and convert objects to these types. -Allowed Types: +Allowed types: -- `[adsi]` -- `[adsisearcher]` +- `[adsi]` (Windows-only) +- `[adsisearcher]` (Windows-only) - `[Alias]` - `[AllowEmptyCollection]` - `[AllowEmptyString]` @@ -277,7 +284,6 @@ Allowed Types: - `[psobject]` - `[psprimitivedictionary]` - `[PSTypeNameAttribute]` -- `[ref]` - `[regex]` - `[sbyte]` - `[securestring]` @@ -310,9 +316,9 @@ Allowed Types: - `[version]` - `[void]` - `[WildcardPattern]` -- `[wmi]` -- `[wmiclass]` -- `[wmisearcher]` +- `[wmi]` (Windows-only) +- `[wmiclass]` (Windows-only) +- `[wmisearcher]` (Windows-only) - `[X500DistinguishedName]` - `[X509Certificate]` - `[xml]` @@ -323,7 +329,13 @@ Only the following COM object types are permitted: - `Scripting.FileSystemObject` - `VBScript.RegExp` -### NoLanguage mode +Special cases: + +- `[ref]` - Casting an object to type `[ref]` or + `[Management.Automation.PSReference]` is not permitted. Other uses are + permitted. + +### `NoLanguage` mode PowerShell `NoLanguage` mode disables PowerShell scripting language completely. You can't run scripts or use variables. You can only run native commands and diff --git a/reference/7.6/Microsoft.PowerShell.Core/About/about_Language_Modes.md b/reference/7.6/Microsoft.PowerShell.Core/About/about_Language_Modes.md index e75e37a8bda1..a78a133c4772 100644 --- a/reference/7.6/Microsoft.PowerShell.Core/About/about_Language_Modes.md +++ b/reference/7.6/Microsoft.PowerShell.Core/About/about_Language_Modes.md @@ -1,7 +1,7 @@ --- description: Explains language modes and their effect on PowerShell sessions. Locale: en-US -ms.date: 10/04/2023 +ms.date: 04/03/2025 no-loc: [FullLanguage, ConstrainedLanguage, RestrictedLanguage, NoLanguage] online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_language_modes?view=powershell-7.6&WT.mc_id=ps-gethelp schema: 2.0.0 @@ -53,6 +53,9 @@ For example: ```powershell $ExecutionContext.SessionState.LanguageMode +``` + +```Output ConstrainedLanguage ``` @@ -60,7 +63,7 @@ However, in sessions with `RestrictedLanguage` and `NoLanguage` modes, you can't use the [member-access operator][02] (`.`) to get property values. Instead, the error message reveals the language mode. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a +When you access `$ExecutionContext.SessionState.LanguageMode` in a `RestrictedLanguage` session, PowerShell returns the **PropertyReferenceNotSupportedInDataSection** and **VariableReferenceNotSupportedInDataSection** error messages. @@ -71,8 +74,9 @@ When you run the `$ExecutionContext.SessionState.LanguageMode` command in a referenced in restricted language mode or a Data section is being referenced. -When you run the `$ExecutionContext.SessionState.LanguageMode` command in a -NoLanguage session, PowerShell returns the **ScriptsNotAllowed** error message. +When you access `$ExecutionContext.SessionState.LanguageMode` in a +`NoLanguage` session, PowerShell returns the **ScriptsNotAllowed** error +message. - **ScriptsNotAllowed**: The syntax isn't supported by this runspace. This might be because it's in no-language mode. @@ -85,6 +89,9 @@ language mode by getting the value of the **LanguageMode** property. ```powershell (Get-PSSessionConfiguration -Name Test).LanguageMode +``` + +```Output FullLanguage ``` @@ -149,13 +156,13 @@ For more information, see [JEA Session configurations][01] and This section describes the language modes in PowerShell sessions. -### FullLanguage mode +### `FullLanguage` mode The `FullLanguage` mode permits all language elements in the session. `FullLanguage` is the default language mode for default sessions on all versions of Windows. -### RestrictedLanguage mode +### `RestrictedLanguage` mode In `RestrictedLanguage` mode, users can run commands (cmdlets, functions, CIM commands, and workflows), but can't use script blocks. This mode is also used @@ -179,7 +186,7 @@ additional variables: - `$PSScriptRoot` - `$PSEdition` - `$EnabledExperimentalFeatures` -- Any environment variables, like `$Env:TEMP` +- Any environment variable, like `$env:TEMP` Only the following comparison operators are permitted: @@ -189,7 +196,7 @@ Only the following comparison operators are permitted: Assignment statements, property references, and method calls aren't permitted. -### ConstrainedLanguage mode +### `ConstrainedLanguage` mode `ConstrainedLanguage` mode is designed to allow basic language elements such as loops, conditionals, string expansion, and access to object properties. The @@ -219,10 +226,10 @@ The features of `ConstrainedLanguage` mode are as follows: The following .NET types are permitted in `ConstrainedLanguage` mode. Users can get properties, invoke methods, and convert objects to these types. -Allowed Types: +Allowed types: -- `[adsi]` -- `[adsisearcher]` +- `[adsi]` (Windows-only) +- `[adsisearcher]` (Windows-only) - `[Alias]` - `[AllowEmptyCollection]` - `[AllowEmptyString]` @@ -277,7 +284,6 @@ Allowed Types: - `[psobject]` - `[psprimitivedictionary]` - `[PSTypeNameAttribute]` -- `[ref]` - `[regex]` - `[sbyte]` - `[securestring]` @@ -310,9 +316,9 @@ Allowed Types: - `[version]` - `[void]` - `[WildcardPattern]` -- `[wmi]` -- `[wmiclass]` -- `[wmisearcher]` +- `[wmi]` (Windows-only) +- `[wmiclass]` (Windows-only) +- `[wmisearcher]` (Windows-only) - `[X500DistinguishedName]` - `[X509Certificate]` - `[xml]` @@ -323,7 +329,13 @@ Only the following COM object types are permitted: - `Scripting.FileSystemObject` - `VBScript.RegExp` -### NoLanguage mode +Special cases: + +- `[ref]` - Casting an object to type `[ref]` or + `[Management.Automation.PSReference]` is not permitted. Other uses are + permitted. + +### `NoLanguage` mode PowerShell `NoLanguage` mode disables PowerShell scripting language completely. You can't run scripts or use variables. You can only run native commands and diff --git a/reference/docs-conceptual/community/2025-updates.md b/reference/docs-conceptual/community/2025-updates.md index c135c03f6910..a617b2a911be 100644 --- a/reference/docs-conceptual/community/2025-updates.md +++ b/reference/docs-conceptual/community/2025-updates.md @@ -1,6 +1,6 @@ --- description: List of changes to the PowerShell documentation for 2025 -ms.date: 03/03/2025 +ms.date: 04/04/2025 title: What's New in PowerShell-Docs for 2025 --- # What's new in PowerShell Docs for 2025 @@ -11,6 +11,33 @@ community. Help us make the documentation better for you. Read the [Contributor's Guide][01] to learn how to get started. +## 2025-March + +Content updates + +- DSC v3 GA release - Complete reorg of the documentation as well as updating for the GA release +- PSScriptAnalyzer v1.24.0 release - updated docs for release +- Tons for quality improvements from surfingoldelephant + - 38 PRs cleaning up 1505 files + +### Top Community Contributors + +GitHub stats + +- 68 PRs merged (40 from Community) +- 30 issues opened (28 from Community) +- 30 issues closed (28 Community issues closed) + +The following people contributed to PowerShell docs this month by submitting pull requests or +filing issues. Thank you! + +| GitHub Id | PRs merged | Issues opened | +| ------------------ | :--------: | :-----------: | +| surfingoldelephant | 38 | 2 | +| Allyyyyy | 1 | | +| jborean93 | 1 | | +| JustinGrote | | 2 | + ## 2025-February Content updates diff --git a/reference/docs-conceptual/community/hall-of-fame.md b/reference/docs-conceptual/community/hall-of-fame.md index eb709d09ee48..3c60f349bdd0 100644 --- a/reference/docs-conceptual/community/hall-of-fame.md +++ b/reference/docs-conceptual/community/hall-of-fame.md @@ -1,6 +1,6 @@ --- description: List of the GitHub users that have the most contributions to the PowerShell-Doc project. -ms.date: 03/03/2025 +ms.date: 04/04/2025 title: Community contributor Hall of Fame --- # Community Contributor Hall of Fame @@ -17,20 +17,20 @@ Pull Requests help us fix those issues and make the documentation better for eve | PRs Merged | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | Grand Total | | ------------------ | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ----------: | -| Community | 3 | 194 | 446 | 467 | 321 | 160 | 100 | 121 | 108 | 81 | 59 | 2060 | +| Community | 3 | 194 | 446 | 467 | 321 | 160 | 100 | 121 | 108 | 81 | 99 | 2100 | | matt9ucci | | | 157 | 80 | 30 | 1 | 6 | | | | | 274 | | nschonni | | | | 14 | 138 | 10 | | | | | | 162 | | kiazhi | | 25 | 79 | 12 | | | | | | | | 116 | | alexandair | | 57 | 7 | 26 | 2 | 1 | | | | | | 93 | | sethvs | | | 1 | 44 | | 20 | 1 | 10 | | 6 | | 82 | | doctordns | | 5 | 32 | 20 | 7 | 9 | 5 | | 1 | | | 79 | +| surfingoldelephant | | | | | | | | | | | 55 | 55 | | ehmiiz | | | | | | | | 22 | 14 | | | 36 | | ArieHein | | | | | 1 | | | | | 7 | 25 | 33 | | yecril71pl | | | | | | 21 | 3 | 3 | | | | 27 | | Dan1el42 | | 20 | | | | | | | | | | 20 | | skycommand | | | 1 | 3 | 3 | 6 | | 1 | 4 | 1 | | 19 | | NReilingh | | 2 | | 13 | 3 | | | | | | | 18 | -| surfingoldelephant | | | | | | | | | | | 17 | 17 | | it-praktyk | | | | 16 | 1 | | | | | | | 17 | | vors | | 15 | 1 | | | | | | | | | 16 | | markekraus | | | 11 | 5 | | | | | | | | 16 | @@ -38,8 +38,8 @@ Pull Requests help us fix those issues and make the documentation better for eve | changeworld | | | | | | | | 3 | | | 12 | 15 | | k-takai | | | | 5 | 1 | 7 | | | | | | 13 | | purdo17 | | | | 13 | | | | | | | | 13 | -| PlagueHO | | 10 | | | 1 | | | | | | | 11 | | exchange12rocks | | | 7 | 3 | | | 1 | | | | | 11 | +| PlagueHO | | 10 | | | 1 | | | | | | | 11 | | bergmeister | | | 1 | 3 | 3 | 1 | 1 | 1 | 1 | | | 11 | ## GitHub issues opened @@ -48,7 +48,7 @@ GitHub issues help us identify errors and gaps in our documentation. | Issues Opened | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024 | 2025 | Grand Total | | ------------------ | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ----------: | -| Community | 3 | 54 | 95 | 211 | 561 | 557 | 363 | 225 | 270 | 222 | 43 | 2604 | +| Community | 3 | 54 | 95 | 211 | 561 | 557 | 363 | 225 | 270 | 222 | 60 | 2621 | | mklement0 | | | 19 | 60 | 56 | 61 | 28 | 8 | 20 | 24 | | 276 | | ehmiiz | | | | | | | | 20 | 14 | | | 34 | | iSazonov | | | 1 | 4 | 10 | 8 | 4 | 3 | | 1 | | 31 | @@ -57,9 +57,9 @@ GitHub issues help us identify errors and gaps in our documentation. | juvtib | | | | | | 15 | 7 | | | | | 22 | | doctordns | | | 5 | 3 | 5 | 7 | 1 | | | | | 21 | | peetrike | | | | 1 | | 4 | 2 | 6 | 4 | 3 | | 20 | +| surfingoldelephant | | | | | | | | | | 6 | 12 | 18 | +| JustinGrote | | | | 1 | 3 | 6 | 1 | 1 | 2 | 2 | 2 | 18 | | vexx32 | | | | 3 | 11 | | | 3 | | | | 17 | -| JustinGrote | | | | 1 | 3 | 6 | 1 | 1 | 2 | 2 | | 16 | -| surfingoldelephant | | | | | | | | | | 6 | 9 | 15 | | KirkMunro | | | | 7 | 7 | 1 | | | | | | 15 | | alexandair | | 9 | 4 | 2 | | | | | | | | 15 | | kilasuit | | | | | 3 | 2 | 1 | 4 | 1 | 3 | | 14 |