-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: feat(normalization): Mark scrubbed transactions as sanitized (#1960) fix(pii): Scrub sensitive cookies (#1951) release: 23.3.1 feat(pii-scrubbing): PII scrub span.data by default (#1953) test(scrubbing): Add tests for PII scrubbing in breadcrumb.data (#1955) build(deps): bump sentry-sdk from 1.11.0 to 1.14.0 (#1959) ref(envelope_manager): Remove from_registry calls from the service (#1956) cd: add placeholder deployment pipeline (#1954) Assert array fields are capped to 100 items (#1910) fix(pii): Early return if no text left (#1957)
- Loading branch information
Showing
52 changed files
with
1,762 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# More information on gocd-flavor YAML can be found here: | ||
# - https://github.com/tomzo/gocd-yaml-config-plugin#pipeline | ||
# - https://www.notion.so/sentry/GoCD-New-Service-Quickstart-6d8db7a6964049b3b0e78b8a4b52e25d | ||
format_version: 10 | ||
pipelines: | ||
deploy-relay: | ||
group: relay | ||
lock_behavior: unlockWhenFinished | ||
materials: | ||
relay_repo: | ||
git: [email protected]:getsentry/relay.git | ||
shallow_clone: true | ||
branch: master | ||
destination: relay | ||
stages: | ||
# For now, this is just a placeholder so we can get deploy refs | ||
# in GoCD for the purposes of ST deploys. | ||
- deploy-production: | ||
approval: | ||
type: manual | ||
jobs: | ||
deploy: | ||
elastic_profile_id: relay | ||
tasks: | ||
- script: | | ||
true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Authentication and crypto for Relay" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "AWS extension implementation for Sentry's AWS Lambda layer" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Common utilities and crate re-exports for Relay" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Configuration for the Relay CLI and server" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Native crash reporting for Relay" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
build = "build.rs" | ||
license-file = "../LICENSE" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Dynamic configuration passed down from sentry" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Macros for error handling in FFI bindings" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Utilities for error handling in FFI bindings" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = ["Sentry <[email protected]>"] | |
description = "Inbound data filters for Relay" | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
publish = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "relay-general" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
authors = ["Sentry <[email protected]>"] | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "relay-general-derive" | ||
version = "23.3.0" | ||
version = "23.3.1" | ||
authors = ["Sentry <[email protected]>"] | ||
homepage = "https://getsentry.github.io/relay/" | ||
repository = "https://github.com/getsentry/relay" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.