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: influxdb-rs/influxdb-rust
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.2
Choose a base ref
...
head repository: influxdb-rs/influxdb-rust
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 16 commits
  • 20 files changed
  • 7 contributors

Commits on Feb 23, 2024

  1. Update README.md

    Empty2k12 committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    81d451b View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    a9a9835 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    10aef46 View commit details
    Browse the repository at this point in the history
  3. Make Error enum non_exhaustive (#139)

    This allows us to introduce future variants of the error enum without making braking changes.
    msrd0 authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    274265d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    aa6d882 View commit details
    Browse the repository at this point in the history
  5. Bump actions/upload-artifact from 3 to 4 (#141)

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    82efb70 View commit details
    Browse the repository at this point in the history
  6. Bump actions/download-artifact from 3 to 4 (#144)

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    75d12e8 View commit details
    Browse the repository at this point in the history
  7. Bump stefanzweifel/git-auto-commit-action from 4 to 5 (#143)

    Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5.
    - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases)
    - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md)
    - [Commits](stefanzweifel/git-auto-commit-action@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: stefanzweifel/git-auto-commit-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    06d3058 View commit details
    Browse the repository at this point in the history
  8. Bump actions/cache from 3 to 4 (#145)

    Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/cache
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    5622313 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    40cc2aa View commit details
    Browse the repository at this point in the history
  10. Bump actions/checkout from 3 to 4 (#148)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    869c92b View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Remove lazy_static dependency (#149)

    Instead, we now use `lazy-regex`, which uses `once_cell` under
    the hood, which might eventually become part of std.
    msrd0 authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    bfe457c View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Better Errors (#150)

    * bump
    
    * error with an api status code
    
    * remove redundant import
    
    * fix ApiError
    
    * fix ApiError by converting StatusCode to u16
    
    * revert
    
    * u16 as StatusCode
    
    * update tests
    
    * improve tests readability
    
    * fix: ci tests & add docker-compose local test harness
    
    ---------
    
    Co-authored-by: Gero Gerke <hello@gero.dev>
    0xDmtri and Empty2k12 authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    9d8d453 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Fix typos (#156)

    jayvdb authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    5eecd0b View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2024

  1. Configuration menu
    Copy the full SHA
    359fd08 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2025

  1. Configuration menu
    Copy the full SHA
    8ab0fe0 View commit details
    Browse the repository at this point in the history
Loading