pii_safe_schema 1.3.5 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +1 -1
- data/.github/workflows/default.yml +6 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +7 -3
- data/lib/pii_safe_schema/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5a9abd519262fb092e04490f3b99c5f7e0293a777b1e29ee9a87b3fe0827728
|
4
|
+
data.tar.gz: 43c6fc045b82b8075bb73f345d0d60a3f6384a4981edc6c9472fbd8c04e2a9d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26ab3012c6310654ef6a3d8b7f0cd99129105ecee059fa1611f3803da96efba70b1c0bdff854086ff7cc446ce7e84676887dc4299b035fe89507169730c0c68d
|
7
|
+
data.tar.gz: 7153c208b0ca0574e61eaa186be393d20bec4cab360531f0c8644a1bd68da78695bcd513194477f73713c44839355e715e754f9da6e8259bdb46c9178695d0b1
|
data/.github/CODEOWNERS
CHANGED
@@ -1 +1 @@
|
|
1
|
-
* @wealthsimple/security
|
1
|
+
* @wealthsimple/platform-security
|
@@ -17,15 +17,20 @@ jobs:
|
|
17
17
|
preflight_check:
|
18
18
|
name: Preflight Check
|
19
19
|
runs-on: ubuntu-latest
|
20
|
+
strategy:
|
21
|
+
matrix:
|
22
|
+
ruby-version: [2.7.5, 3.0.3]
|
20
23
|
steps:
|
21
24
|
# Need to fetch all refs, so we can check if the version has been bumped
|
22
25
|
- uses: actions/checkout@v2
|
23
26
|
with:
|
24
27
|
fetch-depth: 0
|
25
28
|
|
26
|
-
-
|
29
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
30
|
+
uses: ruby/setup-ruby@v1
|
27
31
|
with:
|
28
32
|
bundler-cache: true
|
33
|
+
ruby-version: ${{ matrix.ruby-version }}
|
29
34
|
|
30
35
|
- name: Lint
|
31
36
|
uses: wealthsimple/toolbox-script@v1
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.7.
|
1
|
+
2.7.5
|
data/CHANGELOG.md
CHANGED
@@ -4,14 +4,18 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
-
## 1.
|
7
|
+
## 1.4.0 - 2021-12-31
|
8
8
|
### Changed
|
9
|
-
-
|
9
|
+
- Add Ruby 3.0.x support
|
10
10
|
|
11
|
-
## 1.3.
|
11
|
+
## 1.3.5 - 2021-03-15
|
12
12
|
### Changed
|
13
13
|
- Add support for Rails 7
|
14
14
|
|
15
|
+
## 1.3.4 - 2021-10-21
|
16
|
+
### Changed
|
17
|
+
- Switched to Github Actions
|
18
|
+
|
15
19
|
## 1.3.3 - 2021-03-15
|
16
20
|
### Changed
|
17
21
|
- Pull CI images from ECR repository
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pii_safe_schema
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexi Garrow
|
@@ -347,7 +347,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
347
347
|
- !ruby/object:Gem::Version
|
348
348
|
version: '0'
|
349
349
|
requirements: []
|
350
|
-
rubygems_version: 3.1.
|
350
|
+
rubygems_version: 3.1.6
|
351
351
|
signing_key:
|
352
352
|
specification_version: 4
|
353
353
|
summary: Schema migration tool for checking and adding comments on PII columns.
|