vestauth 0.9.0 → 0.10.0

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
@@ -2,7 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
- [Unreleased](https://github.com/vestauth/vestauth/compare/v0.9.0...main)
5
+ [Unreleased](https://github.com/vestauth/vestauth/compare/v0.10.0...main)
6
+
7
+ ## [0.10.0](https://github.com/vestauth/vestauth/compare/v0.9.1...v0.10.0) (2026-02-10)
8
+
9
+ ### Removed
10
+
11
+ * Remove `-d` and other shorthand log related flags so that `curl` flags like `-d` are not overwritten.
12
+
13
+ ## [0.9.1](https://github.com/vestauth/vestauth/compare/v0.9.0...v0.9.1) (2026-02-06)
14
+
15
+ ### Added
16
+
17
+ * Add keywords package.json
6
18
 
7
19
  ## [0.9.0](https://github.com/vestauth/vestauth/compare/v0.8.8...v0.9.0) (2026-02-06)
8
20
 
package/README.md CHANGED
@@ -637,3 +637,7 @@ You can fork this repo and create [pull requests](https://github.com/vestauth/ve
637
637
 
638
638
  * [github.com/vestauth/vestauth](https://github.com/vestauth/vestauth/issues) - bugs and discussions
639
639
  * [@vestauth 𝕏](https://x.com/vestauthx) (DMs are open)
640
+
641
+ ## Roadmap
642
+
643
+ * Feb 15: Add first vestauth provider `dotenvx as2`
package/package.json CHANGED
@@ -1,9 +1,16 @@
1
1
  {
2
2
  "name": "vestauth",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "auth for agents–from the creator of dotenvx",
5
5
  "keywords": [
6
- "vestauth"
6
+ "vestauth",
7
+ "web-bot-auth",
8
+ "webbotauth",
9
+ "cryptography",
10
+ "ai-agent",
11
+ "agent-auth",
12
+ "rfc9421",
13
+ "http-signatures"
7
14
  ],
8
15
  "homepage": "https://github.com/vestauth/vestauth",
9
16
  "repository": {
@@ -21,10 +21,10 @@ if (commanderVersion && parseInt(commanderVersion.split('.')[0], 10) >= 12) {
21
21
  // global log levels
22
22
  program
23
23
  .usage('vestauth')
24
- .option('-l, --log-level <level>', 'set log level', 'info')
25
- .option('-q, --quiet', 'sets log level to error')
26
- .option('-v, --verbose', 'sets log level to verbose')
27
- .option('-d, --debug', 'sets log level to debug')
24
+ .option('--log-level <level>', 'set log level', 'info')
25
+ .option('--quiet', 'sets log level to error')
26
+ .option('--verbose', 'sets log level to verbose')
27
+ .option('--debug', 'sets log level to debug')
28
28
  .hook('preAction', (thisCommand, actionCommand) => {
29
29
  const options = thisCommand.opts()
30
30