Bruno Cesar Rocha

Results 281 issues of Bruno Cesar Rocha

```py { "dynaconf_merge": True, "nested" { "dynaconf_merge": True, "key": value } } ``` Right now only the first dynaconf_merge is being cleaned up

bug
aap

Right now all the `_FOR_DYNACONF` variables are globally shared, on environments where multiple instances of Dynaconf are used those variables will cause conflicts. The fix for it is to have...

Not a Bug
RFC
aap

### Discussed in https://github.com/dynaconf/dynaconf/discussions/592 Originally posted by **dimasahmad** May 21, 2021 I need to add some persistence when my app updated the configurations. What's the best way to do it...

``` dynaconf list -e -k "^FOO*" ```

aap

On https://github.com/dynaconf/dynaconf/pull/634 `description` was added to `Validator` ```py Validator("foo", description="foo description", default=1) ``` NOTE: the implementation must be extended to support typed validators ```py class Settings(Dynaconf): foo: Annotated[Doc("foo description")] ```...

Not a Bug
RFC
aap

```py settings = Dynaconf( read_only_keys=["KEY", ...] ) ``` ```py class Settings(Dynaconf): key: Final[str] key: Annotated[Validator, ..., Final] ``` With any of the above definitions, dynaconf will load the value once,...

aap

Pulp Ansible >= 0.25 must use Dynaconf 3.2.11 (To be Released) The PR https://github.com/dynaconf/dynaconf/pull/1287 fixes an error. Can't access browsable API Thrown error: ``` ImproperlyConfigured Unknown parameters: raw_ansible_content_hostname, raw_ansible_authentication_classes, raw_ansible_permission_classes...

Issue
Triage-Needed

## Description of changes Add support for passing additional command-line options to `uv run` through three configuration levels with proper priority handling: 1. Global executor.run_options in [tool.poe.executor] 2. Task-level executor_run_options...

# Parse Conf Module Improvements **Date**: 2025-11-14 **Status**: In Progress **Priority**: High ## Overview This document details identified issues, improvements, and test coverage gaps in the `dynaconf/utils/parse_conf.py` module, specifically focusing...

> I have created a custom loader for AWS Secrets Manager with multi-environment support, you can try it out here: > https://github.com/maltheberk/dynaconf-aws-secrets-loader > > There are some limitations which you...