Skip to content

Commit

Permalink
Merge branch 'master' into feat/security-reports
Browse files Browse the repository at this point in the history
* master: (26 commits)
  doc: Add documentation about the path of an event through relay (#289)
  release: 0.4.59
  meta: Changelog for 0.4.59
  ref: Set _relay_processed to true (#293)
  feat(protocol): Add valid platforms as constant (#294)
  fix(protocol): Add missing legacy alias for stacktrace (#292)
  release: 0.4.58
  meta: Add changelog for 0.4.58
  feat: Expose globbing code from Semaphore to Python (#288)
  fix: Add code comment
  fix: Normalize before datascrubbing (#290)
  feat(projects): Evict project caches after some time (#287)
  feat: Add mkdocs like in symbolicator
  ref: Add event size metrics (#286)
  test: add panic test
  ref: Selectively log internal errors to stderr (#285)
  fix(cabi): Do not ignore process_value result in scrub_event (#284)
  feat(config): Add a config value for thread counts (#283)
  fix: Refactor outcomes for parity with Sentry (#282)
  feat: Add an error boundary to parsing project states (#281)
  ...
  • Loading branch information
jan-auer committed Nov 4, 2019
2 parents 2508bf3 + f0c80b4 commit 2571d2f
Show file tree
Hide file tree
Showing 67 changed files with 1,383 additions and 875 deletions.
1 change: 1 addition & 0 deletions .craft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ changelogPolicy: simple
targets:
- name: pypi
- name: github
- name: gh-pages
- name: registry
type: app
urlTemplate: "https://downloads.sentry-cdn.com/semaphore/{{version}}/{{file}}"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ GeoLiteCity.dat
target
/.venv/
/.idea/
/site
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ matrix:
- npm install -g @zeus-ci/cli || [[ ! "$TRAVIS_BRANCH" =~ ^release/ ]]
- zeus upload -t "application/zip+wheel" py/dist/* || [[ ! "$TRAVIS_BRANCH" =~ ^release/ ]]

- name: "docs"
before_script: npm install -g @zeus-ci/cli
script: make -e travis-upload-prose-docs

notifications:
webhooks:
urls:
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 0.4.59

* Fix: Normalize legacy stacktrace attributes (#292)
* Fix: Validate platform attributes in Relay (#294)
* Flip the flag that indicates Relay processing (#293)

## 0.4.58

* Expose globbing code from Semaphore to Python (#288)
* Normalize before datascrubbing (#290)
* Evict project caches after some time (#287)
* Add event size metrics (#286)
* Selectively log internal errors to stderr (#285)
* Do not ignore `process_value` result in `scrub_event` (#284)
* Add a config value for thread counts (#283)
* Refactor outcomes for parity with Sentry (#282)
* Add an error boundary to parsing project states (#281)
* Remove warning and add comment for temporary attribute
* Add flag that relay processed an event (#279)

## 0.4.57

**Store**:

- Stricter validation of transaction events.

## 0.4.56

**Store**:
Expand Down
87 changes: 74 additions & 13 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exclude = [".vscode/**/*", ".idea/**/*"]
license = "MIT"
name = "semaphore"
readme = "README.md"
version = "0.4.56"
version = "0.4.59"
edition = "2018"
build = "build.rs"
publish = false
Expand Down
31 changes: 29 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,37 @@ test-process-event: setup-geoip

# Documentation

doc: setup-git
@cargo doc
doc: docs
.PHONY: doc

docs: api-docs prose-docs
.PHONY: api-docs prose-docs

api-docs: setup-git
@cargo doc
.PHONY: api-docs

prose-docs: .venv/bin/python
.venv/bin/pip install -U mkdocs mkdocs-material pygments pymdown-extensions
.venv/bin/mkdocs build
touch site/.nojekyll
.PHONY: prose-docs

docserver: prose-docs
.venv/bin/mkdocs serve
.PHONY: docserver

travis-upload-prose-docs: prose-docs
cd site && zip -r gh-pages .
zeus upload -t "application/zip+docs" site/gh-pages.zip \
|| [[ ! "$(TRAVIS_BRANCH)" =~ ^release/ ]]
.PHONY: travis-upload-docs

local-upload-prose-docs: prose-docs
# Use this for hotfixing docs, prefer a new release
.venv/bin/pip install -U ghp-import
.venv/bin/ghp-import -pf site/

# Style checking

style: style-rust style-python
Expand Down
Loading

0 comments on commit 2571d2f

Please sign in to comment.