4 hours ago
higress

v2.2.4

Higress Console

📋 Overview of This Release

This release includes 18 updates, covering feature enhancements, bug fixes, and performance optimizations.

Distribution of Updates

  • New Features: 7 items
  • Bug Fixes: 9 items
  • Documentation Updates: 2 items

📝 Full Change Log

🚀 New Features (Features)

  • Related PR: #621
    Contributor: @Thomas-Eliot
    Change Log: Enhanced MCP Server interaction capabilities: added support for automatic Host header rewriting for DNS backends; improved transport selection and full-path configuration in direct routing scenarios; refined DSN special-character (e.g., @) parsing logic for DB-to-MCP Server scenarios.
    Feature Value: Improves flexibility and compatibility when integrating with MCP Servers, enabling users to configure diverse backend types more easily, avoiding path ambiguity and authentication-character parsing failures—thus reducing operational complexity and enhancing system stability.

  • Related PR: #608
    Contributor: @Libres-coder
    Change Log: Added plugin display functionality to the AI Route Management page: extended AI route rows to show enabled plugins, added an "Enabled" label to the configuration page, and implemented frontend i18n support along with plugin-query logic adaptation.
    Feature Value: Enables users to intuitively view and manage enabled plugins directly from the AI Route Management interface, aligning with conventional route functionality—improving transparency and operational consistency of AI route configurations and lowering learning and operational overhead.

  • Related PR: #604
    Contributor: @CH3CHO
    Change Log: Introduced regex-based path rewrite functionality, supporting complex path matching and replacement via the higress.io/rewrite-target annotation; extended the rewrite configuration parsing logic in KubernetesModelConverter; added regex rewrite type identifiers to frontend and backend i18n resources.
    Feature Value: Empowers users to define fine-grained path rewrite rules using regular expressions, significantly enhancing route matching precision and forwarding flexibility—ideal for multi-version API management, dynamic path mapping, and similar use cases—thereby improving gateway adaptability and operational efficiency.

  • Related PR: #603
    Contributor: @CH3CHO
    Change Log: Added a constant STATIC_SERVICE_PORT = 80 to the static service source form component and displayed this fixed port in the UI, making it explicit to users that static services default to port 80—improving configuration transparency and consistency.
    Feature Value: Users can clearly see the preconfigured port 80 when configuring static service sources, preventing service deployment failures caused by port misinterpretation—reducing adoption barriers and improving configuration accuracy and operational efficiency.

  • Related PR: #602
    Contributor: @CH3CHO
    Change Log: Added search functionality to the upstream service selector component for AI routes, enabling frontend input-based filtering of the service list to accelerate service selection. Modified the RouteForm component to include a search input field and filtering logic—achieving enhanced interactivity with minimal code changes.
    Feature Value: Allows users to rapidly filter target upstream services during AI route configuration—eliminating manual scrolling through large service lists—significantly boosting configuration efficiency and user experience, especially in production environments with extensive microservice inventories.

  • Related PR: #566
    Contributor: @OuterCyrex
    Change Log: Added support for Qwen (Tongyi Qwen) large language model (LLM) services, including custom service endpoints, internet search enablement, and file ID upload capabilities; introduced QwenLlmProviderHandler; completed configuration item and i18n adaptations on both frontend and backend.
    Feature Value: Enables convenient web-based configuration of private or third-party Qwen services, expanding AI capability extensibility; internet search and file ID upload support enhance LLM invocation flexibility and practicality across real-world business scenarios.

  • Related PR: #552
    Contributor: @lcfang
    Change Log: Added vport attribute support for service virtual port configuration; extended V1RegistryConfig and ServiceSource models; introduced VPort class; integrated vport field mapping into Kubernetes model conversion logic—resolving routing failures caused by inconsistent instance ports in service registries.
    Feature Value: Users can now specify virtual ports for services registered via Eureka/Nacos, ensuring routing rules remain effective despite dynamic backend instance port changes—enhancing stability and compatibility of service discovery and traffic scheduling while reducing operational configuration complexity.

🐛 Bug Fixes (Bug Fixes)

  • Related PR: #620
    Contributor: @CH3CHO
    Change Log: Fixed a typographical error in the sortWasmPluginMatchRules logic, correcting variable names or logical errors that could cause unexpected sorting anomalies—ensuring WASM plugin match rules are prioritized and sorted as intended.
    Feature Value: Prevents rule-ordering inconsistencies due to typos, guaranteeing that WASM plugins are applied at the correct priority within the gateway—improving reliability and consistency of traffic routing and policy enforcement.

  • Related PR: #619
    Contributor: @CH3CHO
    Change Log: Fixed duplicate version information persistence when converting AiRoute to ConfigMap: removed the version field from the data JSON payload, retaining version metadata solely in the ConfigMap metadata—eliminating data redundancy and potential inconsistency.
    Feature Value: Enhances configuration consistency and reliability, preventing parsing errors or deployment anomalies caused by duplicated version fields—delivering a more stable Kubernetes resource management experience for AiRoute users.

  • Related PR: #618
    Contributor: @CH3CHO
    Change Log: Refactored API authorization logic in SystemController, introducing an @AllowAnonymous annotation mechanism to uniformly handle unauthenticated endpoints and removing hardcoded path whitelists—improving maintainability and security of authorization policies.
    Feature Value: Resolves potential security vulnerabilities in the system controller, preventing unauthorized access to sensitive APIs and enhancing overall platform security; users benefit from stronger access protection without additional configuration—reducing exposure to malicious exploitation.

  • Related PR: #617
    Contributor: @CH3CHO
    Change Log: Fixed three critical frontend console issues: missing unique key props causing rendering warnings, Content Security Policy (CSP) blocking image loading, and incorrect type definition for Consumer.name (corrected from boolean to string).
    Feature Value: Improves application stability and user experience—eliminating console errors that disrupt development debugging, ensuring proper avatar and list rendering, and fixing data types to prevent runtime type errors—strengthening frontend code robustness.

  • Related PR: #614
    Contributor: @lc0138
    Change Log: Fixed a type-definition error for the type field in the ServiceSource class and added dictionary-value validation logic—ensuring only valid registry types are permitted and preventing runtime type mismatches.
    Feature Value: Enhances robustness and security of service-source configuration, preventing service registration failures or system exceptions caused by invalid type values—ensuring stability and reliability when configuring heterogeneous service sources.

  • Related PR: #613
    Contributor: @lc0138
    Change Log: Fixed a frontend Content Security Policy (CSP) configuration defect by correctly injecting meta tags and security headers in the Document component—preventing XSS and other client-side script injection attacks and improving overall web application security.
    Feature Value: Significantly reduces the risk of cross-site scripting (XSS) and related security exploits on the frontend, strengthening user data and session security, ensuring production environment compliance, and elevating platform trustworthiness and user confidence.

  • Related PR: #612
    Contributor: @zhwaaaaaa
    Change Log: Added hop-to-hop header (e.g., Transfer-Encoding) ignore logic in DashboardServiceImpl, adhering to RFC 2616—preventing reverse proxy forwarding of chunked encoding headers from disrupting Grafana dashboard rendering and resolving frontend rendering failures caused by HTTP header passthrough.
    Feature Value: Fixes inability to load Grafana monitoring pages, enhancing stability of console-backend integration; users gain RFC-compliant proxy behavior out-of-the-box—no manual proxy filtering rules required—improving operational experience and system observability.

  • Related PR: #609
    Contributor: @CH3CHO
    Change Log: Corrected the type definition for the name field in the Consumer interface—from boolean to string—resolving potential runtime errors and TypeScript compilation issues caused by type mismatch.
    Feature Value: Ensures Consumer.name correctly represents a string-typed username, improving type safety and API consistency—preventing front-end logic misinterpretation and data rendering anomalies—and enhancing system stability and developer experience.

  • Related PR: #605
    Contributor: @SaladDay
    Change Log: Refined the regex validation rule for AI route names to permit periods (.) and restrict characters to lowercase letters; synchronized Chinese/English error messages to ensure UI prompts accurately reflect actual validation logic—fixing erroneous rejection of valid route names (e.g., api.v1).
    Feature Value: Improves AI route configuration experience—enabling correct usage of period-containing names—while eliminating form submission failures due to inconsistent validation—enhancing system reliability and user trust.

📚 Documentation Updates (Documentation)

  • Related PR: #611
    Contributor: @qshuai
    Change Log: Corrected the Swagger API documentation summary description for the @PostMapping endpoint in LlmProvidersController, replacing the inaccurate "Add a new route" with a precise functional description—improving API documentation accuracy and readability.
    Feature Value: Aligns API documentation with actual behavior, helping developers quickly grasp endpoint purpose—reducing misuse risk—and improving development experience and integration efficiency for the console’s AI service module.

  • Related PR: #610
    Contributor: @heimanba
    Change Log: Updated frontend-gray plugin documentation: marked rewrite, backendVersion, and enabled fields as optional; updated rules.name reference path to grayDeployments[].name; synchronized field descriptions and terminology across Chinese/English READMEs and spec.yaml—enhancing configuration guidance accuracy and consistency.
    Feature Value: Increases flexibility of gray-scale configuration for diverse deployment scenarios—lowering user configuration barriers; standardized documentation terminology and linkage logic—reducing configuration errors stemming from ambiguous documentation—and improving developer understanding and reliable plugin usage.


📊 Release Statistics

  • 🚀 New Features: 7 items
  • 🐛 Bug Fixes: 9 items
  • 📚 Documentation Updates: 2 items

Total: 18 changes

Thank you to all contributors for your hard work! 🎉

8 hours ago
superset

superset-helm-chart-0.22.6

Apache Superset is a modern, enterprise-ready business intelligence web application

18 hours ago
MeiliSearch

🖇️​ v1.53.1

✨ Enhancement

Add an env var to change the task queue readers

by @ManyTheFish in https://github.com/meilisearch/meilisearch/pull/6587

Control the maximum number of LMDB read transactions at the same time for the task queue.

The following environment variable can be exported to specify the maximum number of simultaneous read transactions:

# Only the environment variable can set this parameter
MEILI_EXPERIMENTAL_TASK_QUEUE_MAX_READERS=100

Product discussion: https://github.com/orgs/meilisearch/discussions/806

🔩 Miscellaneous

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.53.0...v1.53.1

2 days ago
prometheus

3.14.0-rc.0 / 2026-08-06

  • [CHANGE] API: Deprecate the stats query parameter of /api/v1/query and /api/v1/query_range for values other than true and all. Other values still enable basic statistics but now return a deprecation warning; they will be rejected in the next major release. #19124
  • [CHANGE] API: /api/v1/status/config now correctly shows separator: "" and replacement: "" in relabel configs when explicitly set to empty, instead of omitting them. #18653
  • [CHANGE] Discovery/Hetzner: Drop the __meta_hetzner_datacenter label for hcloud targets, following its removal from the Hetzner Cloud API. #19269
  • [CHANGE] PromQL: Enable duration expressions by default. The promql-duration-expr feature flag is now a no-op. #19033
  • [CHANGE] PromQL: Promote first_over_time to stable. It no longer requires the promql-experimental-functions feature flag. #19093
  • [FEATURE] Discovery: Add Oracle Cloud Infrastructure compute service discovery (oci_sd_configs). #18919
  • [FEATURE] PromQL: Add experimental start_timestamp(instant-vector) function returning the start timestamp of each sample in the given vector. Requires the use-start-timestamps feature flag. #19089
  • [FEATURE] PromQL: Allow rate() and increase() to use start timestamps as an alternative for rate extrapolation. Hidden behind the use-start-timestamps feature flag. #18619
  • [FEATURE] TSDB: Add experimental support for encoding start timestamps in histograms and float histograms. Hidden behind the histograms-st-encoding feature flag. #18609
  • [ENHANCEMENT] OTLP: Emit a warning when OTLP attribute names collide into the same Prometheus label after sanitization (e.g. k8s.pod.name and k8s_pod_name both become k8s_pod_name), and expose the prometheus_api_otlp_translation_warnings_total counter labelled by category to track such warnings. #18957
  • [ENHANCEMENT] Promtool: Add --remote-write.path flag to push metrics for backends that use a non-default remote-write endpoint. #19086
  • [ENHANCEMENT] Remote write: Forward histogram start timestamps in the remote write V2 protocol. #18903
  • [ENHANCEMENT] TSDB: Add prometheus_tsdb_head_native_histogram_series and prometheus_tsdb_head_native_histogram_buckets gauges tracking the number of native histogram series and buckets in the head. #19170
  • [ENHANCEMENT] UI: Add syntax highlighting, autocompletion, and linting for PromQL duration expressions (step(), range(), min_of(), max_of()) in range selectors and subqueries. #18625
  • [ENHANCEMENT] UI: Add copy button next to rule names on the Rules and Alerts pages. #18706
  • [ENHANCEMENT] UI: Improve rule group title contrast on the Rules page. #19181
  • [PERF] Speed up regex label matchers matching a set of literal values (e.g. {job=~"foo|bar|baz"}). #18833
  • [PERF] Remote read: Improve remote read throughput by removing unnecessary per-write flushing. #18470
  • [PERF] Scrape: Parse text and OpenMetrics formats without recursion, preventing stack overflow from deeply nested or malicious exposition input. #19143
  • [PERF] Scrape: Reduce native histogram scrape parsing allocations by ~49%. #19282
  • [PERF] TSDB: Speed up queries on series with many in-memory chunks. #18300
  • [BUGFIX] Alerting: Fix 100% CPU usage on shutdown that could delay graceful shutdown and trigger timeout-based kills. #17859
  • [BUGFIX] Discovery/AWS: Stop promtool check config from making AWS metadata service (IMDS) network calls when the region field is omitted in EC2, ECS, RDS, MSK, ElastiCache, and Lightsail service discovery configs. #19037
  • [BUGFIX] Discovery/Docker: Set a request timeout for docker_sd and dockerswarm_sd on unix, npipe, and tcp hosts. Previously an unresponsive daemon could freeze discovery indefinitely, silently pinning targets to a stale snapshot. #19237
  • [BUGFIX] Discovery/Docker: Fix panic in Docker Swarm service discovery when a service runs as a plugin or network-attachment. #19102
  • [BUGFIX] Discovery/Docker: Fix discovery of IPv6-only containers. #18778
  • [BUGFIX] PromQL: Fix case-insensitive regex label matchers silently dropping matching values. #19167
  • [BUGFIX] PromQL: Fix mad_over_time returning 0 instead of NaN when the range contains a NaN sample. #19040
  • [BUGFIX] Promtool: Accept --enable-feature=promql-binop-fill-modifiers in check rules, which previously rejected valid fill()/fill_left()/fill_right() expressions. #19153
  • [BUGFIX] Remote write: Respect the AZURE_FEDERATED_TOKEN_FILE environment variable for workload identity authentication instead of hardcoding the token file path. #18973
  • [BUGFIX] Rules: Clean up stale rule_group_last_rule_duration_sum_seconds and rule_group_last_restore_duration_seconds series when a rule group is removed or renamed on reload. Previously each reload leaked two series per dropped group, growing /metrics cardinality over time. #19107
  • [BUGFIX] Scrape: Fix scrape manager spinning at 100% CPU on shutdown. #19149
  • [BUGFIX] TSDB: Fix silent data loss and potential crash loop when stale_series_compaction_threshold is used in the config file. #19016
  • [BUGFIX] TSDB: Fix potential data loss on restart when out-of-order ingestion is enabled and blocks are compacted. #19016
  • [BUGFIX] TSDB: Fix prometheus_tsdb_head_stale_series over-counting and early eviction of series that change between float, integer histogram, and float histogram sample types. #19183
  • [BUGFIX] TSDB: Fix goroutine and file handle leaks when Prometheus fails to open a corrupt TSDB. On Windows, the leaked directory handle also prevented TSDB directory removal. #18291
  • [BUGFIX] TSDB: Fix out-of-order queries blocking compaction for hours, causing memory usage to grow. #19013
  • [BUGFIX] TSDB: Fix deleted series causing missing samples and errors after restart. #19140
  • [BUGFIX] TSDB: Fix native histogram data becoming incorrect after restart. #19202
  • [BUGFIX] TSDB: Surface query errors that were previously silently discarded. #19120
  • [BUGFIX] TSDB: Honour the configured float chunk encoding when compaction rewrites chunks; previously chunks encoded with --enable-feature=xor2-encoding could silently revert to XOR after compaction. #19145
  • [BUGFIX] UI: Show the delete-series form on the TSDB Status page when --web.enable-admin-api is enabled. #19025
3 days ago
telegraf

v1.39.3

v1.39.3 [2026-08-10]

Bugfixes

  • #19366 inputs.cisco_telemetry_mdt Check attribute message length
  • #19332 inputs.execd Respect influx parser parameters
  • #19333 inputs.redfish Skip resources without a reference
  • #19354 parsers.avro Resolve measurement name from items record for array schemas
  • #19315 processors.filepath Prevent test code from being included in the shipped binary
  • #19325 serializers.prometheusremotewrite Accumulate multiple samples per series in a batch

Dependency Updates

  • #19302 deps Bump actions/setup-go from 6 to 7
  • #19335 deps Bump cloud.google.com/go/storage from 1.63.1 to 1.64.0
  • #19311 deps Bump github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor from 0.12.0 to 0.13.0
  • #19385 deps Bump github.com/IBM/sarama from 1.60.0 to 1.60.1
  • #19386 deps Bump github.com/SAP/go-hdb from 1.16.12 to 1.17.2
  • #19303 deps Bump github.com/antchfx/xpath from 1.3.6 to 1.3.7
  • #19341 deps Bump github.com/antchfx/xpath from 1.3.7 to 1.3.8
  • #19344 deps Bump github.com/apache/arrow-go/v18 from 18.6.0 to 18.7.0
  • #19313 deps Bump github.com/aws/smithy-go from 1.27.3 to 1.27.4
  • #19340 deps Bump github.com/aws/smithy-go from 1.27.4 to 1.27.5
  • #19310 deps Bump github.com/go-ldap/ldap/v3 from 3.4.13 to 3.4.14
  • #19381 deps Bump github.com/gofrs/uuid/v5 from 5.4.0 to 5.5.0
  • #19345 deps Bump github.com/google/cel-go from 0.29.2 to 0.30.0
  • #19314 deps Bump github.com/gosnmp/gosnmp from 1.43.2 to 1.44.0
  • #19306 deps Bump github.com/jedib0t/go-pretty/v6 from 6.8.2 to 6.8.3
  • #19312 deps Bump github.com/klauspost/compress from 1.19.0 to 1.19.1
  • #19336 deps Bump github.com/moby/moby/client from 0.5.0 to 0.5.1
  • #19380 deps Bump github.com/nats-io/nats-server/v2 from 2.14.3 to 2.14.4
  • #19309 deps Bump github.com/prometheus/client_golang from 1.23.2 to 1.24.0
  • #19342 deps Bump github.com/prometheus/client_golang from 1.24.0 to 1.24.1
  • #19382 deps Bump github.com/prometheus/prometheus from 0.313.1 to 0.313.2
  • #19349 deps Bump github.com/rabbitmq/amqp091-go from 1.12.0 to 1.13.0
  • #19387 deps Bump github.com/rclone/rclone from 1.74.1-0.20260628215305-6bbc28cf02dc to 1.75.0
  • #19372 deps Bump github.com/shirou/gopsutil/v4 from v4.26.6 to v4.26.7
  • #19348 deps Bump github.com/vertica/vertica-sql-go from 1.3.7 to 1.3.8
  • #19384 deps Bump github.com/yuin/goldmark from 1.8.4 to 1.8.5
  • #19347 deps Bump go.opentelemetry.io/collector/pdata from 1.62.0 to 1.63.0
  • #19338 deps Bump go.opentelemetry.io/proto/otlp from 1.10.0 to 1.11.0
  • #19351 deps Bump go.opentelemetry.io/proto/otlp/collector/profiles/v1development from 0.3.0 to 0.4.0
  • #19353 deps Bump go.opentelemetry.io/proto/otlp/profiles/v1development from 0.3.0 to 0.4.0
  • #19307 deps Bump go.step.sm/crypto from 0.84.1 to 0.85.0
  • #19389 deps Bump go.step.sm/crypto from 0.85.0 to 0.87.0
  • #19352 deps Bump go.yaml.in/yaml/v3 from 3.0.4 to 3.0.5
  • #19308 deps Bump google.golang.org/api from 0.288.0 to 0.289.0
  • #19339 deps Bump google.golang.org/api from 0.289.0 to 0.290.0
  • #19388 deps Bump google.golang.org/api from 0.290.0 to 0.291.0
  • #19305 deps Bump google.golang.org/grpc from 1.82.0 to 1.82.1
  • #19390 deps Bump google.golang.org/grpc from 1.82.1 to 1.83.0
  • #19337 deps Bump k8s.io/client-go from 0.36.2 to 0.36.3
  • #19304 deps Bump modernc.org/sqlite from 1.53.0 to 1.54.0
  • #19383 deps Bump modernc.org/sqlite from 1.54.0 to 1.55.0
  • #19378 deps Bump the aws-sdk-go-v2 group with 11 updates
  • #19334 deps Bump the aws-sdk-go-v2 group with 11 updates

Packages

Arch Platform Package SHA256
arm64 CentOS telegraf-1.39.3-1.aarch64.rpm f2db8ca3b5f8507ecdb1978b83adeaf0f1ff6060326bd8125c1b9221c011ed12
armel CentOS telegraf-1.39.3-1.armel.rpm fb4d26f2d200e4d84501c7eb07c8d351099605ec67e7322cc2f98b5c62f555a8
armv6hl CentOS telegraf-1.39.3-1.armv6hl.rpm 5570b28362fb59cfb14615f99695ca57f2612a4cae1e413892b002d0ec2f90cd
i386 CentOS telegraf-1.39.3-1.i386.rpm e9c3ee46b12beab7a01a6b7f1fd5882bf75b064c331db613aab4b8ee37b22d99
unknown CentOS telegraf-1.39.3-1.loongarch64.rpm 46e348e8719d30eec68d100947da417e5466265e260190fd6edf19dbcf969158
ppc64le CentOS telegraf-1.39.3-1.ppc64le.rpm c5184a302165ba42e1defb03e9368b983dfb9cf2d51b569add58c7a06c9ecd5d
riscv64 CentOS telegraf-1.39.3-1.riscv64.rpm 6051bb8d7a3d26d4b78bc298ee9f14b9911f0a11573bf5a8f9c17a595aec0704
s390x CentOS telegraf-1.39.3-1.s390x.rpm 01df6df3746a5ad76a8329c708e35271d9d16e0f1c461e0431d52e0b3d056c70
amd64 CentOS telegraf-1.39.3-1.x86_64.rpm 61e34743157a77e5d018e7a5b22b8594f4625d498fff298297c337f07f12d21f
amd64 macOS telegraf-1.39.3_darwin_amd64.dmg f8e4d8f81ba7257c1a92da179f03cd2f5b369402005e531983be65b448c3f423
amd64 macOS telegraf-1.39.3_darwin_amd64.tar.gz ab16495f6e127794f93ec715fe4ad8f8177ae396eb23eb1c1cec5e2cddb29bf4
arm64 macOS telegraf-1.39.3_darwin_arm64.dmg 28cd7e7eae57bd46ffe8c23b6a8914fba562f69825350945addea07a4354b932
arm64 macOS telegraf-1.39.3_darwin_arm64.tar.gz 244ecfe88921ba0b6c8a2139137700bb2faa4041e1c94a7f46c8733d3e51170c
amd64 FreeBSD telegraf-1.39.3_freebsd_amd64.tar.gz 026910d7505995e7618a00e2edc877c95d2b477df5a660f4d1ba66d3c2718bb1
armv7 FreeBSD telegraf-1.39.3_freebsd_armv7.tar.gz 85b5eeb71e24b35235ea2cefc126698d62e5424f672ae1efa866d60d4f4282b3
i386 FreeBSD telegraf-1.39.3_freebsd_i386.tar.gz edbcab3e336e41c97ce0fad1100bc2a1fa267320ce8816989565d244da467b92
amd64 Linux telegraf-1.39.3_linux_amd64.tar.gz 2904d5332a27a1a3f7ccd990139af2e9bc3b393cf5f7c6ac13e26ebc18df1d52
arm64 Linux telegraf-1.39.3_linux_arm64.tar.gz 516623054b321b851072d021455b3becbeecbe8a2b5582013680d0854a83bc44
armel Linux telegraf-1.39.3_linux_armel.tar.gz 40dc54e90810a9353df14fb31ff2fe87cf3a526b6f4c120ed16c3df3cf92ae0a
armhf Linux telegraf-1.39.3_linux_armhf.tar.gz 2bfbb9d337e57c252556e384e2b064591ec168c9aa5355e57c31adaecd269969
i386 Linux telegraf-1.39.3_linux_i386.tar.gz 23780ec24a46934e43ed15ace2cec8d3d9263fd54a263b5c17055d3821e6297e
loong64 Linux telegraf-1.39.3_linux_loong64.tar.gz 3da8bcefe19366a73f6611412958c7f5abf2af2d81be7f11c7705a55a32c19ac
mips Linux telegraf-1.39.3_linux_mips.tar.gz 224610892ad5296ab7b91e47ab65e27318617969d294e20c86e373c289ba1f92
mipsel Linux telegraf-1.39.3_linux_mipsel.tar.gz 0a7151e83b7d4151297ccd38b0669b37776513be8ccef0ff5f8fe3b13a39a6fc
ppc64le Linux telegraf-1.39.3_linux_ppc64le.tar.gz 4f1b40b798c4fc216ede9ae52f9474b020b2f2a47d89fb663c282250a89d240b
riscv64 Linux telegraf-1.39.3_linux_riscv64.tar.gz d12e259860b23a40aaeb3176911c54a1bb5ec6ecbeb7dee4557529aff42916b0
s390x Linux telegraf-1.39.3_linux_s390x.tar.gz 950928b22ff987936e9b64be51df02637f371c7246ede2fbb96047415a4c3498
amd64 Windows telegraf-1.39.3_windows_amd64.zip 61d03076a17981596604fd3d3f32a4939c24e131cff7099b9a31de0efd3afc53
arm64 Windows telegraf-1.39.3_windows_arm64.zip a3f60fd2911e0e1cca7a89bd3d69939bdf0d83e0c84e1e859e4c301321fa3592
i386 Windows telegraf-1.39.3_windows_i386.zip 8535003ce557d18db1e7875e543b86399b6904b7a25a923fc322bb4c3fdbf781
amd64 Debian telegraf_1.39.3-1_amd64.deb 5e61a873cc488b216ac07d6c7c2a730ce8e78d44655a37ceb24ccd29bba796c7
arm64 Debian telegraf_1.39.3-1_arm64.deb 7f75de7ff0dc4aca5d6fa38bda5cdfe2caabdda879ec76449f9797cf251a27e8
armel Debian telegraf_1.39.3-1_armel.deb f0daa69fdaf6ed09a117cc5a6674b3bdaec99ad0d76ca3ec667d5540c0b6f92a
armhf Debian telegraf_1.39.3-1_armhf.deb c07b7b9b6621cad059cf0de91996922366fbb50c275dba2f6c68016b62533c8c
i386 Debian telegraf_1.39.3-1_i386.deb c394c76ed126fd63c301463f63528edf35052794ad3def41db504e0c595947a7
loong64 Debian telegraf_1.39.3-1_loong64.deb 681caff11e4fc1e24abc714ecb1f335c272a121272a1817397dbf318eabc24f2
mips Debian telegraf_1.39.3-1_mips.deb c062ba4217dde883793007265a51c33f2c8b28ab0108fc7e2b5c90d5bc950e88
mipsel Debian telegraf_1.39.3-1_mipsel.deb 27d9d7b598044b1d6bc80e0f99e884ff6ba5996e8721c83e35de8ab2ee21239d
ppc64el Debian telegraf_1.39.3-1_ppc64el.deb 54a5a979938b1df4d66966a0011bc6fc65f84ba15ff506f197ea974662e50347
riscv64 Debian telegraf_1.39.3-1_riscv64.deb e798fced68604f05c16ce66b0329783934fc24dd3659c045a051be568b2fe81a
s390x Debian telegraf_1.39.3-1_s390x.deb cb8b16ed1ff7f86d98fb46826d1891273ee87bbaff2cfbe10c1e64850741db06
3 days ago
MeiliSearch

v1.52.3 🐠

🪲 Bug fixes

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.52.2...v1.52.3

3 days ago
MeiliSearch

v1.52.2 🐠

🪲 Bug fixes

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.52.1...v1.52.2

3 days ago
MeiliSearch

v1.52.1 🐠

🪲 Bug fixes

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.52.0...v1.52.1

3 days ago
MeiliSearch

🖇️​ v1.53.0

✨ Enhancement

🔒 Security

🔩 Miscellaneous

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.51.0...v1.53.0

3 days ago
superset

superset-helm-chart-0.22.5

Apache Superset is a modern, enterprise-ready business intelligence web application