active_cipher_storage 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/README.md +1 -1
- data/active_cipher_storage.gemspec +5 -5
- data/lib/active_cipher_storage/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 410a3612b86fe09cba42d171f3319c138f5465ce1277e8820b48fda5917db28e
|
|
4
|
+
data.tar.gz: eca10d2813482d941cd4d04e5388fe4bbe14b72223e5a698da1d050ff10a44ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 213e523764da530299bd8eae9e0c02b06e7870c5abb220fa9e5bc154231ea58d8c1b165969ce9db2603987b2648eaa79d001dddf209e5aa7ebf88c92dac00a16
|
|
7
|
+
data.tar.gz: 3bf3636dcdfe44c4fe7da7d5e14c8aaa40c64586359db288cfc295a426b498c4790c7ff70cc53cafbcf7cee4c5b2e9a1a7de683721faa0990a49189c9ed00080
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.ht
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.2] - 2026-04-25
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Publish updated RubyGems metadata for Rails Active Storage encryption, Ruby encryption/decryption, S3 streaming, multipart uploads, AES-256-GCM, and AWS KMS discoverability.
|
|
15
|
+
|
|
10
16
|
## [1.0.1] - 2026-04-25
|
|
11
17
|
|
|
12
18
|
### Changed
|
|
@@ -33,6 +39,7 @@ and this project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.ht
|
|
|
33
39
|
- Header-only key rotation for re-wrapping encrypted DEKs.
|
|
34
40
|
- Unit and integration coverage for crypto, providers, Active Storage, S3, multipart upload, streaming, metadata, and key rotation.
|
|
35
41
|
|
|
36
|
-
[Unreleased]: https://github.com/codebyjass/active-cipher-storage/compare/v1.0.
|
|
42
|
+
[Unreleased]: https://github.com/codebyjass/active-cipher-storage/compare/v1.0.2...HEAD
|
|
43
|
+
[1.0.2]: https://github.com/codebyjass/active-cipher-storage/compare/v1.0.1...v1.0.2
|
|
37
44
|
[1.0.1]: https://github.com/codebyjass/active-cipher-storage/compare/v1.0.0...v1.0.1
|
|
38
45
|
[1.0.0]: https://github.com/codebyjass/active-cipher-storage/releases/tag/v1.0.0
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/codebyjass/active-cipher-storage/actions/workflows/ruby.yml)
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
ActiveCipherStorage is a Ruby gem for Rails Active Storage encryption and decryption. It encrypts files before they are stored, decrypts them when they are read, and supports AWS S3, streaming downloads, multipart uploads, AES-256-GCM envelope encryption, AWS KMS, and custom key providers.
|
|
6
6
|
|
|
7
7
|
ActiveCipherStorage supports three upload paths:
|
|
8
8
|
|
|
@@ -6,12 +6,12 @@ Gem::Specification.new do |spec|
|
|
|
6
6
|
spec.authors = ["Jaspreet Singh"]
|
|
7
7
|
spec.email = ["codebyjass@users.noreply.github.com"]
|
|
8
8
|
|
|
9
|
-
spec.summary = "
|
|
9
|
+
spec.summary = "Rails Active Storage encryption for Ruby apps"
|
|
10
10
|
spec.description = <<~DESC
|
|
11
|
-
active_cipher_storage
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
active_cipher_storage encrypts and decrypts Rails Active Storage files with
|
|
12
|
+
AES-256-GCM envelope encryption. It supports AWS S3, streaming downloads,
|
|
13
|
+
multipart uploads, AWS KMS, environment-variable keys, and custom key
|
|
14
|
+
providers for Ruby and Rails applications.
|
|
15
15
|
DESC
|
|
16
16
|
|
|
17
17
|
spec.homepage = "https://github.com/codebyjass/active-cipher-storage"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_cipher_storage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jaspreet Singh
|
|
@@ -177,10 +177,10 @@ dependencies:
|
|
|
177
177
|
- !ruby/object:Gem::Version
|
|
178
178
|
version: '13.0'
|
|
179
179
|
description: |
|
|
180
|
-
active_cipher_storage
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
180
|
+
active_cipher_storage encrypts and decrypts Rails Active Storage files with
|
|
181
|
+
AES-256-GCM envelope encryption. It supports AWS S3, streaming downloads,
|
|
182
|
+
multipart uploads, AWS KMS, environment-variable keys, and custom key
|
|
183
|
+
providers for Ruby and Rails applications.
|
|
184
184
|
email:
|
|
185
185
|
- codebyjass@users.noreply.github.com
|
|
186
186
|
executables: []
|
|
@@ -239,6 +239,5 @@ requirements: []
|
|
|
239
239
|
rubygems_version: 3.4.19
|
|
240
240
|
signing_key:
|
|
241
241
|
specification_version: 4
|
|
242
|
-
summary:
|
|
243
|
-
providers
|
|
242
|
+
summary: Rails Active Storage encryption for Ruby apps
|
|
244
243
|
test_files: []
|