Skip to content

Commit

Permalink
[RND-679] Remove obsolete interface and clean up dependencies (#336)
Browse files Browse the repository at this point in the history
* Explicitly list packages

* Update lerna

* Update pre-release version

* Remove clinic
  • Loading branch information
stephenfuqua authored Jan 8, 2024
1 parent 7676a24 commit 79fbd0b
Show file tree
Hide file tree
Showing 13 changed files with 5,584 additions and 10,672 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Update versions
if: steps.versions.outputs.update-required
run: npx lerna@6.6.2 version prerelease --exact --no-git-tag-version --preid pre --yes
run: npx lerna version prerelease --exact --no-git-tag-version --preid pre --yes

- name: Set Version
if: steps.versions.outputs.update-required
Expand Down
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.1-pre.2",
"version": "0.4.1-pre.3",
"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.1-pre.2",
"@edfi/meadowlark-utilities": "0.4.1-pre.2",
"@edfi/meadowlark-core": "0.4.1-pre.3",
"@edfi/meadowlark-utilities": "0.4.1-pre.3",
"@elastic/elasticsearch": "^8.10.0",
"@elastic/transport": "^8.3.4"
},
Expand Down
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.1-pre.2",
"version": "0.4.1-pre.3",
"description": "Meadowlark backend plugin for MongoDB",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -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.2",
"@edfi/meadowlark-core": "0.4.1-pre.2",
"@edfi/meadowlark-utilities": "0.4.1-pre.2",
"@edfi/meadowlark-authz-server": "0.4.1-pre.3",
"@edfi/meadowlark-core": "0.4.1-pre.3",
"@edfi/meadowlark-utilities": "0.4.1-pre.3",
"async-retry": "^1.3.3",
"mongodb": "^5.9.2",
"ramda": "0.29.1"
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.1-pre.2",
"version": "0.4.1-pre.3",
"description": "Meadowlark backend plugin for OpenSearch",
"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.1-pre.2",
"@edfi/meadowlark-utilities": "0.4.1-pre.2",
"@edfi/meadowlark-core": "0.4.1-pre.3",
"@edfi/meadowlark-utilities": "0.4.1-pre.3",
"@opensearch-project/opensearch": "^2.4.0"
},
"devDependencies": {
Expand Down
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.1-pre.2",
"version": "0.4.1-pre.3",
"description": "Meadowlark backend plugin for PostgreSQL",
"license": "Apache-2.0",
"publishConfig": {
Expand All @@ -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.2",
"@edfi/meadowlark-core": "0.4.1-pre.2",
"@edfi/meadowlark-utilities": "0.4.1-pre.2",
"@edfi/meadowlark-authz-server": "0.4.1-pre.3",
"@edfi/meadowlark-core": "0.4.1-pre.3",
"@edfi/meadowlark-utilities": "0.4.1-pre.3",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"ramda": "0.29.1"
Expand Down
10 changes: 3 additions & 7 deletions Meadowlark-js/lerna.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"lerna": "6.0.2",
"packages": [
"packages/*"
],
"version": "0.4.1-pre.2",
"npmClient": "npm",
"useWorkspaces": true
"lerna": "8.0.2",
"version": "0.4.1-pre.3",
"npmClient": "npm"
}
Loading

0 comments on commit 79fbd0b

Please sign in to comment.