Skip to content

Commit 7030c1d

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-python-6
2 parents 0b5811d + f795e6a commit 7030c1d

File tree

10 files changed

+43
-15
lines changed

10 files changed

+43
-15
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "github-actions" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: 'github-actions' # See documentation for possible values
9+
directory: '/' # Location of package manifests
1010
schedule:
11-
interval: "weekly"
11+
interval: 'weekly'

apps/demo-nextjs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# demo-nextjs
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [518bd26]
8+
- @vector-institute/aieng-auth-core@0.1.2
9+
310
## 0.1.1
411

512
### Patch Changes

apps/demo-nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo-nextjs",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"private": true,
55
"scripts": {
66
"dev": "next dev -p 3001",

apps/demo-react/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# demo-react
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [518bd26]
8+
- @vector-institute/aieng-auth-core@0.1.2
9+
- @vector-institute/aieng-auth-react@0.1.2
10+
311
## 0.1.1
412

513
### Patch Changes

apps/demo-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "demo-react",
33
"private": true,
4-
"version": "0.1.1",
4+
"version": "0.1.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @vector-institute/aieng-auth-core
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- 518bd26: Fix package name references in README from @cyberark-auth/core to @vector-institute/aieng-auth-core
8+
39
## 0.1.1
410

511
### Patch Changes

packages/core/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @cyberark-auth/core
1+
# @vector-institute/aieng-auth-core
22

33
Framework-agnostic CyberArk OAuth authentication core library with PKCE support.
44

@@ -14,11 +14,11 @@ Framework-agnostic CyberArk OAuth authentication core library with PKCE support.
1414
## Installation
1515

1616
```bash
17-
npm install @cyberark-auth/core
17+
npm install @vector-institute/aieng-auth-core
1818
# or
19-
pnpm add @cyberark-auth/core
19+
pnpm add @vector-institute/aieng-auth-core
2020
# or
21-
yarn add @cyberark-auth/core
21+
yarn add @vector-institute/aieng-auth-core
2222
```
2323

2424
## Quick Start
@@ -29,7 +29,7 @@ import {
2929
TokenManager,
3030
MemoryTokenStorage,
3131
type AuthConfig,
32-
} from '@cyberark-auth/core';
32+
} from '@vector-institute/aieng-auth-core';
3333

3434
// Configure authentication
3535
const config: AuthConfig = {
@@ -67,7 +67,7 @@ import {
6767
MemoryTokenStorage,
6868
SessionStorageAdapter,
6969
LocalStorageAdapter,
70-
} from '@cyberark-auth/core';
70+
} from '@vector-institute/aieng-auth-core';
7171

7272
// Memory storage (most secure, lost on refresh)
7373
const memoryStorage = new MemoryTokenStorage();
@@ -82,7 +82,7 @@ const localStorage = new LocalStorageAdapter();
8282
### Token Manager
8383

8484
```typescript
85-
import { TokenManager } from '@cyberark-auth/core';
85+
import { TokenManager } from '@vector-institute/aieng-auth-core';
8686

8787
const manager = new TokenManager(storage);
8888

@@ -109,7 +109,7 @@ await manager.clearTokens();
109109
### Token Validation
110110

111111
```typescript
112-
import { decodeToken, isTokenExpired, validateToken } from '@cyberark-auth/core';
112+
import { decodeToken, isTokenExpired, validateToken } from '@vector-institute/aieng-auth-core';
113113

114114
// Decode JWT
115115
const decoded = decodeToken(accessToken);

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vector-institute/aieng-auth-core",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "Framework-agnostic Google OAuth authentication core library",
55
"keywords": [
66
"google",

packages/react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @vector-institute/aieng-auth-react
22

3+
## 0.1.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [518bd26]
8+
- @vector-institute/aieng-auth-core@0.1.2
9+
310
## 0.1.1
411

512
### Patch Changes

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vector-institute/aieng-auth-react",
3-
"version": "0.1.1",
3+
"version": "0.1.2",
44
"description": "React hooks and components for Google OAuth authentication",
55
"keywords": [
66
"google",

0 commit comments

Comments
 (0)