spyne 0.21.4 → 0.22.2

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.
@@ -2,10 +2,10 @@ name: Publish Package
2
2
 
3
3
  on:
4
4
  release:
5
- types: [published] # Publishes when you publish a GitHub Release
5
+ types: [published] # Publishes when you publish a GitHub Release
6
6
 
7
7
  permissions:
8
- id-token: write # REQUIRED for npm trusted publishing (OIDC)
8
+ id-token: write # Required for npm trusted publishing / OIDC
9
9
  contents: read
10
10
 
11
11
  jobs:
@@ -14,34 +14,42 @@ jobs:
14
14
 
15
15
  steps:
16
16
  # 1. Checkout repo
17
- - uses: actions/checkout@v5
17
+ - name: Checkout repo
18
+ uses: actions/checkout@v5
18
19
 
19
- # 2. Setup Node (OIDC-safe)
20
- # IMPORTANT: Do NOT set registry-url or npm token
21
- - uses: actions/setup-node@v5
20
+ # 2. Setup Node
21
+ # Do not set registry-url or NODE_AUTH_TOKEN when using npm trusted publishing
22
+ - name: Setup Node
23
+ uses: actions/setup-node@v5
22
24
  with:
23
25
  node-version: '22'
24
26
 
25
- # 3. Ensure modern npm (OIDC + provenance support)
27
+ # 3. Ensure modern npm with trusted publishing / provenance support
26
28
  - name: Update npm to latest
27
29
  run: npm install -g npm@latest
28
30
 
29
- # 4. Install dependencies
31
+ # 4. Confirm versions for debugging
32
+ - name: Confirm Node and npm versions
33
+ run: |
34
+ node --version
35
+ npm --version
36
+
37
+ # 5. Install dependencies
30
38
  - name: Install dependencies
31
39
  run: npm ci
32
40
 
33
- # 5. Build UMD (Webpack)
41
+ # 6. Build UMD
34
42
  - name: Build UMD
35
43
  run: npm run build
36
44
 
37
- # 6. Build ESM (Rollup)
45
+ # 7. Build ESM
38
46
  - name: Build ESM
39
47
  run: npm run build:esm
40
48
 
41
- # 7. Verify build artifacts exist
49
+ # 8. Verify build artifacts exist
42
50
  - name: Verify dist
43
51
  run: npm run verify:dist
44
52
 
45
- # 8. Publish to npm using GitHub trusted publishing
53
+ # 9. Publish to npm using GitHub trusted publishing
46
54
  - name: Publish to npm
47
55
  run: npm publish --provenance
package/README.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  [![NPM version](https://img.shields.io/npm/v/spyne.svg?longCache=true&style=flat-square)](https://www.npmjs.com/package/spyne)
4
4
  [![GitHub license](https://img.shields.io/github/license/spynejs/spyne.svg?longCache=true&style=flat-square)](https://github.com/spynejs/spyne/blob/master/LICENSE)
5
- [![Build Status](https://app.travis-ci.com/spynejs/spyne.svg?token=tUNpKxHHHcwypyVzqWmD&branch=main)](https://travis-ci.com/spynejs/spyne)
5
+ ![Publish Package](https://github.com/spynejs/spyne/actions/workflows/publish.yml/badge.svg)
6
+
6
7
 
7
8
  SpyneJS is a full frontend framework for building modular, scalable web applications — structured for collaborative development between developers and AI assistants.
8
9