From 50a263bae9cb9aa9e90f8302f2e4d73afea5efc5 Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Tue, 28 Nov 2023 17:22:51 -0600 Subject: [PATCH 1/6] Prepare release v1.3.0 --- .VERSION | 2 +- CHANGELOG.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.VERSION b/.VERSION index cb174d58..589268e6 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -1.2.1 \ No newline at end of file +1.3.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 115197c8..0ed1755c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,21 @@ --- +[//]: # (START/v1.3.0) +# v1.3.0 + +## Features + * Service Accounts support. {#79} + * Add debugging support. {#102} + +## Fixes + * Fix item creation with sections. {#96} + +## Security + * Bump google.golang.org/grpc from 1.56.2 to 1.56.3 {#104} + +--- + [//]: # (START/v1.2.1) # v1.2.1 From e1cec2b42b6f51790a1fb858a25d229b335e22be Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Tue, 28 Nov 2023 17:28:40 -0600 Subject: [PATCH 2/6] Fix create-pr job --- .github/workflows/release-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-pr.yml b/.github/workflows/release-pr.yml index f5b09a8d..b6e4e248 100644 --- a/.github/workflows/release-pr.yml +++ b/.github/workflows/release-pr.yml @@ -27,7 +27,7 @@ jobs: if(!releaseBranchName) { return false } - const {data: prs} = await github.pulls.list({ + const {data: prs} = await github.rest.pulls.list({ ...context.repo, state: 'open', head: `1Password:${releaseBranchName}`, From 028994d432133364978d0102d522e14a676cd668 Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Tue, 28 Nov 2023 18:26:45 -0600 Subject: [PATCH 3/6] Mention @tim-oster as a contributor of Service Account support feature --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ed1755c..64825ae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ # v1.3.0 ## Features - * Service Accounts support. {#79} + * Service Accounts support. Credits to @tim-oster for the contribution! {#79} * Add debugging support. {#102} ## Fixes From 8f8e2a21a6d1c601a528ae07821641393d40872b Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Tue, 28 Nov 2023 18:34:34 -0600 Subject: [PATCH 4/6] Add security update to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64825ae8..61fa999f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ ## Security * Bump google.golang.org/grpc from 1.56.2 to 1.56.3 {#104} + * Bumps golang.org/x/net from 0.12.0 to 0.17.0. {#112} --- From 7164190a0a50c474c2fe0000f32152c3e8750312 Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Tue, 28 Nov 2023 18:40:15 -0600 Subject: [PATCH 5/6] Remove Fixes section as that fix was done in the previous version --- CHANGELOG.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61fa999f..e97d1c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,9 +19,6 @@ * Service Accounts support. Credits to @tim-oster for the contribution! {#79} * Add debugging support. {#102} -## Fixes - * Fix item creation with sections. {#96} - ## Security * Bump google.golang.org/grpc from 1.56.2 to 1.56.3 {#104} * Bumps golang.org/x/net from 0.12.0 to 0.17.0. {#112} From 9d2d60affdfb0765e38b953f063fec5ccc2331be Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Wed, 29 Nov 2023 08:27:14 -0600 Subject: [PATCH 6/6] Update changelog --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e97d1c06..ac0ad0fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,12 +16,11 @@ # v1.3.0 ## Features - * Service Accounts support. Credits to @tim-oster for the contribution! {#79} + * Add Service Accounts support. Credits to @tim-oster for the contribution! {#79} * Add debugging support. {#102} ## Security - * Bump google.golang.org/grpc from 1.56.2 to 1.56.3 {#104} - * Bumps golang.org/x/net from 0.12.0 to 0.17.0. {#112} + * Update dependencies with security vulnerabilities to patched versions. {#104, #112} ---