Toolkit: Release notes for @actions/github 1.0.1

Created on 3 Sep 2019  路  9Comments  路  Source: actions/toolkit

I just got a PR from dependabot bumping @actions/github to version 1.0.1 but there doesn't seem to be release notes for this in the project folder, or a release/tag. Is there an easier way to see what changed than looking through the commits?

All 9 comments

Whoops, sorry forgot to update the release notes - they should be updated now, it included a small change to enable simpler webpack configs (#101).

Same issue with the 1.1.0 releases.

Updated, sorry about that - will get better at this

There's also a 1.1.0 update for @actions/core, are there any changes to that beside #98?

No, that's it. Will update there as well

@damccorm I was looking into this more and what I found is because this is a mono repo the package.json of each package needs to be modified like so:

   "repository": {
     "type": "git",
-    "url": "git+https://github.com/actions/toolkit.git"
+    "url": "git+https://github.com/actions/toolkit.git",
+    "directory": "packages/github"
   },

Then RELEASES.md renamed to RELEASE.md or CHANGELOG.md (as per dependabot).

That should then allow Dependabot to pull the correct change log for each package instead of showing a list of commits like it's doing now. I was going to PR the changes but wasn't sure if you wanted them made.

I was going to PR the changes but wasn't sure if you wanted them made.

We would gladly accept a PR.

This change is in #143

The change log is showing in Dependabot's PRs now https://github.com/xt0rted/block-autosquash-commits-action/pull/44

Was this page helpful?
0 / 5 - 0 ratings