From 31b7072207bb9bac32c8b5f90417d4a10103c4b5 Mon Sep 17 00:00:00 2001 From: Andre Lohmann Date: Fri, 20 Sep 2024 17:52:53 +0200 Subject: [PATCH 1/5] added aarch64 output of uname for docker containers on arm (e.g. apple m1) machines --- bin/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/download b/bin/download index eb93c28..8dd41da 100755 --- a/bin/download +++ b/bin/download @@ -23,7 +23,7 @@ download_release() { uname_arch=$(uname -m) if [ "x86_64" = "$uname_arch" ]; then arch="amd64" - elif [ "arm64" = "$uname_arch" ]; then + elif [ "arm64" = "$uname_arch" ] || [ "aarch64" = "$uname_arch" ]; then arch="arm64" else arch="386" From 3f6dec058bc7431d55500e62bd518f66a8d04285 Mon Sep 17 00:00:00 2001 From: andrelohmann Date: Fri, 20 Sep 2024 17:04:11 +0000 Subject: [PATCH 2/5] updated packages --- .github/workflows/primary.yaml | 14 +++++++------- .github/workflows/secondary.yaml | 10 +++++----- node/package.json | 6 +++--- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/primary.yaml b/.github/workflows/primary.yaml index 7ac61a9..e4b8503 100644 --- a/.github/workflows/primary.yaml +++ b/.github/workflows/primary.yaml @@ -15,13 +15,13 @@ jobs: # ------------------------------------------------------------------------ - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: asdf-vm/actions/install@v1 + - uses: asdf-vm/actions/install@v3 # ------------------------------------------------------------------------ - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: 3.x @@ -31,7 +31,7 @@ jobs: pre-commit install - name: Cache pre-commit - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: ${{ runner.os }}-pre-commit @@ -42,7 +42,7 @@ jobs: # ------------------------------------------------------------------------ - name: Asdf plugin test - uses: asdf-vm/actions/plugin-test@v1 + uses: asdf-vm/actions/plugin-test@v3 with: command: gopass --help env: @@ -56,9 +56,9 @@ jobs: run: cp node/package* . - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' cache: npm - name: Install packages diff --git a/.github/workflows/secondary.yaml b/.github/workflows/secondary.yaml index d8e631d..2d3b06c 100644 --- a/.github/workflows/secondary.yaml +++ b/.github/workflows/secondary.yaml @@ -16,13 +16,13 @@ jobs: # ------------------------------------------------------------------------ - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - uses: asdf-vm/actions/install@v1 + - uses: asdf-vm/actions/install@v3 # ------------------------------------------------------------------------ - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: 3.x @@ -32,7 +32,7 @@ jobs: pre-commit install - name: Cache pre-commit - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pre-commit key: ${{ runner.os }}-pre-commit @@ -43,7 +43,7 @@ jobs: # ------------------------------------------------------------------------ - name: Asdf plugin test - uses: asdf-vm/actions/plugin-test@v1 + uses: asdf-vm/actions/plugin-test@v3 with: command: gopass --help env: diff --git a/node/package.json b/node/package.json index 2250b30..92fbd97 100644 --- a/node/package.json +++ b/node/package.json @@ -1,8 +1,8 @@ { "dependencies": { - "@semantic-release/changelog": "^6.0.1", + "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", - "conventional-changelog-conventionalcommits": "^5.0.0", - "semantic-release": "^19.0.3" + "conventional-changelog-conventionalcommits": "^8.0.0", + "semantic-release": "^24.1.1" } } From e79198f2420dd7ffa7cd79071d5b1bdc5e48285c Mon Sep 17 00:00:00 2001 From: andrelohmann Date: Fri, 20 Sep 2024 18:14:42 +0000 Subject: [PATCH 3/5] updated pre-commit revisions --- .pre-commit-config.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c984c9c..6c563fd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ repos: # Remote - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.6.0 hooks: - id: check-executables-have-shebangs - id: check-merge-conflict @@ -13,25 +13,25 @@ repos: - id: trailing-whitespace - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook - rev: v8.0.0 + rev: v9.18.0 hooks: - id: commitlint stages: [commit-msg] additional_dependencies: ['@commitlint/config-conventional'] - repo: https://github.com/DavidAnson/markdownlint-cli2 - rev: v0.4.0 + rev: v0.14.0 hooks: - id: markdownlint-cli2 - repo: https://github.com/frnmst/md-toc - rev: '8.1.4' + rev: '9.0.0' hooks: - id: md-toc args: [-p, -s, '1', github] - repo: https://github.com/pre-commit/mirrors-prettier - rev: v2.7.1 + rev: v3.1.0 hooks: - id: prettier args: [--prose-wrap, always, --single-quote] From 08e7b0c9e5a78cd925769914bf17cf9ad9664702 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 20 Sep 2024 18:15:58 +0000 Subject: [PATCH 4/5] chore(release): 1.0.0 [skip ci] ## 1.0.0 (2024-09-20) ### Features * add help info scripts ([9665309](https://github.com/andrelohmann/asdf-gopass/commit/9665309c5ee73f72c7e724d1bc5c8b16a4415e0c)) * Initial commit ([d0cb0c3](https://github.com/andrelohmann/asdf-gopass/commit/d0cb0c306b5bc5e69f0a7d19ffd14646427db469)) ### Refactor * Rehaul CI and dev setup ([c0839bd](https://github.com/andrelohmann/asdf-gopass/commit/c0839bd9c9bcd7c54eecb851c2ae9e3c6fd13113)) * Switch to ISC license ([2430891](https://github.com/andrelohmann/asdf-gopass/commit/2430891a127e41e0e027125579b85bc5d9dde7aa)) ### Docs * cleanup ([d9fde28](https://github.com/andrelohmann/asdf-gopass/commit/d9fde28734405ede350cfeebce3d1da91013c5ab)) * **readme:** Remove pointless status badges ([4bc08f1](https://github.com/andrelohmann/asdf-gopass/commit/4bc08f1db8073ab18cb109ab7424611c20ba4597)) * unify docs with other projects ([96d88d5](https://github.com/andrelohmann/asdf-gopass/commit/96d88d52baa5dabc31a541499abdfc3395b96bab)) * unify READMEs with other projects ([fcc8aac](https://github.com/andrelohmann/asdf-gopass/commit/fcc8aac38d2fcce67a40499a3ea4e2574773aaca)) * update misc ([fc1e12f](https://github.com/andrelohmann/asdf-gopass/commit/fc1e12feeb7b788603fc92846250250447f5494d)) --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11bf9fd..0cd2bb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 1.0.0 (2024-09-20) + +### Features + +* add help info scripts ([9665309](https://github.com/andrelohmann/asdf-gopass/commit/9665309c5ee73f72c7e724d1bc5c8b16a4415e0c)) +* Initial commit ([d0cb0c3](https://github.com/andrelohmann/asdf-gopass/commit/d0cb0c306b5bc5e69f0a7d19ffd14646427db469)) + +### Refactor + +* Rehaul CI and dev setup ([c0839bd](https://github.com/andrelohmann/asdf-gopass/commit/c0839bd9c9bcd7c54eecb851c2ae9e3c6fd13113)) +* Switch to ISC license ([2430891](https://github.com/andrelohmann/asdf-gopass/commit/2430891a127e41e0e027125579b85bc5d9dde7aa)) + +### Docs + +* cleanup ([d9fde28](https://github.com/andrelohmann/asdf-gopass/commit/d9fde28734405ede350cfeebce3d1da91013c5ab)) +* **readme:** Remove pointless status badges ([4bc08f1](https://github.com/andrelohmann/asdf-gopass/commit/4bc08f1db8073ab18cb109ab7424611c20ba4597)) +* unify docs with other projects ([96d88d5](https://github.com/andrelohmann/asdf-gopass/commit/96d88d52baa5dabc31a541499abdfc3395b96bab)) +* unify READMEs with other projects ([fcc8aac](https://github.com/andrelohmann/asdf-gopass/commit/fcc8aac38d2fcce67a40499a3ea4e2574773aaca)) +* update misc ([fc1e12f](https://github.com/andrelohmann/asdf-gopass/commit/fc1e12feeb7b788603fc92846250250447f5494d)) + ## [1.1.1](https://github.com/trallnag/asdf-gopass/compare/1.1.0...1.1.1) (2022-07-03) From dd2a248eb483df2de1d6d8a116408ba1f1f2dc89 Mon Sep 17 00:00:00 2001 From: andrelohmann Date: Fri, 20 Sep 2024 18:19:02 +0000 Subject: [PATCH 5/5] updated pre-commit revisions --- node/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/package.json b/node/package.json index 92fbd97..459947c 100644 --- a/node/package.json +++ b/node/package.json @@ -2,7 +2,7 @@ "dependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", - "conventional-changelog-conventionalcommits": "^8.0.0", + "conventional-changelog-conventionalcommits": "^5.0.0", "semantic-release": "^24.1.1" } }