From e6dfd659308b58881e5c67c54620425e64018435 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 10:33:50 -0700 Subject: [PATCH 001/174] inital commit + credentials --- .github/workflows/dotnet.yml | 48 ++++++++++++++++++++++++++---------- .idea/.gitignore | 10 ++++++++ .idea/vcs.xml | 4 +++ 3 files changed, 49 insertions(+), 13 deletions(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/vcs.xml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1978ae7..e1190de 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -1,33 +1,55 @@ # This workflow will build a .NET project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net -name: .NET - +name: Sample Run and Dependabot Auto-merge on: push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] + pull_request_target: + branches: [ master ] + +permissions: + id-token: write + contents: write jobs: - build: + sample-run: + timeout-minutes: 8 + runs-on: ${{ matrix.os }} + defaults: + run: + shell: bash - runs-on: ubuntu-latest strategy: + fail-fast: false matrix: +# dotnet-version: [ '6.0.x', '8.0.x' ] +# jdk-version: [ "8", "11", "17", "21", "24" ] dotnet-version: [ '6.0.x', '8.0.x' ] + jdk-version: [ "8", "24" ] + os: [ ubuntu-latest, macOS-latest, windows-latest ] steps: - - uses: actions/checkout@v3 - - name: Setup .NET ${{ matrix.dotnet-version }} - uses: actions/setup-dotnet@v3 + - name: Checkout working directory + uses: actions/checkout@v4 + + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + aws-region: us-east-1 + role-to-assume: arn:aws:iam::751999266872:role/GitHubWorkflows + role-session-name: myGitHubActions + + - name: Set up JDK ${{ matrix.jdk-version }} + uses: actions/setup-java@v4 with: - dotnet-version: ${{ matrix.dotnet-version }} - - name: Display dotnet version - run: dotnet --version + java-version: ${{ matrix.jdk-version }} + distribution: 'corretto' + - name: Restore dependencies run: dotnet restore + - name: Build run: dotnet build --no-restore + - name: Test run: dotnet test --no-build --verbosity normal diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..7bc07ec --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Environment-dependent path to Maven home directory +/mavenHomeManager.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..d843f34 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file From 02b7b6ef1ce709fce9f560eee6f22b4e0a1e2413 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 10:35:21 -0700 Subject: [PATCH 002/174] gitignore .idea --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f2b265c..b86533c 100644 --- a/.gitignore +++ b/.gitignore @@ -196,3 +196,4 @@ FakesAssemblies/ *.opt .DS_Store +.idea From 7f219424f5d210c000c0f0c8a7b4e7114e9eaae7 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 10:41:24 -0700 Subject: [PATCH 003/174] add setup .NET --- .github/workflows/dotnet.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index e1190de..ebf709f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -45,6 +45,11 @@ jobs: java-version: ${{ matrix.jdk-version }} distribution: 'corretto' + - name: Setup .NET ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet@v3 + with: + dotnet-version: ${{ matrix.dotnet-version }} + - name: Restore dependencies run: dotnet restore From b13ad10782d840ce14a59fe567042f4899933a86 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 10:55:56 -0700 Subject: [PATCH 004/174] uodate dotnet setup version --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ebf709f..7c8bb26 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -45,8 +45,8 @@ jobs: java-version: ${{ matrix.jdk-version }} distribution: 'corretto' - - name: Setup .NET ${{ matrix.dotnet-version }} - uses: actions/setup-dotnet@v3 + - name: Set up .NET ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ matrix.dotnet-version }} @@ -57,4 +57,4 @@ jobs: run: dotnet build --no-restore - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test --no-build From d2f08a3a68ec20dba0678d638e44d11db15429f5 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 11:06:04 -0700 Subject: [PATCH 005/174] add extra net verison --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7c8bb26..77bebbf 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -24,7 +24,7 @@ jobs: matrix: # dotnet-version: [ '6.0.x', '8.0.x' ] # jdk-version: [ "8", "11", "17", "21", "24" ] - dotnet-version: [ '6.0.x', '8.0.x' ] + dotnet-version: [ '6.0.x', '7.0.x', '8.0.x' ] jdk-version: [ "8", "24" ] os: [ ubuntu-latest, macOS-latest, windows-latest ] From a1d27dba2c5d1c0018a1d54073a211c27ac48f13 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 11:16:58 -0700 Subject: [PATCH 006/174] ass os specification --- .github/workflows/dotnet.yml | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 77bebbf..e1ca41b 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -53,8 +53,20 @@ jobs: - name: Restore dependencies run: dotnet restore - - name: Build - run: dotnet build --no-restore + - name: Build and Test (ubuntu) + if: matrix.os == 'ubuntu-latest' + run: | + dotnet build --no-restore --os linux-x64 + dotnet test --no-build --os linux-x64 - - name: Test - run: dotnet test --no-build + - name: Build and Test (macOS) + if: matrix.os == 'macOS-latest' + run: | + dotnet build --no-restore --os osx-x64 + dotnet test --no-build --os osx-x64 + + - name: Build and Test (windows) + if: matrix.os == 'windows-latest' + run: | + dotnet build --no-restore --os win-x64 + dotnet test --no-build --os win-x64 From 7c5aced73563f18d044337bf8f1b8b49309d3e51 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 11:21:19 -0700 Subject: [PATCH 007/174] remove os specification for build --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index e1ca41b..133ab56 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -56,17 +56,17 @@ jobs: - name: Build and Test (ubuntu) if: matrix.os == 'ubuntu-latest' run: | - dotnet build --no-restore --os linux-x64 + dotnet build --no-restore dotnet test --no-build --os linux-x64 - name: Build and Test (macOS) if: matrix.os == 'macOS-latest' run: | - dotnet build --no-restore --os osx-x64 + dotnet build --no-restore dotnet test --no-build --os osx-x64 - name: Build and Test (windows) if: matrix.os == 'windows-latest' run: | - dotnet build --no-restore --os win-x64 + dotnet build --no-restore dotnet test --no-build --os win-x64 From 281e6bd1442b9f64844a6d262684e6884642fa0c Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 11:47:05 -0700 Subject: [PATCH 008/174] change target framework to net9.0 --- .github/workflows/dotnet.yml | 22 +++++----------------- SampleProducer/packages.config | 2 +- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 133ab56..ed2d40d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -24,7 +24,7 @@ jobs: matrix: # dotnet-version: [ '6.0.x', '8.0.x' ] # jdk-version: [ "8", "11", "17", "21", "24" ] - dotnet-version: [ '6.0.x', '7.0.x', '8.0.x' ] + dotnet-version: [ '7.0.x', '8.0.x' ] jdk-version: [ "8", "24" ] os: [ ubuntu-latest, macOS-latest, windows-latest ] @@ -53,20 +53,8 @@ jobs: - name: Restore dependencies run: dotnet restore - - name: Build and Test (ubuntu) - if: matrix.os == 'ubuntu-latest' - run: | - dotnet build --no-restore - dotnet test --no-build --os linux-x64 + - name: Build + run: dotnet build --no-restore - - name: Build and Test (macOS) - if: matrix.os == 'macOS-latest' - run: | - dotnet build --no-restore - dotnet test --no-build --os osx-x64 - - - name: Build and Test (windows) - if: matrix.os == 'windows-latest' - run: | - dotnet build --no-restore - dotnet test --no-build --os win-x64 + - name: Test + run: dotnet test --no-build diff --git a/SampleProducer/packages.config b/SampleProducer/packages.config index a162e10..009e4bc 100644 --- a/SampleProducer/packages.config +++ b/SampleProducer/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file From 10464ef8934e91e660c70806749ed62f110cd464 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 11:50:19 -0700 Subject: [PATCH 009/174] remove target framework --- SampleProducer/packages.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SampleProducer/packages.config b/SampleProducer/packages.config index 009e4bc..30c5f31 100644 --- a/SampleProducer/packages.config +++ b/SampleProducer/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file From 7efd6ad0ee808d50b848caa2a6c3f8863d77d5d5 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 11:59:57 -0700 Subject: [PATCH 010/174] change csproj to 5.0 --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- SampleProducer/packages.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 0cb7b7f..93c172a 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp6.0 + netcoreapp5.0 false diff --git a/SampleProducer/packages.config b/SampleProducer/packages.config index 30c5f31..a162e10 100644 --- a/SampleProducer/packages.config +++ b/SampleProducer/packages.config @@ -1,4 +1,4 @@  - + \ No newline at end of file From 82239da5697fb756a2c32baadb22a137790445e9 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:02:26 -0700 Subject: [PATCH 011/174] change target framework to net8.0 --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 93c172a..17b43bb 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp5.0 + net8.0 false From 34ee1c1ef3b1507aabc9bb4f23bc280190f884d9 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:12:15 -0700 Subject: [PATCH 012/174] change target framework to 7.0 --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 17b43bb..0406210 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - net8.0 + net7.0 false From 45760c5eafe56c5c5efe0b39d8a0c1ca89739763 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:14:41 -0700 Subject: [PATCH 013/174] add multiple frameworks --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 0406210..05edc26 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - net7.0 + net7.0;net8.0 false From 99a9a729f648e290d52522a35bafc55653e9f02b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:15:53 -0700 Subject: [PATCH 014/174] add multiple frameworks + syntax --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 05edc26..09ed309 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + net7.0;net8.0 false From 4efcd2b84a932d6067056d3895d3cd595e7391c2 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:18:25 -0700 Subject: [PATCH 015/174] change target framework to netcoreapp --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 09ed309..d834ed6 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - net7.0;net8.0 + netcoreapp false From 684e5a9f49414027ed0e38d8c39b36154d247ae8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:20:41 -0700 Subject: [PATCH 016/174] change target framework to net --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index d834ed6..14a96ac 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp + net false From b017adc26cd818898591460449147d6d09b1c755 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:45:30 -0700 Subject: [PATCH 017/174] update target frameworks to 7.0 and 8.0 --- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 14a96ac..4e154e0 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - net + netcoreapp8.0;netcoreapp7.0 false From 97f203c87235041695265819a9e3009bb6c39072 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:52:31 -0700 Subject: [PATCH 018/174] change 5.0 to 6.0 --- .github/workflows/dotnet.yml | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ed2d40d..7c8bb26 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -24,7 +24,7 @@ jobs: matrix: # dotnet-version: [ '6.0.x', '8.0.x' ] # jdk-version: [ "8", "11", "17", "21", "24" ] - dotnet-version: [ '7.0.x', '8.0.x' ] + dotnet-version: [ '6.0.x', '8.0.x' ] jdk-version: [ "8", "24" ] os: [ ubuntu-latest, macOS-latest, windows-latest ] diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 4e154e0..0cb7b7f 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp8.0;netcoreapp7.0 + netcoreapp6.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 7ba2356..3e95418 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp5.0 + netcoreapp6.0 false From ad0ccbaa3cbcb2abeee9107b94147c960a735cce Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:57:28 -0700 Subject: [PATCH 019/174] change clientlibrary target framework to netcoreapp8.0 --- ClientLibrary/ClientLibrary.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 3e95418..5ff8289 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp6.0 + netcoreapp8.0 false From 4c27d2efe8c1ca354f526a6906f990cc57717c9d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 12:58:45 -0700 Subject: [PATCH 020/174] change clientlibrary target framework to netcoreapp6.0 --- ClientLibrary/ClientLibrary.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 5ff8289..3e95418 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp8.0 + netcoreapp6.0 false From 0d0f3df56bce79004cf115ef78abc7c441605bc8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 13:04:44 -0700 Subject: [PATCH 021/174] remove .net matrix --- .github/workflows/dotnet.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7c8bb26..a46c613 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -22,9 +22,8 @@ jobs: strategy: fail-fast: false matrix: -# dotnet-version: [ '6.0.x', '8.0.x' ] # jdk-version: [ "8", "11", "17", "21", "24" ] - dotnet-version: [ '6.0.x', '8.0.x' ] +# dotnet-version: [ '6.0.x', '8.0.x' ] jdk-version: [ "8", "24" ] os: [ ubuntu-latest, macOS-latest, windows-latest ] @@ -45,10 +44,10 @@ jobs: java-version: ${{ matrix.jdk-version }} distribution: 'corretto' - - name: Set up .NET ${{ matrix.dotnet-version }} + - name: Set up .NET 6.0.x uses: actions/setup-dotnet@v4 with: - dotnet-version: ${{ matrix.dotnet-version }} + dotnet-version: '6.0.x' - name: Restore dependencies run: dotnet restore From 3ca550fba9db28d441e7377a6eea46cb2fed438e Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 13:06:48 -0700 Subject: [PATCH 022/174] show dotnet verison --- .github/workflows/dotnet.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a46c613..761b588 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -49,11 +49,20 @@ jobs: with: dotnet-version: '6.0.x' + - name: Display dotnet version + run: dotnet --version + - name: Restore dependencies - run: dotnet restore + run: | + dotnet --version + dotnet restore - name: Build - run: dotnet build --no-restore + run: | + dotnet --version + dotnet build --no-restore - name: Test - run: dotnet test --no-build + run: | + dotnet --version + dotnet test --no-build From c64271e1533513a9ef3a2df75e76e446273c81b8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 15:19:33 -0700 Subject: [PATCH 023/174] download aws sdk --- .github/workflows/dotnet.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 761b588..a65bcb3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -53,16 +53,13 @@ jobs: run: dotnet --version - name: Restore dependencies - run: | - dotnet --version - dotnet restore + run: dotnet restore - - name: Build + - name: Build and Test run: | - dotnet --version dotnet build --no-restore + dotnet test --no-build - - name: Test + - name: Install AWS SDK run: | - dotnet --version - dotnet test --no-build + dotnet add package AWSSDK.Core \ No newline at end of file From 42653fe99410fd772d5e2358674cf6485c89ff74 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 15:31:35 -0700 Subject: [PATCH 024/174] add path for awssdk --- .github/workflows/dotnet.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a65bcb3..b646707 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -62,4 +62,5 @@ jobs: - name: Install AWS SDK run: | + cd SampleProducer dotnet add package AWSSDK.Core \ No newline at end of file From bc405e922e5013a79e2cb82a6b427a2f1a97ef5c Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 15:33:08 -0700 Subject: [PATCH 025/174] add path for awssdk 2 --- .github/workflows/dotnet.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b646707..85001ad 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -63,4 +63,5 @@ jobs: - name: Install AWS SDK run: | cd SampleProducer - dotnet add package AWSSDK.Core \ No newline at end of file + dotnet add package AWSSDK.Core + cd ~/SampleConsumer \ No newline at end of file From f14b2e3765b8754b81d60c4805bf114adeed9147 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 15:35:07 -0700 Subject: [PATCH 026/174] fix directory pathing --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 85001ad..edb6b49 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -64,4 +64,4 @@ jobs: run: | cd SampleProducer dotnet add package AWSSDK.Core - cd ~/SampleConsumer \ No newline at end of file + cd ../SampleConsumer \ No newline at end of file From cedf5dba36988e8eb5d5b06893eacc2b5d47014d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 15:36:22 -0700 Subject: [PATCH 027/174] download awssdk into both sample files --- .github/workflows/dotnet.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index edb6b49..06338fb 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -49,9 +49,6 @@ jobs: with: dotnet-version: '6.0.x' - - name: Display dotnet version - run: dotnet --version - - name: Restore dependencies run: dotnet restore @@ -64,4 +61,5 @@ jobs: run: | cd SampleProducer dotnet add package AWSSDK.Core - cd ../SampleConsumer \ No newline at end of file + cd ../SampleConsumer + dotnet add package AWSSDK.Core \ No newline at end of file From 614e59b72c049ae7679833b40667d3687a601457 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 16:14:05 -0700 Subject: [PATCH 028/174] add dotnet run job --- .github/workflows/dotnet.yml | 8 +++++++- .idea/vcs.xml | 4 +++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 06338fb..a240a4d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -62,4 +62,10 @@ jobs: cd SampleProducer dotnet add package AWSSDK.Core cd ../SampleConsumer - dotnet add package AWSSDK.Core \ No newline at end of file + dotnet add package AWSSDK.Core + + - name: Run KCL Producer + run: | + cd ../Sample Producer + dotnet run + diff --git a/.idea/vcs.xml b/.idea/vcs.xml index d843f34..94a25f7 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -1,4 +1,6 @@ - + + + \ No newline at end of file From 90e255dab5f836027a00f773c9a341ca41886267 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 16:15:05 -0700 Subject: [PATCH 029/174] add dotnet run job --- .github/workflows/dotnet.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a240a4d..c980e1a 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -66,6 +66,5 @@ jobs: - name: Run KCL Producer run: | - cd ../Sample Producer - dotnet run - + cd ../SampleProducer + dotnet run \ No newline at end of file From de3bce38cfca428366d8fbf16523717d49e980cd Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 16:16:25 -0700 Subject: [PATCH 030/174] run KCL producer w/ pwd --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index c980e1a..85563ad 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -66,5 +66,5 @@ jobs: - name: Run KCL Producer run: | - cd ../SampleProducer + pwd dotnet run \ No newline at end of file From 2d2e7f627d7e27b0ba70592519dd8afb822cd1d9 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 16:17:41 -0700 Subject: [PATCH 031/174] run KCL producer --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 85563ad..7fe459f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -66,5 +66,5 @@ jobs: - name: Run KCL Producer run: | - pwd + cd SampleProducer dotnet run \ No newline at end of file From 7f581255714a37917086d7be44e3e3ab6726ce97 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 7 May 2025 16:20:04 -0700 Subject: [PATCH 032/174] update awssdk version --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7fe459f..78a981c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -60,9 +60,9 @@ jobs: - name: Install AWS SDK run: | cd SampleProducer - dotnet add package AWSSDK.Core + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 cd ../SampleConsumer - dotnet add package AWSSDK.Core + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - name: Run KCL Producer run: | From 96f107fd290f88467b0a825146c16d51782620a9 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 09:49:29 -0700 Subject: [PATCH 033/174] run kcl consumer w/ timeout --- .github/workflows/dotnet.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 78a981c..8087059 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -67,4 +67,17 @@ jobs: - name: Run KCL Producer run: | cd SampleProducer - dotnet run \ No newline at end of file + dotnet run + + - name: Run KCL consumer (windows or ubuntu) + if: ${{ matrix.os != 'macOS-latest'}} + run: | + cd Bootstrap + timeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + + - name: Run KCL consumer (macOS) + if: ${{ matrix.os == 'macOS-latest'}} + run: | + brew install coreutils + cd SampleConsumer + gtimeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From 579036b58b970ea075e539e0e56dacea15641580 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 09:55:00 -0700 Subject: [PATCH 034/174] add --project path --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 8087059..11c73bc 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,7 +73,7 @@ jobs: if: ${{ matrix.os != 'macOS-latest'}} run: | cd Bootstrap - timeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + timeout 45 dotnet run --project ../SampleConsumer --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 88b0f739ad919f355567185396780ac9d9d0cae2 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:00:47 -0700 Subject: [PATCH 035/174] remove --execute --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 11c73bc..efb0c26 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,11 +73,11 @@ jobs: if: ${{ matrix.os != 'macOS-latest'}} run: | cd Bootstrap - timeout 45 dotnet run --project ../SampleConsumer --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + timeout 45 dotnet run --properties kcl.properties || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd SampleConsumer - gtimeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + gtimeout 45 dotnet run --properties kcl.properties || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From 8604080ad9ed0b79b2737678abc44b8c0a28276c Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:03:17 -0700 Subject: [PATCH 036/174] remove args --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index efb0c26..e9ff819 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,11 +73,11 @@ jobs: if: ${{ matrix.os != 'macOS-latest'}} run: | cd Bootstrap - timeout 45 dotnet run --properties kcl.properties || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + timeout 45 dotnet run || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd SampleConsumer - gtimeout 45 dotnet run --properties kcl.properties || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + gtimeout 45 dotnet run || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From 207e5c1056376f800602a1cded8c0d57fcdfa4c8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:05:54 -0700 Subject: [PATCH 037/174] print command and run cmdsub --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index e9ff819..4bbc1b6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,11 +73,11 @@ jobs: if: ${{ matrix.os != 'macOS-latest'}} run: | cd Bootstrap - timeout 45 dotnet run || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + timeout 45 $(dotnet run --properties kcl.properties) || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd SampleConsumer - gtimeout 45 dotnet run || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + gtimeout 45 $(dotnet run --properties kcl.properties) || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From 923a484b2390c70c6403ed6850de34503a76c6c4 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:13:15 -0700 Subject: [PATCH 038/174] build sampleconsumer and run bootstrap --- .github/workflows/dotnet.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 4bbc1b6..b91031c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,12 +72,14 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - cd Bootstrap - timeout 45 $(dotnet run --properties kcl.properties) || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + cd SampleConsumer + dotnet build + cd ../Bootstrap + timeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd SampleConsumer - gtimeout 45 $(dotnet run --properties kcl.properties) || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + gtimeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From c9a83f9cc5bae59f038c5e8bc192e7bb9674d1c1 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:16:27 -0700 Subject: [PATCH 039/174] run from SampleConsumer --- .github/workflows/dotnet.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b91031c..8a5618b 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -74,7 +74,6 @@ jobs: run: | cd SampleConsumer dotnet build - cd ../Bootstrap timeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) From e34a7be48227a43f6a9582aff620a92e6791df1e Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:17:48 -0700 Subject: [PATCH 040/174] remove exit clause --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 8a5618b..5676823 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -74,11 +74,11 @@ jobs: run: | cd SampleConsumer dotnet build - timeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + timeout 45 dotnet run --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd SampleConsumer - gtimeout 45 dotnet run --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + gtimeout 45 dotnet run --properties kcl.properties --execute From 9e7bb052289651b0f927876e5f9311cca1eda6d7 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:33:07 -0700 Subject: [PATCH 041/174] add dotnet build --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 5676823..f2f300d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,7 +72,7 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - cd SampleConsumer + cd Bootstrap dotnet build timeout 45 dotnet run --properties kcl.properties --execute @@ -80,5 +80,5 @@ jobs: if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils - cd SampleConsumer + cd Bootstrap gtimeout 45 dotnet run --properties kcl.properties --execute From 4edbc13dabc1c01193770a860a1bb0e2750fe527 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:35:59 -0700 Subject: [PATCH 042/174] add dotnet build and proper cd pathing --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f2f300d..1e0b6fc 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -80,5 +80,5 @@ jobs: if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils - cd Bootstrap + cd Bootstrap/Properties gtimeout 45 dotnet run --properties kcl.properties --execute From 2dbd6d45d9a82b4f6972695843527ee07f3777f8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:38:47 -0700 Subject: [PATCH 043/174] more directory pathing --- .github/workflows/dotnet.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1e0b6fc..a311b3b 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,13 +72,12 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - cd Bootstrap - dotnet build - timeout 45 dotnet run --properties kcl.properties --execute + cd Bootstrap/Properties + timeout 45 dotnet run --project ../../SampleConsumer --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd Bootstrap/Properties - gtimeout 45 dotnet run --properties kcl.properties --execute + gtimeout 45 dotnet run --project ../../SampleConsumer --properties kcl.properties --execute From b7ab0f43ea1a1726f312be75d2f350b53ded1afd Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 10:52:55 -0700 Subject: [PATCH 044/174] remove timeout --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a311b3b..b9d9674 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,11 +73,11 @@ jobs: if: ${{ matrix.os != 'macOS-latest'}} run: | cd Bootstrap/Properties - timeout 45 dotnet run --project ../../SampleConsumer --properties kcl.properties --execute + dotnet run --project ../../SampleConsumer --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd Bootstrap/Properties - gtimeout 45 dotnet run --project ../../SampleConsumer --properties kcl.properties --execute + dotnet run --project ../../SampleConsumer --properties kcl.properties --execute From de02523bc82f007330f3ec12aa59169dbc117288 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 11:13:00 -0700 Subject: [PATCH 045/174] run SampleConsumer --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b9d9674..9603910 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,8 +72,8 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - cd Bootstrap/Properties - dotnet run --project ../../SampleConsumer --properties kcl.properties --execute + cd SampleConsumer + dotnet run --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From b24bebc3789d2ad359d451458847e76a8928f4a0 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 11:14:37 -0700 Subject: [PATCH 046/174] add extra build step --- .github/workflows/dotnet.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9603910..20a1298 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,6 +73,7 @@ jobs: if: ${{ matrix.os != 'macOS-latest'}} run: | cd SampleConsumer + dotnet build dotnet run --properties kcl.properties --execute - name: Run KCL consumer (macOS) @@ -80,4 +81,5 @@ jobs: run: | brew install coreutils cd Bootstrap/Properties + dotnet build dotnet run --project ../../SampleConsumer --properties kcl.properties --execute From 227a375ea7bfc3b4b91b6414841f13296aac847d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 11:16:16 -0700 Subject: [PATCH 047/174] add extra build step2 --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 20a1298..9f107c3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -81,5 +81,5 @@ jobs: run: | brew install coreutils cd Bootstrap/Properties - dotnet build + dotnet build --project ../../SampleConsumer dotnet run --project ../../SampleConsumer --properties kcl.properties --execute From 793d5f3cd840b2ed97fc763d425e9a86a5bcd4e8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 11:22:19 -0700 Subject: [PATCH 048/174] pathing changes --- .github/workflows/dotnet.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9f107c3..ffc055e 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,14 +72,12 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - cd SampleConsumer - dotnet build - dotnet run --properties kcl.properties --execute + dotnet run --project SampleConsumer/SampleConsumer.csproj --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd Bootstrap/Properties - dotnet build --project ../../SampleConsumer - dotnet run --project ../../SampleConsumer --properties kcl.properties --execute + dotnet build --project SampleConsumer + dotnet run --project SampleConsumer --properties kcl.properties --execute From 7bc69096a18ff9af1edd5d610118c9041b8bb062 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 11:23:32 -0700 Subject: [PATCH 049/174] pathing changes2 --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ffc055e..49c91d4 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,7 +72,7 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - dotnet run --project SampleConsumer/SampleConsumer.csproj --properties kcl.properties --execute + dotnet run --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From bad67fcc18ef09a45a722701170f7a395add6abf Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:04:32 -0700 Subject: [PATCH 050/174] run sampleconsumer.dll --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 49c91d4..b5198eb 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,12 +72,12 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - dotnet run --properties kcl.properties --execute + dotnet run --project SampleConsumer.dll --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils cd Bootstrap/Properties - dotnet build --project SampleConsumer + dotnet build --project SampleConsumer.dll dotnet run --project SampleConsumer --properties kcl.properties --execute From 8a0bed6b4dc921eef73928c13cf05efe0accbce8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:06:17 -0700 Subject: [PATCH 051/174] build again --- .github/workflows/dotnet.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b5198eb..bf670dd 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,12 +72,11 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | + dotnet build --no-restore dotnet run --project SampleConsumer.dll --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | brew install coreutils - cd Bootstrap/Properties - dotnet build --project SampleConsumer.dll - dotnet run --project SampleConsumer --properties kcl.properties --execute + echo "hi" From 8e5ad0be65dbdcfef01cef8a748cef37a1599feb Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:08:02 -0700 Subject: [PATCH 052/174] nobuild --- .github/workflows/dotnet.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index bf670dd..ad05fa2 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,8 +72,7 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - dotnet build --no-restore - dotnet run --project SampleConsumer.dll --properties kcl.properties --execute + dotnet SampleConsumer.dll - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 574ba1245145aab0f3e0f757c5a80c1e04b42127 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:10:32 -0700 Subject: [PATCH 053/174] run csproj --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ad05fa2..333642a 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,7 +72,7 @@ jobs: - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} run: | - dotnet SampleConsumer.dll + dotnet run SampleConsumer.csproj - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 349efc49dcf5fe53c4bacf731ef958fa1df07275 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:10:44 -0700 Subject: [PATCH 054/174] run csproj --- .github/workflows/dotnet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 333642a..7c58be2 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -64,10 +64,10 @@ jobs: cd ../SampleConsumer dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - - name: Run KCL Producer - run: | - cd SampleProducer - dotnet run +# - name: Run KCL Producer +# run: | +# cd SampleProducer +# dotnet run - name: Run KCL consumer (windows or ubuntu) if: ${{ matrix.os != 'macOS-latest'}} From 2e68555dfb975ec9456f2beeb056b8b7d8daf8be Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:13:03 -0700 Subject: [PATCH 055/174] project path to bootstrap --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7c58be2..b97de15 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -69,10 +69,10 @@ jobs: # cd SampleProducer # dotnet run - - name: Run KCL consumer (windows or ubuntu) - if: ${{ matrix.os != 'macOS-latest'}} + - name: Run KCL consumer (ubuntu and windows) + if: ${{ matrix.os == 'ubuntu-latest'}} run: | - dotnet run SampleConsumer.csproj + dotnet run --project ./Bootstrap/Bootstrap.csproj - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 3f599c12f5fa2b13ab845046ec37a72d6909489f Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 12:14:32 -0700 Subject: [PATCH 056/174] project path to bootstrap + prop path --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index b97de15..7728eef 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,7 +72,7 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | - dotnet run --project ./Bootstrap/Bootstrap.csproj + dotnet run --project ./Bootstrap/Bootstrap.csproj --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 5a612354a7eaeb1af9c6ee471b2864b33df51a78 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 14:04:52 -0700 Subject: [PATCH 057/174] cd to Sample consumer --- .github/workflows/dotnet.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7728eef..1ce31f1 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,6 +72,7 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | + cd SampleConsumer dotnet run --project ./Bootstrap/Bootstrap.csproj --properties kcl.properties --execute - name: Run KCL consumer (macOS) From b88fdcd0d28d2ac3e0b05f4cc132fb16c4ceed5b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 14:12:25 -0700 Subject: [PATCH 058/174] change pathing againe --- .github/workflows/dotnet.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1ce31f1..715600a 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,8 +72,7 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | - cd SampleConsumer - dotnet run --project ./Bootstrap/Bootstrap.csproj --properties kcl.properties --execute + dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties --execute - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 0c55620540a70869d99a2877ffae4da79bcf3d69 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 15:02:19 -0700 Subject: [PATCH 059/174] print kcl command --- .github/workflows/dotnet.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 715600a..57b768e 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -72,7 +72,8 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | - dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties --execute + cd Bootstrap + dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 41d79237a9aae14af56ef2c9fee6492ce6de0da9 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 8 May 2025 15:05:54 -0700 Subject: [PATCH 060/174] print kcl command --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 57b768e..637f17a 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -73,7 +73,7 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest'}} run: | cd Bootstrap - dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties + dotnet run --properties kcl.properties - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 7dcef76d89c8c3dd01e1850ad1bc319fefac7522 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:19:48 -0700 Subject: [PATCH 061/174] change build and dependency order --- .github/workflows/dotnet.yml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 637f17a..a55eb4c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -49,21 +49,21 @@ jobs: with: dotnet-version: '6.0.x' - - name: Restore dependencies - run: dotnet restore + - name: Install AWS SDK + run: | + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 +# cd SampleProducer +# dotnet add package AWSSDK.Kinesis --version 4.0.2.1 +# cd ../SampleConsumer +# dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + - - name: Build and Test + - name: Restore, Build, and Test run: | + dotnet restore dotnet build --no-restore dotnet test --no-build - - name: Install AWS SDK - run: | - cd SampleProducer - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - cd ../SampleConsumer - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - # - name: Run KCL Producer # run: | # cd SampleProducer @@ -72,11 +72,10 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | - cd Bootstrap - dotnet run --properties kcl.properties + echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | - brew install coreutils +# brew install coreutils echo "hi" From e95023ebb8afb171bbb013318675c7de64a25919 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:21:14 -0700 Subject: [PATCH 062/174] change build and dependency order --- .github/workflows/dotnet.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a55eb4c..9727ddf 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -71,8 +71,7 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} - run: | - echo "hi" + run: echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 5adc700869f4bcbe5680cb20144da0effebb6077 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:24:38 -0700 Subject: [PATCH 063/174] change build and dependency order --- .github/workflows/dotnet.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9727ddf..2140706 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -71,10 +71,11 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} - run: echo "hi" + run: | + echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | -# brew install coreutils + brew install coreutils echo "hi" From 09bddbb0614f024a47acf4b7473ca260c33110f2 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:26:49 -0700 Subject: [PATCH 064/174] change build and dependency order --- .github/workflows/dotnet.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 2140706..9088da2 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -49,21 +49,20 @@ jobs: with: dotnet-version: '6.0.x' - - name: Install AWS SDK - run: | - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 -# cd SampleProducer -# dotnet add package AWSSDK.Kinesis --version 4.0.2.1 -# cd ../SampleConsumer -# dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - - - name: Restore, Build, and Test run: | dotnet restore dotnet build --no-restore dotnet test --no-build + - name: Install AWS SDK + run: | + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + # cd SampleProducer + # dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + # cd ../SampleConsumer + # dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + # - name: Run KCL Producer # run: | # cd SampleProducer From 2bfe118071629f737cff73e5d07d1a8931629372 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:29:54 -0700 Subject: [PATCH 065/174] change build and dependency order --- .github/workflows/dotnet.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9088da2..f32647f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -57,11 +57,16 @@ jobs: - name: Install AWS SDK run: | + cd SampleProducer + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + cd ../SampleConsumer + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + cd ../Bootstrap + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + cd ../ClientLibrary + dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + cd ../ClientLibrary.Test dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - # cd SampleProducer - # dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - # cd ../SampleConsumer - # dotnet add package AWSSDK.Kinesis --version 4.0.2.1 # - name: Run KCL Producer # run: | From 3b80131d839d04d33a0250e018ff66432eb19e49 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:39:01 -0700 Subject: [PATCH 066/174] cd bootstrap // dotnet run --- .github/workflows/dotnet.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f32647f..5cabcc4 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -76,10 +76,11 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | - echo "hi" + cd Bootstrap + dotnet run || echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | - brew install coreutils - echo "hi" + cd Bootstrap + dotnet run || echo "hi" From 0a491bd6bb8954bf961a534bc18f030659bc5d06 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:41:54 -0700 Subject: [PATCH 067/174] cd bootstrap // dotnet run --properties --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 5cabcc4..5d070ac 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -77,10 +77,10 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest'}} run: | cd Bootstrap - dotnet run || echo "hi" + dotnet run --properties kcl.properties --execute || echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | cd Bootstrap - dotnet run || echo "hi" + dotnet run --properties kcl.properties --execute || echo "hi" From e21a873267a9a994a741c23f59fedf903e4f2062 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:46:28 -0700 Subject: [PATCH 068/174] cd bootstrap // dotnet run --project bootstrap --properties --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 5d070ac..413c99d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -77,10 +77,10 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest'}} run: | cd Bootstrap - dotnet run --properties kcl.properties --execute || echo "hi" + dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | cd Bootstrap - dotnet run --properties kcl.properties --execute || echo "hi" + dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" From d7f1c16e0ead09d709e5063328869cf0afb9b5a0 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:48:54 -0700 Subject: [PATCH 069/174] cd sampleconsumer // dotnet run --project bootstrap --properties --- .github/workflows/dotnet.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 413c99d..f878049 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -76,11 +76,11 @@ jobs: - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os == 'ubuntu-latest'}} run: | - cd Bootstrap - dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" + cd SampleConsumer + dotnet run --project Bootstrap.csproj --properties kcl.properties --execute || echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | - cd Bootstrap - dotnet run --project Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" + cd SampleConsumer + dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" From 37602d496419a8fffe36f04798c8625c64eed87b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:51:09 -0700 Subject: [PATCH 070/174] cd sampleconsumer // dotnet run --project ../bootstrap/bootstrap --properties --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f878049..fa404c3 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -77,7 +77,7 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest'}} run: | cd SampleConsumer - dotnet run --project Bootstrap.csproj --properties kcl.properties --execute || echo "hi" + dotnet run --project ../Bootstrap.Bootstrap.csproj --properties kcl.properties --execute || echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From 71a66ac00b2a21ec901a4351d06c933d31d9b65c Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:53:29 -0700 Subject: [PATCH 071/174] cd sampleconsumer // dotnet run --project ../bootstrap/bootstrap --properties --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index fa404c3..abfbf68 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -77,7 +77,7 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest'}} run: | cd SampleConsumer - dotnet run --project ../Bootstrap.Bootstrap.csproj --properties kcl.properties --execute || echo "hi" + dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} From d8f3f17eabd94fcc315f86d8aedc0f0498312e46 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:56:32 -0700 Subject: [PATCH 072/174] add timeout --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index abfbf68..d324975 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -74,13 +74,13 @@ jobs: # dotnet run - name: Run KCL consumer (ubuntu and windows) - if: ${{ matrix.os == 'ubuntu-latest'}} + if: ${{ matrix.os != 'macOS-latest'}} run: | cd SampleConsumer - dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" + timeout 45 dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | cd SampleConsumer - dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || echo "hi" + gtimeout 45 dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From ecaea90edd5c2765ac6baac550881d640bdfafbf Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 09:59:03 -0700 Subject: [PATCH 073/174] re-add producer and install coreutils --- .github/workflows/dotnet.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index d324975..4bbac14 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -68,10 +68,10 @@ jobs: cd ../ClientLibrary.Test dotnet add package AWSSDK.Kinesis --version 4.0.2.1 -# - name: Run KCL Producer -# run: | -# cd SampleProducer -# dotnet run + - name: Run KCL Producer + run: | + cd SampleProducer + dotnet run - name: Run KCL consumer (ubuntu and windows) if: ${{ matrix.os != 'macOS-latest'}} @@ -82,5 +82,6 @@ jobs: - name: Run KCL consumer (macOS) if: ${{ matrix.os == 'macOS-latest'}} run: | + brew install coreutils cd SampleConsumer gtimeout 45 dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" From db923c065dcacf2ed719e9e32d38dbd6f8a77234 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 10:06:24 -0700 Subject: [PATCH 074/174] re-add jdk versions --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 4bbac14..7a6c49e 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -24,7 +24,7 @@ jobs: matrix: # jdk-version: [ "8", "11", "17", "21", "24" ] # dotnet-version: [ '6.0.x', '8.0.x' ] - jdk-version: [ "8", "24" ] + jdk-version: [ "8", "11", "17", "21", "24" ] os: [ ubuntu-latest, macOS-latest, windows-latest ] steps: From 16d5680256879f0558daa235779dbb18b3b7157b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 10:18:48 -0700 Subject: [PATCH 075/174] FAILURE TESTING: logback to 1.5.16 from 1.3.15 (jdk8 error) --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..42c1e5e 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ 4.1.108.Final 2.0.6 2.13.5 - 1.3.14 + 1.5.16 From 81e22e07dc8543b20f044e32b68acd92cf9c9c48 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 10:23:16 -0700 Subject: [PATCH 076/174] SUCCCESS TESTING: logback to 1.3.14 from 1.5.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 42c1e5e..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ 4.1.108.Final 2.0.6 2.13.5 - 1.5.16 + 1.3.14 From 008f066710192cef75ab902401751e18e05a0a66 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 10:28:01 -0700 Subject: [PATCH 077/174] add dependabot auto merge --- .github/workflows/dotnet.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7a6c49e..ef4ddd2 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -22,8 +22,6 @@ jobs: strategy: fail-fast: false matrix: -# jdk-version: [ "8", "11", "17", "21", "24" ] -# dotnet-version: [ '6.0.x', '8.0.x' ] jdk-version: [ "8", "11", "17", "21", "24" ] os: [ ubuntu-latest, macOS-latest, windows-latest ] @@ -85,3 +83,21 @@ jobs: brew install coreutils cd SampleConsumer gtimeout 45 dotnet run --project ../Bootstrap/Bootstrap.csproj --properties kcl.properties --execute || status="$?"; if (( status == 124 )); then exit 0; else exit 1; fi; exit "$status" + + auto-merge-dependabot: + needs: [sample-run] + runs-on: ubuntu-latest + if: github.event.pull_request.user.login == 'dependabot[bot]' + steps: + - name: Fetch Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2 + with: + alert-lookup: true + github-token: "${{ secrets.GITHUB_TOKEN }}" + - name: Enable auto-merge for Dependabot PRs + if: steps.metadata.outputs.update-type != 'version-update:semver-major' + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 8d980b8a8c150862dccb9b41760ae862b532cb02 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 10:57:27 -0700 Subject: [PATCH 078/174] change frequency of dependabot scan --- .github/dependabot.yml | 3 ++- .github/workflows/dotnet.yml | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 841f056..d8a5a8b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,5 +2,6 @@ version: 2 updates: - package-ecosystem: "nuget" directory: "/" + open-pull-requests-limit: 3 schedule: - interval: "weekly" + interval: "daily" diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index ef4ddd2..fddd93f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,7 +3,6 @@ name: Sample Run and Dependabot Auto-merge on: - push: pull_request_target: branches: [ master ] From 6ba5a105274f6f4a1371c9fde237b806c9e96ab6 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:13:33 -0700 Subject: [PATCH 079/174] rmove clientlibrary awssdk packages --- .github/workflows/dotnet.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index fddd93f..67d7496 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,6 +3,7 @@ name: Sample Run and Dependabot Auto-merge on: + push: pull_request_target: branches: [ master ] @@ -52,7 +53,7 @@ jobs: dotnet build --no-restore dotnet test --no-build - - name: Install AWS SDK + - name: Install AWS SDK into projects run: | cd SampleProducer dotnet add package AWSSDK.Kinesis --version 4.0.2.1 @@ -60,10 +61,6 @@ jobs: dotnet add package AWSSDK.Kinesis --version 4.0.2.1 cd ../Bootstrap dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - cd ../ClientLibrary - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - cd ../ClientLibrary.Test - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - name: Run KCL Producer run: | From 09e516a3d7c7c56806c5ba44f89099f9006c374d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:18:03 -0700 Subject: [PATCH 080/174] remove on push --- .github/workflows/dotnet.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 67d7496..c8b303d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,7 +3,6 @@ name: Sample Run and Dependabot Auto-merge on: - push: pull_request_target: branches: [ master ] From 919310759e70f4d8846557fece496df50c330852 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:22:02 -0700 Subject: [PATCH 081/174] remove on push --- .idea/.gitignore | 10 ---------- .idea/vcs.xml | 6 ------ 2 files changed, 16 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 7bc07ec..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Environment-dependent path to Maven home directory -/mavenHomeManager.xml -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 7d4618181cf28e10491d9f5efca1ee895117f853 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:23:34 -0700 Subject: [PATCH 082/174] testing netcoreapp5.0 --- .github/workflows/dotnet.yml | 1 + ClientLibrary/ClientLibrary.csproj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index c8b303d..67d7496 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,6 +3,7 @@ name: Sample Run and Dependabot Auto-merge on: + push: pull_request_target: branches: [ master ] diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 3e95418..7ba2356 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp6.0 + netcoreapp5.0 false From 4726e74a3016d08a8395c212064ced6d1e9022d4 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:27:18 -0700 Subject: [PATCH 083/174] remove on push --- .github/workflows/dotnet.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 67d7496..c8b303d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,7 +3,6 @@ name: Sample Run and Dependabot Auto-merge on: - push: pull_request_target: branches: [ master ] From bece4243c14b185fc46de3a230a0a698da77dce1 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:30:16 -0700 Subject: [PATCH 084/174] revert dependabot file --- .github/dependabot.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d8a5a8b..841f056 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,5 @@ version: 2 updates: - package-ecosystem: "nuget" directory: "/" - open-pull-requests-limit: 3 schedule: - interval: "daily" + interval: "weekly" From 0da1e7cfc3a7dfaf7c30dddaf164191d4229d87f Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 9 May 2025 11:33:17 -0700 Subject: [PATCH 085/174] add on.push:master --- .github/workflows/dotnet.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index c8b303d..a1be140 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,6 +3,8 @@ name: Sample Run and Dependabot Auto-merge on: + push: + branches: [ master ] pull_request_target: branches: [ master ] From 34017e3c1e2e5f65da5b08d81d9eb926be028db4 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Mon, 12 May 2025 10:19:38 -0700 Subject: [PATCH 086/174] change aws role name; update workflow triggers --- .github/workflows/dotnet.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index a1be140..d664d71 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -7,6 +7,7 @@ on: branches: [ master ] pull_request_target: branches: [ master ] + workflow_dispatch: permissions: id-token: write @@ -34,8 +35,8 @@ jobs: uses: aws-actions/configure-aws-credentials@v4 with: aws-region: us-east-1 - role-to-assume: arn:aws:iam::751999266872:role/GitHubWorkflows - role-session-name: myGitHubActions + role-to-assume: arn:aws:iam::751999266872:role/GitHubNet + role-session-name: myGitHubActionsNet - name: Set up JDK ${{ matrix.jdk-version }} uses: actions/setup-java@v4 From 3dec05aec90abcbb794104f20885530d04432c0e Mon Sep 17 00:00:00 2001 From: skye rogers Date: Mon, 12 May 2025 11:07:44 -0700 Subject: [PATCH 087/174] remove extra dotnet add packages and add env variable for aws sdk --- .github/workflows/dotnet.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index d664d71..c8abb95 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -58,11 +58,9 @@ jobs: - name: Install AWS SDK into projects run: | cd SampleProducer - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - cd ../SampleConsumer - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 - cd ../Bootstrap - dotnet add package AWSSDK.Kinesis --version 4.0.2.1 + dotnet add package AWSSDK.Kinesis --version $"AWS_SDK_Version" + env: + AWS_SDK_Version: "4.0.2.1" - name: Run KCL Producer run: | From 47b20d4d6625c16ad76ac9c85694cd06ae26b6ad Mon Sep 17 00:00:00 2001 From: skye rogers Date: Mon, 12 May 2025 11:10:20 -0700 Subject: [PATCH 088/174] remove extra dotnet add packages and add env variable for aws sdk --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index c8abb95..77acba5 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -58,9 +58,9 @@ jobs: - name: Install AWS SDK into projects run: | cd SampleProducer - dotnet add package AWSSDK.Kinesis --version $"AWS_SDK_Version" + dotnet add package AWSSDK.Kinesis --version ${{ AWS_SDK_Version }} env: - AWS_SDK_Version: "4.0.2.1" + AWS_SDK_Version: '4.0.2.1' - name: Run KCL Producer run: | From 690e144a41327258095868b5c2be6499d76aca16 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Mon, 12 May 2025 11:12:24 -0700 Subject: [PATCH 089/174] remove extra dotnet add packages and add env variable for aws sdk --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 77acba5..9311582 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -58,7 +58,7 @@ jobs: - name: Install AWS SDK into projects run: | cd SampleProducer - dotnet add package AWSSDK.Kinesis --version ${{ AWS_SDK_Version }} + dotnet add package AWSSDK.Kinesis --version ${{ env.AWS_SDK_Version }} env: AWS_SDK_Version: '4.0.2.1' From 9ab73124b20b7e88d11fdafac872177a6d5cdb78 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 09:37:25 -0700 Subject: [PATCH 090/174] update aws sdk version in SampleProducer.csproj --- ClientLibrary/ClientLibrary.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 7ba2356..3e95418 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp5.0 + netcoreapp6.0 false diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index 1d15b17..3197de3 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -6,7 +6,7 @@ - + From d4cab88247e05c3bd4113e6e3fb4f7fe0e938f5d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 09:46:00 -0700 Subject: [PATCH 091/174] change all targets to netstandard2.0 --- Bootstrap/Bootstrap.csproj | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- SampleConsumer/SampleConsumer.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bootstrap/Bootstrap.csproj b/Bootstrap/Bootstrap.csproj index 224195f..13df207 100644 --- a/Bootstrap/Bootstrap.csproj +++ b/Bootstrap/Bootstrap.csproj @@ -3,7 +3,7 @@ false Exe - netcoreapp6.0 + netstandard2.0 diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 0cb7b7f..5ed88ef 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp6.0 + netstandard2.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 3e95418..5249ce0 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp6.0 + netstandard2.0 false diff --git a/SampleConsumer/SampleConsumer.csproj b/SampleConsumer/SampleConsumer.csproj index b88680a..72fd9de 100644 --- a/SampleConsumer/SampleConsumer.csproj +++ b/SampleConsumer/SampleConsumer.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0 + netstandard2.0 diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index 3197de3..96b877c 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0 + netstandard2.0 From 1f7375aef707221626f88d99aeb39b599a4f7d5d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 09:53:40 -0700 Subject: [PATCH 092/174] multitarget including netstandard2.0 --- Bootstrap/Bootstrap.csproj | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- SampleConsumer/SampleConsumer.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bootstrap/Bootstrap.csproj b/Bootstrap/Bootstrap.csproj index 13df207..2a4a720 100644 --- a/Bootstrap/Bootstrap.csproj +++ b/Bootstrap/Bootstrap.csproj @@ -3,7 +3,7 @@ false Exe - netstandard2.0 + netstandard2.0;netcoreapp6.0 diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 5ed88ef..86a2983 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netstandard2.0 + netstandard2.0;netcoreapp6.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 5249ce0..585ed26 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netstandard2.0 + netstandard2.0;netcoreapp5.0 false diff --git a/SampleConsumer/SampleConsumer.csproj b/SampleConsumer/SampleConsumer.csproj index 72fd9de..a209c92 100644 --- a/SampleConsumer/SampleConsumer.csproj +++ b/SampleConsumer/SampleConsumer.csproj @@ -2,7 +2,7 @@ Exe - netstandard2.0 + netstandard2.0;netcoreapp6.0 diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index 96b877c..b5e28cc 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -2,7 +2,7 @@ Exe - netstandard2.0 + netstandard2.0;netcoreapp6.0 From 44570028210e763351254375c0f7ec6d409492cc Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 09:54:14 -0700 Subject: [PATCH 093/174] multitarget including netstandard2.0 --- Bootstrap/Bootstrap.csproj | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- SampleConsumer/SampleConsumer.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bootstrap/Bootstrap.csproj b/Bootstrap/Bootstrap.csproj index 2a4a720..4fe2fb5 100644 --- a/Bootstrap/Bootstrap.csproj +++ b/Bootstrap/Bootstrap.csproj @@ -3,7 +3,7 @@ false Exe - netstandard2.0;netcoreapp6.0 + netstandard2.0;netcoreapp6.0 diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 86a2983..b0546cb 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netstandard2.0;netcoreapp6.0 + netstandard2.0;netcoreapp6.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 585ed26..ec16833 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netstandard2.0;netcoreapp5.0 + netstandard2.0;netcoreapp5.0 false diff --git a/SampleConsumer/SampleConsumer.csproj b/SampleConsumer/SampleConsumer.csproj index a209c92..18e9dee 100644 --- a/SampleConsumer/SampleConsumer.csproj +++ b/SampleConsumer/SampleConsumer.csproj @@ -2,7 +2,7 @@ Exe - netstandard2.0;netcoreapp6.0 + netstandard2.0;netcoreapp6.0 diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index b5e28cc..d35e32e 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -2,7 +2,7 @@ Exe - netstandard2.0;netcoreapp6.0 + netstandard2.0;netcoreapp6.0 From 1d8da3b6133e6cb8492347421a37366c33e70311 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 09:59:15 -0700 Subject: [PATCH 094/174] add net8.0 multitargeting --- Bootstrap/Bootstrap.csproj | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- SampleConsumer/SampleConsumer.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bootstrap/Bootstrap.csproj b/Bootstrap/Bootstrap.csproj index 4fe2fb5..ea56931 100644 --- a/Bootstrap/Bootstrap.csproj +++ b/Bootstrap/Bootstrap.csproj @@ -3,7 +3,7 @@ false Exe - netstandard2.0;netcoreapp6.0 + netcoreapp6.0;net8.0 diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index b0546cb..18c0ca8 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netstandard2.0;netcoreapp6.0 + netcoreapp6.0;net8.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index ec16833..556d13b 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netstandard2.0;netcoreapp5.0 + netcoreapp5.0;net8.0 false diff --git a/SampleConsumer/SampleConsumer.csproj b/SampleConsumer/SampleConsumer.csproj index 18e9dee..12c1662 100644 --- a/SampleConsumer/SampleConsumer.csproj +++ b/SampleConsumer/SampleConsumer.csproj @@ -2,7 +2,7 @@ Exe - netstandard2.0;netcoreapp6.0 + netcoreapp6.0;net8.0 diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index d35e32e..7d6f01a 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -2,7 +2,7 @@ Exe - netstandard2.0;netcoreapp6.0 + netcoreapp6.0;net8.0 From ca11d7404681a807c5ff05ed434723adb15655b2 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 10:02:55 -0700 Subject: [PATCH 095/174] change net8.0 to netcoreapp8.0 --- Bootstrap/Bootstrap.csproj | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- SampleConsumer/SampleConsumer.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bootstrap/Bootstrap.csproj b/Bootstrap/Bootstrap.csproj index ea56931..f2e44fb 100644 --- a/Bootstrap/Bootstrap.csproj +++ b/Bootstrap/Bootstrap.csproj @@ -3,7 +3,7 @@ false Exe - netcoreapp6.0;net8.0 + netcoreapp6.0;netcoreapp8.0 diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 18c0ca8..0bcb255 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp6.0;net8.0 + netcoreapp6.0;netcoreapp8.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 556d13b..efdb9cb 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp5.0;net8.0 + netcoreapp5.0;netcoreapp8.0 false diff --git a/SampleConsumer/SampleConsumer.csproj b/SampleConsumer/SampleConsumer.csproj index 12c1662..891fd0d 100644 --- a/SampleConsumer/SampleConsumer.csproj +++ b/SampleConsumer/SampleConsumer.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0;net8.0 + netcoreapp6.0;netcoreapp8.0 diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index 7d6f01a..73ec2b8 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0;net8.0 + netcoreapp6.0;netcoreapp8.0 From bf11e466ef7574d20dae0d66084f7eceaa8f826d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 10:04:54 -0700 Subject: [PATCH 096/174] success testing: reverted --- Bootstrap/Bootstrap.csproj | 2 +- ClientLibrary.Test/ClientLibrary.Test.csproj | 2 +- ClientLibrary/ClientLibrary.csproj | 2 +- SampleConsumer/SampleConsumer.csproj | 2 +- SampleProducer/SampleProducer.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Bootstrap/Bootstrap.csproj b/Bootstrap/Bootstrap.csproj index f2e44fb..224195f 100644 --- a/Bootstrap/Bootstrap.csproj +++ b/Bootstrap/Bootstrap.csproj @@ -3,7 +3,7 @@ false Exe - netcoreapp6.0;netcoreapp8.0 + netcoreapp6.0 diff --git a/ClientLibrary.Test/ClientLibrary.Test.csproj b/ClientLibrary.Test/ClientLibrary.Test.csproj index 0bcb255..0cb7b7f 100644 --- a/ClientLibrary.Test/ClientLibrary.Test.csproj +++ b/ClientLibrary.Test/ClientLibrary.Test.csproj @@ -1,7 +1,7 @@ - netcoreapp6.0;netcoreapp8.0 + netcoreapp6.0 false diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index efdb9cb..7ba2356 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp5.0;netcoreapp8.0 + netcoreapp5.0 false diff --git a/SampleConsumer/SampleConsumer.csproj b/SampleConsumer/SampleConsumer.csproj index 891fd0d..b88680a 100644 --- a/SampleConsumer/SampleConsumer.csproj +++ b/SampleConsumer/SampleConsumer.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0;netcoreapp8.0 + netcoreapp6.0 diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index 73ec2b8..3197de3 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp6.0;netcoreapp8.0 + netcoreapp6.0 From 007bd33be9fe3fa73c0052c95cad899ae570d824 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 10:36:31 -0700 Subject: [PATCH 097/174] change build order --- .github/workflows/dotnet.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 9311582..3c62336 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -51,8 +51,7 @@ jobs: - name: Restore, Build, and Test run: | - dotnet restore - dotnet build --no-restore + dotnet build dotnet test --no-build - name: Install AWS SDK into projects From c7aafbf2c3538e947c6a8cc48376b3d2bbaa763c Mon Sep 17 00:00:00 2001 From: skye rogers Date: Tue, 13 May 2025 10:52:35 -0700 Subject: [PATCH 098/174] revert awssdk version is sampleproducer.csproj --- SampleProducer/SampleProducer.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SampleProducer/SampleProducer.csproj b/SampleProducer/SampleProducer.csproj index 3197de3..1d15b17 100644 --- a/SampleProducer/SampleProducer.csproj +++ b/SampleProducer/SampleProducer.csproj @@ -6,7 +6,7 @@ - + From 099dcc61af71b75f1c603f8ce053d4b71c64f783 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 14 May 2025 11:26:38 -0700 Subject: [PATCH 099/174] add permissions; add approval step in automerge --- .github/workflows/dotnet.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 3c62336..4f44cc6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -12,6 +12,8 @@ on: permissions: id-token: write contents: write + pull-requests: write + statuses: write jobs: sample-run: @@ -30,6 +32,8 @@ jobs: steps: - name: Checkout working directory uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v4 @@ -82,7 +86,7 @@ jobs: auto-merge-dependabot: needs: [sample-run] runs-on: ubuntu-latest - if: github.event.pull_request.user.login == 'dependabot[bot]' + if: github.actor == 'dependabot[bot]' && github.event.pull_request.user.login == 'dependabot[bot]' steps: - name: Fetch Dependabot metadata id: metadata @@ -90,6 +94,14 @@ jobs: with: alert-lookup: true github-token: "${{ secrets.GITHUB_TOKEN }}" + + - name: Approve PR + if: steps.metadata.outputs.update-type != 'version-update:semver-major' + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: Enable auto-merge for Dependabot PRs if: steps.metadata.outputs.update-type != 'version-update:semver-major' run: gh pr merge --auto --merge "$PR_URL" From c380522412bfd25da2144a4184580d4550d2eb7d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 14 May 2025 16:24:25 -0700 Subject: [PATCH 100/174] add maven as package ecosystem --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 841f056..4c77117 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,3 +4,9 @@ updates: directory: "/" schedule: interval: "weekly" + + - package-ecosystem: "maven" + directory: "/" + open-pull-requests-limit: 2 + schedule: + interval: "daily" \ No newline at end of file From 24a5fc9b27548b8133fcc6ebcaf5167ef261f3fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 23:25:14 +0000 Subject: [PATCH 101/174] Bump fasterxml-jackson.version from 2.13.5 to 2.19.0 Bumps `fasterxml-jackson.version` from 2.13.5 to 2.19.0. Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-cbor` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.13.5...jackson-dataformats-binary-2.19.0) Updates `com.fasterxml.jackson.core:jackson-core` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.5...jackson-core-2.19.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..e78e36a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.13.5 + 2.19.0 1.3.14 From 7d0e7983c8c88554a13f92263b914425a89dcc71 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 23:25:22 +0000 Subject: [PATCH 102/174] Bump kcl.version from 3.0.0 to 3.0.3 Bumps `kcl.version` from 3.0.0 to 3.0.3. Updates `software.amazon.kinesis:amazon-kinesis-client-multilang` from 3.0.0 to 3.0.3 - [Release notes](https://github.com/awslabs/amazon-kinesis-client/releases) - [Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/amazon-kinesis-client/compare/v3.0.0...v3.0.3) Updates `software.amazon.kinesis:amazon-kinesis-client` from 3.0.0 to 3.0.3 - [Release notes](https://github.com/awslabs/amazon-kinesis-client/releases) - [Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/amazon-kinesis-client/compare/v3.0.0...v3.0.3) --- updated-dependencies: - dependency-name: software.amazon.kinesis:amazon-kinesis-client-multilang dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: software.amazon.kinesis:amazon-kinesis-client dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..f4b4fb7 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 2.25.64 - 3.0.0 + 3.0.3 4.1.108.Final 2.0.6 2.13.5 From af99eae17d823010336075d2407dc691a777e7f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 01:16:43 +0000 Subject: [PATCH 103/174] Bump commons-codec:commons-codec from 1.15 to 1.18.0 Bumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) from 1.15 to 1.18.0. - [Changelog](https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-codec/compare/rel/commons-codec-1.15...rel/commons-codec-1.18.0) --- updated-dependencies: - dependency-name: commons-codec:commons-codec dependency-version: 1.18.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 48c02ae..aba6f88 100644 --- a/pom.xml +++ b/pom.xml @@ -330,7 +330,7 @@ commons-codec commons-codec - 1.15 + 1.18.0 org.apache.httpcomponents From df3f3bbb3f2b60c415dc91a059a7dde73d1e6186 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 09:44:12 -0700 Subject: [PATCH 104/174] revert kcl version in pom --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aba6f88..d3dea99 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 2.25.64 - 3.0.3 + 3.0.0 4.1.108.Final 2.0.6 2.19.0 From b09cff70ac36762bb09e242850ce4c997d23bfa5 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 09:50:56 -0700 Subject: [PATCH 105/174] revert pom --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d3dea99..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.19.0 + 2.13.5 1.3.14 @@ -330,7 +330,7 @@ commons-codec commons-codec - 1.18.0 + 1.15 org.apache.httpcomponents From 3f50ca71a1ee6654d46ef9e720fedf212d41384b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:16:07 -0700 Subject: [PATCH 106/174] update bootstrap httpclient 1 --- Bootstrap/Bootstrap.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 847dc2a..921828e 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -63,8 +63,8 @@ public void Fetch(String folder) String destination = Path.Combine(folder, FileName); if (!File.Exists(destination)) { - var client = new WebClient(); - client.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); + HttpClient client = new(); + client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); client.DownloadFile(new Uri(Url), destination); } From 6534a37e25dd935baef5de0d2c701fbb478df6dd Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:18:47 -0700 Subject: [PATCH 107/174] update bootstrap httpclient 2 --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 921828e..6153d17 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -63,7 +63,7 @@ public void Fetch(String folder) String destination = Path.Combine(folder, FileName); if (!File.Exists(destination)) { - HttpClient client = new(); + HttpClient client = new HttpClient(); client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); client.DownloadFile(new Uri(Url), destination); From c9a173dae2c38e8f180927e790629490ffa11d92 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:33:02 -0700 Subject: [PATCH 108/174] update bootstrap httpclient 3 --- Bootstrap/Bootstrap.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 6153d17..a85d296 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -10,6 +10,7 @@ using System.Diagnostics; using System.Linq; using System.Xml.Linq; +using System.Net.Http; using CommandLine; namespace Amazon.Kinesis.ClientLibrary.Bootstrap @@ -63,10 +64,10 @@ public void Fetch(String folder) String destination = Path.Combine(folder, FileName); if (!File.Exists(destination)) { - HttpClient client = new HttpClient(); - client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); + var httpclient = new HttpClient(); + httpclient.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); - client.DownloadFile(new Uri(Url), destination); + httpclient.DownloadFile(new Uri(Url), destination); } } From 361d6ec33467ece2202ad865f3d45f0f5d0d43c1 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:41:55 -0700 Subject: [PATCH 109/174] update bootstrap httpclient 4 --- .github/workflows/dotnet.yml | 6 ++++-- Bootstrap/Bootstrap.cs | 10 +++++++--- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 4f44cc6..fa35279 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,8 +26,10 @@ jobs: strategy: fail-fast: false matrix: - jdk-version: [ "8", "11", "17", "21", "24" ] - os: [ ubuntu-latest, macOS-latest, windows-latest ] +# jdk-version: [ "8", "11", "17", "21", "24" ] +# os: [ ubuntu-latest, macOS-latest, windows-latest ] + jdk-version: [ "8", "24" ] + os: [ ubuntu-latest, windows-latest ] steps: - name: Checkout working directory diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index a85d296..2a2dced 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -64,10 +64,14 @@ public void Fetch(String folder) String destination = Path.Combine(folder, FileName); if (!File.Exists(destination)) { - var httpclient = new HttpClient(); - httpclient.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); + using var client = new HttpClient(); + client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); - httpclient.DownloadFile(new Uri(Url), destination); + using var response = await client.GetAsync(new Uri(Url)); + response.EnsureSuccessStatusCode(); // Throws if the status code is not successful + + using var fs = new FileStream(destination, FileMode.Create); + await response.Content.CopyToAsync(fs); } } From c1f8a98341548b11aada5e78ef9fc0511f27b453 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:45:03 -0700 Subject: [PATCH 110/174] update bootstrap httpclient 5 --- Bootstrap/Bootstrap.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 2a2dced..4579fb9 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -54,7 +54,7 @@ public bool Exists(String folder) /// Download the jar file for this Maven package. /// /// Folder to download the file into. - public void Fetch(String folder) + public async Fetch(String folder) { if (!Directory.Exists(folder)) { @@ -189,7 +189,7 @@ private static string FetchJars(string jarFolder) foreach (MavenPackage mp in MAVEN_PACKAGES) { - mp.Fetch(jarFolder); + await mp.Fetch(jarFolder); } Console.Error.WriteLine("Done."); From a558b2d7e65e993f2d1eeacfc464d9c4ce46b4d8 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:46:59 -0700 Subject: [PATCH 111/174] update bootstrap httpclient 6 --- Bootstrap/Bootstrap.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 4579fb9..cb84630 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -54,7 +54,7 @@ public bool Exists(String folder) /// Download the jar file for this Maven package. /// /// Folder to download the file into. - public async Fetch(String folder) + public void Fetch(String folder) { if (!Directory.Exists(folder)) { @@ -67,11 +67,11 @@ public async Fetch(String folder) using var client = new HttpClient(); client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); - using var response = await client.GetAsync(new Uri(Url)); + using var response = client.GetAsync(new Uri(Url)).GetAwaiter().GetResult(); response.EnsureSuccessStatusCode(); // Throws if the status code is not successful using var fs = new FileStream(destination, FileMode.Create); - await response.Content.CopyToAsync(fs); + response.Content.CopyToAsync(fs).GetAwaiter().GetResult(); } } @@ -189,7 +189,7 @@ private static string FetchJars(string jarFolder) foreach (MavenPackage mp in MAVEN_PACKAGES) { - await mp.Fetch(jarFolder); + mp.Fetch(jarFolder); } Console.Error.WriteLine("Done."); From a8041d7451480810725ed4bec4f4dd2e7358ef02 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:51:41 -0700 Subject: [PATCH 112/174] update bootstrap httpclient 7 --- Bootstrap/Bootstrap.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index cb84630..aaf7a8b 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -11,6 +11,7 @@ using System.Linq; using System.Xml.Linq; using System.Net.Http; +using System.Threading.Tasks using CommandLine; namespace Amazon.Kinesis.ClientLibrary.Bootstrap @@ -54,7 +55,7 @@ public bool Exists(String folder) /// Download the jar file for this Maven package. /// /// Folder to download the file into. - public void Fetch(String folder) + public async Task Fetch(String folder) { if (!Directory.Exists(folder)) { @@ -67,11 +68,11 @@ public void Fetch(String folder) using var client = new HttpClient(); client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); - using var response = client.GetAsync(new Uri(Url)).GetAwaiter().GetResult(); + using var response = await client.GetAsync(new Uri(Url)); response.EnsureSuccessStatusCode(); // Throws if the status code is not successful using var fs = new FileStream(destination, FileMode.Create); - response.Content.CopyToAsync(fs).GetAwaiter().GetResult(); + await response.Content.CopyToAsync(fs); } } From bcfd540976b2346099460515c46520fae43a5eaa Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:52:41 -0700 Subject: [PATCH 113/174] update bootstrap httpclient 7 --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index aaf7a8b..1154dc7 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -11,7 +11,7 @@ using System.Linq; using System.Xml.Linq; using System.Net.Http; -using System.Threading.Tasks +using System.Threading.Tasks; using CommandLine; namespace Amazon.Kinesis.ClientLibrary.Bootstrap From 1ff89163d40c64df838951b6c35ef44f2761fa46 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 10:55:35 -0700 Subject: [PATCH 114/174] update bootstrap httpclient 8 --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 1154dc7..94c5b52 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -190,7 +190,7 @@ private static string FetchJars(string jarFolder) foreach (MavenPackage mp in MAVEN_PACKAGES) { - mp.Fetch(jarFolder); + await mp.Fetch(jarFolder); } Console.Error.WriteLine("Done."); From 0db696902df5289cf07229b419b4166ae36bddb4 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:03:23 -0700 Subject: [PATCH 115/174] update bootstrap httpclient 9 --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 94c5b52..1154dc7 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -190,7 +190,7 @@ private static string FetchJars(string jarFolder) foreach (MavenPackage mp in MAVEN_PACKAGES) { - await mp.Fetch(jarFolder); + mp.Fetch(jarFolder); } Console.Error.WriteLine("Done."); From 708039e6efe54347da70b28b4567dd5f5927fbf0 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:06:49 -0700 Subject: [PATCH 116/174] update bootstrap httpclient 10 --- Bootstrap/Bootstrap.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 1154dc7..6177911 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -55,7 +55,7 @@ public bool Exists(String folder) /// Download the jar file for this Maven package. /// /// Folder to download the file into. - public async Task Fetch(String folder) + public void Fetch(String folder) { if (!Directory.Exists(folder)) { @@ -68,11 +68,11 @@ public async Task Fetch(String folder) using var client = new HttpClient(); client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); Console.Error.WriteLine(Url + " --> " + destination); - using var response = await client.GetAsync(new Uri(Url)); + using var response = client.GetAsync(new Uri(Url)).GetAwaiter().GetResult(); response.EnsureSuccessStatusCode(); // Throws if the status code is not successful using var fs = new FileStream(destination, FileMode.Create); - await response.Content.CopyToAsync(fs); + response.Content.CopyToAsync(fs).GetAwaiter().GetResult(); } } From 2e24a15f2a8542e0b022a1cd75c9a6ce645ac2cd Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:17:47 -0700 Subject: [PATCH 117/174] change jar download website --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 6177911..5acd102 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -89,7 +89,7 @@ private String Url urlParts.Add(ArtifactId); urlParts.Add(Version); urlParts.Add(FileName); - return "https://search.maven.org/remotecontent?filepath=" + String.Join("/", urlParts); + return "https://repo1.maven.org/maven2/" + String.Join("/", urlParts); } } } From ce51c3c99684effd97b7d4159590af1264aacbe0 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:26:50 -0700 Subject: [PATCH 118/174] add retry strategy and await on mp.Fetch --- Bootstrap/Bootstrap.cs | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 5acd102..70776c6 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -55,7 +55,7 @@ public bool Exists(String folder) /// Download the jar file for this Maven package. /// /// Folder to download the file into. - public void Fetch(String folder) + public async Task Fetch(String folder) { if (!Directory.Exists(folder)) { @@ -67,12 +67,28 @@ public void Fetch(String folder) { using var client = new HttpClient(); client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); - Console.Error.WriteLine(Url + " --> " + destination); - using var response = client.GetAsync(new Uri(Url)).GetAwaiter().GetResult(); - response.EnsureSuccessStatusCode(); // Throws if the status code is not successful - using var fs = new FileStream(destination, FileMode.Create); - response.Content.CopyToAsync(fs).GetAwaiter().GetResult(); + const int maxRetries = 3; + for (int i = 0; i < maxRetries; i++) + { + try + { + Console.Error.WriteLine(Url + " --> " + destination); + using var response = await client.GetAsync(new Uri(Url)); + response.EnsureSuccessStatusCode(); + + using var fs = new FileStream(destination, FileMode.Create); + await response.Content.CopyToAsync(fs); + return; + } + catch (HttpRequestException ex) + { + if (i == maxRetries - 1) + throw new Exception($"Failed to download {FileName} after {maxRetries} attempts: {ex.Message}", ex); + + await Task.Delay(1000 * (i + 1)); // Exponential backoff + } + } } } @@ -190,7 +206,7 @@ private static string FetchJars(string jarFolder) foreach (MavenPackage mp in MAVEN_PACKAGES) { - mp.Fetch(jarFolder); + await mp.Fetch(jarFolder); } Console.Error.WriteLine("Done."); From a46ab8e4b1c39ccfee92332a4ce2218edb3fc4ed Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:30:15 -0700 Subject: [PATCH 119/174] make FetchJars async --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 70776c6..89e0a35 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -190,7 +190,7 @@ private static List ParseMavenPackages() /// /// Classpath string that includes all the jars downloaded. /// Folder into which to save the jars. - private static string FetchJars(string jarFolder) + private static async Task FetchJars(string jarFolder) { if (jarFolder == null) { From c1885a0f47209bff490a292ba14877fa508c29d5 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:33:09 -0700 Subject: [PATCH 120/174] make Main async --- Bootstrap/Bootstrap.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 89e0a35..c803aa5 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -264,13 +264,13 @@ private static string FindJava(string java) return null; } - public static void Main(string[] args) + public static async void Main(string[] args) { var parserResult = Parser.Default.ParseArguments(args); parserResult.WithParsed(options => { - string javaClassPath = FetchJars(options.JarFolder); + Task javaClassPath = await FetchJars(options.JarFolder); string java = FindJava(options.JavaLocation); From 4968a93d02518960383ef58fd5946b73a5f072d9 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:34:28 -0700 Subject: [PATCH 121/174] revert --- Bootstrap/Bootstrap.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index c803aa5..734643c 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -190,7 +190,7 @@ private static List ParseMavenPackages() /// /// Classpath string that includes all the jars downloaded. /// Folder into which to save the jars. - private static async Task FetchJars(string jarFolder) + private static string FetchJars(string jarFolder) { if (jarFolder == null) { @@ -206,7 +206,7 @@ private static async Task FetchJars(string jarFolder) foreach (MavenPackage mp in MAVEN_PACKAGES) { - await mp.Fetch(jarFolder); + mp.Fetch(jarFolder); } Console.Error.WriteLine("Done."); @@ -264,13 +264,13 @@ private static string FindJava(string java) return null; } - public static async void Main(string[] args) + public static void Main(string[] args) { var parserResult = Parser.Default.ParseArguments(args); parserResult.WithParsed(options => { - Task javaClassPath = await FetchJars(options.JarFolder); + string javaClassPath = FetchJars(options.JarFolder); string java = FindJava(options.JavaLocation); From 8cd2108848225e1268428257264db5ef157930da Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:38:23 -0700 Subject: [PATCH 122/174] revert with retry strategy --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 734643c..7e3da5b 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -55,7 +55,7 @@ public bool Exists(String folder) /// Download the jar file for this Maven package. /// /// Folder to download the file into. - public async Task Fetch(String folder) + public void Fetch(String folder) { if (!Directory.Exists(folder)) { From f83acf37d2afc2e5fcdfcbd691372d3b782d0539 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:41:00 -0700 Subject: [PATCH 123/174] revert with retry strategy 2 --- Bootstrap/Bootstrap.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 7e3da5b..b684616 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -74,11 +74,11 @@ public void Fetch(String folder) try { Console.Error.WriteLine(Url + " --> " + destination); - using var response = await client.GetAsync(new Uri(Url)); + using var response = client.GetAsync(new Uri(Url)).GetAwaiter().GetResult(); response.EnsureSuccessStatusCode(); using var fs = new FileStream(destination, FileMode.Create); - await response.Content.CopyToAsync(fs); + response.Content.CopyToAsync(fs).GetAwaiter().GetResult(); return; } catch (HttpRequestException ex) From 34c8416172c7178cf936ce2f3e48d8fa9cf79d7d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:42:01 -0700 Subject: [PATCH 124/174] revert with retry strategy 3 --- Bootstrap/Bootstrap.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index b684616..7383c56 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -85,8 +85,6 @@ public void Fetch(String folder) { if (i == maxRetries - 1) throw new Exception($"Failed to download {FileName} after {maxRetries} attempts: {ex.Message}", ex); - - await Task.Delay(1000 * (i + 1)); // Exponential backoff } } } From b66c872be6e28a8f475b104ec26fadd56e13e0fe Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:56:17 -0700 Subject: [PATCH 125/174] remove retry strategy --- Bootstrap/Bootstrap.cs | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 7383c56..019a99b 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -63,16 +63,11 @@ public void Fetch(String folder) } String destination = Path.Combine(folder, FileName); - if (!File.Exists(destination)) - { + if (!File.Exists(destination)) { using var client = new HttpClient(); client.DefaultRequestHeaders.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"); - const int maxRetries = 3; - for (int i = 0; i < maxRetries; i++) - { - try - { + try { Console.Error.WriteLine(Url + " --> " + destination); using var response = client.GetAsync(new Uri(Url)).GetAwaiter().GetResult(); response.EnsureSuccessStatusCode(); @@ -83,8 +78,7 @@ public void Fetch(String folder) } catch (HttpRequestException ex) { - if (i == maxRetries - 1) - throw new Exception($"Failed to download {FileName} after {maxRetries} attempts: {ex.Message}", ex); + throw new Exception($"Failed to download {FileName} after {maxRetries} attempts: {ex.Message}", ex); } } } From 477a41102928bd25a2bdf94c150b86f375e54d5b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:58:08 -0700 Subject: [PATCH 126/174] remove retry strategy --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 019a99b..95e77c4 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -80,7 +80,7 @@ public void Fetch(String folder) { throw new Exception($"Failed to download {FileName} after {maxRetries} attempts: {ex.Message}", ex); } - } + } } From 4fbf8053f6c7673c8d11e8ab2668e57f78e7d723 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 11:59:02 -0700 Subject: [PATCH 127/174] remove retry strategy --- Bootstrap/Bootstrap.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 95e77c4..bcae92c 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -78,7 +78,7 @@ public void Fetch(String folder) } catch (HttpRequestException ex) { - throw new Exception($"Failed to download {FileName} after {maxRetries} attempts: {ex.Message}", ex); + throw new Exception($"Failed to download {FileName}: {ex.Message}", ex); } } From 825e93f2033133cd6e279d600f65308c80235f6c Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 12:05:46 -0700 Subject: [PATCH 128/174] change target to 6 --- Bootstrap/Bootstrap.cs | 1 - ClientLibrary/ClientLibrary.csproj | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index bcae92c..c89da45 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -80,7 +80,6 @@ public void Fetch(String folder) { throw new Exception($"Failed to download {FileName}: {ex.Message}", ex); } - } } diff --git a/ClientLibrary/ClientLibrary.csproj b/ClientLibrary/ClientLibrary.csproj index 7ba2356..3e95418 100644 --- a/ClientLibrary/ClientLibrary.csproj +++ b/ClientLibrary/ClientLibrary.csproj @@ -1,7 +1,7 @@  - netcoreapp5.0 + netcoreapp6.0 false From 661e9a5a0b8d9b80d1413e08668e892ad370275d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 13:57:26 -0700 Subject: [PATCH 129/174] add catch strategy to FindJava --- Bootstrap/Bootstrap.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index c89da45..83f7c66 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -232,6 +232,8 @@ private static string FindJava(string java) } catch (Exception ex) { + Console.WriteLine($"Error finding Java: {ex.Message}"); + return null; } //TODO find away to read from registery on different OSs // Failing that, look in the registry. From 85fb92d2822721f1f892e5600c99c761b527d6bb Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 13:59:20 -0700 Subject: [PATCH 130/174] clean up unreachable code --- Bootstrap/Bootstrap.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Bootstrap/Bootstrap.cs b/Bootstrap/Bootstrap.cs index 83f7c66..6b1afb0 100644 --- a/Bootstrap/Bootstrap.cs +++ b/Bootstrap/Bootstrap.cs @@ -253,8 +253,7 @@ private static string FindJava(string java) // } // } //} - - return null; + //return null; } public static void Main(string[] args) From c21b021b9896d58d3d5bb06eeb917ca556118f80 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 14:37:27 -0700 Subject: [PATCH 131/174] re-add all tests --- .github/workflows/dotnet.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index fa35279..4f44cc6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -26,10 +26,8 @@ jobs: strategy: fail-fast: false matrix: -# jdk-version: [ "8", "11", "17", "21", "24" ] -# os: [ ubuntu-latest, macOS-latest, windows-latest ] - jdk-version: [ "8", "24" ] - os: [ ubuntu-latest, windows-latest ] + jdk-version: [ "8", "11", "17", "21", "24" ] + os: [ ubuntu-latest, macOS-latest, windows-latest ] steps: - name: Checkout working directory From 0ae26be52865a5273e457127fe1dff56aebcb37f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 21:57:19 +0000 Subject: [PATCH 132/174] Bump kcl.version from 3.0.0 to 3.0.3 Bumps `kcl.version` from 3.0.0 to 3.0.3. Updates `software.amazon.kinesis:amazon-kinesis-client-multilang` from 3.0.0 to 3.0.3 - [Release notes](https://github.com/awslabs/amazon-kinesis-client/releases) - [Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/amazon-kinesis-client/compare/v3.0.0...v3.0.3) Updates `software.amazon.kinesis:amazon-kinesis-client` from 3.0.0 to 3.0.3 - [Release notes](https://github.com/awslabs/amazon-kinesis-client/releases) - [Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/amazon-kinesis-client/compare/v3.0.0...v3.0.3) --- updated-dependencies: - dependency-name: software.amazon.kinesis:amazon-kinesis-client-multilang dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: software.amazon.kinesis:amazon-kinesis-client dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..f4b4fb7 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 2.25.64 - 3.0.0 + 3.0.3 4.1.108.Final 2.0.6 2.13.5 From 752991e994c4314b6497247014e434c5e92f7703 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:06:00 +0000 Subject: [PATCH 133/174] Bump org.slf4j:slf4j-api from 2.0.13 to 2.0.17 Bumps org.slf4j:slf4j-api from 2.0.13 to 2.0.17. --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-version: 2.0.17 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f4b4fb7..070fe8f 100644 --- a/pom.xml +++ b/pom.xml @@ -290,7 +290,7 @@ org.slf4j slf4j-api - 2.0.13 + 2.0.17 io.reactivex.rxjava3 From e84945bbada4ee904a290268acfb46ea846f05cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:18:35 +0000 Subject: [PATCH 134/174] Bump fasterxml-jackson.version from 2.13.5 to 2.19.0 Bumps `fasterxml-jackson.version` from 2.13.5 to 2.19.0. Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-cbor` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.13.5...jackson-dataformats-binary-2.19.0) Updates `com.fasterxml.jackson.core:jackson-core` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.5...jackson-core-2.19.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 070fe8f..e302512 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.3 4.1.108.Final 2.0.6 - 2.13.5 + 2.19.0 1.3.14 From e174845105d25562b2b488af1dbf1a9c8763ee23 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:23:02 +0000 Subject: [PATCH 135/174] Bump commons-logging:commons-logging from 1.1.3 to 1.3.5 Bumps commons-logging:commons-logging from 1.1.3 to 1.3.5. --- updated-dependencies: - dependency-name: commons-logging:commons-logging dependency-version: 1.3.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e302512..bf5da2b 100644 --- a/pom.xml +++ b/pom.xml @@ -381,7 +381,7 @@ commons-logging commons-logging - 1.1.3 + 1.3.5 org.apache.commons From 35cc0e45a78e267fe785ea1f673ab2c7e75203b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:27:30 +0000 Subject: [PATCH 136/174] Bump org.reactivestreams:reactive-streams from 1.0.3 to 1.0.4 Bumps [org.reactivestreams:reactive-streams](https://github.com/reactive-streams/reactive-streams) from 1.0.3 to 1.0.4. - [Changelog](https://github.com/reactive-streams/reactive-streams-jvm/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/reactive-streams/reactive-streams/compare/v1.0.3...v1.0.4) --- updated-dependencies: - dependency-name: org.reactivestreams:reactive-streams dependency-version: 1.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bf5da2b..21fae96 100644 --- a/pom.xml +++ b/pom.xml @@ -245,7 +245,7 @@ org.reactivestreams reactive-streams - 1.0.3 + 1.0.4 com.google.guava From ffa54fa5a95ebae5ccb591faba2936c787ed3960 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:42:53 +0000 Subject: [PATCH 137/174] Bump commons-beanutils:commons-beanutils from 1.9.4 to 1.10.1 Bumps commons-beanutils:commons-beanutils from 1.9.4 to 1.10.1. --- updated-dependencies: - dependency-name: commons-beanutils:commons-beanutils dependency-version: 1.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 21fae96..0174668 100644 --- a/pom.xml +++ b/pom.xml @@ -391,7 +391,7 @@ commons-beanutils commons-beanutils - 1.9.4 + 1.10.1 commons-collections From b37222a8b2406466fc967a97a77e08ce7a0894f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:43:17 +0000 Subject: [PATCH 138/174] Bump netty-reactive.version from 2.0.6 to 2.0.14 Bumps `netty-reactive.version` from 2.0.6 to 2.0.14. Updates `com.typesafe.netty:netty-reactive-streams-http` from 2.0.6 to 2.0.14 - [Release notes](https://github.com/playframework/netty-reactive-streams/releases) - [Commits](https://github.com/playframework/netty-reactive-streams/compare/netty-reactive-streams-parent-2.0.6...netty-reactive-streams-parent-2.0.14) Updates `com.typesafe.netty:netty-reactive-streams` from 2.0.6 to 2.0.14 - [Release notes](https://github.com/playframework/netty-reactive-streams/releases) - [Commits](https://github.com/playframework/netty-reactive-streams/compare/netty-reactive-streams-parent-2.0.6...netty-reactive-streams-parent-2.0.14) --- updated-dependencies: - dependency-name: com.typesafe.netty:netty-reactive-streams-http dependency-version: 2.0.14 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.typesafe.netty:netty-reactive-streams dependency-version: 2.0.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 21fae96..974c059 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ 2.25.64 3.0.3 4.1.108.Final - 2.0.6 + 2.0.14 2.19.0 1.3.14 From ea1a741a4ea27401a9b6cee6c578eb905eafcf4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 22:49:43 +0000 Subject: [PATCH 139/174] Bump commons-io:commons-io from 2.16.1 to 2.19.0 Bumps commons-io:commons-io from 2.16.1 to 2.19.0. --- updated-dependencies: - dependency-name: commons-io:commons-io dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 270ac48..93f99de 100644 --- a/pom.xml +++ b/pom.xml @@ -376,7 +376,7 @@ commons-io commons-io - 2.16.1 + 2.19.0 commons-logging From a9a0308971ce4381a1837c35edb451f55a32a33a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:01:32 +0000 Subject: [PATCH 140/174] Bump org.apache.httpcomponents:httpclient from 4.5.13 to 4.5.14 Bumps org.apache.httpcomponents:httpclient from 4.5.13 to 4.5.14. --- updated-dependencies: - dependency-name: org.apache.httpcomponents:httpclient dependency-version: 4.5.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 93f99de..dab5943 100644 --- a/pom.xml +++ b/pom.xml @@ -325,7 +325,7 @@ org.apache.httpcomponents httpclient - 4.5.13 + 4.5.14 commons-codec From d1f87125885c4ee47eb45ce3a80674ad35f2b0b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:01:44 +0000 Subject: [PATCH 141/174] Bump org.apache.commons:commons-collections4 from 4.4 to 4.5.0 Bumps org.apache.commons:commons-collections4 from 4.4 to 4.5.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-collections4 dependency-version: 4.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 93f99de..5f2b317 100644 --- a/pom.xml +++ b/pom.xml @@ -386,7 +386,7 @@ org.apache.commons commons-collections4 - 4.4 + 4.5.0 commons-beanutils From 7e3a02ec4d5a0aa942a9483b35fb432440cc3e02 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 16:06:50 -0700 Subject: [PATCH 142/174] change PR limit to 4 --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4c77117..5eb0faf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,6 +7,6 @@ updates: - package-ecosystem: "maven" directory: "/" - open-pull-requests-limit: 2 + open-pull-requests-limit: 4 schedule: interval: "daily" \ No newline at end of file From 0e997e9e5167fcd06eef364c7518c8f96c52bd4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:07:45 +0000 Subject: [PATCH 143/174] Bump io.reactivex.rxjava3:rxjava from 3.1.8 to 3.1.10 Bumps [io.reactivex.rxjava3:rxjava](https://github.com/ReactiveX/RxJava) from 3.1.8 to 3.1.10. - [Release notes](https://github.com/ReactiveX/RxJava/releases) - [Commits](https://github.com/ReactiveX/RxJava/compare/v3.1.8...v3.1.10) --- updated-dependencies: - dependency-name: io.reactivex.rxjava3:rxjava dependency-version: 3.1.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd6189..f2e2a85 100644 --- a/pom.xml +++ b/pom.xml @@ -295,7 +295,7 @@ io.reactivex.rxjava3 rxjava - 3.1.8 + 3.1.10 com.fasterxml.jackson.dataformat From 9dab42ee6a3c6e5db31f2e2412f0faec8eff9552 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:08:02 +0000 Subject: [PATCH 144/174] Bump com.google.protobuf:protobuf-java from 4.27.5 to 4.31.0 Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 4.27.5 to 4.31.0. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits/v4.31.0) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd6189..4eea18f 100644 --- a/pom.xml +++ b/pom.xml @@ -280,7 +280,7 @@ com.google.protobuf protobuf-java - 4.27.5 + 4.31.0 org.apache.commons From fe81cc2b3b45d524b359eb0b808b5450365341c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:08:08 +0000 Subject: [PATCH 145/174] Bump org.codehaus.mojo:animal-sniffer-annotations from 1.20 to 1.24 Bumps [org.codehaus.mojo:animal-sniffer-annotations](https://github.com/mojohaus/animal-sniffer) from 1.20 to 1.24. - [Release notes](https://github.com/mojohaus/animal-sniffer/releases) - [Commits](https://github.com/mojohaus/animal-sniffer/compare/animal-sniffer-parent-1.20...animal-sniffer-1.24) --- updated-dependencies: - dependency-name: org.codehaus.mojo:animal-sniffer-annotations dependency-version: '1.24' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd6189..da6c746 100644 --- a/pom.xml +++ b/pom.xml @@ -275,7 +275,7 @@ org.codehaus.mojo animal-sniffer-annotations - 1.20 + 1.24 com.google.protobuf From d9413d8262617ccac64211603f3ba41e0f895902 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:08:19 +0000 Subject: [PATCH 146/174] Bump software.amazon.glue:schema-registry-serde from 1.1.19 to 1.1.23 Bumps [software.amazon.glue:schema-registry-serde](https://github.com/awslabs/aws-glue-schema-registry) from 1.1.19 to 1.1.23. - [Release notes](https://github.com/awslabs/aws-glue-schema-registry/releases) - [Changelog](https://github.com/awslabs/aws-glue-schema-registry/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/aws-glue-schema-registry/compare/v1.1.19...v1.1.23) --- updated-dependencies: - dependency-name: software.amazon.glue:schema-registry-serde dependency-version: 1.1.23 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd6189..62e32dc 100644 --- a/pom.xml +++ b/pom.xml @@ -345,7 +345,7 @@ software.amazon.glue schema-registry-serde - 1.1.19 + 1.1.23 com.amazonaws From 2f4119d7cea39dac40bbb42efe6eea6316b9af37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:31:07 +0000 Subject: [PATCH 147/174] Bump commons-codec:commons-codec from 1.15 to 1.18.0 Bumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) from 1.15 to 1.18.0. - [Changelog](https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt) - [Commits](https://github.com/apache/commons-codec/compare/rel/commons-codec-1.15...rel/commons-codec-1.18.0) --- updated-dependencies: - dependency-name: commons-codec:commons-codec dependency-version: 1.18.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75dc551..1b67aa1 100644 --- a/pom.xml +++ b/pom.xml @@ -330,7 +330,7 @@ commons-codec commons-codec - 1.15 + 1.18.0 org.apache.httpcomponents From 1f31149c40ff902d09c647f9593d7df70972971b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:31:19 +0000 Subject: [PATCH 148/174] Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0 Bumps org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-lang3 dependency-version: 3.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75dc551..7139db7 100644 --- a/pom.xml +++ b/pom.xml @@ -285,7 +285,7 @@ org.apache.commons commons-lang3 - 3.14.0 + 3.17.0 org.slf4j From 4f7461fab658b29e45bfdef02352d2c22caef421 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:31:31 +0000 Subject: [PATCH 149/174] Bump com.amazon.ion:ion-java from 1.11.4 to 1.11.10 Bumps [com.amazon.ion:ion-java](https://github.com/amazon-ion/ion-java) from 1.11.4 to 1.11.10. - [Release notes](https://github.com/amazon-ion/ion-java/releases) - [Commits](https://github.com/amazon-ion/ion-java/compare/v1.11.4...v1.11.10) --- updated-dependencies: - dependency-name: com.amazon.ion:ion-java dependency-version: 1.11.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75dc551..89f1d43 100644 --- a/pom.xml +++ b/pom.xml @@ -340,7 +340,7 @@ com.amazon.ion ion-java - 1.11.4 + 1.11.10 software.amazon.glue From 440c49480317d573b4522fb4efaa17eb7eb38bbe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 23:31:45 +0000 Subject: [PATCH 150/174] Bump joda-time:joda-time from 2.10.13 to 2.14.0 Bumps [joda-time:joda-time](https://github.com/JodaOrg/joda-time) from 2.10.13 to 2.14.0. - [Release notes](https://github.com/JodaOrg/joda-time/releases) - [Changelog](https://github.com/JodaOrg/joda-time/blob/main/RELEASE-NOTES.txt) - [Commits](https://github.com/JodaOrg/joda-time/compare/v2.10.13...v2.14.0) --- updated-dependencies: - dependency-name: joda-time:joda-time dependency-version: 2.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75dc551..6b4236a 100644 --- a/pom.xml +++ b/pom.xml @@ -356,7 +356,7 @@ joda-time joda-time - 2.10.13 + 2.14.0 ch.qos.logback From ae793786952fe60a43856878e3890db14855a14e Mon Sep 17 00:00:00 2001 From: skye rogers Date: Thu, 15 May 2025 16:48:17 -0700 Subject: [PATCH 151/174] add ignore awssdk and logback to dependabot.yml --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5eb0faf..64cd380 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,4 +9,7 @@ updates: directory: "/" open-pull-requests-limit: 4 schedule: - interval: "daily" \ No newline at end of file + interval: "daily" + ignore: + - dependency-name: 'awssdk.*' + - dependency-name: 'logback.*' \ No newline at end of file From 21d7273e6957e8c6422600d67fcb8495184e3304 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 16 May 2025 09:02:04 -0700 Subject: [PATCH 152/174] remove logback from ignore dependencies --- .github/dependabot.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 64cd380..58025f0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,5 +11,4 @@ updates: schedule: interval: "daily" ignore: - - dependency-name: 'awssdk.*' - - dependency-name: 'logback.*' \ No newline at end of file + - dependency-name: 'awssdk.*' \ No newline at end of file From 7d1bbc8fab64e4303726f4d3406b027fcea5cfda Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 16 May 2025 09:03:04 -0700 Subject: [PATCH 153/174] revert pom --- pom.xml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/pom.xml b/pom.xml index fbdd507..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -3,10 +3,10 @@ 4.0.0 2.25.64 - 3.0.3 + 3.0.0 4.1.108.Final - 2.0.14 - 2.19.0 + 2.0.6 + 2.13.5 1.3.14 @@ -245,7 +245,7 @@ org.reactivestreams reactive-streams - 1.0.4 + 1.0.3 com.google.guava @@ -275,27 +275,27 @@ org.codehaus.mojo animal-sniffer-annotations - 1.24 + 1.20 com.google.protobuf protobuf-java - 4.31.0 + 4.27.5 org.apache.commons commons-lang3 - 3.17.0 + 3.14.0 org.slf4j slf4j-api - 2.0.17 + 2.0.13 io.reactivex.rxjava3 rxjava - 3.1.10 + 3.1.8 com.fasterxml.jackson.dataformat @@ -325,12 +325,12 @@ org.apache.httpcomponents httpclient - 4.5.14 + 4.5.13 commons-codec commons-codec - 1.18.0 + 1.15 org.apache.httpcomponents @@ -340,12 +340,12 @@ com.amazon.ion ion-java - 1.11.10 + 1.11.4 software.amazon.glue schema-registry-serde - 1.1.23 + 1.1.19 com.amazonaws @@ -356,7 +356,7 @@ joda-time joda-time - 2.14.0 + 2.10.13 ch.qos.logback @@ -376,22 +376,22 @@ commons-io commons-io - 2.19.0 + 2.16.1 commons-logging commons-logging - 1.3.5 + 1.1.3 org.apache.commons commons-collections4 - 4.5.0 + 4.4 commons-beanutils commons-beanutils - 1.10.1 + 1.9.4 commons-collections From a0dbef7994a0b0dc2e682a29d0f31394b5b8e47c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:08:29 +0000 Subject: [PATCH 154/174] Bump org.apache.commons:commons-collections4 from 4.4 to 4.5.0 Bumps org.apache.commons:commons-collections4 from 4.4 to 4.5.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-collections4 dependency-version: 4.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..8dae558 100644 --- a/pom.xml +++ b/pom.xml @@ -386,7 +386,7 @@ org.apache.commons commons-collections4 - 4.4 + 4.5.0 commons-beanutils From 0b5238eb9eeec7cc2de052bb2270d98a087fc5d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:08:45 +0000 Subject: [PATCH 155/174] Bump fasterxml-jackson.version from 2.13.5 to 2.19.0 Bumps `fasterxml-jackson.version` from 2.13.5 to 2.19.0. Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-cbor` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.13.5...jackson-dataformats-binary-2.19.0) Updates `com.fasterxml.jackson.core:jackson-core` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.5...jackson-core-2.19.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..e78e36a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.13.5 + 2.19.0 1.3.14 From 6059537ebb28a34c2ee1aaab295ea8e1eebfd530 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:08:52 +0000 Subject: [PATCH 156/174] Bump commons-beanutils:commons-beanutils from 1.9.4 to 1.10.1 Bumps commons-beanutils:commons-beanutils from 1.9.4 to 1.10.1. --- updated-dependencies: - dependency-name: commons-beanutils:commons-beanutils dependency-version: 1.10.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..f19e121 100644 --- a/pom.xml +++ b/pom.xml @@ -391,7 +391,7 @@ commons-beanutils commons-beanutils - 1.9.4 + 1.10.1 commons-collections From fafe67ffb314d7d469898a79fb77debdd5130b42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:08:58 +0000 Subject: [PATCH 157/174] Bump org.apache.httpcomponents:httpclient from 4.5.13 to 4.5.14 Bumps org.apache.httpcomponents:httpclient from 4.5.13 to 4.5.14. --- updated-dependencies: - dependency-name: org.apache.httpcomponents:httpclient dependency-version: 4.5.14 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..76f4286 100644 --- a/pom.xml +++ b/pom.xml @@ -325,7 +325,7 @@ org.apache.httpcomponents httpclient - 4.5.13 + 4.5.14 commons-codec From 8b206d22f5675a2556222568062f8be20c94d29d Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 16 May 2025 09:22:25 -0700 Subject: [PATCH 158/174] revert pom --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index b8ff3df..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.19.0 + 2.13.5 1.3.14 @@ -325,7 +325,7 @@ org.apache.httpcomponents httpclient - 4.5.14 + 4.5.13 commons-codec @@ -386,12 +386,12 @@ org.apache.commons commons-collections4 - 4.5.0 + 4.4 commons-beanutils commons-beanutils - 1.10.1 + 1.9.4 commons-collections From 4296828e29723ff1ba218a627f6005e6a48715af Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 16 May 2025 09:36:49 -0700 Subject: [PATCH 159/174] test 1 --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 4f44cc6..f181449 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -17,7 +17,7 @@ permissions: jobs: sample-run: - timeout-minutes: 8 + timeout-minutes: 9 runs-on: ${{ matrix.os }} defaults: run: From f9d5ca409bcf0c79a2df07d570abed97bfcdc8ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:43:03 +0000 Subject: [PATCH 160/174] Bump org.codehaus.mojo:animal-sniffer-annotations from 1.20 to 1.24 Bumps [org.codehaus.mojo:animal-sniffer-annotations](https://github.com/mojohaus/animal-sniffer) from 1.20 to 1.24. - [Release notes](https://github.com/mojohaus/animal-sniffer/releases) - [Commits](https://github.com/mojohaus/animal-sniffer/compare/animal-sniffer-parent-1.20...animal-sniffer-1.24) --- updated-dependencies: - dependency-name: org.codehaus.mojo:animal-sniffer-annotations dependency-version: '1.24' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..6eacae0 100644 --- a/pom.xml +++ b/pom.xml @@ -275,7 +275,7 @@ org.codehaus.mojo animal-sniffer-annotations - 1.20 + 1.24 com.google.protobuf From 753284906b9d8beb015cb7bd5331aa1a4451e2a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:43:12 +0000 Subject: [PATCH 161/174] Bump kcl.version from 3.0.0 to 3.0.3 Bumps `kcl.version` from 3.0.0 to 3.0.3. Updates `software.amazon.kinesis:amazon-kinesis-client-multilang` from 3.0.0 to 3.0.3 - [Release notes](https://github.com/awslabs/amazon-kinesis-client/releases) - [Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/amazon-kinesis-client/compare/v3.0.0...v3.0.3) Updates `software.amazon.kinesis:amazon-kinesis-client` from 3.0.0 to 3.0.3 - [Release notes](https://github.com/awslabs/amazon-kinesis-client/releases) - [Changelog](https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/amazon-kinesis-client/compare/v3.0.0...v3.0.3) --- updated-dependencies: - dependency-name: software.amazon.kinesis:amazon-kinesis-client-multilang dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: software.amazon.kinesis:amazon-kinesis-client dependency-version: 3.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..f4b4fb7 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 2.25.64 - 3.0.0 + 3.0.3 4.1.108.Final 2.0.6 2.13.5 From 983424a9b1e3d666adc1c5baa08a4e5685a1dcf6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:43:22 +0000 Subject: [PATCH 162/174] Bump fasterxml-jackson.version from 2.13.5 to 2.19.0 Bumps `fasterxml-jackson.version` from 2.13.5 to 2.19.0. Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-cbor` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.13.5...jackson-dataformats-binary-2.19.0) Updates `com.fasterxml.jackson.core:jackson-core` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.5...jackson-core-2.19.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..e78e36a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.13.5 + 2.19.0 1.3.14 From 37884fd3ee30d8b3e52b20239d30360fd67664a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 16:43:26 +0000 Subject: [PATCH 163/174] Bump joda-time:joda-time from 2.10.13 to 2.14.0 Bumps [joda-time:joda-time](https://github.com/JodaOrg/joda-time) from 2.10.13 to 2.14.0. - [Release notes](https://github.com/JodaOrg/joda-time/releases) - [Changelog](https://github.com/JodaOrg/joda-time/blob/main/RELEASE-NOTES.txt) - [Commits](https://github.com/JodaOrg/joda-time/compare/v2.10.13...v2.14.0) --- updated-dependencies: - dependency-name: joda-time:joda-time dependency-version: 2.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..e167110 100644 --- a/pom.xml +++ b/pom.xml @@ -356,7 +356,7 @@ joda-time joda-time - 2.10.13 + 2.14.0 ch.qos.logback From 1c9a9a3267613caf0db9a601d0529f46edcdb484 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Fri, 16 May 2025 16:34:44 -0700 Subject: [PATCH 164/174] revert pom --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 16b8445..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -3,10 +3,10 @@ 4.0.0 2.25.64 - 3.0.3 + 3.0.0 4.1.108.Final 2.0.6 - 2.19.0 + 2.13.5 1.3.14 @@ -275,7 +275,7 @@ org.codehaus.mojo animal-sniffer-annotations - 1.24 + 1.20 com.google.protobuf @@ -356,7 +356,7 @@ joda-time joda-time - 2.14.0 + 2.10.13 ch.qos.logback From 02f3b6c1e96a2dc8a7b8dafead8410eb782ab65e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 May 2025 00:18:06 +0000 Subject: [PATCH 165/174] Bump software.amazon.glue:schema-registry-serde from 1.1.19 to 1.1.23 Bumps [software.amazon.glue:schema-registry-serde](https://github.com/awslabs/aws-glue-schema-registry) from 1.1.19 to 1.1.23. - [Release notes](https://github.com/awslabs/aws-glue-schema-registry/releases) - [Changelog](https://github.com/awslabs/aws-glue-schema-registry/blob/master/CHANGELOG.md) - [Commits](https://github.com/awslabs/aws-glue-schema-registry/compare/v1.1.19...v1.1.23) --- updated-dependencies: - dependency-name: software.amazon.glue:schema-registry-serde dependency-version: 1.1.23 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..205501a 100644 --- a/pom.xml +++ b/pom.xml @@ -345,7 +345,7 @@ software.amazon.glue schema-registry-serde - 1.1.19 + 1.1.23 com.amazonaws From 82ea41bd9d6e31268f2727c77da357a5758f1335 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 May 2025 00:18:10 +0000 Subject: [PATCH 166/174] Bump org.codehaus.mojo:animal-sniffer-annotations from 1.20 to 1.24 Bumps [org.codehaus.mojo:animal-sniffer-annotations](https://github.com/mojohaus/animal-sniffer) from 1.20 to 1.24. - [Release notes](https://github.com/mojohaus/animal-sniffer/releases) - [Commits](https://github.com/mojohaus/animal-sniffer/compare/animal-sniffer-parent-1.20...animal-sniffer-1.24) --- updated-dependencies: - dependency-name: org.codehaus.mojo:animal-sniffer-annotations dependency-version: '1.24' dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..6eacae0 100644 --- a/pom.xml +++ b/pom.xml @@ -275,7 +275,7 @@ org.codehaus.mojo animal-sniffer-annotations - 1.20 + 1.24 com.google.protobuf From 3383aaca8b68cb815c36d805969831fbe8c41a71 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 May 2025 00:18:20 +0000 Subject: [PATCH 167/174] Bump org.apache.commons:commons-collections4 from 4.4 to 4.5.0 Bumps org.apache.commons:commons-collections4 from 4.4 to 4.5.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-collections4 dependency-version: 4.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..8dae558 100644 --- a/pom.xml +++ b/pom.xml @@ -386,7 +386,7 @@ org.apache.commons commons-collections4 - 4.4 + 4.5.0 commons-beanutils From 9cc120c8355b9ebf57dbe6e145166e3bfc9268cb Mon Sep 17 00:00:00 2001 From: skye rogers Date: Mon, 19 May 2025 10:42:02 -0700 Subject: [PATCH 168/174] revert pom --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ef44a8f..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -275,7 +275,7 @@ org.codehaus.mojo animal-sniffer-annotations - 1.24 + 1.20 com.google.protobuf @@ -345,7 +345,7 @@ software.amazon.glue schema-registry-serde - 1.1.23 + 1.1.19 com.amazonaws @@ -386,7 +386,7 @@ org.apache.commons commons-collections4 - 4.5.0 + 4.4 commons-beanutils From 1805d0a5980baa8b6a8fd8420cbb4ffb66c8756d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 May 2025 01:17:18 +0000 Subject: [PATCH 169/174] Bump fasterxml-jackson.version from 2.13.5 to 2.19.0 Bumps `fasterxml-jackson.version` from 2.13.5 to 2.19.0. Updates `com.fasterxml.jackson.dataformat:jackson-dataformat-cbor` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.13.5...jackson-dataformats-binary-2.19.0) Updates `com.fasterxml.jackson.core:jackson-core` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson-core/compare/jackson-core-2.13.5...jackson-core-2.19.0) Updates `com.fasterxml.jackson.core:jackson-databind` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) Updates `com.fasterxml.jackson.core:jackson-annotations` from 2.13.5 to 2.19.0 - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-cbor dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.fasterxml.jackson.core:jackson-annotations dependency-version: 2.19.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0dd78..e78e36a 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.13.5 + 2.19.0 1.3.14 From c8c6cef6f86b4462e199cdc00ba1b64d258b84c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 00:53:27 +0000 Subject: [PATCH 170/174] Bump com.google.protobuf:protobuf-java from 4.27.5 to 4.31.0 Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 4.27.5 to 4.31.0. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/commits/v4.31.0) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e78e36a..3b34c83 100644 --- a/pom.xml +++ b/pom.xml @@ -280,7 +280,7 @@ com.google.protobuf protobuf-java - 4.27.5 + 4.31.0 org.apache.commons From ab9c2addfcfc8e34bfd8bebdd8a79910ba9f4a96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 00:54:41 +0000 Subject: [PATCH 171/174] Bump commons-logging:commons-logging from 1.1.3 to 1.3.5 Bumps commons-logging:commons-logging from 1.1.3 to 1.3.5. --- updated-dependencies: - dependency-name: commons-logging:commons-logging dependency-version: 1.3.5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e78e36a..bda2144 100644 --- a/pom.xml +++ b/pom.xml @@ -381,7 +381,7 @@ commons-logging commons-logging - 1.1.3 + 1.3.5 org.apache.commons From 23ea9d371a643c672a61b47bbd53d3ad60ffd933 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 May 2025 00:54:50 +0000 Subject: [PATCH 172/174] Bump io.reactivex.rxjava3:rxjava from 3.1.8 to 3.1.10 Bumps [io.reactivex.rxjava3:rxjava](https://github.com/ReactiveX/RxJava) from 3.1.8 to 3.1.10. - [Release notes](https://github.com/ReactiveX/RxJava/releases) - [Commits](https://github.com/ReactiveX/RxJava/compare/v3.1.8...v3.1.10) --- updated-dependencies: - dependency-name: io.reactivex.rxjava3:rxjava dependency-version: 3.1.10 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e78e36a..d2f0e49 100644 --- a/pom.xml +++ b/pom.xml @@ -295,7 +295,7 @@ io.reactivex.rxjava3 rxjava - 3.1.8 + 3.1.10 com.fasterxml.jackson.dataformat From 32ff510e4de95feca2a6a71c540cbc07ee6ba949 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 21 May 2025 09:57:38 -0700 Subject: [PATCH 173/174] disable automerge --- .github/workflows/dotnet.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f181449..ebf151c 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -102,9 +102,9 @@ jobs: PR_URL: ${{github.event.pull_request.html_url}} GH_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: Enable auto-merge for Dependabot PRs - if: steps.metadata.outputs.update-type != 'version-update:semver-major' - run: gh pr merge --auto --merge "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GH_TOKEN: ${{secrets.GITHUB_TOKEN}} +# - name: Enable auto-merge for Dependabot PRs +# if: steps.metadata.outputs.update-type != 'version-update:semver-major' +# run: gh pr merge --auto --merge "$PR_URL" +# env: +# PR_URL: ${{github.event.pull_request.html_url}} +# GH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 2bfa3d989dd3190ea24f491e12a12a3dec3c529b Mon Sep 17 00:00:00 2001 From: skye rogers Date: Wed, 28 May 2025 15:03:41 -0700 Subject: [PATCH 174/174] revert pom --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index fd6ca25..8e0dd78 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ 3.0.0 4.1.108.Final 2.0.6 - 2.19.0 + 2.13.5 1.3.14 @@ -280,7 +280,7 @@ com.google.protobuf protobuf-java - 4.31.0 + 4.27.5 org.apache.commons @@ -295,7 +295,7 @@ io.reactivex.rxjava3 rxjava - 3.1.10 + 3.1.8 com.fasterxml.jackson.dataformat @@ -381,7 +381,7 @@ commons-logging commons-logging - 1.3.5 + 1.1.3 org.apache.commons