From b1a77c63cdcb2ce0858ce6de849f3ed2960430e6 Mon Sep 17 00:00:00 2001 From: Arpit Ribadiya Date: Mon, 12 Jan 2026 13:33:04 -0500 Subject: [PATCH 01/26] [ILX-58820] Updated API RateLimit Description --- source/includes/_api-reference.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/source/includes/_api-reference.md b/source/includes/_api-reference.md index 9caf66b9860..9cb82e6cf73 100644 --- a/source/includes/_api-reference.md +++ b/source/includes/_api-reference.md @@ -139,17 +139,19 @@ Response Code | Meaning When we make backwards-incompatible changes to the API, we release new versions. The current version is **v2** and can be determined with our API base path **/api/v2/**. Read our [Intelex platform release notes](https://community.intelex.com/library/knowledgebase/release-notes) to see our API changelog. ## API Rate Limiting / Quotas -To ensure Intelex Platform is reliable and has the expected performance for all users, we limit the number of API calls an API user (or application) can make within a given time period. If the limit is exceeded, the API user may be throttled and subsequent requests within the same period will fail (status code 429). +To ensure Intelex Platform is reliable and has the expected performance for all users, we limit the number of API calls an API user (or application) can make within a given time period. If the limit is exceeded, the API user may be throttled and subsequent requests will fail returning HTTP resposne code 429 Too Many Requests. In such cases, it is the responsibility of the client application to implement appropriate retry logic for requests that fail due to rate limiting. ### Limit -The Intelex Platform API Rate limit is **2 requests per second**. +The Intelex Platform API Rate limit is **6 requests per second**. ### Quota headers Quota details may be passed back to the API user/application via response headers. Header | Description | Sample value ---------- | ------- | ------- -X-RateLimit-Limit | The request limit per specified unit of time. | 100 -X-RateLimit-Remaining | The remaining number of requests that API consumers can send in the current time window. | 75 -X-RateLimit-Reset | The UTC epoch timestamp indicating the time of the next quota reset. Sent only when quota remains. | 1521214822 -X-RateLimit-Next | The UTC epoch timestamp indicating the time of the next quota reset. Sent only when quota is full. |1521215291 +Retry-After | Time in seconds to wait before retrying the request after rate limit is exceeded. | 600 + +### Best Practices + +* Use HTTP clients that support automatic retries with an exponential back-off strategy when receiving 429 (Too Many Requests) responses. +* Avoid spikes of traffic by spreading out API calls over time wherever possible. \ No newline at end of file From 84fbb707ea12103d7a05f4153028a1c2c3aa1554 Mon Sep 17 00:00:00 2001 From: Arpit Ribadiya Date: Mon, 12 Jan 2026 14:00:12 -0500 Subject: [PATCH 02/26] [ILX-58820] Addressed Feedback --- source/includes/_api-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/includes/_api-reference.md b/source/includes/_api-reference.md index 9cb82e6cf73..049145be827 100644 --- a/source/includes/_api-reference.md +++ b/source/includes/_api-reference.md @@ -139,7 +139,7 @@ Response Code | Meaning When we make backwards-incompatible changes to the API, we release new versions. The current version is **v2** and can be determined with our API base path **/api/v2/**. Read our [Intelex platform release notes](https://community.intelex.com/library/knowledgebase/release-notes) to see our API changelog. ## API Rate Limiting / Quotas -To ensure Intelex Platform is reliable and has the expected performance for all users, we limit the number of API calls an API user (or application) can make within a given time period. If the limit is exceeded, the API user may be throttled and subsequent requests will fail returning HTTP resposne code 429 Too Many Requests. In such cases, it is the responsibility of the client application to implement appropriate retry logic for requests that fail due to rate limiting. +To ensure Intelex Platform is reliable and has the expected performance for all users, we limit the number of API calls an API user (or application) can make within a given time period. If the limit is exceeded, the API user may be throttled and subsequent requests will be rejected, returning HTTP response code 429 Too Many Requests. In such cases it is the responsibility of the client application to implement appropriate retry logic for requests that are rejected due to rate limiting. ### Limit The Intelex Platform API Rate limit is **6 requests per second**. From 4eaca953050eb5d575992509a2a05e4fe8a1ea8b Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:47:05 -0500 Subject: [PATCH 03/26] Update ruby.yml --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 4594c82b489..2e3e623c87b 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -17,7 +17,7 @@ jobs: bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy - uses: JamesIves/github-pages-deploy-action@master + uses: JamesIves/github-pages-deploy-action@v4 env: BRANCH: "gh-pages" FOLDER: "build" From 24d58591a054479e8e437caace81fa345e5e5236 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:51:33 -0500 Subject: [PATCH 04/26] Update ruby.yml --- .github/workflows/ruby.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 2e3e623c87b..cfacf61ca27 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,10 +7,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up Ruby 2.6 - uses: actions/setup-ruby@v1 + - name: Set up Ruby 3.2 + uses: ruby/setup-ruby@v1 with: - ruby-version: 2.6.x + ruby-version: '3.2' + bundler-cache: true - name: Build and test with Rake run: | gem install bundler From 0fa177c2be0b0656929816429801a97e92ac7cae Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:53:51 -0500 Subject: [PATCH 05/26] Update ruby.yml --- .github/workflows/ruby.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index cfacf61ca27..c93ca13ec0e 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,11 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up Ruby 3.2 + - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: - ruby-version: '3.2' - bundler-cache: true + ruby-version: '2.7' - name: Build and test with Rake run: | gem install bundler From 8db0351f1f55ba7634b58f3e6e1aeecdc5190219 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:31:15 -0500 Subject: [PATCH 06/26] Update ruby.yml --- .github/workflows/ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index c93ca13ec0e..4bec28899a2 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up Ruby 2.7 + - name: Set up Ruby 2.6 uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '2.6' - name: Build and test with Rake run: | gem install bundler From 81a87ff575056b32892fff97c90dacadaddb0494 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:31:38 -0500 Subject: [PATCH 07/26] Update ruby.yml --- .github/workflows/ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 4bec28899a2..c93ca13ec0e 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up Ruby 2.6 + - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: - ruby-version: '2.6' + ruby-version: '2.7' - name: Build and test with Rake run: | gem install bundler From f61e31d3b17a7dbeaf04c157eee82639a1f8a9bd Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:35:51 -0500 Subject: [PATCH 08/26] Update ruby.yml --- .github/workflows/ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index c93ca13ec0e..8f510f0108a 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up Ruby 2.7 + - name: Set up Ruby 3.2 uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.2' - name: Build and test with Rake run: | gem install bundler From 97ce214a64d2b2b29ae8ca5b5992fecf0351bf8a Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:42:39 -0500 Subject: [PATCH 09/26] Update ruby.yml --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 8f510f0108a..8a0bc36b205 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -13,7 +13,7 @@ jobs: ruby-version: '3.2' - name: Build and test with Rake run: | - gem install bundler + run: gem install bundler -v "~> 2.4" bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy From 3d1311256cc1332b03336b04c104a962bee9272f Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:45:10 -0500 Subject: [PATCH 10/26] Update ruby.yml --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 8a0bc36b205..d769a32774e 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -13,7 +13,7 @@ jobs: ruby-version: '3.2' - name: Build and test with Rake run: | - run: gem install bundler -v "~> 2.4" + gem install bundler -v "~> 2.4" bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy From f19e605d037a3cf18c4521d6e2f3931c5628219e Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:49:36 -0500 Subject: [PATCH 11/26] Update Gemfile.lock --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 121b62da58f..e8187a39d81 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -123,4 +123,4 @@ DEPENDENCIES wdm (~> 0.1.1) BUNDLED WITH - 1.14.6 + 2.7.2 From c837c5048741c781eadf027c6f84e81fd83eb976 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:53:07 -0500 Subject: [PATCH 12/26] Update ruby.yml --- .github/workflows/ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index d769a32774e..8563e873675 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up Ruby 3.2 + - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: - ruby-version: '3.2' + ruby-version: '2.7' - name: Build and test with Rake run: | gem install bundler -v "~> 2.4" From c4681bf6c5f1e77a1ac72318dd7589caf3689f79 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:56:04 -0500 Subject: [PATCH 13/26] Update Gemfile.lock --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index e8187a39d81..01b2e73a0b4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -123,4 +123,4 @@ DEPENDENCIES wdm (~> 0.1.1) BUNDLED WITH - 2.7.2 + 2.4.22 From d3d39c57c539b3f19545b8d835b5f70df05c452a Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 14:59:03 -0500 Subject: [PATCH 14/26] Update ruby.yml --- .github/workflows/ruby.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 8563e873675..9dde0aeda69 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -11,10 +11,9 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: '2.7' + bundler-cache: true - name: Build and test with Rake run: | - gem install bundler -v "~> 2.4" - bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy uses: JamesIves/github-pages-deploy-action@v4 From 5004243b63878ea5de5e15d78c8593fd97501238 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:02:01 -0500 Subject: [PATCH 15/26] Update ruby.yml --- .github/workflows/ruby.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 9dde0aeda69..1d4ba1cf7ec 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -14,6 +14,8 @@ jobs: bundler-cache: true - name: Build and test with Rake run: | + gem install bundler -v 2.3.26 + bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy uses: JamesIves/github-pages-deploy-action@v4 From debdd15a35b668048eefefdeac05a6717148f339 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:10:44 -0500 Subject: [PATCH 16/26] Update Gemfile --- Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 0b2029086bd..dad1eca5a31 100644 --- a/Gemfile +++ b/Gemfile @@ -6,4 +6,5 @@ gem 'middleman-syntax', '~> 3.0.0' gem 'middleman-autoprefixer', '~> 2.7.0' gem "middleman-sprockets", "~> 4.1.0" gem 'rouge', '~> 2.0.5' -gem 'redcarpet', '~> 3.4.0' \ No newline at end of file +gem 'redcarpet', '~> 3.4.0' +gem 'wdm', '~> 0.1.1', platforms: [:mswin, :mingw] From 3881d6d7167c4f6b38d92c4eb5446ffdc3309e09 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:16:06 -0500 Subject: [PATCH 17/26] Update ruby.yml --- .github/workflows/ruby.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 1d4ba1cf7ec..77adbb16001 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -14,12 +14,12 @@ jobs: bundler-cache: true - name: Build and test with Rake run: | - gem install bundler -v 2.3.26 + gem install bundler bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy uses: JamesIves/github-pages-deploy-action@v4 - env: + with: BRANCH: "gh-pages" FOLDER: "build" ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} From 923645ccec953121dc51cc70dae64db6a057433a Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:18:22 -0500 Subject: [PATCH 18/26] Update ruby.yml --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 77adbb16001..a4dc2a4bfa5 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -14,7 +14,7 @@ jobs: bundler-cache: true - name: Build and test with Rake run: | - gem install bundler + gem install bundler -v 2.4.22 bundle install --jobs 4 --retry 3 bundle exec middleman build --clean - name: GitHub Pages Deploy From da6cf2ded0f27188fb51a34aebeda0a9570bc195 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:22:10 -0500 Subject: [PATCH 19/26] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fb51c68824e..30783ae8a03 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: - run: name: Install and configure dependencies command: | - gem install bundler -v 2.3.26 + gem install bundler -v 2.4.22 bundle install --jobs 4 --retry 3 - run: name: Build static html From 728b2192157d10dcfae4428c3d760dd7de5c1416 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:26:46 -0500 Subject: [PATCH 20/26] Update config.yml --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 30783ae8a03..bac047f237c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/project docker: - - image: starefossen/ruby-node:2-8 + - image: ruby:2.7.8-node auth: username: intelexdocker password: $DOCKERHUB_PASSWORD @@ -24,7 +24,7 @@ jobs: deploy: working_directory: ~/project docker: - - image: starefossen/ruby-node:2-8 + - image: ruby:2.7.8-node auth: username: intelexdocker password: $DOCKERHUB_PASSWORD From d7c09cc22e3d086d863269e30f97285a15b0c81c Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:29:03 -0500 Subject: [PATCH 21/26] Update config.yml --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bac047f237c..a45089e2263 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/project docker: - - image: ruby:2.7.8-node + - image: cimg/ruby:2.7.8-node auth: username: intelexdocker password: $DOCKERHUB_PASSWORD @@ -24,7 +24,7 @@ jobs: deploy: working_directory: ~/project docker: - - image: ruby:2.7.8-node + - image: cimg/ruby:2.7.8-node auth: username: intelexdocker password: $DOCKERHUB_PASSWORD From 0565d3c2f2fd945c339fdc7cc05e16007472ef54 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:34:27 -0500 Subject: [PATCH 22/26] Update config.yml --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a45089e2263..1bf2515123c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ jobs: name: Build static html command: bundle exec middleman build --clean - persist_to_workspace: - root: /root/project + root: ~/project paths: - build deploy: @@ -34,7 +34,7 @@ jobs: fingerprints: - "72:81:e7:4d:d2:d4:0d:7f:59:6b:e1:74:57:3d:36:12" - attach_workspace: - at: /root/project + at: ~/project - run: name: Install and configure dependencies command: | From 153bf5195741551d9b2af93235a6cab601a51e01 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:41:06 -0500 Subject: [PATCH 23/26] Update Gemfile --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index dad1eca5a31..1bff874249e 100644 --- a/Gemfile +++ b/Gemfile @@ -7,4 +7,3 @@ gem 'middleman-autoprefixer', '~> 2.7.0' gem "middleman-sprockets", "~> 4.1.0" gem 'rouge', '~> 2.0.5' gem 'redcarpet', '~> 3.4.0' -gem 'wdm', '~> 0.1.1', platforms: [:mswin, :mingw] From 374757c26538c4b05d75e2ce0da7005a9ec6edf3 Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:43:50 -0500 Subject: [PATCH 24/26] Update Gemfile --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 1bff874249e..dad1eca5a31 100644 --- a/Gemfile +++ b/Gemfile @@ -7,3 +7,4 @@ gem 'middleman-autoprefixer', '~> 2.7.0' gem "middleman-sprockets", "~> 4.1.0" gem 'rouge', '~> 2.0.5' gem 'redcarpet', '~> 3.4.0' +gem 'wdm', '~> 0.1.1', platforms: [:mswin, :mingw] From 7b1a2d35b5747c79ab990a5e10e4a81e22028c8f Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:57:55 -0500 Subject: [PATCH 25/26] Update Gemfile.lock --- Gemfile.lock | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 01b2e73a0b4..5ca3ac194fd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -120,7 +120,6 @@ DEPENDENCIES middleman-syntax (~> 3.0.0) redcarpet (~> 3.4.0) rouge (~> 2.0.5) - wdm (~> 0.1.1) BUNDLED WITH 2.4.22 From 477605850edf74d595244560f603b5255c81ce2c Mon Sep 17 00:00:00 2001 From: Anthony Grafft <127154023+AnthonyGrafftIntelex@users.noreply.github.com> Date: Mon, 9 Feb 2026 16:58:07 -0500 Subject: [PATCH 26/26] Update Gemfile --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index dad1eca5a31..1bff874249e 100644 --- a/Gemfile +++ b/Gemfile @@ -7,4 +7,3 @@ gem 'middleman-autoprefixer', '~> 2.7.0' gem "middleman-sprockets", "~> 4.1.0" gem 'rouge', '~> 2.0.5' gem 'redcarpet', '~> 3.4.0' -gem 'wdm', '~> 0.1.1', platforms: [:mswin, :mingw]