Skip to content

Commit 5ee654f

Browse files
Horse 3.1.0
1 parent 38029ec commit 5ee654f

22 files changed

+519
-1071
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ static/
44
**/Win32/
55
**/Win64/
66
**/Linux64/
7+
**/backup/
8+
**/lib/
79
**/__history/
810
**/__recovery/
911
src/*.~*
@@ -24,6 +26,7 @@ src/*.~*
2426
*.lib
2527
*.a
2628
*.o
29+
*lps
2730
*.ocx
2831
*.local
2932
*.identcache

boss-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"hash": "445774d05b3e1b873cfcdb89032b3e1f",
3-
"updated": "2022-07-06T08:22:10.0570735-03:00",
3+
"updated": "2023-03-09T23:35:20.3502827-03:00",
44
"installedModules": {
55
"github.com/andre-djsystem/hashlib4pascal": {
66
"name": "hashlib4pascal",
@@ -12,8 +12,8 @@
1212
},
1313
"github.com/hashload/horse": {
1414
"name": "horse",
15-
"version": "3.0.2",
16-
"hash": "929cb417c573af469c997a7e1fda5dbb",
15+
"version": "3.1.0",
16+
"hash": "fc3b8eefb46c1a3b387e86ca46a9faa1",
1717
"artifacts": {},
1818
"failed": false,
1919
"changed": false

boss.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "horse-jwt",
3-
"description": "Horse-JWT is a official middleware for generate and validate JWT in APIs developed with the Horse framework",
4-
"version": "2.1.0",
5-
"homepage": "https://github.com/HashLoad/horse-jwt",
3+
"description": "",
4+
"version": "2.0.12",
5+
"homepage": "",
66
"mainsrc": "./src",
77
"projects": [],
88
"dependencies": {
99
"github.com/andre-djsystem/hashlib4pascal": "^1.0.0",
1010
"github.com/hashload/horse": "^3.1.0",
11-
"github.com/paolo-rossi/delphi-jose-jwt": "^v3.0.3"
11+
"github.com/paolo-rossi/delphi-jose-jwt": "^v3.2.0"
1212
}
13-
}
13+
}

samples/delphi/auth/boss-lock.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
22
"hash": "6ef9161b900632671022358216c7dfe7",
3-
"updated": "2022-07-06T08:22:34.6888958-03:00",
3+
"updated": "2023-03-09T23:37:03.7931608-03:00",
44
"installedModules": {
55
"github.com/hashload/horse": {
66
"name": "horse",
7-
"version": "3.0.2",
8-
"hash": "929cb417c573af469c997a7e1fda5dbb",
7+
"version": "3.1.0",
8+
"hash": "fc3b8eefb46c1a3b387e86ca46a9faa1",
99
"artifacts": {},
1010
"failed": false,
1111
"changed": false
1212
},
1313
"github.com/hashload/jhonson": {
1414
"name": "jhonson",
15-
"version": "1.1.4",
16-
"hash": "7f48e0509b98505a12fa80ee39b53aea",
15+
"version": "1.1.5",
16+
"hash": "b4efa1372fdf1109fbaf5a625b702f90",
1717
"artifacts": {},
1818
"failed": false,
1919
"changed": false
2020
},
2121
"github.com/paolo-rossi/delphi-jose-jwt": {
2222
"name": "delphi-jose-jwt",
23-
"version": "v3.0.3",
24-
"hash": "d8b6ff80aff10e83d87219f45fa43ffb",
23+
"version": "v3.2.0",
24+
"hash": "eadfcb98abd01d919ed5be0d0b5cd5e7",
2525
"artifacts": {},
2626
"failed": false,
2727
"changed": false

samples/delphi/auth/boss.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
"mainsrc": "./",
77
"projects": [],
88
"dependencies": {
9-
"github.com/hashload/horse": "^3.0.2",
10-
"github.com/hashload/jhonson": "^1.1.4",
11-
"github.com/paolo-rossi/delphi-jose-jwt": "^v3.0.3"
9+
"github.com/hashload/horse": "^3.1.0",
10+
"github.com/hashload/jhonson": "^1.1.5",
11+
"github.com/paolo-rossi/delphi-jose-jwt": "^v3.2.0"
1212
}
1313
}

samples/delphi/auth/samples_auth.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ begin
1616
THorse.Use(Jhonson);
1717

1818
THorse.Get('/auth',
19-
procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc)
19+
procedure(Req: THorseRequest; Res: THorseResponse)
2020
var
2121
LToken: TJWT;
2222
begin

0 commit comments

Comments
 (0)