Skip to content

Commit 5ecbc2d

Browse files
committed
r0b08x [chore] 3/8/2024, 6:23:33 PM
1 parent fe95aa8 commit 5ecbc2d

File tree

4 files changed

+28
-30
lines changed

4 files changed

+28
-30
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
@license p3x-angular-http-cache-interceptor v2024.4.107
2+
@license p3x-angular-http-cache-interceptor v2024.4.114
33

44
🔥 Cache every request in Angular, not only the GET, but all methods of this interceptor, and allows you to interact with the interceptor via specific headers and modify the request, and these specific headers will be not included in the final request
55

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
[//]: #@corifeus-header
22

3-
4-
5-
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://paypal.me/patrikx3) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Corifeus @ Facebook](https://img.shields.io/badge/Facebook-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Uptime Robot ratio (30 days)](https://img.shields.io/uptimerobot/ratio/m780749701-41bcade28c1ea8154eda7cca.svg)](https://stats.uptimerobot.com/9ggnzcWrw)
3+
[![NPM](https://img.shields.io/npm/v/p3x-angular-http-cache-interceptor.svg)](https://www.npmjs.com/package/p3x-angular-http-cache-interceptor) [![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://paypal.me/patrikx3) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Corifeus @ Facebook](https://img.shields.io/badge/Facebook-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software) [![Uptime Robot ratio (30 days)](https://img.shields.io/uptimerobot/ratio/m780749701-41bcade28c1ea8154eda7cca.svg)](https://stats.uptimerobot.com/9ggnzcWrw)
64

75

86

97

108

11-
# 🔥 Cache every request in Angular, not only the GET, but all methods of this interceptor, and allows you to interact with the interceptor via specific headers and modify the request, and these specific headers will be not included in the final request v2024.4.107
9+
# 🔥 Cache every request in Angular, not only the GET, but all methods of this interceptor, and allows you to interact with the interceptor via specific headers and modify the request, and these specific headers will be not included in the final request v2024.4.114
1210

1311

1412

@@ -31,7 +29,7 @@ v20.11.1
3129
# Built on Angular
3230

3331
```text
34-
17.2.1
32+
17.2.4
3533
```
3634

3735

@@ -183,7 +181,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
183181

184182
---
185183

186-
[**P3X-ANGULAR-HTTP-CACHE-INTERCEPTOR**](https://corifeus.com/angular-http-cache-interceptor) Build v2024.4.107
184+
[**P3X-ANGULAR-HTTP-CACHE-INTERCEPTOR**](https://corifeus.com/angular-http-cache-interceptor) Build v2024.4.114
187185

188186
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
189187

README_Angular.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ All my domains ([patrikx3.com](https://patrikx3.com) and [corifeus.com](https://
4747

4848
---
4949

50-
[**P3X-ANGULAR-HTTP-CACHE-INTERCEPTOR**](https://corifeus.com/angular-http-cache-interceptor) Build v2024.4.107
50+
[**P3X-ANGULAR-HTTP-CACHE-INTERCEPTOR**](https://corifeus.com/angular-http-cache-interceptor) Build v2024.4.114
5151

5252
[![Donate for Corifeus / P3X](https://img.shields.io/badge/Donate-Corifeus-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
5353

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p3x-angular-http-cache-interceptor",
3-
"version": "2024.4.107",
3+
"version": "2024.4.114",
44
"corifeus": {
55
"icon": "fas fa-fire",
66
"prefix": "p3x-",
@@ -13,7 +13,7 @@
1313
"build": true,
1414
"cdn": true,
1515
"publish-location": "./dist/angular-http-cache-interceptor",
16-
"angular": "17.2.1"
16+
"angular": "17.2.4"
1717
},
1818
"description": "🔥 Cache every request in Angular, not only the GET, but all methods of this interceptor, and allows you to interact with the interceptor via specific headers and modify the request, and these specific headers will be not included in the final request",
1919
"scripts": {
@@ -52,17 +52,17 @@
5252
},
5353
"homepage": "https://corifeus.com/angular-http-cache-interceptor",
5454
"dependencies": {
55-
"@angular/animations": "^17.2.1",
56-
"@angular/cdk": "^17.2.0",
57-
"@angular/common": "^17.2.1",
58-
"@angular/compiler": "^17.2.1",
59-
"@angular/core": "^17.2.1",
60-
"@angular/forms": "^17.2.1",
61-
"@angular/material": "^17.2.0",
62-
"@angular/platform-browser": "^17.2.1",
63-
"@angular/platform-browser-dynamic": "^17.2.1",
64-
"@angular/router": "^17.2.1",
65-
"@types/node": "^20.11.19",
55+
"@angular/animations": "^17.2.4",
56+
"@angular/cdk": "^17.2.2",
57+
"@angular/common": "^17.2.4",
58+
"@angular/compiler": "^17.2.4",
59+
"@angular/core": "^17.2.4",
60+
"@angular/forms": "^17.2.4",
61+
"@angular/material": "^17.2.2",
62+
"@angular/platform-browser": "^17.2.4",
63+
"@angular/platform-browser-dynamic": "^17.2.4",
64+
"@angular/router": "^17.2.4",
65+
"@types/node": "^20.11.25",
6666
"hash": "^0.2.1",
6767
"highlight.js": "^11.9.0",
6868
"object": "^0.1.1",
@@ -76,20 +76,20 @@
7676
"p3x-interceptor": "npm:p3x-angular-http-cache-interceptor@^2020.4.304"
7777
},
7878
"devDependencies": {
79-
"@angular-devkit/build-angular": "^17.2.0",
80-
"@angular/cli": "^17.2.0",
81-
"@angular/compiler-cli": "^17.2.1",
82-
"@angular/language-service": "^17.2.1",
79+
"@angular-devkit/build-angular": "^17.2.3",
80+
"@angular/cli": "^17.2.3",
81+
"@angular/compiler-cli": "^17.2.4",
82+
"@angular/language-service": "^17.2.4",
8383
"@types/highlight.js": "^9.12.4",
8484
"@types/jasmine": "~5.1.4",
8585
"@types/jasminewd2": "~2.0.13",
86-
"@typescript-eslint/eslint-plugin": "7.0.1",
87-
"@typescript-eslint/parser": "7.0.1",
86+
"@typescript-eslint/eslint-plugin": "7.1.1",
87+
"@typescript-eslint/parser": "7.1.1",
8888
"codelyzer": "^6.0.2",
89-
"corifeus-builder": "^2024.4.106",
90-
"eslint": "^8.56.0",
89+
"corifeus-builder": "^2024.4.123",
90+
"eslint": "^8.57.0",
9191
"eslint-plugin-import": "2.29.1",
92-
"eslint-plugin-jsdoc": "48.1.0",
92+
"eslint-plugin-jsdoc": "48.2.1",
9393
"eslint-plugin-prefer-arrow": "1.2.3",
9494
"jasmine-core": "~5.1.2",
9595
"jasmine-spec-reporter": "~7.0.0",

0 commit comments

Comments
 (0)