@plasius/auth 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ - **Added**
12
+ - (placeholder)
13
+
14
+ - **Changed**
15
+ - (placeholder)
16
+
17
+ - **Fixed**
18
+ - (placeholder)
19
+
20
+ - **Security**
21
+ - (placeholder)
22
+
23
+ ## [1.0.1] - 2026-02-22
24
+
11
25
  - **Added**
12
26
  - (placeholder)
13
27
 
@@ -57,5 +71,20 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
57
71
 
58
72
  ---
59
73
 
60
- [Unreleased]: https://github.com/Plasius-LTD/auth/compare/v1.0.0...HEAD
74
+ [Unreleased]: https://github.com/Plasius-LTD/auth/compare/v1.0.1...HEAD
61
75
  [1.0.0]: https://github.com/Plasius-LTD/auth/releases/tag/v1.0.0
76
+
77
+ ## [1.0.0] - 2026-02-11
78
+
79
+ - **Added**
80
+ - Initial release.
81
+
82
+ - **Changed**
83
+ - (placeholder)
84
+
85
+ - **Fixed**
86
+ - (placeholder)
87
+
88
+ - **Security**
89
+ - (placeholder)
90
+ [1.0.1]: https://github.com/Plasius-LTD/auth/releases/tag/v1.0.1
package/README.md CHANGED
@@ -1,9 +1,15 @@
1
1
  # @plasius/auth
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@plasius/auth.svg)](https://www.npmjs.com/package/@plasius/auth)
4
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/Plasius-LTD/auth/ci.yml?branch=main&label=build&style=flat)](https://github.com/Plasius-LTD/auth/actions/workflows/ci.yml)
5
+ [![coverage](https://img.shields.io/codecov/c/github/Plasius-LTD/auth)](https://codecov.io/gh/Plasius-LTD/auth)
6
+ [![License](https://img.shields.io/github/license/Plasius-LTD/auth)](./LICENSE)
7
+ [![Code of Conduct](https://img.shields.io/badge/code%20of%20conduct-yes-blue.svg)](./CODE_OF_CONDUCT.md)
8
+ [![Security Policy](https://img.shields.io/badge/security%20policy-yes-orange.svg)](./SECURITY.md)
9
+ [![Changelog](https://img.shields.io/badge/changelog-md-blue.svg)](./CHANGELOG.md)
10
+
4
11
  [![CI](https://github.com/Plasius-LTD/auth/actions/workflows/ci.yml/badge.svg)](https://github.com/Plasius-LTD/auth/actions/workflows/ci.yml)
5
12
  [![CD](https://github.com/Plasius-LTD/auth/actions/workflows/cd.yml/badge.svg)](https://github.com/Plasius-LTD/auth/actions/workflows/cd.yml)
6
- [![License](https://img.shields.io/github/license/Plasius-LTD/auth)](https://github.com/Plasius-LTD/auth)
7
13
 
8
14
  Authentication helpers and React context components for Plasius applications.
9
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/auth",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Authentication helpers and React context for Plasius applications.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -58,16 +58,16 @@
58
58
  "devDependencies": {
59
59
  "@types/node": "^24.3.1",
60
60
  "@types/react": "^19.1.8",
61
- "@typescript-eslint/eslint-plugin": "^8.43.0",
62
- "@typescript-eslint/parser": "^8.43.0",
63
- "@vitest/coverage-v8": "^3.2.4",
64
- "eslint": "^9.35.0",
61
+ "@typescript-eslint/eslint-plugin": "^8.56.0",
62
+ "@typescript-eslint/parser": "^8.56.0",
63
+ "@vitest/coverage-v8": "^4.0.18",
64
+ "eslint": "^10.0.1",
65
65
  "react": "^19.1.0",
66
66
  "rimraf": "^6.0.1",
67
67
  "tsup": "^8.5.0",
68
68
  "tsx": "^4.20.5",
69
69
  "typescript": "^5.9.2",
70
- "vitest": "^3.2.4"
70
+ "vitest": "^4.0.18"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
@@ -82,5 +82,8 @@
82
82
  "url": "https://github.com/sponsors/Plasius-LTD"
83
83
  }
84
84
  ],
85
+ "overrides": {
86
+ "minimatch": "^10.2.1"
87
+ },
85
88
  "private": false
86
89
  }