Skip to content

Commit 6e777c2

Browse files
author
getsentry-bot
committed
Merge branch 'release/0.26.0'
2 parents 941fc2b + 97d8c15 commit 6e777c2

File tree

18 files changed

+54
-55
lines changed

18 files changed

+54
-55
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.26.0
44

55
**Breaking Changes**:
66

Diff for: sentry-actix/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-actix"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -14,7 +14,7 @@ edition = "2018"
1414
[dependencies]
1515
actix-web = { version = "4", default-features = false }
1616
futures-util = { version = "0.3.5", default-features = false }
17-
sentry-core = { version = "0.25.0", path = "../sentry-core", default-features = false, features = ["client"] }
17+
sentry-core = { version = "0.26.0", path = "../sentry-core", default-features = false, features = ["client"] }
1818

1919
[dev-dependencies]
2020
actix-web = { version = "4" }

Diff for: sentry-anyhow/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-anyhow"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -16,8 +16,8 @@ default = ["backtrace"]
1616
backtrace = ["anyhow/backtrace"]
1717

1818
[dependencies]
19-
sentry-backtrace = { version = "0.25.0", path = "../sentry-backtrace" }
20-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
19+
sentry-backtrace = { version = "0.26.0", path = "../sentry-backtrace" }
20+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
2121
anyhow = "1.0.39"
2222

2323
[dev-dependencies]

Diff for: sentry-backtrace/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-backtrace"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,7 +12,7 @@ Sentry integration and utilities for dealing with stacktraces.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
1616
lazy_static = "1.4.0"
1717
backtrace = "0.3.44"
1818
regex = "1.5.5"

Diff for: sentry-contexts/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-contexts"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -13,7 +13,7 @@ build = "build.rs"
1313
edition = "2018"
1414

1515
[dependencies]
16-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
16+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
1717
libc = "0.2.66"
1818
hostname = "0.3.0"
1919

Diff for: sentry-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-core"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -27,7 +27,7 @@ debug-logs = ["log_"]
2727
test = ["client"]
2828

2929
[dependencies]
30-
sentry-types = { version = "0.25.0", path = "../sentry-types" }
30+
sentry-types = { version = "0.26.0", path = "../sentry-types" }
3131
serde = { version = "1.0.104", features = ["derive"] }
3232
lazy_static = "1.4.0"
3333
rand = { version = "0.8.1", optional = true }

Diff for: sentry-core/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ functionality.
4646
[Sentry]: https://sentry.io/
4747
[`sentry`]: https://crates.io/crates/sentry
4848
[Unified API]: https://develop.sentry.dev/sdk/unified-api/
49-
[`Client`]: https://docs.rs/sentry-core/0.25.0/sentry_core/struct.Client.html
50-
[`Hub`]: https://docs.rs/sentry-core/0.25.0/sentry_core/struct.Hub.html
51-
[`Scope`]: https://docs.rs/sentry-core/0.25.0/sentry_core/struct.Scope.html
52-
[`Integration`]: https://docs.rs/sentry-core/0.25.0/sentry_core/trait.Integration.html
53-
[`Transport`]: https://docs.rs/sentry-core/0.25.0/sentry_core/trait.Transport.html
54-
[`TransportFactory`]: https://docs.rs/sentry-core/0.25.0/sentry_core/trait.TransportFactory.html
55-
[`test`]: https://docs.rs/sentry-core/0.25.0/sentry_core/test/index.html
49+
[`Client`]: https://docs.rs/sentry-core/0.26.0/sentry_core/struct.Client.html
50+
[`Hub`]: https://docs.rs/sentry-core/0.26.0/sentry_core/struct.Hub.html
51+
[`Scope`]: https://docs.rs/sentry-core/0.26.0/sentry_core/struct.Scope.html
52+
[`Integration`]: https://docs.rs/sentry-core/0.26.0/sentry_core/trait.Integration.html
53+
[`Transport`]: https://docs.rs/sentry-core/0.26.0/sentry_core/trait.Transport.html
54+
[`TransportFactory`]: https://docs.rs/sentry-core/0.26.0/sentry_core/trait.TransportFactory.html
55+
[`test`]: https://docs.rs/sentry-core/0.26.0/sentry_core/test/index.html
5656

5757
## Resources
5858

Diff for: sentry-debug-images/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-debug-images"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,6 +12,6 @@ Sentry integration that adds the list of loaded libraries to events.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
1616
lazy_static = "1.4.0"
1717
findshlibs = "=0.10.2"

Diff for: sentry-debug-images/README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ The Sentry Debug Images integration.
1111
The [`DebugImagesIntegration`] adds metadata about the loaded shared
1212
libraries to Sentry [`Event`]s.
1313

14-
This Integration only works on Unix-like OSes right now. Support for Windows
15-
will be added in the future.
16-
1714
## Configuration
1815

1916
The integration by default attaches this information to all [`Event`]s, but
@@ -25,7 +22,7 @@ let integration = sentry_debug_images::DebugImagesIntegration::new()
2522
.filter(|event| event.level >= Level::Warning);
2623
```
2724

28-
[`Event`]: https://docs.rs/sentry-debug-images/0.25.0/sentry_debug-images/sentry_core::protocol::Event
25+
[`Event`]: https://docs.rs/sentry-debug-images/0.26.0/sentry_debug-images/sentry_core::protocol::Event
2926

3027
## Resources
3128

Diff for: sentry-log/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-log"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,7 +12,7 @@ Sentry integration for log and env_logger crates.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
1616
log = { version = "0.4.8", features = ["std"] }
1717

1818
[dev-dependencies]

Diff for: sentry-panic/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-panic"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,8 +12,8 @@ Sentry integration for capturing panics.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
16-
sentry-backtrace = { version = "0.25.0", path = "../sentry-backtrace" }
15+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
16+
sentry-backtrace = { version = "0.26.0", path = "../sentry-backtrace" }
1717

1818
[dev-dependencies]
1919
sentry = { path = "../sentry", default-features = false, features = ["test"] }

Diff for: sentry-slog/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-slog"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,7 +12,7 @@ Sentry integration for the slog crate.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.25.0", path = "../sentry-core" }
15+
sentry-core = { version = "0.26.0", path = "../sentry-core" }
1616
slog = { version = "2.5.2", features = ["nested-values"] }
1717
serde_json = "1.0.46"
1818

Diff for: sentry-tower/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-tower"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -19,7 +19,7 @@ tower-layer = "0.3"
1919
tower-service = "0.3"
2020
http_ = { package = "http", version = "0.2.6", optional = true }
2121
pin-project = { version = "1.0.10", optional = true }
22-
sentry-core = { version = "0.25.0", path = "../sentry-core", default-features = false, features = ["client"] }
22+
sentry-core = { version = "0.26.0", path = "../sentry-core", default-features = false, features = ["client"] }
2323
url = { version = "2.2.2", optional = true }
2424

2525
[dev-dependencies]

Diff for: sentry-tower/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ transaction based on the incoming HTTP headers.
101101
The created transaction will automatically use the request URI as its name.
102102
This is sometimes not desirable in case the request URI contains unique IDs
103103
or similar. In this case, users should manually override the transaction name
104-
in the request handler using the [`Scope::set_transaction`](https://docs.rs/sentry-tower/0.25.0/sentry_tower/sentry_core::Scope::set_transaction)
104+
in the request handler using the [`Scope::set_transaction`](https://docs.rs/sentry-tower/0.26.0/sentry_tower/sentry_core::Scope::set_transaction)
105105
method.
106106

107107
When combining both layers, take care of the ordering of both. For example
@@ -114,6 +114,8 @@ let layer = tower::ServiceBuilder::new()
114114
.layer(sentry_tower::SentryHttpLayer::with_transaction());
115115
```
116116

117+
[`tower::ServiceBuilder`]: https://docs.rs/tower/latest/tower/struct.ServiceBuilder.html
118+
117119
## Resources
118120

119121
License: Apache-2.0

Diff for: sentry-tracing/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-tracing"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -12,7 +12,7 @@ Sentry integration for tracing and tracing-subscriber crates.
1212
edition = "2018"
1313

1414
[dependencies]
15-
sentry-core = { version = "0.25.0", path = "../sentry-core", features = ["client"] }
15+
sentry-core = { version = "0.26.0", path = "../sentry-core", features = ["client"] }
1616
tracing-core = "0.1"
1717
tracing-subscriber = { version = "0.3.1", default-features = false, features = ["std"] }
1818

Diff for: sentry-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-types"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"

Diff for: sentry/Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry"
3-
version = "0.25.0"
3+
version = "0.26.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"
@@ -48,16 +48,16 @@ ureq = ["ureq_/tls", "httpdate"]
4848
ureq-native-tls = ["ureq_/native-tls", "httpdate"]
4949

5050
[dependencies]
51-
sentry-core = { version = "0.25.0", path = "../sentry-core", features = ["client"] }
52-
sentry-anyhow = { version = "0.25.0", path = "../sentry-anyhow", optional = true }
53-
sentry-backtrace = { version = "0.25.0", path = "../sentry-backtrace", optional = true }
54-
sentry-contexts = { version = "0.25.0", path = "../sentry-contexts", optional = true }
55-
sentry-debug-images = { version = "0.25.0", path = "../sentry-debug-images", optional = true }
56-
sentry-log = { version = "0.25.0", path = "../sentry-log", optional = true }
57-
sentry-panic = { version = "0.25.0", path = "../sentry-panic", optional = true }
58-
sentry-slog = { version = "0.25.0", path = "../sentry-slog", optional = true }
59-
sentry-tower = { version = "0.25.0", path = "../sentry-tower", optional = true }
60-
sentry-tracing = { version = "0.25.0", path = "../sentry-tracing", optional = true }
51+
sentry-core = { version = "0.26.0", path = "../sentry-core", features = ["client"] }
52+
sentry-anyhow = { version = "0.26.0", path = "../sentry-anyhow", optional = true }
53+
sentry-backtrace = { version = "0.26.0", path = "../sentry-backtrace", optional = true }
54+
sentry-contexts = { version = "0.26.0", path = "../sentry-contexts", optional = true }
55+
sentry-debug-images = { version = "0.26.0", path = "../sentry-debug-images", optional = true }
56+
sentry-log = { version = "0.26.0", path = "../sentry-log", optional = true }
57+
sentry-panic = { version = "0.26.0", path = "../sentry-panic", optional = true }
58+
sentry-slog = { version = "0.26.0", path = "../sentry-slog", optional = true }
59+
sentry-tower = { version = "0.26.0", path = "../sentry-tower", optional = true }
60+
sentry-tracing = { version = "0.26.0", path = "../sentry-tracing", optional = true }
6161
log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"] }
6262
reqwest_ = { package = "reqwest", version = "0.11", optional = true, features = ["blocking", "json"], default-features = false }
6363
curl_ = { package = "curl", version = "0.4.25", optional = true }

Diff for: sentry/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ sentry::capture_message("Hello World!", sentry::Level::Info);
3333
More complex examples on how to use sentry can also be found in [examples]. Extended instructions
3434
may also be found on [Sentry itself].
3535

36-
[`sentry::init`]: https://docs.rs/sentry/0.25.0/sentry/fn.init.html
37-
[`Hub`]: https://docs.rs/sentry/0.25.0/sentry/struct.Hub.html
36+
[`sentry::init`]: https://docs.rs/sentry/0.26.0/sentry/fn.init.html
37+
[`Hub`]: https://docs.rs/sentry/0.26.0/sentry/struct.Hub.html
3838
[examples]: https://github.com/getsentry/sentry-rust/tree/master/sentry/examples
3939
[Sentry itself]: https://docs.sentry.io/platforms/rust
4040

@@ -46,17 +46,17 @@ the ecosystem require a feature flag. For available integrations and how to use
4646
[integrations] and [apply_defaults].
4747

4848
[Features]: #features
49-
[integrations]: https://docs.rs/sentry/0.25.0/sentry/integrations/index.html
50-
[apply_defaults]: https://docs.rs/sentry/0.25.0/sentry/fn.apply_defaults.html
49+
[integrations]: https://docs.rs/sentry/0.26.0/sentry/integrations/index.html
50+
[apply_defaults]: https://docs.rs/sentry/0.26.0/sentry/fn.apply_defaults.html
5151

5252
## Minimal API
5353

5454
This crate comes fully-featured. If the goal is to instrument libraries for usage
5555
with sentry, or to extend sentry with a custom [`Integration`] or a [`Transport`],
5656
one should use the [`sentry-core`] crate instead.
5757

58-
[`Integration`]: https://docs.rs/sentry/0.25.0/sentry/trait.Integration.html
59-
[`Transport`]: https://docs.rs/sentry/0.25.0/sentry/trait.Transport.html
58+
[`Integration`]: https://docs.rs/sentry/0.26.0/sentry/trait.Integration.html
59+
[`Transport`]: https://docs.rs/sentry/0.26.0/sentry/trait.Transport.html
6060
[`sentry-core`]: https://crates.io/crates/sentry-core
6161

6262
## Features

0 commit comments

Comments
 (0)