Skip to content

Commit

Permalink
[RND-680] Remove createSigningKey method (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
andonyns authored Nov 27, 2023
1 parent 1e7f42f commit 57a4f6d
Show file tree
Hide file tree
Showing 20 changed files with 274 additions and 173 deletions.
1 change: 1 addition & 0 deletions .github/workflows/on-pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ jobs:
sudo -u postgres psql -U postgres -c "alter user postgres with password '${{env.POSTGRES_PASSWORD}}';"
- name: Create .env file
if: matrix.tests.type != 'Unit'
run: |
# Create a .env file with proper settings
touch .env
Expand Down
4 changes: 2 additions & 2 deletions Meadowlark-js/.env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The OAUTH_SIGNING_KEY may need quotation marks around the value, unlike other keys.
OAUTH_SIGNING_KEY="<run `openssl rand -base64 256` to create a key>"
# OAuth 2.0 signing key: base 64 encoded, 256 bit key. To create a new one, run `npm run createKey`.
OAUTH_SIGNING_KEY=<signing key>

# With the exception of MONGODB_MAX_NUMBER_OF_RETRIES, do not override MongoDB settings here,
# because the integration tests use an "in memory" # version of MongoDB that is configured automatically.
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.0-pre.4",
"version": "0.4.0-pre.5",
"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.4",
"@edfi/meadowlark-utilities": "0.4.0-pre.4",
"@edfi/meadowlark-core": "0.4.0-pre.5",
"@edfi/meadowlark-utilities": "0.4.0-pre.5",
"@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.2.1"
"testcontainers": "^10.3.1"
}
}
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.4",
"version": "0.4.0-pre.5",
"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.0-pre.4",
"@edfi/meadowlark-core": "0.4.0-pre.4",
"@edfi/meadowlark-utilities": "0.4.0-pre.4",
"@edfi/meadowlark-authz-server": "0.4.0-pre.5",
"@edfi/meadowlark-core": "0.4.0-pre.5",
"@edfi/meadowlark-utilities": "0.4.0-pre.5",
"async-retry": "^1.3.3",
"mongodb": "^5.9.0",
"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.0-pre.4",
"version": "0.4.0-pre.5",
"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.4",
"@edfi/meadowlark-utilities": "0.4.0-pre.4",
"@edfi/meadowlark-core": "0.4.0-pre.5",
"@edfi/meadowlark-utilities": "0.4.0-pre.5",
"@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.2.1"
"testcontainers": "^10.3.1"
}
}
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.4",
"version": "0.4.0-pre.5",
"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.4",
"@edfi/meadowlark-core": "0.4.0-pre.4",
"@edfi/meadowlark-utilities": "0.4.0-pre.4",
"@edfi/meadowlark-authz-server": "0.4.0-pre.5",
"@edfi/meadowlark-core": "0.4.0-pre.5",
"@edfi/meadowlark-utilities": "0.4.0-pre.5",
"pg": "^8.11.3",
"pg-format": "^1.0.4",
"ramda": "0.29.1"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.2.1",
"@testcontainers/postgresql": "^10.3.1",
"@types/pg": "^8.10.3",
"@types/pg-format": "^1.0.3",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"rimraf": "^5.0.5",
"testcontainers": "^10.2.1"
"testcontainers": "^10.3.1"
}
}
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.4",
"version": "0.4.0-pre.5",
"npmClient": "npm",
"useWorkspaces": true
}
Loading

0 comments on commit 57a4f6d

Please sign in to comment.