Skip to content

Commit

Permalink
Released 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 14, 2022
1 parent e9beab2 commit 0f4a4af
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 22 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [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).

## [Unreleased]

## [0.9.1] - 2022-02-14
### Fixed
- Updated minimum version check of Shlink instance to 3.0.0
- Updated comment based help for `Get-ShlinkVisistNonOrphan` as it was copied from `Get-ShlinkVisitsOprhan`
Expand Down Expand Up @@ -117,7 +119,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/codaamok/PSShlink/compare/0.9.0..HEAD
[Unreleased]: https://github.com/codaamok/PSShlink/compare/0.9.1..HEAD
[0.9.1]: https://github.com/codaamok/PSShlink/compare/0.9.0..0.9.1
[0.9.0]: https://github.com/codaamok/PSShlink/compare/0.8.2..0.9.0
[0.8.2]: https://github.com/codaamok/PSShlink/compare/0.8.1..0.8.2
[0.8.1]: https://github.com/codaamok/PSShlink/compare/0.8.0..0.8.1
Expand Down
12 changes: 6 additions & 6 deletions docs/Get-ShlinkVisitsNonOrphan.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ schema: 2.0.0
# Get-ShlinkVisitsNonOrphan

## SYNOPSIS
Get the list of visits to invalid short URLs, the base URL or any other 404.
Get the list of visits to all valid short URLs.

## SYNTAX

Expand All @@ -18,23 +18,23 @@ Get-ShlinkVisitsNonOrphan [[-StartDate] <DateTime>] [[-EndDate] <DateTime>] [-Ex
```

## DESCRIPTION
Get the list of visits to invalid short URLs, the base URL or any other 404.
Get the list of visits to all valid short URLs.

## EXAMPLES

### EXAMPLE 1
```
Get-ShlinkVisitsOrphan
Get-ShlinkVisitsNonOrphan
```

Get the list of visits to invalid short URLs, the base URL or any other 404.
Get the list of visits to all valid short URLs.

### EXAMPLE 2
```
Get-ShlinkVisitsOrphan -StartDate (Get-Date "2020-11-01") -EndDate (Get-Date "2020-12-01") -ExcludeBots
Get-ShlinkVisitsNonOrphan -StartDate (Get-Date "2020-11-01") -EndDate (Get-Date "2020-12-01") -ExcludeBots
```

Get the list of visits to invalid short URLs, the base URL or any other 404, for the whole of November and excluding bots/crawlers.
Get the list of visits to all valid short URLs for the whole of November and excluding bots/crawlers.

## PARAMETERS

Expand Down
20 changes: 5 additions & 15 deletions src/PSShlink.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Adam Cook (@codaamok)
#
# Generated on: 02/13/2022
# Generated on: 02/14/2022
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'PSShlink.psm1'

# Version number of this module.
ModuleVersion = '0.9.0'
ModuleVersion = '0.9.1'

# Supported PSEditions
CompatiblePSEditions = 'Core', 'Desktop'
Expand Down Expand Up @@ -111,19 +111,9 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '# Added
- Function Get-ShlinkUrl has new parameter -TagsMode, new in Shlink 3.0.0
- Function Get-ShlinkTags has new parameter -SearchTerm, new in Shlink 3.0.0
- New function Get-ShlinkVisitsNonOrphan, new endpoint in Shlink 3.0.0
- New parameter -RoundBlockSize for Save-ShlinkUrlQrCode
# Changed
- Get-ShlinkTags uses the new /tags/stats endpoint to include stats in the data returned. This change is purely internal of the function, does not impact how the function is used or how the data is returned.
- Get-ShlinkDomains now includes two parent properties when data is returned: data and defaultRedirects. In Shlink 2.10.0, this endpoint was updated to include the defaultRedirects property. Previously, all that was returned was everything within the data property.
- New parameter set of possible values for -OrderBy parameter of Get-ShlinkUrl function: longUrl-ASC, longUrl-DESC, shortCode-ASC, shortCode-DESC, dateCreated-ASC, dateCreated-DESC, visits-ASC, visits-DESC, title-ASC, and title-DESC
# Removed
- Function New-ShlinKTag as the endpoint was removed from Shlink REST API in 3.0.0
# Fixed
- Remove-ShlinkTag ShouldProcess prompts listed the entire array of tags passed to it, rather than the current iterable it was working on'
ReleaseNotes = '# Fixed
- Updated minimum version check of Shlink instance to 3.0.0
- Updated comment based help for Get-ShlinkVisistNonOrphan as it was copied from Get-ShlinkVisitsOprhan'

# Prerelease string of this module
# Prerelease = ''
Expand Down

0 comments on commit 0f4a4af

Please sign in to comment.