pii_safe_schema 1.3.2 → 1.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +7 -3
- data/CHANGELOG.md +8 -0
- data/lib/pii_safe_schema/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c846ca865ea611c8d178be2a5ee32ba4cca2d6b955747c72004a561c9124058a
|
4
|
+
data.tar.gz: c696456e1ef21bda144362b1b6fc1c37b87f3869ec0a370415530f9242f7a43a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb04c0f77566544162769a4f4a83fa352c8c395fa145b3a2de65ada8f94ff80d5695c07ccefc0e62c68ae2f047e049b9040ed517e87e63cbbd0e43b9c5656055
|
7
|
+
data.tar.gz: 8816b7fc9f0446b9fecccd5a9083c785ad1524d272d4ca7d7fb470bcdd82e3fd44c7dc7ea0d9f762ed97f6a2964d5c0d85626e6307ee187fd2c5e2e3e95e3103
|
data/.circleci/config.yml
CHANGED
@@ -84,12 +84,15 @@ workflows:
|
|
84
84
|
- checkout_and_bundle:
|
85
85
|
context: wealthsimple
|
86
86
|
- rspec:
|
87
|
+
context: wealthsimple
|
87
88
|
requires:
|
88
89
|
- checkout_and_bundle
|
89
90
|
- lint_check:
|
91
|
+
context: wealthsimple
|
90
92
|
requires:
|
91
93
|
- checkout_and_bundle
|
92
94
|
- vulnerability_check:
|
95
|
+
context: wealthsimple
|
93
96
|
requires:
|
94
97
|
- checkout_and_bundle
|
95
98
|
- release:
|
@@ -98,9 +101,9 @@ workflows:
|
|
98
101
|
branches:
|
99
102
|
only: master
|
100
103
|
requires:
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
+
- rspec
|
105
|
+
- lint_check
|
106
|
+
- vulnerability_check
|
104
107
|
|
105
108
|
security-audit:
|
106
109
|
triggers:
|
@@ -114,5 +117,6 @@ workflows:
|
|
114
117
|
- checkout_and_bundle:
|
115
118
|
context: wealthsimple
|
116
119
|
- vulnerability_check:
|
120
|
+
context: wealthsimple
|
117
121
|
requires:
|
118
122
|
- checkout_and_bundle
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,14 @@ 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.3.3 - 2021-03-15
|
8
|
+
### Changed
|
9
|
+
- Pull CI images from ECR repository
|
10
|
+
|
11
|
+
## 1.3.2 - 2021-03-15
|
12
|
+
### Changed
|
13
|
+
- Update development to Ruby 2.7.2
|
14
|
+
|
7
15
|
## 1.3.1 - 2019-11-06
|
8
16
|
### Fixed
|
9
17
|
- Passing arguments to `rake pii_safe_schema:generate_migrations` actually works
|