From 310560c38b946a08e02d42fdb7d3a348aada1713 Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Fri, 5 Sep 2025 01:25:55 +0700 Subject: [PATCH 1/8] Create config.yml (#17) Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .circleci/config.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..d5d401c5 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,31 @@ +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/configuration-reference +version: 2.1 + +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs +jobs: + say-hello: + # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. + # See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job + docker: + # Specify the version you desire here + # See: https://circleci.com/developer/images/image/cimg/base + - image: cimg/base:current + + # Add steps to the job + # See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps + steps: + # Checkout the code as the first step. + - checkout + - run: + name: "Say hello" + command: "echo Hello, World!" + +# Orchestrate jobs using workflows +# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows +workflows: + say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow. + # Inside the workflow, you define the jobs you want to run. + jobs: + - say-hello From e7f1b2f1f94d824e0b4b3404348a98d0e3f12bdc Mon Sep 17 00:00:00 2001 From: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> Date: Fri, 5 Sep 2025 01:28:08 +0700 Subject: [PATCH 2/8] Create gemini_ai.yml (#16) Signed-off-by: AU_gdev_19 <64915515+Dargon789@users.noreply.github.com> --- .circleci/gemini_ai.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .circleci/gemini_ai.yml diff --git a/.circleci/gemini_ai.yml b/.circleci/gemini_ai.yml new file mode 100644 index 00000000..a8ee3f71 --- /dev/null +++ b/.circleci/gemini_ai.yml @@ -0,0 +1,23 @@ +version: 2.1 +executors: + my-custom-executor: + docker: + - image: cimg/base:stable + auth: + # ensure you have first added these secrets + # visit app.circleci.com/settings/project/github/Dargon789/binance/environment-variables + username: $DOCKER_HUB_USER + password: $DOCKER_HUB_PASSWORD +jobs: + my-job-name: + + executor: my-custom-executor + steps: + - checkout + - run: | + # echo Hello, World! + +workflows: + my-custom-workflow: + jobs: + - my-job-name From 40e47c0dfc982e965de1be11625da77042b64766 Mon Sep 17 00:00:00 2001 From: Dargon789 <64915515+Dargon789@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:29:53 +0000 Subject: [PATCH 3/8] fix: upgrade com.fasterxml.jackson.core:jackson-databind from 2.19.0 to 2.20.0 (#18) Snyk has created this PR to upgrade com.fasterxml.jackson.core:jackson-databind from 2.19.0 to 2.20.0. See this package in maven: com.fasterxml.jackson.core:jackson-databind See this project in Snyk: https://app.snyk.io/org/apichanmittare/project/a4d6ddaa-9019-4bea-b55b-3d8670222478?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/pom.xml b/clients/pom.xml index 5a5d9feb..d466d3cd 100644 --- a/clients/pom.xml +++ b/clients/pom.xml @@ -402,7 +402,7 @@ 2.12.1 3.18.0 0.2.6 - 2.19.0 + 2.20.0 3.0.0 3.1.1 5.10.3 From 6a422c76d15eedba9a230cc7e421545cef3eb3e5 Mon Sep 17 00:00:00 2001 From: Dargon789 <64915515+Dargon789@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:34:05 +0000 Subject: [PATCH 4/8] fix: upgrade com.google.code.gson:gson from 2.12.1 to 2.13.2 (#19) Snyk has created this PR to upgrade com.google.code.gson:gson from 2.12.1 to 2.13.2. See this package in maven: com.google.code.gson:gson See this project in Snyk: https://app.snyk.io/org/apichanmittare/project/a4d6ddaa-9019-4bea-b55b-3d8670222478?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/pom.xml b/clients/pom.xml index d466d3cd..ca92e887 100644 --- a/clients/pom.xml +++ b/clients/pom.xml @@ -399,7 +399,7 @@ ${java.version} 1.9.0 4.12.0 - 2.12.1 + 2.13.2 3.18.0 0.2.6 2.20.0 From e5c935fecd5929e90d3558f186a8270ed59dfea5 Mon Sep 17 00:00:00 2001 From: Dargon789 <64915515+Dargon789@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:37:51 +0000 Subject: [PATCH 5/8] fix: upgrade org.bouncycastle:bcpkix-jdk18on from 1.80 to 1.82 (#20) Snyk has created this PR to upgrade org.bouncycastle:bcpkix-jdk18on from 1.80 to 1.82. See this package in maven: org.bouncycastle:bcpkix-jdk18on See this project in Snyk: https://app.snyk.io/org/apichanmittare/project/a4d6ddaa-9019-4bea-b55b-3d8670222478?utm_source=github&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-bot --- clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/pom.xml b/clients/pom.xml index ca92e887..e9760d4d 100644 --- a/clients/pom.xml +++ b/clients/pom.xml @@ -385,7 +385,7 @@ org.bouncycastle bcpkix-jdk18on - 1.80 + 1.82 org.eclipse.jetty.websocket From 1142767eed77a71f79aa61e47dee635cd0373986 Mon Sep 17 00:00:00 2001 From: Dargon789 <64915515+Dargon789@users.noreply.github.com> Date: Tue, 24 Mar 2026 11:44:30 +0000 Subject: [PATCH 6/8] [Snyk] Upgrade org.eclipse.jetty.websocket:websocket-jetty-client from 11.0.25 to 11.0.26 (#22) * fix: upgrade org.eclipse.jetty.websocket:websocket-jetty-client from 11.0.25 to 11.0.26 Snyk has created this PR to upgrade org.eclipse.jetty.websocket:websocket-jetty-client from 11.0.25 to 11.0.26. See this package in maven: org.eclipse.jetty.websocket:websocket-jetty-client See this project in Snyk: https://app.snyk.io/org/apichanmittare/project/a4d6ddaa-9019-4bea-b55b-3d8670222478?utm_source=github&utm_medium=referral&page=upgrade-pr * Update clients/pom.xml Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: snyk-bot Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- clients/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/pom.xml b/clients/pom.xml index e9760d4d..2f474b15 100644 --- a/clients/pom.xml +++ b/clients/pom.xml @@ -390,7 +390,7 @@ org.eclipse.jetty.websocket websocket-jetty-client - 11.0.25 + ${jetty-websocket.version} From 8f37b239f60aff7d1e917971e13a7559ef779ad0 Mon Sep 17 00:00:00 2001 From: Dargon789 <64915515+Dargon789@users.noreply.github.com> Date: Wed, 8 Apr 2026 14:11:25 +0700 Subject: [PATCH 7/8] Delete .circleci directory (#26) Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --- .circleci/config.yml | 31 ------------------------------- .circleci/gemini_ai.yml | 23 ----------------------- 2 files changed, 54 deletions(-) delete mode 100644 .circleci/config.yml delete mode 100644 .circleci/gemini_ai.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index d5d401c5..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,31 +0,0 @@ -# Use the latest 2.1 version of CircleCI pipeline process engine. -# See: https://circleci.com/docs/configuration-reference -version: 2.1 - -# Define a job to be invoked later in a workflow. -# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs -jobs: - say-hello: - # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. - # See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job - docker: - # Specify the version you desire here - # See: https://circleci.com/developer/images/image/cimg/base - - image: cimg/base:current - - # Add steps to the job - # See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps - steps: - # Checkout the code as the first step. - - checkout - - run: - name: "Say hello" - command: "echo Hello, World!" - -# Orchestrate jobs using workflows -# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows -workflows: - say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow. - # Inside the workflow, you define the jobs you want to run. - jobs: - - say-hello diff --git a/.circleci/gemini_ai.yml b/.circleci/gemini_ai.yml deleted file mode 100644 index a8ee3f71..00000000 --- a/.circleci/gemini_ai.yml +++ /dev/null @@ -1,23 +0,0 @@ -version: 2.1 -executors: - my-custom-executor: - docker: - - image: cimg/base:stable - auth: - # ensure you have first added these secrets - # visit app.circleci.com/settings/project/github/Dargon789/binance/environment-variables - username: $DOCKER_HUB_USER - password: $DOCKER_HUB_PASSWORD -jobs: - my-job-name: - - executor: my-custom-executor - steps: - - checkout - - run: | - # echo Hello, World! - -workflows: - my-custom-workflow: - jobs: - - my-job-name From 84c3804e4e9c05735d0cf186c01fbb2fa08a273e Mon Sep 17 00:00:00 2001 From: Dargon789 <64915515+Dargon789@users.noreply.github.com> Date: Wed, 8 Apr 2026 15:21:49 +0700 Subject: [PATCH 8/8] Add CircleCI configuration for custom workflow (#25) https://github.com/Dargon789/binance-connector-java/commit/e7f1b2f1f94d824e0b4b3404348a98d0e3f12bdc Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --- .github/workflows/gemini.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/gemini.yml diff --git a/.github/workflows/gemini.yml b/.github/workflows/gemini.yml new file mode 100644 index 00000000..a8ee3f71 --- /dev/null +++ b/.github/workflows/gemini.yml @@ -0,0 +1,23 @@ +version: 2.1 +executors: + my-custom-executor: + docker: + - image: cimg/base:stable + auth: + # ensure you have first added these secrets + # visit app.circleci.com/settings/project/github/Dargon789/binance/environment-variables + username: $DOCKER_HUB_USER + password: $DOCKER_HUB_PASSWORD +jobs: + my-job-name: + + executor: my-custom-executor + steps: + - checkout + - run: | + # echo Hello, World! + +workflows: + my-custom-workflow: + jobs: + - my-job-name