Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RND-679] Remove obsolete interface and clean up dependencies #336

Merged
merged 4 commits into from
Jan 8, 2024
Merged
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 .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