Skip to content

Commit 1294410

Browse files
authored
Change SSL Dependency (#54)
1 parent ce76161 commit 1294410

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.release-notes/ssl.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Change SSL dependency
2+
3+
We've switched our SSL dependency from `ponylang/crypto` to `ponylang/ssl`. `ponylang/crypto` is deprecated and will soon receive no further updates.
4+
5+
As part of the change, we also had to update the `ponylang/lori` dependency to version 0.6.2.

corral.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
],
55
"deps": [
66
{
7-
"locator": "github.com/ponylang/crypto.git",
8-
"version": "1.2.3"
7+
"locator": "github.com/ponylang/ssl.git",
8+
"version": "1.0.0"
99
},
1010
{
1111
"locator": "github.com/ponylang/lori.git",
12-
"version": "0.6.1"
12+
"version": "0.6.2"
1313
}
1414
],
1515
"info": {

postgres/_md5_password.pony

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use "crypto"
1+
use "ssl/crypto"
22

33
primitive _MD5Password
44
"""

0 commit comments

Comments
 (0)