[PR #1562] chore(deps): update all non-major dependencies #5772

Closed
opened 2026-03-01 15:42:31 +03:00 by kerem · 0 comments
Owner

Original Pull Request: https://github.com/0xJacky/nginx-ui/pull/1562

State: closed
Merged: Yes


This PR contains the following updates:

Package Change Age Confidence
apexcharts (source) ^5.3.6^5.6.0 age confidence
github.com/go-resty/resty/v2 v2.17.1v2.17.2 age confidence
github.com/mark3labs/mcp-go v0.43.2v0.44.0 age confidence
google.golang.org/grpc v1.79.0v1.79.1 age confidence
marked (source) ^17.0.2^17.0.3 age confidence
pnpm (source) 10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc10.30.0 age confidence

Release Notes

apexcharts/apexcharts.js (apexcharts)

v5.6.0: 💎 Version 5.6.0

Compare Source

Bug Fixes

Critical Fix: Tooltip and Chart Interactions Restored (#​5168)
  • Fixed a critical regression where tooltips were not appearing and chart interactions were completely blocked
  • The <foreignObject> element, which contains the legend wrapper, was incorrectly positioned as the last child in the SVG DOM, causing it to overlay and block all mouse events on the chart
  • Restored the correct DOM ordering by ensuring <foreignObject> is always the first child element (at the back of the z-order), allowing chart interactions to work properly
  • This issue affected all chart types including column, scatter, heatmap, bar, and others
  • The regression was introduced in v5.5.0 when accessibility features were added
Comprehensive DOM Ordering Tests
  • Added extensive test coverage to prevent future regressions of DOM element ordering

If you experienced tooltip or interaction issues in v5.5.0/v5.5.1, this release fully resolves those problems. Simply upgrade to v5.6.0 - no code changes required on your end.

v5.5.1

Compare Source

v5.5.0: 💎 Version 5.5.0

Compare Source

Major Features

Server-Side Rendering (SSR) Support

ApexCharts now fully supports SSR for Next.js, Nuxt, SvelteKit, Astro, and other modern meta-frameworks! This has been one of the most requested features. (#​4288)

Server-side rendering:

import ApexCharts from 'apexcharts/ssr'

const chartHTML = await ApexCharts.renderToHTML({
  series: [{ data: [30, 40, 35, 50, 49, 60, 70] }],
  chart: { type: 'bar' }
}, {
  width: 500,
  height: 300
})

Client-side hydration:

import ApexCharts from 'apexcharts/client'

// Hydrate specific chart
ApexCharts.hydrate(document.getElementById('my-chart'))

// Or hydrate all charts on the page
ApexCharts.hydrateAll()

Package exports:

  • Browser: import ApexCharts from 'apexcharts' (or apexcharts/client)
  • Node.js/SSR: import ApexCharts from 'apexcharts/ssr'
  • Automatic environment detection via conditional exports
Accessibility Support

Added comprehensive accessibility features to make charts usable for everyone:

  • ARIA labels and roles
  • Keyboard navigation support
  • Screen reader compatibility
  • Semantic HTML structure

📦 Bundle Sizes

Browser bundles:

  • apexcharts.esm.js: 878 KB (unminified)
  • apexcharts.common.js: 462 KB (minified CommonJS)
  • apexcharts.min.js: 462 KB (minified UMD)

SSR bundles (new!):

  • apexcharts.ssr.esm.js: 891 KB (unminified ESM for Node.js)
  • apexcharts.ssr.common.js: 467 KB (minified CommonJS for Node.js)

Breaking Changes

None! This release is fully backward compatible with v5.4.0.

v5.4.0: 💎 Version 5.4.0

Compare Source

🚀 Major Changes

Build System Modernization
  • Complete tooling overhaul: Migrated from Rollup + Webpack + Babel to Vite for faster builds and better developer experience
  • Testing modernization: Transitioned from Jest to Vitest for improved performance and native ESM support
  • Removed SVG.js dependency: Replaced with a custom lightweight SVG utility, reducing bundle size and external dependencies
Performance Improvements
  • Optimized object cloning - Significantly improved performance for data processing
  • DOM query caching - Reduced redundant DOM lookups for better rendering performance
  • Event delegation - Implemented event delegation pattern to improve event handling performance
  • Treemap optimization - Enhanced Treemap-squared.js algorithm for better performance

🐛 Bug Fixes

  • Fixed y-axis title getting cut off when using formatter (#​5152)
  • Fixed annotation rectangles drifting when browser zoom level is not 100%
  • Fixed x-axis label repetition for very small numeric values (#​5127)
  • Fixed bar chart top rounding issues
  • Fixed area chart fill color when using CSS variables
  • Fixed shared tooltip showing invisible series
  • Fixed stack-column-outline chart rendering issues
  • Removed obsolete polyfills from all samples
  • Converted Treemap to proper ES module export
  • Created ChartFactory for future tree-shaking support
  • Legend font-size now supports units other than pixels (rem, vh, etc.) (#​5151)

Refactoring & Code Quality

  • Refactored data handling architecture
  • Applied code quality improvements across the codebase
  • Improved unit test coverage across utility functions, datetime, and data processing modules

Testing Improvements

  • Comprehensive unit test improvements across the library
  • Enhanced E2E testing infrastructure
  • Updated sample charts

💝 Contributors

Thank you to all contributors:

go-resty/resty (github.com/go-resty/resty/v2)

v2.17.2

Compare Source

Release Notes

Backport

Release

Full Changelog: https://github.com/go-resty/resty/compare/v2.17.1...v2.17.2

mark3labs/mcp-go (github.com/mark3labs/mcp-go)

v0.44.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/mark3labs/mcp-go/compare/v0.43.2...v0.44.0

grpc/grpc-go (google.golang.org/grpc)

v1.79.1: Release 1.79.1

Compare Source

Bug Fixes

  • grpc: Remove the -dev suffix from the User-Agent header. (#​8902)
markedjs/marked (marked)

v17.0.3

Compare Source

Bug Fixes
pnpm/pnpm (pnpm)

v10.30.0

Compare Source


Configuration

📅 Schedule: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

**Original Pull Request:** https://github.com/0xJacky/nginx-ui/pull/1562 **State:** closed **Merged:** Yes --- This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [apexcharts](https://apexcharts.com) ([source](https://redirect.github.com/apexcharts/apexcharts.js)) | [`^5.3.6` → `^5.6.0`](https://renovatebot.com/diffs/npm/apexcharts/5.3.6/5.6.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/apexcharts/5.6.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/apexcharts/5.3.6/5.6.0?slim=true) | | [github.com/go-resty/resty/v2](https://redirect.github.com/go-resty/resty) | `v2.17.1` → `v2.17.2` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-resty%2fresty%2fv2/v2.17.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-resty%2fresty%2fv2/v2.17.1/v2.17.2?slim=true) | | [github.com/mark3labs/mcp-go](https://redirect.github.com/mark3labs/mcp-go) | `v0.43.2` → `v0.44.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fmark3labs%2fmcp-go/v0.44.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fmark3labs%2fmcp-go/v0.43.2/v0.44.0?slim=true) | | [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) | `v1.79.0` → `v1.79.1` | ![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.79.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.79.0/v1.79.1?slim=true) | | [marked](https://marked.js.org) ([source](https://redirect.github.com/markedjs/marked)) | [`^17.0.2` → `^17.0.3`](https://renovatebot.com/diffs/npm/marked/17.0.2/17.0.3) | ![age](https://developer.mend.io/api/mc/badges/age/npm/marked/17.0.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/marked/17.0.2/17.0.3?slim=true) | | [pnpm](https://pnpm.io) ([source](https://redirect.github.com/pnpm/pnpm/tree/HEAD/pnpm)) | [`10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc` → `10.30.0`](https://renovatebot.com/diffs/npm/pnpm/10.29.3/10.30.0) | ![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/10.30.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/10.29.3/10.30.0?slim=true) | --- ### Release Notes <details> <summary>apexcharts/apexcharts.js (apexcharts)</summary> ### [`v5.6.0`](https://redirect.github.com/apexcharts/apexcharts.js/releases/tag/v5.6.0): 💎 Version 5.6.0 [Compare Source](https://redirect.github.com/apexcharts/apexcharts.js/compare/7283a1f218956bddb831d24af6b15394a741c846...v5.6.0) #### Bug Fixes ##### Critical Fix: Tooltip and Chart Interactions Restored ([#&#8203;5168](https://redirect.github.com/apexcharts/apexcharts.js/issues/5168)) - Fixed a critical regression where tooltips were not appearing and chart interactions were completely blocked - The `<foreignObject>` element, which contains the legend wrapper, was incorrectly positioned as the last child in the SVG DOM, causing it to overlay and block all mouse events on the chart - Restored the correct DOM ordering by ensuring `<foreignObject>` is always the first child element (at the back of the z-order), allowing chart interactions to work properly - This issue affected all chart types including column, scatter, heatmap, bar, and others - The regression was introduced in v5.5.0 when accessibility features were added ##### Comprehensive DOM Ordering Tests - Added extensive test coverage to prevent future regressions of DOM element ordering If you experienced tooltip or interaction issues in v5.5.0/v5.5.1, this release fully resolves those problems. Simply upgrade to v5.6.0 - no code changes required on your end. ### [`v5.5.1`](https://redirect.github.com/apexcharts/apexcharts.js/compare/v5.5.0...7283a1f218956bddb831d24af6b15394a741c846) [Compare Source](https://redirect.github.com/apexcharts/apexcharts.js/compare/v5.5.0...7283a1f218956bddb831d24af6b15394a741c846) ### [`v5.5.0`](https://redirect.github.com/apexcharts/apexcharts.js/releases/tag/v5.5.0): 💎 Version 5.5.0 [Compare Source](https://redirect.github.com/apexcharts/apexcharts.js/compare/v5.4.0...v5.5.0) #### Major Features ##### Server-Side Rendering (SSR) Support ApexCharts now fully supports SSR for Next.js, Nuxt, SvelteKit, Astro, and other modern meta-frameworks! This has been one of the most requested features. ([#&#8203;4288](https://redirect.github.com/apexcharts/apexcharts.js/issues/4288)) **Server-side rendering:** ```javascript import ApexCharts from 'apexcharts/ssr' const chartHTML = await ApexCharts.renderToHTML({ series: [{ data: [30, 40, 35, 50, 49, 60, 70] }], chart: { type: 'bar' } }, { width: 500, height: 300 }) ``` **Client-side hydration:** ```javascript import ApexCharts from 'apexcharts/client' // Hydrate specific chart ApexCharts.hydrate(document.getElementById('my-chart')) // Or hydrate all charts on the page ApexCharts.hydrateAll() ``` **Package exports:** - Browser: `import ApexCharts from 'apexcharts'` (or `apexcharts/client`) - Node.js/SSR: `import ApexCharts from 'apexcharts/ssr'` - Automatic environment detection via conditional exports ##### Accessibility Support Added comprehensive accessibility features to make charts usable for everyone: - ARIA labels and roles - Keyboard navigation support - Screen reader compatibility - Semantic HTML structure #### 📦 Bundle Sizes **Browser bundles:** - `apexcharts.esm.js`: 878 KB (unminified) - `apexcharts.common.js`: 462 KB (minified CommonJS) - `apexcharts.min.js`: 462 KB (minified UMD) **SSR bundles (new!):** - `apexcharts.ssr.esm.js`: 891 KB (unminified ESM for Node.js) - `apexcharts.ssr.common.js`: 467 KB (minified CommonJS for Node.js) #### Breaking Changes None! This release is fully backward compatible with v5.4.0. ### [`v5.4.0`](https://redirect.github.com/apexcharts/apexcharts.js/releases/tag/v5.4.0): 💎 Version 5.4.0 [Compare Source](https://redirect.github.com/apexcharts/apexcharts.js/compare/v5.3.6...v5.4.0) #### 🚀 Major Changes ##### Build System Modernization - **Complete tooling overhaul**: Migrated from Rollup + Webpack + Babel to **Vite** for faster builds and better developer experience - **Testing modernization**: Transitioned from Jest to **Vitest** for improved performance and native ESM support - **Removed SVG.js dependency**: Replaced with a custom lightweight SVG utility, reducing bundle size and external dependencies ##### Performance Improvements - **Optimized object cloning** - Significantly improved performance for data processing - **DOM query caching** - Reduced redundant DOM lookups for better rendering performance - **Event delegation** - Implemented event delegation pattern to improve event handling performance - **Treemap optimization** - Enhanced Treemap-squared.js algorithm for better performance #### 🐛 Bug Fixes - Fixed y-axis title getting cut off when using formatter ([#&#8203;5152](https://redirect.github.com/apexcharts/apexcharts.js/issues/5152)) - Fixed annotation rectangles drifting when browser zoom level is not 100% - Fixed x-axis label repetition for very small numeric values ([#&#8203;5127](https://redirect.github.com/apexcharts/apexcharts.js/issues/5127)) - Fixed bar chart top rounding issues - Fixed area chart fill color when using CSS variables - Fixed shared tooltip showing invisible series - Fixed stack-column-outline chart rendering issues - Removed obsolete polyfills from all samples - Converted Treemap to proper ES module export - Created ChartFactory for future tree-shaking support - Legend font-size now supports units other than pixels (rem, vh, etc.) ([#&#8203;5151](https://redirect.github.com/apexcharts/apexcharts.js/issues/5151)) #### Refactoring & Code Quality - Refactored data handling architecture - Applied code quality improvements across the codebase - Improved unit test coverage across utility functions, datetime, and data processing modules #### Testing Improvements - Comprehensive unit test improvements across the library - Enhanced E2E testing infrastructure - Updated sample charts *** #### 💝 Contributors Thank you to all contributors: - [@&#8203;meronz](https://redirect.github.com/meronz) - Annotation zoom fix - [@&#8203;ptrgast](https://redirect.github.com/ptrgast) - Greek locale improvements - [@&#8203;unki](https://redirect.github.com/unki) - Legend font-size units fix - [@&#8203;ZahidChandio](https://redirect.github.com/ZahidChandio) - Multiple chart fixes </details> <details> <summary>go-resty/resty (github.com/go-resty/resty/v2)</summary> ### [`v2.17.2`](https://redirect.github.com/go-resty/resty/releases/tag/v2.17.2) [Compare Source](https://redirect.github.com/go-resty/resty/compare/v2.17.1...v2.17.2) ### Release Notes #### Backport - backport: header deepcopy fix by [@&#8203;jeevatkm](https://redirect.github.com/jeevatkm) in [#&#8203;1110](https://redirect.github.com/go-resty/resty/pull/1110) #### Release - release: version bump to v2.17.2 and readme update by [@&#8203;jeevatkm](https://redirect.github.com/jeevatkm) in [#&#8203;1112](https://redirect.github.com/go-resty/resty/pull/1112) **Full Changelog**: <https://github.com/go-resty/resty/compare/v2.17.1...v2.17.2> </details> <details> <summary>mark3labs/mcp-go (github.com/mark3labs/mcp-go)</summary> ### [`v0.44.0`](https://redirect.github.com/mark3labs/mcp-go/releases/tag/v0.44.0) [Compare Source](https://redirect.github.com/mark3labs/mcp-go/compare/v0.43.2...v0.44.0) #### What's Changed - feat: defer tool loading to enable Anthropic's "Tool Search" pattern by [@&#8203;wolfeidau](https://redirect.github.com/wolfeidau) in [#&#8203;644](https://redirect.github.com/mark3labs/mcp-go/pull/644) - fix: return an error if the responseWriter does not support Flush by [@&#8203;JoelPfaffDD](https://redirect.github.com/JoelPfaffDD) in [#&#8203;652](https://redirect.github.com/mark3labs/mcp-go/pull/652) - Add Icons support for MCP spec 2025-11-25 compliance by [@&#8203;dask-58](https://redirect.github.com/dask-58) in [#&#8203;660](https://redirect.github.com/mark3labs/mcp-go/pull/660) - fix: add ErrUnauthorized sentinel for static token 401 responses by [@&#8203;ezynda3](https://redirect.github.com/ezynda3) in [#&#8203;661](https://redirect.github.com/mark3labs/mcp-go/pull/661) - Add lastModified field to Annotations for MCP spec 2025-11-25 by [@&#8203;dask-58](https://redirect.github.com/dask-58) in [#&#8203;663](https://redirect.github.com/mark3labs/mcp-go/pull/663) - Add server-side support for MCP tasks by [@&#8203;JAORMX](https://redirect.github.com/JAORMX) in [#&#8203;635](https://redirect.github.com/mark3labs/mcp-go/pull/635) - fix: drain all pending notification before writing the response to avoid missing notifications by [@&#8203;archit-harness](https://redirect.github.com/archit-harness) in [#&#8203;670](https://redirect.github.com/mark3labs/mcp-go/pull/670) - fix for nil resources slice by [@&#8203;furysama](https://redirect.github.com/furysama) in [#&#8203;665](https://redirect.github.com/mark3labs/mcp-go/pull/665) - Add docstrings for annotation-related functions by [@&#8203;ezynda3](https://redirect.github.com/ezynda3) in [#&#8203;673](https://redirect.github.com/mark3labs/mcp-go/pull/673) - fix: add timeout for SSE response waiting to prevent indefinite blocking by [@&#8203;everfid-ever](https://redirect.github.com/everfid-ever) in [#&#8203;668](https://redirect.github.com/mark3labs/mcp-go/pull/668) - Try OAuth Authorization Server Metadata first by [@&#8203;staugaard](https://redirect.github.com/staugaard) in [#&#8203;669](https://redirect.github.com/mark3labs/mcp-go/pull/669) - fix(oauth): check for OAuth error responses even when status code is 200 by [@&#8203;sd2k](https://redirect.github.com/sd2k) in [#&#8203;646](https://redirect.github.com/mark3labs/mcp-go/pull/646) - fix: Add missing session cleanup to the StreamableHTTPServer DELETE handler by [@&#8203;cnnrznn](https://redirect.github.com/cnnrznn) in [#&#8203;667](https://redirect.github.com/mark3labs/mcp-go/pull/667) - Implement Elicitation URL mode for MCP spec 2025-11-25 by [@&#8203;dask-58](https://redirect.github.com/dask-58) in [#&#8203;666](https://redirect.github.com/mark3labs/mcp-go/pull/666) - feat: Add Host header override support for manual DNS resolution by [@&#8203;ComingCL](https://redirect.github.com/ComingCL) in [#&#8203;674](https://redirect.github.com/mark3labs/mcp-go/pull/674) - fix: low mcp version been selected by mcp server, mcp server may also raise 'unsupported protocol version 2025-11-25' error by [@&#8203;yuehaii](https://redirect.github.com/yuehaii) in [#&#8203;687](https://redirect.github.com/mark3labs/mcp-go/pull/687) - Add AdditionalProperties to ToolInputSchema by [@&#8203;mohit-gupta-glean](https://redirect.github.com/mohit-gupta-glean) in [#&#8203;678](https://redirect.github.com/mark3labs/mcp-go/pull/678) - fix: fix TestSSE\_SendRequest\_Timeout flaky test by [@&#8203;everfid-ever](https://redirect.github.com/everfid-ever) in [#&#8203;683](https://redirect.github.com/mark3labs/mcp-go/pull/683) - feat:add version 2025-11-25 & unit test for version by [@&#8203;CocaineCong](https://redirect.github.com/CocaineCong) in [#&#8203;684](https://redirect.github.com/mark3labs/mcp-go/pull/684) - fix: use sync.Once for thread-safe Close in StreamableHTTP by [@&#8203;semihbkgr](https://redirect.github.com/semihbkgr) in [#&#8203;685](https://redirect.github.com/mark3labs/mcp-go/pull/685) - docs: fix ListTools usage to include ListToolsRequest parameter by [@&#8203;everfid-ever](https://redirect.github.com/everfid-ever) in [#&#8203;681](https://redirect.github.com/mark3labs/mcp-go/pull/681) - fix: return 404 instead of 400 for invalid session IDs by [@&#8203;burugo](https://redirect.github.com/burugo) in [#&#8203;689](https://redirect.github.com/mark3labs/mcp-go/pull/689) - fix: rename NewToolResultAudio second parameter from imageData to aud… by [@&#8203;mosesyu95](https://redirect.github.com/mosesyu95) in [#&#8203;691](https://redirect.github.com/mark3labs/mcp-go/pull/691) - Server handlers implementation for auto-completion by [@&#8203;ezraisw](https://redirect.github.com/ezraisw) in [#&#8203;679](https://redirect.github.com/mark3labs/mcp-go/pull/679) - Fix: the header information set by the client being lost. by [@&#8203;button-chen](https://redirect.github.com/button-chen) in [#&#8203;686](https://redirect.github.com/mark3labs/mcp-go/pull/686) - Set test client info by [@&#8203;urisimchoni](https://redirect.github.com/urisimchoni) in [#&#8203;692](https://redirect.github.com/mark3labs/mcp-go/pull/692) - refactor: fix modernize lint issues by [@&#8203;alexandear](https://redirect.github.com/alexandear) in [#&#8203;699](https://redirect.github.com/mark3labs/mcp-go/pull/699) - refactor: simplify tests with the usetesting linter by [@&#8203;alexandear](https://redirect.github.com/alexandear) in [#&#8203;703](https://redirect.github.com/mark3labs/mcp-go/pull/703) - typo: fix duplicate description of mcp-go in README by [@&#8203;milairhu](https://redirect.github.com/milairhu) in [#&#8203;701](https://redirect.github.com/mark3labs/mcp-go/pull/701) - feat(server): implement task-augmented tools capability by [@&#8203;ezynda3](https://redirect.github.com/ezynda3) in [#&#8203;707](https://redirect.github.com/mark3labs/mcp-go/pull/707) - tool "properties" and "required" fields missing if set them as null, AdditionalProperties can't be masharl by [@&#8203;yuehaii](https://redirect.github.com/yuehaii) in [#&#8203;713](https://redirect.github.com/mark3labs/mcp-go/pull/713) - Fix no way to detect connection closure in non-NO\_ERROR cases by [@&#8203;manx98](https://redirect.github.com/manx98) in [#&#8203;709](https://redirect.github.com/mark3labs/mcp-go/pull/709) - fix: accept HTTP 204 No Content in SendNotification by [@&#8203;satish-karri-glean](https://redirect.github.com/satish-karri-glean) in [#&#8203;717](https://redirect.github.com/mark3labs/mcp-go/pull/717) - fix: use custom session id generator when provided by [@&#8203;FlameHost10](https://redirect.github.com/FlameHost10) in [#&#8203;715](https://redirect.github.com/mark3labs/mcp-go/pull/715) - fix: SendRequest hangs forever when server process dies by [@&#8203;ichoosetoaccept](https://redirect.github.com/ichoosetoaccept) in [#&#8203;714](https://redirect.github.com/mark3labs/mcp-go/pull/714) #### New Contributors - [@&#8203;wolfeidau](https://redirect.github.com/wolfeidau) made their first contribution in [#&#8203;644](https://redirect.github.com/mark3labs/mcp-go/pull/644) - [@&#8203;JoelPfaffDD](https://redirect.github.com/JoelPfaffDD) made their first contribution in [#&#8203;652](https://redirect.github.com/mark3labs/mcp-go/pull/652) - [@&#8203;dask-58](https://redirect.github.com/dask-58) made their first contribution in [#&#8203;660](https://redirect.github.com/mark3labs/mcp-go/pull/660) - [@&#8203;JAORMX](https://redirect.github.com/JAORMX) made their first contribution in [#&#8203;635](https://redirect.github.com/mark3labs/mcp-go/pull/635) - [@&#8203;archit-harness](https://redirect.github.com/archit-harness) made their first contribution in [#&#8203;670](https://redirect.github.com/mark3labs/mcp-go/pull/670) - [@&#8203;furysama](https://redirect.github.com/furysama) made their first contribution in [#&#8203;665](https://redirect.github.com/mark3labs/mcp-go/pull/665) - [@&#8203;everfid-ever](https://redirect.github.com/everfid-ever) made their first contribution in [#&#8203;668](https://redirect.github.com/mark3labs/mcp-go/pull/668) - [@&#8203;staugaard](https://redirect.github.com/staugaard) made their first contribution in [#&#8203;669](https://redirect.github.com/mark3labs/mcp-go/pull/669) - [@&#8203;cnnrznn](https://redirect.github.com/cnnrznn) made their first contribution in [#&#8203;667](https://redirect.github.com/mark3labs/mcp-go/pull/667) - [@&#8203;ComingCL](https://redirect.github.com/ComingCL) made their first contribution in [#&#8203;674](https://redirect.github.com/mark3labs/mcp-go/pull/674) - [@&#8203;mohit-gupta-glean](https://redirect.github.com/mohit-gupta-glean) made their first contribution in [#&#8203;678](https://redirect.github.com/mark3labs/mcp-go/pull/678) - [@&#8203;semihbkgr](https://redirect.github.com/semihbkgr) made their first contribution in [#&#8203;685](https://redirect.github.com/mark3labs/mcp-go/pull/685) - [@&#8203;burugo](https://redirect.github.com/burugo) made their first contribution in [#&#8203;689](https://redirect.github.com/mark3labs/mcp-go/pull/689) - [@&#8203;mosesyu95](https://redirect.github.com/mosesyu95) made their first contribution in [#&#8203;691](https://redirect.github.com/mark3labs/mcp-go/pull/691) - [@&#8203;ezraisw](https://redirect.github.com/ezraisw) made their first contribution in [#&#8203;679](https://redirect.github.com/mark3labs/mcp-go/pull/679) - [@&#8203;urisimchoni](https://redirect.github.com/urisimchoni) made their first contribution in [#&#8203;692](https://redirect.github.com/mark3labs/mcp-go/pull/692) - [@&#8203;alexandear](https://redirect.github.com/alexandear) made their first contribution in [#&#8203;699](https://redirect.github.com/mark3labs/mcp-go/pull/699) - [@&#8203;milairhu](https://redirect.github.com/milairhu) made their first contribution in [#&#8203;701](https://redirect.github.com/mark3labs/mcp-go/pull/701) - [@&#8203;manx98](https://redirect.github.com/manx98) made their first contribution in [#&#8203;709](https://redirect.github.com/mark3labs/mcp-go/pull/709) - [@&#8203;satish-karri-glean](https://redirect.github.com/satish-karri-glean) made their first contribution in [#&#8203;717](https://redirect.github.com/mark3labs/mcp-go/pull/717) - [@&#8203;FlameHost10](https://redirect.github.com/FlameHost10) made their first contribution in [#&#8203;715](https://redirect.github.com/mark3labs/mcp-go/pull/715) - [@&#8203;ichoosetoaccept](https://redirect.github.com/ichoosetoaccept) made their first contribution in [#&#8203;714](https://redirect.github.com/mark3labs/mcp-go/pull/714) **Full Changelog**: <https://github.com/mark3labs/mcp-go/compare/v0.43.2...v0.44.0> </details> <details> <summary>grpc/grpc-go (google.golang.org/grpc)</summary> ### [`v1.79.1`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.79.1): Release 1.79.1 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.79.0...v1.79.1) ### Bug Fixes - grpc: Remove the `-dev` suffix from the User-Agent header. ([#&#8203;8902](https://redirect.github.com/grpc/grpc-go/pull/8902)) </details> <details> <summary>markedjs/marked (marked)</summary> ### [`v17.0.3`](https://redirect.github.com/markedjs/marked/releases/tag/v17.0.3) [Compare Source](https://redirect.github.com/markedjs/marked/compare/v17.0.2...v17.0.3) ##### Bug Fixes - escape image alt text ([#&#8203;3896](https://redirect.github.com/markedjs/marked/issues/3896)) ([909fe44](https://redirect.github.com/markedjs/marked/commit/909fe442aadcb177cf95444af50e76d9d087cb0f)) </details> <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v10.30.0`](https://redirect.github.com/pnpm/pnpm/compare/v10.29.3...v10.30.0) [Compare Source](https://redirect.github.com/pnpm/pnpm/compare/v10.29.3...v10.30.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "after 2am and before 3am" (UTC), Automerge - "after 1am and before 2am" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/0xJacky/nginx-ui). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44LjUiLCJ1cGRhdGVkSW5WZXIiOiI0My4yMi4wIiwidGFyZ2V0QnJhbmNoIjoiZGV2IiwibGFiZWxzIjpbXX0=-->
kerem 2026-03-01 15:42:31 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-ui#5772
No description provided.