This is an automated email from the ASF dual-hosted git repository.

hgruszecki pushed a change to branch improve-config-env
in repository https://gitbox.apache.org/repos/asf/iggy.git


    omit 1ac7d3ed0 refactor(config): compile-time env var mappings eliminate 
runtime ambiguity
     add 6e3a6d132 docs: update PR template and contributing guidelines (#2601)
     add 852630273 refactor(config): compile-time env var mappings eliminate 
runtime ambiguity

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1ac7d3ed0)
            \
             N -- N -- N   refs/heads/improve-config-env (852630273)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .markdownlint.json                                 |   3 +-
 .markdownlint.yml                                  |   2 +-
 CONTRIBUTING.md                                    | 141 ++++++++++-----------
 Cargo.lock                                         |  56 ++++----
 Cargo.toml                                         |   8 +-
 DEPENDENCIES.md                                    |   4 +-
 PULL_REQUEST_TEMPLATE                              |  33 -----
 PULL_REQUEST_TEMPLATE.md                           |  57 +++++++++
 core/ai/mcp/Cargo.toml                             |   4 +-
 core/ai/mcp/src/configs.rs                         |   4 +-
 core/ai/mcp/src/main.rs                            |   2 +-
 core/common/Cargo.toml                             |   2 +-
 core/common/src/lib.rs                             |   2 +-
 core/{internals => configs}/Cargo.toml             |   4 +-
 .../src/configs_impl}/env_mapping.rs               |   0
 .../configs => configs/src/configs_impl}/error.rs  |   0
 .../src/configs_impl}/file_provider.rs             |   0
 .../configs => configs/src/configs_impl}/mod.rs    |   0
 .../src/configs_impl}/parsing.rs                   |   0
 .../configs => configs/src/configs_impl}/traits.rs |   0
 .../src/configs_impl}/typed_env_provider.rs        |   0
 core/{internals => configs}/src/lib.rs             |   8 +-
 .../Cargo.toml                                     |   2 +-
 .../src/config_env.rs                              |  40 +++---
 .../src/lib.rs                                     |   0
 core/connectors/runtime/Cargo.toml                 |   4 +-
 core/connectors/runtime/src/api/config.rs          |   2 +-
 core/connectors/runtime/src/configs/connectors.rs  |   2 +-
 .../src/configs/connectors/local_provider.rs       |   4 +-
 core/connectors/runtime/src/configs/runtime.rs     |   4 +-
 core/connectors/runtime/src/main.rs                |   2 +-
 core/integration/Cargo.toml                        |   2 +-
 core/integration/src/test_server.rs                |   2 +-
 core/integration/tests/config_provider/mod.rs      |  12 +-
 core/server/Cargo.toml                             |   2 +-
 core/{configs => server}/server.toml               |   0
 core/server/src/args.rs                            |   4 +-
 core/server/src/configs/defaults.rs                |   4 +-
 core/server/src/configs/server.rs                  |  10 +-
 core/server/src/configs/validators.rs              |   2 +-
 core/server/src/server_error.rs                    |   2 +-
 41 files changed, 225 insertions(+), 205 deletions(-)
 delete mode 100644 PULL_REQUEST_TEMPLATE
 create mode 100644 PULL_REQUEST_TEMPLATE.md
 rename core/{internals => configs}/Cargo.toml (94%)
 rename core/{internals/src/configs => configs/src/configs_impl}/env_mapping.rs 
(100%)
 rename core/{internals/src/configs => configs/src/configs_impl}/error.rs (100%)
 rename core/{internals/src/configs => 
configs/src/configs_impl}/file_provider.rs (100%)
 rename core/{internals/src/configs => configs/src/configs_impl}/mod.rs (100%)
 rename core/{internals/src/configs => configs/src/configs_impl}/parsing.rs 
(100%)
 rename core/{internals/src/configs => configs/src/configs_impl}/traits.rs 
(100%)
 rename core/{internals/src/configs => 
configs/src/configs_impl}/typed_env_provider.rs (100%)
 rename core/{internals => configs}/src/lib.rs (90%)
 rename core/{internals_derive => configs_derive}/Cargo.toml (97%)
 rename core/{internals_derive => configs_derive}/src/config_env.rs (91%)
 rename core/{internals_derive => configs_derive}/src/lib.rs (100%)
 rename core/{configs => server}/server.toml (100%)

Reply via email to