Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/next/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cartridge/controller-example-next",
"private": true,
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
Expand Down
2 changes: 1 addition & 1 deletion examples/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cartridge-node-example",
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"description": "Example of using Cartridge session controller with Node.js",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cartridge/controller-example-svelte",
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "vite dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/connector/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cartridge/connector",
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"description": "Cartridge Controler Connector",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cartridge/controller",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Version Downgrade Concern: This change moves from 0.7.14-alpha.3 to 0.2.0, which is a significant version downgrade. This could cause issues with:

  1. Dependency resolution - Other packages or external dependencies expecting >= 0.7.x may break
  2. Semantic versioning - Going backwards in version numbers violates semver expectations
  3. Package registries - npm/registry may reject downgrades or users with cached higher versions may not update

Recommendation: Consider whether this should be:

  • 0.2.0-alpha.1 (if starting a new 0.2.x prerelease series)
  • 0.8.0 (if this represents new features after 0.7.x)
  • Or if this downgrade is intentional, ensure all consuming packages are updated accordingly

"version": "0.7.14-alpha.3",
"version": "0.2.0",
"description": "Cartridge Controller",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -66,4 +66,4 @@
"vite-plugin-top-level-await": "catalog:",
"vite-plugin-wasm": "catalog:"
}
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Missing newline: The newline at the end of this file was removed. Most linters and formatting tools expect files to end with a newline character.

Suggested change
}
}

2 changes: 1 addition & 1 deletion packages/eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cartridge/eslint",
"private": true,
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"type": "module",
"exports": {
".": "./index.js"
Expand Down
2 changes: 1 addition & 1 deletion packages/keychain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cartridge/keychain",
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/profile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cartridge/profile",
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cartridge/tsconfig",
"private": true,
"version": "0.7.14-alpha.3",
"version": "0.2.0",
"files": [
"base.json",
"react.json"
Expand Down
Loading