create-feltdb 0.6.2 → 0.6.4

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/dist/create.js CHANGED
@@ -1234,7 +1234,7 @@ NODE_ENV=development
1234
1234
  framework,
1235
1235
  port: 7700,
1236
1236
  replicationPort: 7701,
1237
- studioPort: 3000,
1237
+ studioPort: 7701,
1238
1238
  };
1239
1239
  fs.writeFileSync(path.join(projectDir, 'docker-compose.yml'), generateDockerCompose(dockerConfig));
1240
1240
  fs.writeFileSync(path.join(projectDir, 'Dockerfile'), generateDockerfile(dockerConfig, framework));
@@ -1,4 +1,4 @@
1
1
  // One release train keeps generated applications installable. The repository
2
2
  // validation script checks these values against every workspace manifest.
3
- export const FELTDB_PACKAGE_VERSION = '0.6.2';
3
+ export const FELTDB_PACKAGE_VERSION = '0.6.4';
4
4
  export const feltdbPackageRange = `^${FELTDB_PACKAGE_VERSION}`;
@@ -5856,10 +5856,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
5856
5856
  axum::routing::patch(platform_update_application_member),
5857
5857
  )
5858
5858
  .route("/api/tenants/{tenant_id}", get(get_tenant))
5859
- .route(
5860
- "/api/certification/fixtures/{application_id}",
5861
- axum::routing::delete(delete_certification_fixture),
5862
- )
5863
5859
  .route("/api/keys", get(list_keys).post(create_key))
5864
5860
  .route("/api/keys/{id}", axum::routing::delete(revoke_key))
5865
5861
  .route(
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "create-feltdb",
3
3
  "private": false,
4
4
  "description": "Create a new FeltDB application with one command",
5
- "version": "0.6.2",
5
+ "version": "0.6.4",
6
6
  "license": "MIT",
7
7
  "bin": {
8
8
  "create-feltdb": "bin/create-feltdb.js"