From e83d93f55f7e13ca79b0e67d333678a8dc56d8d4 Mon Sep 17 00:00:00 2001 From: Stephen Fuqua Date: Thu, 25 Jan 2024 15:17:53 -0600 Subject: [PATCH] [RND-706] Update the version number (#347) * Update the version number * Revert "Update the version number" This reverts commit 77aa242c78f47a64f770f27fdd9f0b35bb9d6c5e. * Bump to 0.4.1 * Bump to 0.5.0 --- .../package.json | 6 +-- .../meadowlark-mongodb-backend/package.json | 8 +-- .../package.json | 6 +-- .../package.json | 8 +-- Meadowlark-js/lerna.json | 2 +- Meadowlark-js/package-lock.json | 50 +++++++++---------- .../meadowlark-authz-server/package.json | 4 +- .../packages/meadowlark-core/package.json | 4 +- .../meadowlark-utilities/package.json | 2 +- .../services/meadowlark-fastify/package.json | 8 +-- Meadowlark-js/tests/e2e/package.json | 4 +- 11 files changed, 51 insertions(+), 51 deletions(-) diff --git a/Meadowlark-js/backends/meadowlark-elasticsearch-backend/package.json b/Meadowlark-js/backends/meadowlark-elasticsearch-backend/package.json index 9dc00e9d..d7e30303 100644 --- a/Meadowlark-js/backends/meadowlark-elasticsearch-backend/package.json +++ b/Meadowlark-js/backends/meadowlark-elasticsearch-backend/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-elasticsearch-backend", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark backend plugin for elasticsearch", "license": "Apache-2.0", "publishConfig": { @@ -19,8 +19,8 @@ "build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose" }, "dependencies": { - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "@elastic/elasticsearch": "^8.10.0", "@elastic/transport": "^8.3.4" }, diff --git a/Meadowlark-js/backends/meadowlark-mongodb-backend/package.json b/Meadowlark-js/backends/meadowlark-mongodb-backend/package.json index 31d833a1..d0032515 100644 --- a/Meadowlark-js/backends/meadowlark-mongodb-backend/package.json +++ b/Meadowlark-js/backends/meadowlark-mongodb-backend/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-mongodb-backend", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark backend plugin for MongoDB", "license": "Apache-2.0", "publishConfig": { @@ -19,9 +19,9 @@ "build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose" }, "dependencies": { - "@edfi/meadowlark-authz-server": "0.4.1-pre.10", - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-authz-server": "^0.5.0", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "async-retry": "^1.3.3", "mongodb": "^5.9.2", "ramda": "0.29.1" diff --git a/Meadowlark-js/backends/meadowlark-opensearch-backend/package.json b/Meadowlark-js/backends/meadowlark-opensearch-backend/package.json index d7ccc0a9..4001493a 100644 --- a/Meadowlark-js/backends/meadowlark-opensearch-backend/package.json +++ b/Meadowlark-js/backends/meadowlark-opensearch-backend/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-opensearch-backend", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark backend plugin for OpenSearch", "license": "Apache-2.0", "publishConfig": { @@ -19,8 +19,8 @@ "build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose" }, "dependencies": { - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "@opensearch-project/opensearch": "^2.4.0" }, "devDependencies": { diff --git a/Meadowlark-js/backends/meadowlark-postgresql-backend/package.json b/Meadowlark-js/backends/meadowlark-postgresql-backend/package.json index 5a87572e..b52ded2e 100644 --- a/Meadowlark-js/backends/meadowlark-postgresql-backend/package.json +++ b/Meadowlark-js/backends/meadowlark-postgresql-backend/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-postgresql-backend", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark backend plugin for PostgreSQL", "license": "Apache-2.0", "publishConfig": { @@ -19,9 +19,9 @@ "build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose" }, "dependencies": { - "@edfi/meadowlark-authz-server": "0.4.1-pre.10", - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-authz-server": "^0.5.0", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "pg": "^8.11.3", "pg-format": "^1.0.4", "ramda": "0.29.1" diff --git a/Meadowlark-js/lerna.json b/Meadowlark-js/lerna.json index 77b71579..d08aece4 100644 --- a/Meadowlark-js/lerna.json +++ b/Meadowlark-js/lerna.json @@ -1,5 +1,5 @@ { "lerna": "8.0.2", - "version": "0.4.1-pre.10", + "version": "0.5.0", "npmClient": "npm" } diff --git a/Meadowlark-js/package-lock.json b/Meadowlark-js/package-lock.json index 3e680f99..87eb1c79 100644 --- a/Meadowlark-js/package-lock.json +++ b/Meadowlark-js/package-lock.json @@ -54,11 +54,11 @@ }, "backends/meadowlark-elasticsearch-backend": { "name": "@edfi/meadowlark-elasticsearch-backend", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "@elastic/elasticsearch": "^8.10.0", "@elastic/transport": "^8.3.4" }, @@ -72,12 +72,12 @@ }, "backends/meadowlark-mongodb-backend": { "name": "@edfi/meadowlark-mongodb-backend", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { - "@edfi/meadowlark-authz-server": "0.4.1-pre.10", - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-authz-server": "^0.5.0", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "async-retry": "^1.3.3", "mongodb": "^5.9.2", "ramda": "0.29.1" @@ -90,11 +90,11 @@ }, "backends/meadowlark-opensearch-backend": { "name": "@edfi/meadowlark-opensearch-backend", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "@opensearch-project/opensearch": "^2.4.0" }, "devDependencies": { @@ -107,12 +107,12 @@ }, "backends/meadowlark-postgresql-backend": { "name": "@edfi/meadowlark-postgresql-backend", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { - "@edfi/meadowlark-authz-server": "0.4.1-pre.10", - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-authz-server": "^0.5.0", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "pg": "^8.11.3", "pg-format": "^1.0.4", "ramda": "0.29.1" @@ -17545,11 +17545,11 @@ }, "packages/meadowlark-authz-server": { "name": "@edfi/meadowlark-authz-server", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { "@apideck/better-ajv-errors": "^0.3.6", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-utilities": "^0.5.0", "ajv": "^8.12.0", "didyoumean2": "^6.0.1", "dotenv": "^16.3.1", @@ -17599,11 +17599,11 @@ }, "packages/meadowlark-core": { "name": "@edfi/meadowlark-core", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { "@apideck/better-ajv-errors": "^0.3.6", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-utilities": "^0.5.0", "@isaacs/ttlcache": "^1.4.1", "ajv": "^8.12.0", "ajv-formats": "^2.1.1", @@ -17681,7 +17681,7 @@ }, "packages/meadowlark-utilities": { "name": "@edfi/meadowlark-utilities", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { "pino": "^8.15.7", @@ -17728,12 +17728,12 @@ }, "services/meadowlark-fastify": { "name": "@edfi/meadowlark-fastify", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "dependencies": { - "@edfi/meadowlark-authz-server": "0.4.1-pre.10", - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-authz-server": "^0.5.0", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "@fastify/rate-limit": "^6.0.1", "dotenv": "^16.3.1", "fastify": "^3.29.5" @@ -17746,10 +17746,10 @@ }, "tests/e2e": { "name": "@edfi/meadowlark-e2e-tests", - "version": "0.4.1-pre.10", + "version": "0.5.0", "license": "Apache-2.0", "devDependencies": { - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-utilities": "^0.5.0", "@testcontainers/mongodb": "^10.3.1", "@testcontainers/postgresql": "^10.3.1", "@types/chance": "^1.1.6", diff --git a/Meadowlark-js/packages/meadowlark-authz-server/package.json b/Meadowlark-js/packages/meadowlark-authz-server/package.json index 873bee68..02009545 100644 --- a/Meadowlark-js/packages/meadowlark-authz-server/package.json +++ b/Meadowlark-js/packages/meadowlark-authz-server/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-authz-server", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark authorization server", "license": "Apache-2.0", "publishConfig": { @@ -14,7 +14,7 @@ ], "dependencies": { "@apideck/better-ajv-errors": "^0.3.6", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-utilities": "^0.5.0", "ajv": "^8.12.0", "didyoumean2": "^6.0.1", "dotenv": "^16.3.1", diff --git a/Meadowlark-js/packages/meadowlark-core/package.json b/Meadowlark-js/packages/meadowlark-core/package.json index 8150b87b..a24462fa 100644 --- a/Meadowlark-js/packages/meadowlark-core/package.json +++ b/Meadowlark-js/packages/meadowlark-core/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-core", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark core functionality", "license": "Apache-2.0", "publishConfig": { @@ -14,7 +14,7 @@ ], "dependencies": { "@apideck/better-ajv-errors": "^0.3.6", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-utilities": "^0.5.0", "@isaacs/ttlcache": "^1.4.1", "ajv": "^8.12.0", "ajv-formats": "^2.1.1", diff --git a/Meadowlark-js/packages/meadowlark-utilities/package.json b/Meadowlark-js/packages/meadowlark-utilities/package.json index 16ed9236..32e66696 100644 --- a/Meadowlark-js/packages/meadowlark-utilities/package.json +++ b/Meadowlark-js/packages/meadowlark-utilities/package.json @@ -1,7 +1,7 @@ { "name": "@edfi/meadowlark-utilities", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark shared utilities", "license": "Apache-2.0", "publishConfig": { diff --git a/Meadowlark-js/services/meadowlark-fastify/package.json b/Meadowlark-js/services/meadowlark-fastify/package.json index 98c3d65f..f334ad70 100644 --- a/Meadowlark-js/services/meadowlark-fastify/package.json +++ b/Meadowlark-js/services/meadowlark-fastify/package.json @@ -1,6 +1,6 @@ { "name": "@edfi/meadowlark-fastify", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark service using Fastify", "license": "Apache-2.0", "publishConfig": { @@ -12,9 +12,9 @@ "/package.json" ], "dependencies": { - "@edfi/meadowlark-authz-server": "0.4.1-pre.10", - "@edfi/meadowlark-core": "0.4.1-pre.10", - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-authz-server": "^0.5.0", + "@edfi/meadowlark-core": "^0.5.0", + "@edfi/meadowlark-utilities": "^0.5.0", "@fastify/rate-limit": "^6.0.1", "dotenv": "^16.3.1", "fastify": "^3.29.5" diff --git a/Meadowlark-js/tests/e2e/package.json b/Meadowlark-js/tests/e2e/package.json index 442281e4..13094896 100644 --- a/Meadowlark-js/tests/e2e/package.json +++ b/Meadowlark-js/tests/e2e/package.json @@ -1,13 +1,13 @@ { "name": "@edfi/meadowlark-e2e-tests", "main": "dist/index.js", - "version": "0.4.1-pre.10", + "version": "0.5.0", "description": "Meadowlark Ed-Fi API end to end tests", "license": "Apache-2.0", "private": true, "files": [], "devDependencies": { - "@edfi/meadowlark-utilities": "0.4.1-pre.10", + "@edfi/meadowlark-utilities": "^0.5.0", "@testcontainers/mongodb": "^10.3.1", "@testcontainers/postgresql": "^10.3.1", "@types/chance": "^1.1.6",