Skip to content

Commit

Permalink
Merge branch 'main' into autometrics-queries
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr authored Dec 5, 2023
2 parents 8c72076 + 787947a commit 67f1e08
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 18 deletions.
35 changes: 22 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,25 @@

All notable changes to this project will be documented in this file.

The format of this file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
The format of this file is based on
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

Please note that while we use [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
for the `providers` repository as a whole, individual crates published from this
repository may skip versions to stay in lockstep with the other crates. This
means that individual crates do not strictly follow _SemVer_ although their
versioning remains _compatible with_ SemVer, i.e. they will not contain breaking
changes if the major version hasn't changed.
Please note that while we use
[Semantic Versioning](https://semver.org/spec/v2.0.0.html) for the `providers`
repository as a whole, individual crates published from this repository may skip
versions to stay in lockstep with the other crates. This means that individual
crates do not strictly follow _SemVer_ although their versioning remains
_compatible with_ SemVer, i.e. they will not contain breaking changes if the
major version hasn't changed.

## [Unreleased]

TBD

## [1.0.0-beta.6]

- Updated dependencies

## [1.0.0-beta.4]

### Added
Expand All @@ -23,14 +29,16 @@ TBD

## [1.0.0-beta.3] - 2023-06-14

- Prometheus provider: decrease step size in order to add more details to lines in graphs.
- Prometheus provider: decrease step size in order to add more details to lines
in graphs.

### Added

- Added provider for Parseable.
- Added support for `ArrayField` schema specification. As long as `T` has a
`QuerySchema` derive, you can use `Vec<T>` in structs that derive
`QuerySchema`. Serialization to URL-encoded query uses the ["bracket"
notation](https://docs.rs/serde-querystring/0.2.1/serde_querystring/index.html#brackets-mode).
`QuerySchema`. Serialization to URL-encoded query uses the
["bracket" notation](https://docs.rs/serde-querystring/0.2.1/serde_querystring/index.html#brackets-mode).
(#31)

### Changed
Expand All @@ -41,15 +49,16 @@ TBD
provider.
- Rename Event in the providers module to ProviderEvent (#28)
- Providers set up their own panic handlers to provide better information in
case of panics (instead of letting WASM runtime default panic handling
setup) (#35)
case of panics (instead of letting WASM runtime default panic handling setup)
(#35)

### Fixed

- Fixed required fields in schemas generated using the `QuerySchema` macro.
- Fixed support for the `checked_by_default` and `supports_suggestions`
annotations in the `ConfigSchema` and `QuerySchema` macros.
- Fixed lacking `create_cells()` implementation for Elasticsearch and Loki providers
- Fixed lacking `create_cells()` implementation for Elasticsearch and Loki
providers

## [1.0.0-beta.1] - 2023-02-14

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ repository = "https://github.com/fiberplane/providers"
[workspace.dependencies]
fiberplane-ci = { git = "ssh://[email protected]/fiberplane/fiberplane.git", branch = "main" }
fiberplane-models = { version = "1.0.0-beta.6" }
fiberplane-pdk = { version = "1.0.0-beta.6", path = "fiberplane-pdk" }
fiberplane-pdk-macros = { version = "1.0.0-beta.6", path = "fiberplane-pdk-macros" }
fiberplane-pdk = { version = "1.0.0-beta.7", path = "fiberplane-pdk" }
fiberplane-pdk-macros = { version = "1.0.0-beta.7", path = "fiberplane-pdk-macros" }
fiberplane-provider-bindings = { version = "2.0.0-beta.6" }
fp-bindgen = { version = "3.0.0" }
fp-bindgen-support = { version = "3.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion fiberplane-pdk-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ readme = "README.md"
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
version = "1.0.0-beta.6"
version = "1.0.0-beta.7"
license = { workspace = true }
repository = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion fiberplane-pdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ readme = "README.md"
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
version = "1.0.0-beta.6"
version = "1.0.0-beta.7"
license = { workspace = true }
repository = { workspace = true }

Expand Down

0 comments on commit 67f1e08

Please sign in to comment.