Update all stable non-major dependencies #61
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
renovate
waiting on upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
CCCHH/ansible-infra!61
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "renovate/all-stable-minor-patch"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
12.3.0→12.3.13.6.0→3.6.31.29.3→1.29.49.1.0→9.2.1v2025.1.0→v2025.2.2v0.29.0→v0.30.0v3.7.3→v3.9.13.5.5→3.8.0v25.11.0→v25.12.212.0.2→12.1.2v4.4.6→v4.5.01.10.3→1.10.5Release Notes
grafana/grafana (docker.io/grafana/grafana)
v12.3.1Compare Source
Features and enhancements
Bug fixes
dcountaggregation #114907, @aangeliscpercentilesyntax #114707, @aangeliscpretalx/pretalx-docker (docker.io/pretalx/standalone)
v2025.2.2Compare Source
v2025.2.1Compare Source
v2025.2.0Compare Source
prometheus/alertmanager (docker.io/prom/alertmanager)
v0.30.0: 0.30.0 / 2025-12-15Compare Source
phantom_threadingto group email alerts into threads. #4623client_allowed_sans. #4706s/client/alerts_api/g' broken link in 0.29. #4718rocketchat_configdocs. #4767<mute_time_interval>was renamed. #4729prometheus/prometheus (docker.io/prom/prometheus)
v3.9.1: 3.9.1 / 2026-01-07Compare Source
v3.9.0: 3.9.0 / 2026-01-06Compare Source
Note for users of Native Histograms
In version 3.9, Native Histograms is no longer experimental, and the feature flag
native-histogramhas no effect. You must now turn onthe config setting
scrape_native_histogramsto collect Native Histogram samples from exporters.Changelog
native-histogramfeature flag a no-op. Usescrape_native_histogramsconfig option instead. #17528start_timestampfield for unit tests. #17636--format seriesjsonoption totsdb dumpto output just series labels in JSON format. #13409--storage.tsdb.delay-compact-file.pathflag for better interoperability with Thanos. #17435--storage.tsdb.block-reload-intervalto configure TSDB Block Reload Interval. #16728prometheus_notifications_latency_histogram_secondsto complement the existing summary. #16637configlabel with job name for mostprometheus_sd_refreshmetrics. #17138prometheus_tsdb_sample_ooo_delta, the distribution of out-of-order samples in seconds. Collected for all samples, accepted or not. #17477_total. #17682ignoring()and non-empty grouping. #17643rate/increase/deltaof histograms results in a gauge histogram. #17608v3.8.1: 3.8.1 / 2025-12-16Compare Source
v3.8.0: 3.8.0 / 2025-11-28Compare Source
Note for users of Native Histograms
This is the first release with Native Histograms as a stable feature. However, scraping Native Histograms has to be activated explicitly via the
scrape_native_histogramsconfig setting (newly introduced in this release). To ease the transition, the--enable-feature=native-histogramsflag is not a complete no-op in this release, but changes the default value ofscrape_native_histogramstotrue. In the next release (v3.9), the feature flag will be a complete no-op, and the default value ofscrape_native_histogramswill always befalse. If you have been using the feature flag so far, the recommended course of action is the following:scrape_native_histogramstotruein all relevant scrape configs. (There is a global and a per-scrape-config version ofscrape_native_histograms, allowing granular control if needed. It is a good idea to also setscrape_native_histogramsexplicitly tofalsewhere you do not want to scrape Native Histograms. In this way, you do not depend on the default value of the setting anymore.)Changelog
scrape_native_histogramsconfig setting. #17232 #17315promtool push metricsvia the--protobuf_messageflag. #17417AddandSub. #17278target_infosamples with the same timestamp for the same series. #17400use_fips_sts_endpointinsigv4config sections. #17304/api/v1/targets. #17306infocall. #17379histogram_fractionfor classic histograms and NHCB if lower bound is in the first bucket. #17424prometheus-pve/prometheus-pve-exporter (docker.io/prompve/prometheus-pve-exporter)
v3.8.0Compare Source
Added
v3.7.0Compare Source
Added
v3.6.0Compare Source
Added
ansible/ansible-lint (https://github.com/ansible/ansible-lint)
v25.12.2Compare Source
Fixes
Maintenance
v25.12.1Compare Source
Features
Fixes
Maintenance
v25.12.0Compare Source
Maintenance
v25.11.1Compare Source
Features
Fixes
Maintenance
netbox-community/netbox (netbox)
v4.5.0: - 2026-01-06Compare Source
Breaking Changes
id: 123becomesid: {exact: 123 }.render_configpermission for the applicable object type.ALLOW_TOKEN_RETRIEVALconfig parameter has been removed./api/dcim/cable-terminations/REST API endpoint is now read-only. Cable terminations must be set on cables directly via the/api/dcim/cables/endpoint.is_staffhas been removed from theUsermodel./api/extras/object-types/REST API endpoint has been removed. (Use/api/core/object-types/instead.)modelin payload data. (Referenceobject_typeinstead, which includes the parent app label.)core.models.contenttypeshas been removed (replaced in v4.4 bycore.models.object_types).load_yaml()andload_json()utility methods have been removed from the base class for custom scripts.New Features
Lookup Modifiers in Filter Forms (#7604)
Most object list filters within the UI have been extended to include optional lookup modifiers to support more complex queries. For instance, filters for numeric values now include a dropdown where a user can select "less than," "greater than," or "not" in addition to the default equivalency match. The specific modifiers available depend on the type of each filter. Plugins can register their own filtersets using the
register_filterset()decorator to enable this new functionality.(Note that this feature does not introduce any new filters. Rather, it makes available in the UI filters which already exist.)
Improved API Authentication Tokens (#20210)
This release introduces a new version of API token (v2) which implements several security improvements. HMAC hashing with a cryptographic pepper is used to authenticate these tokens, obviating the need to store plaintexts. The new tokens also employ a non-sensitive key which can be shared to identify tokens without divulging their plaintexts. We've also adopted the standard "bearer" HTTP header format, as shown below.
Note that v2 token keys are prefixed with the fixed string
nbt_, which can be used to aid in secret detection.Backward compatibility with legacy (v1) tokens is retained in this release. However, users are strongly encouraged to begin using only v2 tokens, as support for legacy tokens will be removed in NetBox v4.7.
Object Ownership (#20304)
An optional
ownerforeign key field has been added to most models. This enables the assignment of objects to a new Owner model, which represents a set of users and/or groups. Through this relationship, we can now convey ownership of objects within NetBox natively, without needing to rely on the assignment of tags or custom fields.(Note that ownership differs significantly in function from tenancy. Ownership determines the parties responsible for the maintenance of an object, whereas as tenancy conveys an operational dependency.)
Advanced Port Mappings (#20564)
The previous many-to-one mapping of front to rear ports has been expanded to support bidirectional mappings. The
rear_portandrear_port_positionfields on the FrontPort model have been replaced with an intermediary PortMapping model, which supports any number of assignments between front port/position pair and a rear port/position pair. This change unlocks the ability to model complex inline devices that swap individual fiber pairs between cables.Cable Profiles (#20788)
Cables can now be assigned profiles which determine how they are treated for path tracing. A profile indicates the number of discrete parallel channels or lanes carried by the cable among its endpoints. For example, a 1-to-4 breakout cable has four lanes, shared at one end via a common termination and split out at the other end to four separate terminations. Profiles, when assigned, enable NetBox to more accurately trace a specific connection within a cable, rather than the cable as a whole.
The assignment of cable profiles is optional: Cable tracing will continue to operate as before for cables with no profile assigned.
Enhancements
render_configpermission, which is now required to render a device or virtual machine configurationstart_on_bootchoice field for virtual machinescolorfield for device type power outletsALLOW_TOKEN_RETRIEVALconfig parameter)enabledboolean field to API tokenscommentsfield to all subclasses ofOrganizationalModelrender_configpermission to view a rendered device/VM configuration in the UI/api/authentication-check/REST API endpoint for validating authentication tokensPlugins
PrimaryModel,OrganizationalModel, andNestedGroupModelto the plugins API, as well as their respective base classes for various resourcesOther Changes
is_stafffrom theUsermodelGFKSerializerFieldfor representing generic foreign keys in API serializers/api/extras/object-types/modelkey from webhook payload datacore.models.contenttypesload_yaml()andload_json()utility methods from theBaseScriptclassBaseModelas the global base class for modelsv4.4.10: - 2026-01-06Compare Source
Enhancements
Bug Fixes
ValueErrorexception when saving a site with an assigned prefixv4.4.9: - 2025-12-23Compare Source
Enhancements
Bug Fixes
devicetype_countfrom nested manufacturer to correct OpenAPI schemaparent_bayduring device bulk import when tags are presentAttributeErrorexception triggered by event rules associated with an object that supports file attachmentsmodulefield on ModuleBayon_delete=RESTRICTthe same asCASCADErear_port_idv4.4.8: - 2025-12-09Compare Source
Enhancements
Bug Fixes
{module}resolution of components of child modulesv4.4.7: - 2025-11-25Compare Source
Enhancements
data_source&data_filewhen bulk import config templatesBug Fixes
TypeErrorexception when bulk renaming unnamed devicesauto_sync_enabledfield in bulk edit formsConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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.
This PR has been generated by Renovate Bot.
0f485bd625c27288b1f5View command line instructions
Checkout
From your project repository, check out a new branch and test the changes.Merge
Merge the changes and update on Forgejo.Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.