Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: iterative/dvc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.30.3
Choose a base ref
...
head repository: iterative/dvc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.31.0
Choose a head ref
  • 7 commits
  • 24 files changed
  • 4 contributors

Commits on Nov 29, 2023

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Jikoo Adam
    Copy the full SHA
    7edcb6b View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Jikoo Adam
    Copy the full SHA
    b0d0315 View commit details
  3. tests: do not setup pytest plugin entrypoint (#10121)

    We should not register a pytest plugin automaticallly, as we may
    have fixtures that might override user's fixtures. Also, it might
    raise import errors as in #10118.
    
    We can still use this as a plugin ourselves by setting the following
    in `conftest.py` file.
    ```python
    pytest_plugins = ['dvc.testing.plugin']
    ```
    skshetry authored Nov 29, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7c61463 View commit details

Commits on Dec 3, 2023

  1. experimental: support connection strings for databases (#10125)

    * experimental: support connection strings for databases using connectorx
    
    This adds an experimental support for connector strings using connectorx.
    
    User has to provide config for the connection strings with:
    
    Example:
    ```console
    dvc config --local db_connection.pg postgres://user:pass@localhost:5432/database
    ```
    
    And then, they can import using:
    ```console
    dvc import-db --sql 'query' --conn pg
    ```
    
    Check supported databases and how to configure in https://sfu-db.github.io/connector-x/databases.html.
    This `db_connection` config is subject to change.
    
    connectorx still has the same problem with dbt as before: no support for streaming,
    but it'll be a bit more simpler to configure with the connection strings.
    
    * add pandas to deps
    
    * sqlalchemy
    
    * dbt streaming sql
    
    * fix test
    
    * remove connectorx
    
    * remove check in set
    
    * use mode='wb' for serialization
    skshetry authored Dec 3, 2023
    Copy the full SHA
    8768b50 View commit details

Commits on Dec 4, 2023

  1. Copy the full SHA
    e187508 View commit details
  2. Copy the full SHA
    e5ae5ef View commit details
  3. testing: bench: add pytest_report_header (#10132)

    * testing: bench: add pytest_report_header
    
    Useful for sanity checks in logs.
    
    * Update dvc/testing/benchmarks/plugin.py
    
    * [pre-commit.ci] auto fixes from pre-commit.com hooks
    
    for more information, see https://pre-commit.ci
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    efiop and pre-commit-ci[bot] authored Dec 4, 2023
    Copy the full SHA
    3927e75 View commit details
Loading