Immutable
release. Only release title and notes can be modified.
0.1.13 (2026-07-03)
Refactors
- revert: remove basic auth token comparison and dead code (#68) by @Shailesh-714
Compatibility
This version of the Hyperswitch Encryption service is compatible with the following versions of the other components:
- Hyperswitch App Server: v1.125.0
- Control Center: v1.38.6
- Web Client: v0.132.0
- WooCommerce Plugin: v1.6.1
- Card Vault: v0.7.0
- Superposition: v0.102.0
Database Migrations
Warning
The following migration is backward incompatible and can cause data loss. The query need NOT be run on production environments, as the application would still function correctly even if the migration is not run. Additional columns not known to the application, being present on the database side is not a concern.
-- DB Difference between v0.1.12 and v0.1.13
-- Do not run this migration in production environments.
-- Dropping this column is a backward-incompatible change: the data will be
-- permanently lost, and any rollback to a version that still relies on this
-- column will break. Only run this once backward compatibility with older
-- application versions is no longer required.
ALTER TABLE data_key_store DROP COLUMN IF EXISTS token;Configuration Changes
Diff of configuration changes between v0.1.12 and v0.1.13:
diff --git a/config/development.toml b/config/development.toml
index 1dbf07e..6c726e6 100644
--- a/config/development.toml
+++ b/config/development.toml
@@ -33,5 +33,3 @@ log_format = "console"
[secrets]
master_key = "6d761d32f1b14ef34cf016d726b29b02b5cfce92a8959f1bfb65995c8100925e"
-access_token = "secret123"
-hash_context = "keymanager:hyperswitch"Full Changelog: v0.1.12...v0.1.13