Skip to content

Commit

Permalink
Merge pull request #47 from FundingCircle/create-v0.7.2
Browse files Browse the repository at this point in the history
Create v0.7.2
  • Loading branch information
h-lame committed Dec 3, 2018
2 parents 00fc07e + 5197e63 commit b9c1aed
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Vault Rails Changelog

## Unreleased
## 0.7.2 (December 3, 2018)

NEW FEATURES
- New serializers for `time` and `datetime`
Expand Down Expand Up @@ -40,6 +40,26 @@ BREAKING CHANGES
- type information is now specified on `vault_attribute` definitions
instead of the `vault_attribute_proxy` definitions.

## v0.6.6 (December 3, 2018)

NEW FEATURES
- New serializers for `time` and `datetime`
- New serializer for `ipaddr`.

## v0.6.5 (November 28, 2018)

IMPROVEMENTS
- Add `EncryptedModel.vault_persist_all` for encrypting and saving one attribute of multiple records with just one call to Vault
- Add `EncryptedModel.vault_load_all` for decrypting and loading one attribute of multiple records with just one call to Vault
- Allow blank values like `nil` and empty string as input to batch encryption and decryption

## v0.6.4 (November 13, 2018)

NEW FEATURES
- Allow batch encryption and decryption.
Now there is an option to encrypt or decrypt multiple strings at once.
All items to be encrypted/decrypted should use the same path, key and client.

## v0.6.3 (October 31, 2018)

NEW FEATURES
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.0.gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
fc-vault-rails (0.7.1)
fc-vault-rails (0.7.2)
activerecord (>= 5.0.0, < 6.0)
vault (~> 0.7)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.1.gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
fc-vault-rails (0.7.1)
fc-vault-rails (0.7.2)
activerecord (>= 5.0.0, < 6.0)
vault (~> 0.7)

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5.2.gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
fc-vault-rails (0.7.1)
fc-vault-rails (0.7.2)
activerecord (>= 5.0.0, < 6.0)
vault (~> 0.7)

Expand Down
2 changes: 1 addition & 1 deletion lib/vault/rails/version.rb
@@ -1,5 +1,5 @@
module Vault
module Rails
VERSION = "0.7.1"
VERSION = "0.7.2"
end
end

0 comments on commit b9c1aed

Please sign in to comment.