Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create v0.7.2 #47

Merged
merged 2 commits into from Dec 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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