From 44fd2195fe12cf86a8621af79d25a819756c5fc0 Mon Sep 17 00:00:00 2001 From: Kenneth Rosario Date: Mon, 1 Apr 2024 13:30:17 -0700 Subject: [PATCH 1/5] chore: Update blunderbuss.yml (#197) --- .github/blunderbuss.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/blunderbuss.yml b/.github/blunderbuss.yml index 8c380021..4d9dcb54 100644 --- a/.github/blunderbuss.yml +++ b/.github/blunderbuss.yml @@ -1,11 +1,9 @@ assign_prs: - janell-chen - HKWinterhalter - - kenneth-rosario - dazuma assign_issues: - janell-chen - HKWinterhalter - - kenneth-rosario - dazuma From 2fcaa1a918d900c3ca582d96439d2c890363846d Mon Sep 17 00:00:00 2001 From: HKWinterhalter Date: Sun, 2 Jun 2024 23:46:47 -0700 Subject: [PATCH 2/5] chore: Update blunderbuss.yml (#198) --- .github/blunderbuss.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/blunderbuss.yml b/.github/blunderbuss.yml index 4d9dcb54..a7082983 100644 --- a/.github/blunderbuss.yml +++ b/.github/blunderbuss.yml @@ -1,9 +1,5 @@ assign_prs: - - janell-chen - - HKWinterhalter - dazuma assign_issues: - - janell-chen - - HKWinterhalter - dazuma From 7b3a1b19d2424f2ae519930127dfb31ed7e23fd4 Mon Sep 17 00:00:00 2001 From: Jeremy Fehr <117788025+jrmfg@users.noreply.github.com> Date: Tue, 17 Sep 2024 18:35:15 -0700 Subject: [PATCH 3/5] Update blunderbuss.yml (#199) --- .github/blunderbuss.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/blunderbuss.yml b/.github/blunderbuss.yml index a7082983..8b8f4c83 100644 --- a/.github/blunderbuss.yml +++ b/.github/blunderbuss.yml @@ -1,5 +1,10 @@ assign_prs: - dazuma + - akerekes + - nifflets assign_issues: - dazuma + - akerekes + - nifflets + From c6d83fbba479eedcc93dc092c476ff455ebf2d73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20=C5=A0im=C3=A1nek?= Date: Wed, 18 Sep 2024 23:20:13 +0200 Subject: [PATCH 4/5] fix: typo in cli help (#196) threead -> thread Co-authored-by: Jeremy Fehr <117788025+jrmfg@users.noreply.github.com> --- lib/functions_framework/cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/functions_framework/cli.rb b/lib/functions_framework/cli.rb index 7118f618..f6f00d71 100644 --- a/lib/functions_framework/cli.rb +++ b/lib/functions_framework/cli.rb @@ -98,10 +98,10 @@ def parse_args argv # rubocop:disable Metrics/MethodLength,Metrics/AbcSize op.on "-e", "--environment ENV", "Set the Rack environment" do |val| @env = val end - op.on "--min-threads NUM", "Set the minimum threead pool size" do |val| + op.on "--min-threads NUM", "Set the minimum thread pool size" do |val| @min_threads = val end - op.on "--max-threads NUM", "Set the maximum threead pool size" do |val| + op.on "--max-threads NUM", "Set the maximum thread pool size" do |val| @max_threads = val end op.on "--[no-]detailed-errors", "Set whether to show error details" do |val| From 9ff4c6d3f303dc0522461fb3acf5ada580ddd829 Mon Sep 17 00:00:00 2001 From: Chi Zhang Date: Wed, 18 Sep 2024 14:21:56 -0700 Subject: [PATCH 5/5] ci: Update ruby matrix (#189) Signed-off-by: GitHub Co-authored-by: chizhg Co-authored-by: Jeremy Fehr <117788025+jrmfg@users.noreply.github.com> --- .github/workflows/conformance.yml | 2 +- .github/workflows/unit.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml index 254f73f2..671602ed 100644 --- a/.github/workflows/conformance.yml +++ b/.github/workflows/conformance.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"] + ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] steps: - name: Harden Runner uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index f6167cfe..aa7a717f 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - ruby: ["2.6", "2.7", "3.0", "3.1", "3.2"] + ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3'] flags: ["--only --test-unit"] include: - os: ubuntu-latest