Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

PullRequestReleaseNotes

This is not the latest version of PullRequestReleaseNotes available.

  • 1
  • 2
  • 3

1.2.5 | Updated: 19 Jul 2019

Downloads:

4,125

Downloads of v 1.2.5:

194

Maintainer(s):

Software Author(s):

  • Jasmin Sehic

PullRequestReleaseNotes 1.2.5

This is not the latest version of PullRequestReleaseNotes available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install PullRequestReleaseNotes, run the following command from the command line or from PowerShell:

>

To upgrade PullRequestReleaseNotes, run the following command from the command line or from PowerShell:

>

To uninstall PullRequestReleaseNotes, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade pullrequestreleasenotes -y --source="'INTERNAL REPO URL'" --version="'1.2.5'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade pullrequestreleasenotes -y --source="'INTERNAL REPO URL'" --version="'1.2.5'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install pullrequestreleasenotes
  win_chocolatey:
    name: pullrequestreleasenotes
    version: '1.2.5'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'pullrequestreleasenotes' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.2.5'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller pullrequestreleasenotes
{
    Name     = "pullrequestreleasenotes"
    Version  = "1.2.5"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'pullrequestreleasenotes':
  ensure   => '1.2.5',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 19 Jul 2019.

Description

Builds release history notes from unreleased pull requests on GitHub, GitLab, Azure DevOps Services / Server, BitBucket Cloud and Bitbucket Server and optionally posts them to a markdown file, Atlassian Confluence and Slack.


LICENSE.txt
The MIT License (MIT)

Copyright (c) 2016 Jasmin Sehic

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\lib\alpine-x64\libgit2-572e4d8.so
md5: 0AB58F7E68EE6A2E7AC56D828F5CC59B | sha1: 77D3EC94237F2DB19A1359F1F672C6AD8F8DB980 | sha256: 207D6BBE67FD4D9ABB67CA2F0837539913C7C8E0BCAF6C789528304AD28AC6BB | sha512: D9CA3448F951441A8D2F545E534AC1D431354F3D119D2CB9F724C445D513D73CEBD7D476036300CFB364DBDB274F41E6B7A139E473C767764E9B34FB8926F4E8
tools\lib\debian.9-x64\libgit2-572e4d8.so
md5: 8F30E884C4E682BAA723A961D0C976CF | sha1: A77E262A06617DA9E4D51DAA8A665F87F9CFD68D | sha256: 031007A440729627CDD4131D498C8EED8ED6157374FC1C8BE92735B85FDC974F | sha512: 949E8F51319583C7BA14EBEC0CCC8AE6F21A11CDA8299B5BD0D5A2528D5317C6F3F45F085924B310A5D1CA0151F977052CB4D2941DF573C37E55F1F64033F14F
tools\lib\fedora-x64\libgit2-572e4d8.so
md5: 6080C7E7592207F829E6F50D0CB47F13 | sha1: 870801C0ACC96FA1268901445A9ACB6230CD3F59 | sha256: 868FA0CB6A683E6F1E9D22B4BD926BBD080E5BFDD93F70922384CAAFFD255045 | sha512: 083B89A4FDFE06AC74B0F281150A58A5CD5E9B034DDA3EE17DF93E9C923C2F13E4068C9A8BA4BC99A5F6AF4D19B0E1470E99B5A6C0AF05D6C1BC7E915AC54C1D
tools\lib\linux-x64\libgit2-572e4d8.so
md5: 6C255FDE6D48874B2F67EC06A7D77640 | sha1: 20BC444F281112DF36BC3037F88770ED0C717A0D | sha256: D4F16ACE44D3162503339D008A134C20797EAC7CF836F28C0D238B03EF6A66C6 | sha512: 89FFB6FE0B2E9A92410EF6EA60AB6668545E5BFF6785425CD060B044D89598CBA433286EFB3C99C839ED4DD0107B9116B72E70D5A3F4E10C2109697A7B5E98AB
tools\lib\osx\libgit2-572e4d8.dylib
 
tools\lib\rhel-x64\libgit2-572e4d8.so
md5: F931AAF4517F2A637BF01D6B628F685F | sha1: 4628E17D0C8F1C9DD71A4B5B83BD8D92606AE246 | sha256: A332C6808ECA0451048258694DBB23BA004079C302E197A0FCBC909C8E2400F2 | sha512: C7383ABE31B6DDA4C371C0179CF487BB38019F7ABDB74CD074D2C9CCF325CCF3CFCFB622D1511BDA1140A5CAA1915460E6C3BE0D1279F6FBB0CB9366725CB3F5
tools\lib\ubuntu.18.04-x64\libgit2-572e4d8.so
md5: F4F72AA1394ABEF7F85706A7E950D735 | sha1: 1FDF0ECA4B08D96A66E55C340EAD41184541A11C | sha256: E561371C46D13666A6C89D217DE256B71EA438F0E4E60A5E07B47ADB2A293745 | sha512: 0D725CC1FA656FD1C03D492E670CCBBA4A5D19BD7F6857E86F24FC226F9F8393E292E4B6BF0A6F76EC6FA176B37F8512865558E33B223C0BCA316EB3D1C01CB8
tools\lib\win32\x64\git2-572e4d8.dll
md5: 7C0D39886D1633A26003AFF5F10488FB | sha1: D9B161D7B5494F06FE0B28E6F834F3700ABE7C34 | sha256: 288D88AB393EB30682339C1A4F8028AA2EA88610EB87DFE85EC0E438A0A23699 | sha512: BEA13693946AE38BF4B2A6060EB54523043980FB569EE1FCE9658E79D2F67844B973AB5FBF54B6AC6E76DEEB93D43B2E9DA8C024294B694206967F36C2A35935
tools\lib\win32\x64\git2-572e4d8.pdb
 
tools\lib\win32\x86\git2-572e4d8.dll
md5: 9382A788E9F5D9C7CE9B8B902E2831EF | sha1: E5E3CA4691F4DD6D14DDC37401CB373EBC45D488 | sha256: B5E88F0DF5CB3E873F19C6DEBFFCB9E1DC34C2B5D3D3104AEC3E6434A1F1F289 | sha512: EFB115F4BDBA8A5AD49A7FC29EFB398497567FC58023E6507534CD2DD57DCCED101709964ED052FA4931F94A9C8E3D480D05D4D572241B832470DA7D954E8237
tools\lib\win32\x86\git2-572e4d8.pdb
 
tools\LibGit2Sharp.dll.config
<configuration>
    <dllmap os="linux" cpu="x86-64" wordsize="64" dll="git2-572e4d8" target="lib/linux-x64/libgit2-572e4d8.so" />
    <dllmap os="osx" cpu="x86,x86-64" dll="git2-572e4d8" target="lib/osx/libgit2-572e4d8.dylib" />
</configuration>
tools\PullRequestReleaseNotes.exe
md5: 7304EA3EA501848BB0A93B41FFFE00AB | sha1: 371A0F99473F0B59B7A705F9258C739964247FB7 | sha256: 8A2603B256B21E43EDFAC4E7C3982C26681A305422D60B978D819FA51CE1E4AE | sha512: 043BA627833EDAA8609FE0874E152519C982A73E0D5EBED9682C16952E156CD8BEC80D9683E66FF85DEC948648BB7D704836E1B107DC2D9CCECB2E3514632761
tools\PullRequestReleaseNotes.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="RestSharp" publicKeyToken="598062e77f915f75" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-106.6.9.0" newVersion="106.6.9.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\PullRequestReleaseNotes.pdb
 
VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the Jasmin Sehic himself. The binaries include
those published by the LibGit2Sharp.NativeBinaries project.

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
PullRequestReleaseNotes 2.0.0 138 Thursday, October 22, 2020 Approved
PullRequestReleaseNotes 1.2.8 484 Sunday, July 28, 2019 Approved
PullRequestReleaseNotes 1.2.7 173 Friday, July 26, 2019 Approved
PullRequestReleaseNotes 1.2.6 231 Friday, July 26, 2019 Approved
PullRequestReleaseNotes 1.2.5 194 Friday, July 19, 2019 Approved
PullRequestReleaseNotes 1.2.4 205 Friday, July 19, 2019 Approved
PullRequestReleaseNotes 1.2.3 208 Monday, July 1, 2019 Approved
PullRequestReleaseNotes 1.2.2 219 Wednesday, June 26, 2019 Approved
PullRequestReleaseNotes 1.2.1 226 Wednesday, June 19, 2019 Approved
PullRequestReleaseNotes 1.1.2 845 Friday, June 17, 2016 Approved
PullRequestReleaseNotes 1.1.1 466 Thursday, June 9, 2016 Approved

This package has no dependencies.

Discussion for the PullRequestReleaseNotes Package

Ground Rules:

  • This discussion is only about PullRequestReleaseNotes and the PullRequestReleaseNotes package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or PullRequestReleaseNotes, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus