Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,13 @@ jobs:
release-pr:
runs-on: ubuntu-latest
needs: [test]
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
if: (github.ref == 'refs/heads/main' && github.event_name == 'push') || github.event_name == 'workflow_dispatch'
steps:
- uses: google-github-actions/release-please-action@v3.7.3
with:
release-type: node
package-name: ipfs-companion
command: manifest-pr
default-branch: fix/release-please
changelog-notes-type: github
command: release-pr
extra-files: |
add-on/manifest.common.json

release-assets:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "2.22.0"
}
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@



## [2.22.0](https://github.com/ipfs/ipfs-companion/compare/ipfs-companion-v2.21.0...ipfs-companion-v2.22.0) (2023-02-08)


### Features

* Adding Release Automation ([#1122](https://github.com/ipfs/ipfs-companion/issues/1122)) ([1ed411e](https://github.com/ipfs/ipfs-companion/commit/1ed411e5006a5a477c8002765977f16e1ff755a5))
* recovery page when local gateway is unreachable ([#1125](https://github.com/ipfs/ipfs-companion/issues/1125)) ([a74fbb3](https://github.com/ipfs/ipfs-companion/commit/a74fbb3736e6f29d337b6046b088f25a2d86e5b0))


### Bug Fixes

* :fire: Allow automation to run from manual triggers. ([#1143](https://github.com/ipfs/ipfs-companion/issues/1143)) ([a61e081](https://github.com/ipfs/ipfs-companion/commit/a61e081a75cee6d2a6c66d1c58819e9d63656a51))
* **release-automation:** :bug: Semver Path ([7036f6d](https://github.com/ipfs/ipfs-companion/commit/7036f6de0c9876e35d1ea0a9b1a5a25e6364d894))
* **release-automation:** :pushpin: pinning last release sha and future release number. ([2ad8769](https://github.com/ipfs/ipfs-companion/commit/2ad8769df3e37884ce10184626c593867f7a97ac))
* **release-automation:** :wrench: updating manifest.common.js ([a0ec44c](https://github.com/ipfs/ipfs-companion/commit/a0ec44cf039cdb212c00c44fee82fa7a12c71319))

## [2.6.2](https://github.com/ipfs-shipyard/ipfs-companion/compare/v2.6.1...v2.6.2) (2018-11-22)


Expand Down Expand Up @@ -558,6 +574,3 @@


# 0.1.0 (2015-03-22)



2 changes: 1 addition & 1 deletion add-on/manifest.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_manifest_extensionName__",
"short_name": "__MSG_manifest_shortExtensionName__",
"version": "2.21.0",
"version": "2.22.0",
"description": "__MSG_manifest_extensionDescription__",
"homepage_url": "https://github.com/ipfs-shipyard/ipfs-companion",
"author": "IPFS Community",
Expand Down
6 changes: 4 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,5 +180,6 @@
},
"ts-standard": {
"project": "./tsconfig.json"
}
},
"version": "2.22.0"
}
20 changes: 20 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"bootstrap-sha": "65fe66cc283f1ac8c89638034e7db006e1f53791",
"last-release-sha": "7td2b9838885b3adf52e78ddd23ac01cb819e631",
"group-pull-request-title-pattern": "chore${scope}: release${component} v${version}",
"extra-files": [
{
"type": "json",
"path": "add-on/manifest.common.json",
"jsonpath": "$.version"
}
],
"packages": {
".": {
"release-type": "node",
"plugins": ["node-workspace"],
"package-name": "ipfs-companion",
"release-as": "2.22.0"
}
}
}