Skip to content

Commit

Permalink
Version bump to 0.2.4 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Dec 11, 2018
1 parent 4e82009 commit 2949342
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
@@ -1,7 +1,7 @@
## 0.2.4 [unreleased]

- Added `scubber` option for custom rules
- Scrub url encoded data
- Scrub URL-encoded data

## 0.2.3

Expand All @@ -14,12 +14,12 @@
## 0.2.1

- Fix for log broadcaster in Rails console
- Fix for url password filtering
- Fix for URL password filtering

## 0.2.0

- Less aggressive filtering on numbers
- Filter passwords in urls
- Filter passwords in URLs
- Added `Logstop.scrub` method

## 0.1.0
Expand Down
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -13,14 +13,16 @@ By default, scrubs:
- phone numbers
- credit card numbers
- Social Security numbers (SSNs)
- passwords in urls
- passwords in URLs

Works with all types of logging - Ruby, ActiveRecord, ActiveJob, and more

```
User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? [["email", "[FILTERED]"]]
```

Works even when sensitive data is URL-encoded

[![Build Status](https://travis-ci.org/ankane/logstop.svg?branch=master)](https://travis-ci.org/ankane/logstop)

## Installation
Expand Down
2 changes: 1 addition & 1 deletion lib/logstop/version.rb
@@ -1,3 +1,3 @@
module Logstop
VERSION = "0.2.3"
VERSION = "0.2.4"
end
16 changes: 7 additions & 9 deletions logstop.gemspec
Expand Up @@ -6,19 +6,17 @@ require "logstop/version"
Gem::Specification.new do |spec|
spec.name = "logstop"
spec.version = Logstop::VERSION
spec.authors = ["Andrew Kane"]
spec.email = ["andrew@chartkick.com"]

spec.summary = "Keep personally identifiable information (PII) out of your logs"
spec.homepage = "https://github.com/ankane/logstop"
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.author = "Andrew Kane"
spec.email = "andrew@chartkick.com"

spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
spec.require_path = "lib"

spec.required_ruby_version = ">= 2.2"

spec.add_development_dependency "activesupport"
spec.add_development_dependency "benchmark-ips"
Expand Down

0 comments on commit 2949342

Please sign in to comment.