From f93dc52dfed8f88e00c699f5bfe60da37746ede1 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Sat, 9 Oct 2021 04:22:48 -0400 Subject: [PATCH 1/7] feat: add daily go mod updates --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9b62da4..a0a2867 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,4 +4,8 @@ updates: - package-ecosystem: "docker" directory: "/" schedule: - interval: "weekly" + interval: "daily" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" From 31e42bde97f34bf549efb7f7e0ba4aebf0394f07 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 22 Oct 2021 06:27:24 -0400 Subject: [PATCH 2/7] ci: use updated github access token variable --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81d66e6..bf06d6b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true env: - GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} steps: From 777b2411814adf08c6694986f41a441942eaa074 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Nov 2021 00:23:54 +0000 Subject: [PATCH 3/7] chore(deps): bump golang from 1.17.2-buster to 1.17.3-buster Bumps golang from 1.17.2-buster to 1.17.3-buster. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.build b/Dockerfile.build index 7eddc07..e371ace 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,4 +1,4 @@ -FROM golang:1.17.2-buster +FROM golang:1.17.3-buster RUN apt-get update \ && apt install apt-transport-https build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby -qy \ From 43362815911a5953f7793ac143528dd2d9bf33b8 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 4 Nov 2021 22:42:59 -0400 Subject: [PATCH 4/7] chore: delete the changelog This information will be encoded in the git commit instead, assuming gh-release works the way I think it does. --- CHANGELOG.md | 79 ---------------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 2917946..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,79 +0,0 @@ -## [0.4.0](https://github.com/dokku/netrc/compare/v0.3.2...v0.4.0) - 2021-10-09 - -### Added - -- #11 @josegonzalez Add dependabot config - -### Removed - -- #13 @josegonzalez Drop xenial - -### Changes - -- #12 @dependabot chore(deps): bump golang from 1.15.6-buster to 1.17.2-buster -- #14 @josegonzalez Updated golang and dependencies - -## [0.3.2](https://github.com/dokku/netrc/compare/v0.3.1...v0.3.2) - 2021-10-09 - -### Added - -- #7 @adam12 Add bullseye to deb release task -- #8 @josegonzalez Add support for raspberry pi - -## [0.3.1](https://github.com/dokku/netrc/compare/v0.3.0...v0.3.1) - 2021-03-04 - -### Fixes - -- @josegonzalez Create .netrc file if it does not exist - -## [0.3.0](https://github.com/dokku/netrc/compare/v0.2.2...v0.3.0) - 2021-02-21 - -### Changes - -- @josegonzalez Exit 0 if unset will be a no-op CI #34 -- @josegonzalez Rename project to netrc - -### Docs - -- @josegonzalez Add documentation for releases - -### Tests - -- @josegonzalez Add integration tests via bats - -## [0.2.2](https://github.com/dokku/netrc/compare/v0.2.1...v0.2.2) - 2021-02-20 - -### Fixes - -- @josegonzalez Set CI_BRANCH correctly for release process - -## [0.2.1](https://github.com/dokku/netrc/compare/v0.2.0...v0.2.1) - 2021-02-20 - -### Changes - -- @josegonzalez Recreate .env.docker when making a release -- @josegonzalez Use cli-skeleton to reduce boilerplate code - -## [0.2.0](https://github.com/dokku/netrc/compare/v0.1.0...v0.2.0) - 2021-02-20 - -### Changes - -- @josegonzalez Update cli skeleton -- @josegonzalez Update gh-release -- @josegonzalez Use upstream github.com/jdxcode/netrc -- @josegonzalez Transfer to dokku organization - -### Docs - -- @josegonzalez Document release process -- @josegonzalez Add changelog - -### Fixes - -- @josegonzalez Fix releases to packagecloud in github actions - -## [0.1.0](https://github.com/dokku/go-netrc/compare/d7ab1b3801669bc8bb5a603946305ffa38d15bc1...v0.1.0) - 2021-02-04 - -### New - -- @josegonzalez Initial implementation From cb937b90f77543377b36950b0fd8038b8e291cbb Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 4 Nov 2021 22:48:46 -0400 Subject: [PATCH 5/7] Release 0.4.1 - #16: @josegonzalez Add daily go mod updates - #17: @josegonzalez Use updated github access token variable in CI - #18: @dependabot chore(deps): bump golang from 1.17.2-buster to 1.17.3-buster - #19: @josegonzalez Delete the changelog in favor of commit message on release commit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bb53108..86bf074 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez REPOSITORY = netrc HARDWARE = $(shell uname -m) SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]') -BASE_VERSION ?= 0.4.0 +BASE_VERSION ?= 0.4.1 IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY) PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish From fdea6fab092854c1db2561ebc7640c83f1e0876b Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 4 Nov 2021 22:51:35 -0400 Subject: [PATCH 6/7] docs: update release notes in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bbf881a..1e42884 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,4 @@ Available commands are: ## Releases -Anybody can propose a release. First bump the version in `Makefile`, make sure `CHANGELOG.md` is up to date, and make sure tests are passing. Then open a Pull Request from `master` into the `release` branch. Once a maintainer approves and merges, Github Actions will build a release and upload it to Github. +Anybody can propose a release. First bump the version in `Makefile` and make sure tests are passing. Then open a Pull Request from `master` into the `release` branch. Once a maintainer approves and merges, Github Actions will build a release and upload it to Github. From 50f38b9bdf4c02c191c3893f01066633f9a8f60c Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 4 Nov 2021 22:53:00 -0400 Subject: [PATCH 7/7] Release 0.4.1 - #16: @josegonzalez Add daily go mod updates - #17: @josegonzalez Use updated github access token variable in CI - #18: @dependabot chore(deps): bump golang from 1.17.2-buster to 1.17.3-buster - #19: @josegonzalez Delete the changelog in favor of commit message on release commit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86bf074..c86f796 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ NAME = netrc -EMAIL = dokku@josediazgonzalez.com +EMAIL = netrc@josediazgonzalez.com MAINTAINER = dokku MAINTAINER_NAME = Jose Diaz-Gonzalez REPOSITORY = netrc