Skip to content

Commit

Permalink
[RND-690] Preparation for Meadowlark 0.4.0 Release (#332)
Browse files Browse the repository at this point in the history
* [RND-690] Rename meadowlark image tag in docker

* [RND-690] Update metaed packages

* [RND-690] Update packages

* [RND-690] Minor version update for packages

* Adding notes on README

* Remove Docker Azure Integration documentation since it's no longer available

* Unifying e2e documentation

* Documentation updates

* Update performance testing documentation

* Update design documentation

* Update write performance documentation

* Update format of warning comments on documentation

* Update fastify readme

* Fix default api image name for e2e tests

* Update README.md

Co-authored-by: Stephen Fuqua <[email protected]>

---------

Co-authored-by: Stephen Fuqua <[email protected]>
  • Loading branch information
andonyns and stephenfuqua authored Dec 14, 2023
1 parent 940d110 commit b46c6c6
Show file tree
Hide file tree
Showing 34 changed files with 534 additions and 653 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-elasticsearch-backend",
"main": "dist/index.js",
"version": "0.4.0-pre.7",
"version": "0.4.0",
"description": "Meadowlark backend plugin for elasticsearch",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,8 +19,8 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-core": "0.4.0-pre.7",
"@edfi/meadowlark-utilities": "0.4.0-pre.7",
"@edfi/meadowlark-core": "0.4.0",
"@edfi/meadowlark-utilities": "0.4.0",
"@elastic/elasticsearch": "^8.10.0",
"@elastic/transport": "^8.3.4"
},
Expand All @@ -29,6 +29,6 @@
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"rimraf": "^5.0.5",
"testcontainers": "^10.3.1"
"testcontainers": "^10.3.2"
}
}
10 changes: 5 additions & 5 deletions Meadowlark-js/backends/meadowlark-mongodb-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-mongodb-backend",
"main": "dist/index.js",
"version": "0.4.0-pre.7",
"version": "0.4.0",
"description": "Meadowlark backend plugin for MongoDB",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,11 +19,11 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-authz-server": "0.4.0-pre.7",
"@edfi/meadowlark-core": "0.4.0-pre.7",
"@edfi/meadowlark-utilities": "0.4.0-pre.7",
"@edfi/meadowlark-authz-server": "0.4.0",
"@edfi/meadowlark-core": "0.4.0",
"@edfi/meadowlark-utilities": "0.4.0",
"async-retry": "^1.3.3",
"mongodb": "^5.9.0",
"mongodb": "^5.9.2",
"ramda": "0.29.1"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-opensearch-backend",
"main": "dist/index.js",
"version": "0.4.0-pre.7",
"version": "0.4.0",
"description": "Meadowlark backend plugin for OpenSearch",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,15 +19,15 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-core": "0.4.0-pre.7",
"@edfi/meadowlark-utilities": "0.4.0-pre.7",
"@edfi/meadowlark-core": "0.4.0",
"@edfi/meadowlark-utilities": "0.4.0",
"@opensearch-project/opensearch": "^2.4.0"
},
"devDependencies": {
"@short.io/opensearch-mock": "^0.3.1",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"rimraf": "^5.0.5",
"testcontainers": "^10.3.1"
"testcontainers": "^10.3.2"
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edfi/meadowlark-postgresql-backend",
"main": "dist/index.js",
"version": "0.4.0-pre.7",
"version": "0.4.0",
"description": "Meadowlark backend plugin for PostgreSQL",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -19,20 +19,20 @@
"build:copy-non-ts": "copyfiles -u 1 -e \"**/*.ts\" \"src/**/*\" dist --verbose"
},
"dependencies": {
"@edfi/meadowlark-authz-server": "0.4.0-pre.7",
"@edfi/meadowlark-core": "0.4.0-pre.7",
"@edfi/meadowlark-utilities": "0.4.0-pre.7",
"@edfi/meadowlark-authz-server": "0.4.0",
"@edfi/meadowlark-core": "0.4.0",
"@edfi/meadowlark-utilities": "0.4.0",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"ramda": "0.29.1"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.3.1",
"@types/pg": "^8.10.3",
"@types/pg-format": "^1.0.3",
"@testcontainers/postgresql": "^10.3.2",
"@types/pg": "^8.10.9",
"@types/pg-format": "^1.0.5",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"rimraf": "^5.0.5",
"testcontainers": "^10.3.1"
"testcontainers": "^10.3.2"
}
}
2 changes: 1 addition & 1 deletion Meadowlark-js/lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "0.4.0-pre.7",
"version": "0.4.0",
"npmClient": "npm",
"useWorkspaces": true
}
Loading

0 comments on commit b46c6c6

Please sign in to comment.