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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fabc72461d7687d4fe0f17c6d22979b637012b3d160b0d5b21dbd775facd6498
4
- data.tar.gz: 0a16cf1345eaf8a7962fe086113fc04e9c76350445769a8c809213c9535cfc44
3
+ metadata.gz: 410a3612b86fe09cba42d171f3319c138f5465ce1277e8820b48fda5917db28e
4
+ data.tar.gz: eca10d2813482d941cd4d04e5388fe4bbe14b72223e5a698da1d050ff10a44ed
5
5
  SHA512:
6
- metadata.gz: 7bc1e4f3f4721a294bd28043a9672843b5a2bd26b932b2cd7390f16cbf79bec98b3b62bfd9169e6f9267f429d9fccf896309d4dae7e389bc3a6c8284c44988dc
7
- data.tar.gz: 22e3bc0328636ee8078cd679ace9f49c5ab83617ba814191f2c7d80886e19429061d7bc193f751af2202175d1af444b3b3a5d8c45fc6d9ab8ae77eeb510529f6
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.1...HEAD
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
  [![CI](https://github.com/codebyjass/active-cipher-storage/actions/workflows/ruby.yml/badge.svg)](https://github.com/codebyjass/active-cipher-storage/actions/workflows/ruby.yml)
4
4
 
5
- Transparent AES-256-GCM encryption for Rails Active Storage, direct AWS S3 usage, and backend-managed chunk uploads, with a pluggable KMS provider layer.
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 = "Transparent file encryption for Active Storage and S3 with pluggable KMS providers"
9
+ spec.summary = "Rails Active Storage encryption for Ruby apps"
10
10
  spec.description = <<~DESC
11
- active_cipher_storage provides AES-256-GCM envelope encryption for files stored
12
- via Rails Active Storage or directly via the AWS S3 SDK. Key management is
13
- delegated to pluggable KMS providers: environment-variable keys, AWS KMS,
14
- or any custom provider implementing the base interface.
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"
@@ -1,3 +1,3 @@
1
1
  module ActiveCipherStorage
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
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.1
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 provides AES-256-GCM envelope encryption for files stored
181
- via Rails Active Storage or directly via the AWS S3 SDK. Key management is
182
- delegated to pluggable KMS providers: environment-variable keys, AWS KMS,
183
- or any custom provider implementing the base interface.
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: Transparent file encryption for Active Storage and S3 with pluggable KMS
243
- providers
242
+ summary: Rails Active Storage encryption for Ruby apps
244
243
  test_files: []