create-cloudinary-react 1.0.0-beta.1 → 1.0.0-beta.7
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/.github/workflows/release.yml +158 -7
- package/.releaserc.json +11 -4
- package/CHANGELOG.md +438 -0
- package/README.md +7 -1
- package/package.json +1 -1
|
@@ -2,6 +2,12 @@ name: Release
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
dry_run:
|
|
7
|
+
description: 'Dry run only (no git push, no tags, no npm publish)'
|
|
8
|
+
required: false
|
|
9
|
+
default: true
|
|
10
|
+
type: boolean
|
|
5
11
|
|
|
6
12
|
permissions:
|
|
7
13
|
contents: write
|
|
@@ -9,15 +15,32 @@ permissions:
|
|
|
9
15
|
issues: write
|
|
10
16
|
pull-requests: write
|
|
11
17
|
|
|
18
|
+
# Allow GitHub Actions to bypass branch protection
|
|
19
|
+
# This is required for semantic-release to push version updates
|
|
20
|
+
|
|
12
21
|
jobs:
|
|
13
22
|
release:
|
|
14
23
|
runs-on: ubuntu-latest
|
|
15
24
|
steps:
|
|
16
25
|
- name: Verify admin permissions
|
|
17
26
|
run: |
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
27
|
+
# Use the repository's permission endpoint which works for both personal and org repos
|
|
28
|
+
RESPONSE=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
29
|
+
-H "Accept: application/vnd.github.v3+json" \
|
|
30
|
+
"https://api.github.com/repos/${{ github.repository }}/collaborators/${{ github.actor }}/permission")
|
|
31
|
+
|
|
32
|
+
# Extract permission using jq if available, otherwise use grep
|
|
33
|
+
if command -v jq &> /dev/null; then
|
|
34
|
+
PERMISSION=$(echo "$RESPONSE" | jq -r '.permission // empty')
|
|
35
|
+
else
|
|
36
|
+
PERMISSION=$(echo "$RESPONSE" | grep -o '"permission":"[^"]*"' | head -1 | cut -d'"' -f4)
|
|
37
|
+
fi
|
|
38
|
+
|
|
39
|
+
if [ -z "$PERMISSION" ]; then
|
|
40
|
+
echo "Warning: Could not determine permission level. Response: $RESPONSE"
|
|
41
|
+
echo "Note: workflow_dispatch requires write access, proceeding..."
|
|
42
|
+
exit 0
|
|
43
|
+
fi
|
|
21
44
|
|
|
22
45
|
if [ "$PERMISSION" != "admin" ]; then
|
|
23
46
|
echo "Error: Only repository admins can trigger releases. Current permission: $PERMISSION"
|
|
@@ -28,18 +51,146 @@ jobs:
|
|
|
28
51
|
|
|
29
52
|
- uses: actions/checkout@v4
|
|
30
53
|
with:
|
|
54
|
+
ref: main
|
|
31
55
|
fetch-depth: 0
|
|
56
|
+
fetch-tags: true
|
|
57
|
+
token: ${{ secrets.RELEASE_TOKEN }}
|
|
58
|
+
|
|
59
|
+
- name: Setup git branch
|
|
60
|
+
run: |
|
|
61
|
+
git fetch --all --tags --force
|
|
62
|
+
git fetch origin '+refs/notes/*:refs/notes/*' || true
|
|
63
|
+
git checkout -B main
|
|
64
|
+
git branch --set-upstream-to=origin/main main
|
|
65
|
+
|
|
66
|
+
- name: Ensure master branch exists (for semantic-release validation)
|
|
67
|
+
run: |
|
|
68
|
+
# semantic-release requires at least one release branch that exists; repo uses main, we declare "master"
|
|
69
|
+
if ! git ls-remote --heads origin master 2>/dev/null | grep -q .; then
|
|
70
|
+
git checkout -b master
|
|
71
|
+
git push origin master
|
|
72
|
+
git checkout main
|
|
73
|
+
fi
|
|
32
74
|
|
|
33
75
|
- uses: actions/setup-node@v4
|
|
34
76
|
with:
|
|
35
|
-
node-version: '
|
|
77
|
+
node-version: '20'
|
|
36
78
|
registry-url: 'https://registry.npmjs.org'
|
|
79
|
+
always-auth: true
|
|
37
80
|
|
|
38
81
|
- run: npm ci
|
|
39
82
|
|
|
40
83
|
- run: npm test --if-present
|
|
41
84
|
|
|
42
|
-
- name:
|
|
85
|
+
- name: Configure git
|
|
86
|
+
run: |
|
|
87
|
+
git config user.name "github-actions[bot]"
|
|
88
|
+
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
89
|
+
|
|
90
|
+
- name: Add semantic-release note (dry run only)
|
|
91
|
+
if: github.event.inputs.dry_run == 'true'
|
|
92
|
+
run: |
|
|
93
|
+
set -e
|
|
94
|
+
if ! git rev-parse --verify v1.0.0-beta.1 >/dev/null 2>&1; then exit 0; fi
|
|
95
|
+
git notes --ref semantic-release-v1.0.0-beta.1 add -f -m '{"channels":["beta"]}' v1.0.0-beta.1
|
|
96
|
+
echo "Added semantic-release note to v1.0.0-beta.1 (local only for dry run)."
|
|
97
|
+
|
|
98
|
+
- name: Dry run mode notice
|
|
99
|
+
if: github.event.inputs.dry_run == 'true'
|
|
100
|
+
run: |
|
|
101
|
+
echo "=============================================="
|
|
102
|
+
echo " DRY RUN MODE - No commits, tags, or publish"
|
|
103
|
+
echo "=============================================="
|
|
104
|
+
echo "Semantic-release will show what WOULD happen."
|
|
105
|
+
echo "To perform a real release, run again and uncheck 'Dry run only'."
|
|
106
|
+
echo ""
|
|
107
|
+
|
|
108
|
+
- name: Ensure v1.0.0-beta.1 exists locally (dry run only)
|
|
109
|
+
if: github.event.inputs.dry_run == 'true'
|
|
110
|
+
run: |
|
|
111
|
+
if ! git rev-parse --verify "v1.0.0-beta.1" >/dev/null 2>&1; then
|
|
112
|
+
# So semantic-release sees a "previous release" and suggests 1.0.0-beta.2 for new commits
|
|
113
|
+
PARENT=$(git rev-parse HEAD~1 2>/dev/null || git rev-parse HEAD)
|
|
114
|
+
git tag -a "v1.0.0-beta.1" "$PARENT" -m "chore: initial beta release (dry-run placeholder)"
|
|
115
|
+
echo "Created local tag v1.0.0-beta.1 at $PARENT so semantic-release can compute next version (1.0.0-beta.2)."
|
|
116
|
+
else
|
|
117
|
+
echo "Tag v1.0.0-beta.1 already exists."
|
|
118
|
+
fi
|
|
119
|
+
|
|
120
|
+
- name: Get version before semantic-release
|
|
121
|
+
id: version-before
|
|
122
|
+
run: |
|
|
123
|
+
VERSION_BEFORE=$(node -p "require('./package.json').version")
|
|
124
|
+
echo "version=$VERSION_BEFORE" >> $GITHUB_OUTPUT
|
|
125
|
+
echo "Current version: $VERSION_BEFORE"
|
|
126
|
+
|
|
127
|
+
- name: Release with semantic-release
|
|
128
|
+
id: release
|
|
129
|
+
env:
|
|
130
|
+
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
|
|
131
|
+
run: |
|
|
132
|
+
set -e
|
|
133
|
+
if [ "${{ github.event.inputs.dry_run }}" = "true" ]; then
|
|
134
|
+
echo "Running semantic-release in DRY RUN mode..."
|
|
135
|
+
npx semantic-release --dry-run 2>&1 | tee semantic-release.log || true
|
|
136
|
+
grep -oE "The next release version is [^[:space:]]+" semantic-release.log 2>/dev/null | sed 's/The next release version is //' > next-version.txt || echo "" > next-version.txt
|
|
137
|
+
else
|
|
138
|
+
npx semantic-release
|
|
139
|
+
fi
|
|
140
|
+
|
|
141
|
+
# npm publish uses OIDC (id-token: write + --provenance). No NPM_TOKEN needed.
|
|
142
|
+
# Require on npmjs.com: Package → Package settings → Trusted publishers →
|
|
143
|
+
# Add: GitHub Actions, org cloudinary-devs, repo create-cloudinary-react, workflow release.yml
|
|
144
|
+
# npm trusted publishing (OIDC) requires npm CLI 11.5.1+; Node 20 ships with npm 9.x.
|
|
145
|
+
# Force OIDC-only: override NPM_CONFIG_USERCONFIG so npm ignores setup-node's .npmrc (which may reference a stale token).
|
|
146
|
+
- name: Publish to npm using trusted publishing
|
|
147
|
+
if: github.event.inputs.dry_run != 'true'
|
|
43
148
|
env:
|
|
44
|
-
|
|
45
|
-
|
|
149
|
+
NODE_AUTH_TOKEN: ''
|
|
150
|
+
NPM_TOKEN: ''
|
|
151
|
+
NPM_CONFIG_USERCONFIG: '${{ runner.temp }}/.npmrc-oidc'
|
|
152
|
+
run: |
|
|
153
|
+
echo "=== Publishing to npm with trusted publishing (OIDC) ==="
|
|
154
|
+
unset NODE_AUTH_TOKEN NPM_TOKEN 2>/dev/null || true
|
|
155
|
+
# Config that has only registry — no _authToken — so npm uses OIDC
|
|
156
|
+
echo "registry=https://registry.npmjs.org/" > "$NPM_CONFIG_USERCONFIG"
|
|
157
|
+
# OIDC for publish requires npm 11.5.1+ (Node 20 ships with npm 9.x)
|
|
158
|
+
npm install -g npm@latest
|
|
159
|
+
npm --version
|
|
160
|
+
|
|
161
|
+
# Get versions
|
|
162
|
+
VERSION_BEFORE="${{ steps.version-before.outputs.version }}"
|
|
163
|
+
VERSION_AFTER=$(node -p "require('./package.json').version")
|
|
164
|
+
|
|
165
|
+
echo "Version before: $VERSION_BEFORE"
|
|
166
|
+
echo "Version after: $VERSION_AFTER"
|
|
167
|
+
|
|
168
|
+
# Only publish if semantic-release created a new version
|
|
169
|
+
if [ "$VERSION_BEFORE" != "$VERSION_AFTER" ]; then
|
|
170
|
+
echo "✓ New version detected: $VERSION_AFTER"
|
|
171
|
+
echo "Publishing to npm..."
|
|
172
|
+
|
|
173
|
+
# Publish using npm publish which supports OIDC/trusted publishing
|
|
174
|
+
# --tag beta required for prerelease versions (1.0.0-beta.x)
|
|
175
|
+
npm publish --provenance --access public --tag beta
|
|
176
|
+
echo "✓ Published $VERSION_AFTER to npm"
|
|
177
|
+
else
|
|
178
|
+
echo "No version change detected (version: $VERSION_AFTER)"
|
|
179
|
+
echo "Skipping npm publish - no new release was created"
|
|
180
|
+
fi
|
|
181
|
+
|
|
182
|
+
- name: Dry run - skip npm publish
|
|
183
|
+
if: github.event.inputs.dry_run == 'true'
|
|
184
|
+
run: |
|
|
185
|
+
echo "=============================================="
|
|
186
|
+
echo " DRY RUN - Skipping npm publish"
|
|
187
|
+
echo "=============================================="
|
|
188
|
+
NEXT_VERSION=$(cat next-version.txt 2>/dev/null || echo "")
|
|
189
|
+
if [ -n "$NEXT_VERSION" ]; then
|
|
190
|
+
echo "Version that WOULD have been published: $NEXT_VERSION"
|
|
191
|
+
else
|
|
192
|
+
echo "Version that WOULD have been published: (check semantic-release output above; might be no new release)"
|
|
193
|
+
echo "Current package.json: $(node -p "require('./package.json').version")"
|
|
194
|
+
fi
|
|
195
|
+
echo ""
|
|
196
|
+
echo "To publish for real, run the workflow again with 'Dry run only' unchecked."
|
package/.releaserc.json
CHANGED
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"branches": [
|
|
3
|
-
"
|
|
3
|
+
"master",
|
|
4
4
|
{
|
|
5
|
-
"name": "
|
|
6
|
-
"prerelease":
|
|
5
|
+
"name": "main",
|
|
6
|
+
"prerelease": "beta"
|
|
7
7
|
}
|
|
8
8
|
],
|
|
9
|
+
"tagFormat": "v${version}",
|
|
9
10
|
"plugins": [
|
|
10
11
|
"@semantic-release/commit-analyzer",
|
|
11
12
|
"@semantic-release/release-notes-generator",
|
|
12
13
|
"@semantic-release/changelog",
|
|
13
|
-
|
|
14
|
+
[
|
|
15
|
+
"@semantic-release/npm",
|
|
16
|
+
{
|
|
17
|
+
"npmPublish": false,
|
|
18
|
+
"tarballDir": "dist"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
14
21
|
[
|
|
15
22
|
"@semantic-release/git",
|
|
16
23
|
{
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,441 @@
|
|
|
1
|
+
# [1.0.0-beta.7](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2026-01-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* use --tag beta when publishing prerelease to npm ([9bb888c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9bb888c0f522e30ed49e5fe8e814c80417ed7a0f))
|
|
7
|
+
|
|
8
|
+
# [1.0.0-beta.6](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2026-01-27)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* use npm 11+ in publish step for OIDC trusted publishing ([a501a0a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a501a0a4d34397b45eda63a7e622792f7e1095ac))
|
|
14
|
+
|
|
15
|
+
# [1.0.0-beta.5](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2026-01-27)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* override NPM_CONFIG_USERCONFIG in publish step for OIDC-only ([ced5cc3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ced5cc32255004846e15bfc77becd5f110e9684c))
|
|
21
|
+
|
|
22
|
+
# [1.0.0-beta.4](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.3...v1.0.0-beta.4) (2026-01-27)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* use OIDC-only for npm publish step ([d06c324](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d06c3245fec9b246fda139fadbd69da54931a170))
|
|
28
|
+
|
|
29
|
+
# [1.0.0-beta.3](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2026-01-27)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* clarify that new versions are published to npm on release ([e6bf007](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e6bf007601ce3da1edde1c0e5eb1ee089bbffae4))
|
|
35
|
+
|
|
36
|
+
# [1.0.0-beta.2](https://github.com/cloudinary-devs/create-cloudinary-react/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2026-01-27)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* clarify release workflow in README ([de81bee](https://github.com/cloudinary-devs/create-cloudinary-react/commit/de81bee417ce1032aa297dd94c366d26ec9beead))
|
|
42
|
+
|
|
43
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
49
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
50
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
51
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
52
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
53
|
+
* add semantic-release note when creating initial tag and when tag exists ([dea082f](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dea082f382e159339b7ba452c497cb8d71a2dca3))
|
|
54
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
55
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
56
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
57
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
58
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
59
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
60
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
61
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
62
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
63
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
64
|
+
* migrate v1.0.0-beta.1 tag for semantic-release (one-time) ([dc21199](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dc2119984ae7eef4a2191a6890e4b8131d0372c6))
|
|
65
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
66
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
67
|
+
* **release:** always move v1.0.0-beta.1 to release commit when present ([9b57cce](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9b57cce0dc9520e19530c96e9073ddbce0509f1c))
|
|
68
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
69
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
70
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
71
|
+
* **release:** prepare v1.0.0-beta.1 in one step and re-fetch before semantic-release ([e8525e0](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e8525e01e03872cfa2d99c97dd5c2799722d73b7))
|
|
72
|
+
* **release:** run v1.0.0-beta.1 prepare inside Release step (real run) ([3b66396](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b66396312c37d9f98e991901528d41f9cc922b5))
|
|
73
|
+
* remove broken v1.0.0-beta.1 tag so semantic-release can create it (one-time) ([24c83cb](https://github.com/cloudinary-devs/create-cloudinary-react/commit/24c83cb0d470f61bc4cdf5a35b86e912f7aba608))
|
|
74
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
75
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
76
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
77
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
78
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
79
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
80
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
81
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
82
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
83
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Features
|
|
87
|
+
|
|
88
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
89
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
90
|
+
|
|
91
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Bug Fixes
|
|
95
|
+
|
|
96
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
97
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
98
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
99
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
100
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
101
|
+
* add semantic-release note when creating initial tag and when tag exists ([dea082f](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dea082f382e159339b7ba452c497cb8d71a2dca3))
|
|
102
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
103
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
104
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
105
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
106
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
107
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
108
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
109
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
110
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
111
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
112
|
+
* migrate v1.0.0-beta.1 tag for semantic-release (one-time) ([dc21199](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dc2119984ae7eef4a2191a6890e4b8131d0372c6))
|
|
113
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
114
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
115
|
+
* **release:** always move v1.0.0-beta.1 to release commit when present ([9b57cce](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9b57cce0dc9520e19530c96e9073ddbce0509f1c))
|
|
116
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
117
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
118
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
119
|
+
* **release:** prepare v1.0.0-beta.1 in one step and re-fetch before semantic-release ([e8525e0](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e8525e01e03872cfa2d99c97dd5c2799722d73b7))
|
|
120
|
+
* **release:** run v1.0.0-beta.1 prepare inside Release step (real run) ([3b66396](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b66396312c37d9f98e991901528d41f9cc922b5))
|
|
121
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
122
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
123
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
124
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
125
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
126
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
127
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
128
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
129
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
130
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
### Features
|
|
134
|
+
|
|
135
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
136
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
137
|
+
|
|
138
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
### Bug Fixes
|
|
142
|
+
|
|
143
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
144
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
145
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
146
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
147
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
148
|
+
* add semantic-release note when creating initial tag and when tag exists ([dea082f](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dea082f382e159339b7ba452c497cb8d71a2dca3))
|
|
149
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
150
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
151
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
152
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
153
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
154
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
155
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
156
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
157
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
158
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
159
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
160
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
161
|
+
* **release:** always move v1.0.0-beta.1 to release commit when present ([9b57cce](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9b57cce0dc9520e19530c96e9073ddbce0509f1c))
|
|
162
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
163
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
164
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
165
|
+
* **release:** prepare v1.0.0-beta.1 in one step and re-fetch before semantic-release ([e8525e0](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e8525e01e03872cfa2d99c97dd5c2799722d73b7))
|
|
166
|
+
* **release:** run v1.0.0-beta.1 prepare inside Release step (real run) ([3b66396](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b66396312c37d9f98e991901528d41f9cc922b5))
|
|
167
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
168
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
169
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
170
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
171
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
172
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
173
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
174
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
175
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
176
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Features
|
|
180
|
+
|
|
181
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
182
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
183
|
+
|
|
184
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
### Bug Fixes
|
|
188
|
+
|
|
189
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
190
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
191
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
192
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
193
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
194
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
195
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
196
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
197
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
198
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
199
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
200
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
201
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
202
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
203
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
204
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
205
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
206
|
+
* **release:** always move v1.0.0-beta.1 to release commit when present ([9b57cce](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9b57cce0dc9520e19530c96e9073ddbce0509f1c))
|
|
207
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
208
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
209
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
210
|
+
* **release:** prepare v1.0.0-beta.1 in one step and re-fetch before semantic-release ([e8525e0](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e8525e01e03872cfa2d99c97dd5c2799722d73b7))
|
|
211
|
+
* **release:** run v1.0.0-beta.1 prepare inside Release step (real run) ([3b66396](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b66396312c37d9f98e991901528d41f9cc922b5))
|
|
212
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
213
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
214
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
215
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
216
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
217
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
218
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
219
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
220
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
221
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
### Features
|
|
225
|
+
|
|
226
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
227
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
228
|
+
|
|
229
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
### Bug Fixes
|
|
233
|
+
|
|
234
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
235
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
236
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
237
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
238
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
239
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
240
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
241
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
242
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
243
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
244
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
245
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
246
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
247
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
248
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
249
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
250
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
251
|
+
* **release:** always move v1.0.0-beta.1 to release commit when present ([9b57cce](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9b57cce0dc9520e19530c96e9073ddbce0509f1c))
|
|
252
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
253
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
254
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
255
|
+
* **release:** prepare v1.0.0-beta.1 in one step and re-fetch before semantic-release ([e8525e0](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e8525e01e03872cfa2d99c97dd5c2799722d73b7))
|
|
256
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
257
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
258
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
259
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
260
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
261
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
262
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
263
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
264
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
265
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Features
|
|
269
|
+
|
|
270
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
271
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
272
|
+
|
|
273
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Bug Fixes
|
|
277
|
+
|
|
278
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
279
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
280
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
281
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
282
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
283
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
284
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
285
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
286
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
287
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
288
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
289
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
290
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
291
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
292
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
293
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
294
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
295
|
+
* **release:** always move v1.0.0-beta.1 to release commit when present ([9b57cce](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9b57cce0dc9520e19530c96e9073ddbce0509f1c))
|
|
296
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
297
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
298
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
299
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
300
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
301
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
302
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
303
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
304
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
305
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
306
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
307
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
308
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Features
|
|
312
|
+
|
|
313
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
314
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
315
|
+
|
|
316
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
### Bug Fixes
|
|
320
|
+
|
|
321
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
322
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
323
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
324
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
325
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
326
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
327
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
328
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
329
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
330
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
331
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
332
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
333
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
334
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
335
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
336
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
337
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
338
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
339
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
340
|
+
* **release:** ensure v1.0.0-beta.1 is visible to semantic-release ([b2d9cfc](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b2d9cfc88f6eb586d1499caa037b86358dedaa7b))
|
|
341
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
342
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
343
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
344
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
345
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
346
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
347
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
348
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
349
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
350
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
### Features
|
|
354
|
+
|
|
355
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
356
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
357
|
+
|
|
358
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Bug Fixes
|
|
362
|
+
|
|
363
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
364
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
365
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
366
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
367
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
368
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
369
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
370
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
371
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
372
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
373
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
374
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
375
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
376
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
377
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
378
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
379
|
+
* **release:** add semantic-release note to existing v1.0.0-beta.1 tag ([3d7d408](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7d408d2a5e63dfedf900686016ecd049f8b607))
|
|
380
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
381
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
382
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
383
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
384
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
385
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
386
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
387
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
388
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
389
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
390
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
391
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
### Features
|
|
395
|
+
|
|
396
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
397
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
398
|
+
|
|
399
|
+
# 1.0.0-beta.1 (2026-01-27)
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
### Bug Fixes
|
|
403
|
+
|
|
404
|
+
* add debug output and explicit npm config for semantic-release ([5cec039](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5cec03918105699758405ed8f9909220427be893))
|
|
405
|
+
* add dummy release branch to satisfy semantic-release validation ([cce1e98](https://github.com/cloudinary-devs/create-cloudinary-react/commit/cce1e98c6bb0265630b5f1bf74b1ba0e30c30fc4))
|
|
406
|
+
* add explicit branch checkout and debug info for semantic-release ([241ef66](https://github.com/cloudinary-devs/create-cloudinary-react/commit/241ef66baf8126019b58bfd42f2a19fe710d6c77))
|
|
407
|
+
* add explicit registry URL to npm plugin config ([1fb7968](https://github.com/cloudinary-devs/create-cloudinary-react/commit/1fb7968a97acc0696be74c019a516b590b4e16ad))
|
|
408
|
+
* add initial tag creation and maintenance branch pattern for semantic-release ([0aab3a3](https://github.com/cloudinary-devs/create-cloudinary-react/commit/0aab3a3788db401683284253cf4a63454cf5ce18))
|
|
409
|
+
* check version change before publishing to npm ([c7cb003](https://github.com/cloudinary-devs/create-cloudinary-react/commit/c7cb0032c420c277245f7266830b219e906529c7))
|
|
410
|
+
* configure git user before creating initial tag ([619fcc1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/619fcc1277846026070c03c9a09a16e1dd77fe0e))
|
|
411
|
+
* configure main as both regular and prerelease branch, fetch all branches ([92475e1](https://github.com/cloudinary-devs/create-cloudinary-react/commit/92475e182873b75999d426f692961b34482283a2))
|
|
412
|
+
* configure npm authentication for trusted publishing with semantic-release ([d2ad403](https://github.com/cloudinary-devs/create-cloudinary-react/commit/d2ad40360371fcdc28c7d97c4074dbc383ee7861))
|
|
413
|
+
* extract npm token from .npmrc for semantic-release with trusted publishing ([a408d4c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/a408d4cca11c60d865aacf327ec28bf739de8cb3))
|
|
414
|
+
* improve admin permission check in release workflow ([989b724](https://github.com/cloudinary-devs/create-cloudinary-react/commit/989b72458d5d48fee5c618ac97de84f85cd2c96d))
|
|
415
|
+
* improve git branch setup for semantic-release detection ([86fd306](https://github.com/cloudinary-devs/create-cloudinary-react/commit/86fd306af6e1f6bea1312169dff96e9b5ce223f3))
|
|
416
|
+
* improve npm token extraction with better debugging and fallbacks ([5c9ec06](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5c9ec064cdfc25dd3685fcb6e258e8739ddf1f9a))
|
|
417
|
+
* improve npm token extraction with multiple locations and fallbacks ([5df6779](https://github.com/cloudinary-devs/create-cloudinary-react/commit/5df6779b0820403c1a0fccf222defe58cb68d62e))
|
|
418
|
+
* improve token extraction and .npmrc formatting for npm authentication ([9f18d51](https://github.com/cloudinary-devs/create-cloudinary-react/commit/9f18d511949e1f2342cf41d6fb253d709a3fb6dd))
|
|
419
|
+
* **release:** add main as regular branch to satisfy semantic-release validation ([beed14e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/beed14e663e2aa61a9e7755c99ea331422680877))
|
|
420
|
+
* **release:** correct dry-run next version and branch config ([767dc50](https://github.com/cloudinary-devs/create-cloudinary-react/commit/767dc506a1453737c6fd87fa8c60de0803fd7f7f))
|
|
421
|
+
* **release:** ensure master branch exists for semantic-release validation ([3556b83](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3556b830a73234e2405332c05de7f7514dc0ed2a))
|
|
422
|
+
* remove duplicate main branch config and improve tag fetching ([ebd8291](https://github.com/cloudinary-devs/create-cloudinary-react/commit/ebd82918fc4c0801d3ce31d8d516e1a77da6676c))
|
|
423
|
+
* remove invalid tarballDir config and improve npm auth setup for semantic-release ([975a278](https://github.com/cloudinary-devs/create-cloudinary-react/commit/975a2785bbd5f03bda736669fdada7fec5599e9a))
|
|
424
|
+
* simplify npm token extraction - use token even if whoami fails ([3d7700a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3d7700a0a29b921b3c881342369d266ff236f700))
|
|
425
|
+
* simplify npm token extraction with multiple fallback methods ([dba9bb2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dba9bb2d1bf0357f95a5ce0f8e2318cb51da55fb))
|
|
426
|
+
* update deployment beta ([3b60ec7](https://github.com/cloudinary-devs/create-cloudinary-react/commit/3b60ec7366b174e35e809453b43da4777ed9b30a))
|
|
427
|
+
* update Node.js version to 20 for semantic-release compatibility ([b1efc7c](https://github.com/cloudinary-devs/create-cloudinary-react/commit/b1efc7c4c6d6e5f1452489c34ab79b827ef7cb8f))
|
|
428
|
+
* update release please ([00a932e](https://github.com/cloudinary-devs/create-cloudinary-react/commit/00a932e17be240a983798e4cc4c0b4f628ff6699))
|
|
429
|
+
* update semantic-release branch configuration with channel ([dcf9eab](https://github.com/cloudinary-devs/create-cloudinary-react/commit/dcf9eaba7814e0e75bcaf9029508211282f5fb50))
|
|
430
|
+
* use base version in manifest for release-please compatibility ([854e4f2](https://github.com/cloudinary-devs/create-cloudinary-react/commit/854e4f258a5fdb5aed66e37d81ec1e07703f7d32))
|
|
431
|
+
* use maintenance branch pattern to satisfy semantic-release validation ([e74ff2a](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e74ff2aff29caf9b9812ee57d7cc1e9729c84e8a))
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
### Features
|
|
435
|
+
|
|
436
|
+
* initial release of create-cloudinary-react-vite ([865b5da](https://github.com/cloudinary-devs/create-cloudinary-react/commit/865b5da1ae437d9e47f69bb11f2ff778fc0ca16a))
|
|
437
|
+
* use trusted publishing by disabling npm publish in semantic-release and publishing manually ([e2dbe19](https://github.com/cloudinary-devs/create-cloudinary-react/commit/e2dbe197b45824843777ee26864d113ae7fadf27))
|
|
438
|
+
|
|
1
439
|
# Changelog
|
|
2
440
|
|
|
3
441
|
## [1.0.0] - TBD
|
package/README.md
CHANGED
|
@@ -53,7 +53,13 @@ These rules help AI assistants understand Cloudinary React SDK patterns, common
|
|
|
53
53
|
|
|
54
54
|
## Development
|
|
55
55
|
|
|
56
|
-
This project uses [Conventional Commits](https://www.conventionalcommits.org/) for version management.
|
|
56
|
+
This project uses [Conventional Commits](https://www.conventionalcommits.org/) for version management and [semantic-release](https://github.com/semantic-release/semantic-release) for automated releases.
|
|
57
|
+
|
|
58
|
+
### Release Process
|
|
59
|
+
|
|
60
|
+
Releases are triggered manually via GitHub Actions workflow. The workflow uses npm trusted publishing (OIDC) for secure package publishing. New versions are published to npm when the workflow runs without dry run.
|
|
61
|
+
|
|
62
|
+
**Dry run (default):** When you run the workflow, "Dry run only" is checked by default. This runs semantic-release in dry-run mode—**no git push, no tags, no npm publish**. Use this to verify the next version and release notes before doing a real release. To publish for real, run the workflow again and **uncheck** "Dry run only". Each real release creates a GitHub release, updates CHANGELOG, and publishes the new version to npm (when the version changes).
|
|
57
63
|
|
|
58
64
|
### Commit Format
|
|
59
65
|
|