New Features
- New built-in tag: [masking](https://vulcansql.com/docs/api-building/sql-syntax#using-masking-tag)
You can now use the masking tag to limit the exposure of sensitive data.
sql
select
C_CUSTKEY,
C_NAME,
C_ADDRESS,
C_NATIONKEY,
{% masking C_PHONE partial(3, 'XXX-XXX', 5) %} as C_PHONE_Masked,
C_ACCTBAL,
C_MKTSEGMENT,
C_COMMENT
from tpch_sf1.customer;
![image](https://user-images.githubusercontent.com/9553914/212810184-b05b8ddf-8e17-4259-9bfd-75e6ece02846.png)
Fixs
- Fix metadata of documentation
What's Changed
* Fix: Update og image by oscar60310 in https://github.com/Canner/vulcan-sql/pull/133
* Chore: Add links to Twitter account by oscar60310 in https://github.com/Canner/vulcan-sql/pull/134
* Chore: Update overview image by oscar60310 in https://github.com/Canner/vulcan-sql/pull/135
* Chore: update overview image of website by oscar60310 in https://github.com/Canner/vulcan-sql/pull/136
* Fix: fix wrong width on mobile devices by oscar60310 in https://github.com/Canner/vulcan-sql/pull/137
* Feature: Dynamic data masking - custom string by fredalai in https://github.com/Canner/vulcan-sql/pull/140
* Chore: bump to 0.3.1 by oscar60310 in https://github.com/Canner/vulcan-sql/pull/141
New Contributors
* fredalai made their first contribution in https://github.com/Canner/vulcan-sql/pull/140
**Full Changelog**: https://github.com/Canner/vulcan-sql/compare/v0.3.0...v0.3.1