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

bundled dependency updates #3842

Merged
merged 4 commits into from
Nov 26, 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
4 changes: 2 additions & 2 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
"devDependencies": {
"@terascope/types": "~1.3.1",
"bunyan": "~1.8.15",
"elasticsearch-store": "~1.4.1",
"elasticsearch-store": "~1.4.2",
"fs-extra": "~11.2.0",
"ms": "~2.1.3",
"nanoid": "~5.0.8",
"semver": "~7.6.3",
"signale": "~1.4.0",
"uuid": "~10.0.0"
"uuid": "~11.0.3"
},
"engines": {
"node": ">=18.18.0",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
"@types/lodash": "~4.17.13",
"debug": "~4.3.7",
"ms": "~2.1.3",
"nan": "~2.19.0"
"nan": "~2.22.0"
},
"devDependencies": {
"@eslint/js": "~9.14.0",
"@eslint/js": "~9.15.0",
"@swc/core": "1.4.0",
"@swc/jest": "~0.2.36",
"@types/bluebird": "~3.5.42",
Expand All @@ -57,9 +57,9 @@
"@types/fs-extra": "~11.0.4",
"@types/jest": "~29.5.14",
"@types/lodash": "~4.17.13",
"@types/node": "~18.14.2",
"@types/node": "~22.9.3",
"@types/uuid": "~10.0.0",
"eslint": "~9.12.0",
"eslint": "~9.15.0",
"jest": "~29.7.0",
"jest-extended": "~4.0.2",
"jest-watch-typeahead": "~2.2.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/data-mate/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@terascope/data-mate",
"displayName": "Data-Mate",
"version": "1.4.1",
"version": "1.4.2",
"description": "Library of data validations/transformations",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/data-mate#readme",
"repository": {
Expand Down Expand Up @@ -40,13 +40,13 @@
"ip6addr": "~0.2.5",
"ipaddr.js": "~2.2.0",
"is-cidr": "~5.1.0",
"jexl": "~2.2.2",
"jexl": "~2.3.0",
"lodash": "~4.17.21",
"mnemonist": "~0.39.8",
"uuid": "~10.0.0",
"uuid": "~11.0.3",
"valid-url": "~1.0.9",
"validator": "~13.12.0",
"xlucene-parser": "~1.4.1"
"xlucene-parser": "~1.4.2"
},
"devDependencies": {
"@types/ip6addr": "~0.2.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/elasticsearch-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@opensearch-project/opensearch": "~1.2.0",
"@types/elasticsearch": "~5.0.43",
"elasticsearch": "~15.4.1",
"elasticsearch-store": "~1.4.1",
"elasticsearch-store": "~1.4.2",
"elasticsearch6": "npm:@elastic/elasticsearch@~6.8.0",
"elasticsearch7": "npm:@elastic/elasticsearch@~7.17.0",
"elasticsearch8": "npm:@elastic/elasticsearch@~8.15.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/elasticsearch-store/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "elasticsearch-store",
"displayName": "Elasticsearch Store",
"version": "1.4.1",
"version": "1.4.2",
"description": "An API for managing an elasticsearch index, with versioning and migration support.",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/elasticsearch-store#readme",
"bugs": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"test:watch": "ts-scripts test --watch . --"
},
"dependencies": {
"@terascope/data-mate": "~1.4.1",
"@terascope/data-mate": "~1.4.2",
"@terascope/data-types": "~1.4.1",
"@terascope/types": "~1.3.1",
"@terascope/utils": "~1.4.1",
Expand All @@ -42,8 +42,8 @@
"opensearch1": "npm:@opensearch-project/opensearch@~1.2.0",
"opensearch2": "npm:@opensearch-project/opensearch@~2.12.0",
"setimmediate": "~1.0.5",
"uuid": "~10.0.0",
"xlucene-translator": "~1.4.1"
"uuid": "~11.0.3",
"xlucene-translator": "~1.4.2"
},
"devDependencies": {
"@types/uuid": "~10.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ function validDistributionAndVersion(

return (distribution === ElasticsearchDistribution.elasticsearch
&& supportedEsVersions.includes(majorVersion))
|| (distribution === ElasticsearchDistribution.opensearch
&& supportedOpenVersions.includes(majorVersion)
);
|| (distribution === ElasticsearchDistribution.opensearch
&& supportedOpenVersions.includes(majorVersion));
}

export function ensureNoTypeInMapping(mappings: Record<string, any> | undefined) {
Expand Down
22 changes: 11 additions & 11 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@terascope/eslint-config",
"displayName": "Terascope ESLint Config",
"version": "1.1.1",
"version": "1.1.2",
"description": "A shared eslint config based on eslint-config-airbnb",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/eslint-config#readme",
"bugs": {
Expand All @@ -19,22 +19,22 @@
},
"dependencies": {
"@eslint/compat": "~1.2.2",
"@eslint/js": "~9.14.0",
"@stylistic/eslint-plugin": "~2.9.0",
"@eslint/js": "~9.15.0",
"@stylistic/eslint-plugin": "~2.11.0",
"@types/eslint__js": "~8.42.3",
"@typescript-eslint/eslint-plugin": "~8.9.0",
"@typescript-eslint/parser": "~8.9.0",
"eslint": "~9.12.0",
"@typescript-eslint/eslint-plugin": "~8.15.0",
"@typescript-eslint/parser": "~8.15.0",
"eslint": "~9.15.0",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-jest": "~28.8.3",
"eslint-plugin-jest-dom": "~5.4.0",
"eslint-plugin-jest": "~28.9.0",
"eslint-plugin-jest-dom": "~5.5.0",
"eslint-plugin-jsx-a11y": "~6.10.2",
"eslint-plugin-react": "~7.37.2",
"eslint-plugin-react-hooks": "~5.0.0",
"eslint-plugin-testing-library": "~6.3.0",
"globals": "~15.9.0",
"eslint-plugin-testing-library": "~7.0.0",
"globals": "~15.12.0",
"typescript": "~5.2.2",
"typescript-eslint": "~8.9.0"
"typescript-eslint": "~8.15.0"
},
"engines": {
"node": ">=18.18.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/job-components/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@terascope/job-components",
"displayName": "Job Components",
"version": "1.6.1",
"version": "1.6.2",
"description": "A teraslice library for validating jobs schemas, registering apis, and defining and running new Job APIs",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/job-components#readme",
"bugs": {
Expand Down Expand Up @@ -38,9 +38,9 @@
"convict-format-with-moment": "~6.2.0",
"convict-format-with-validator": "~6.2.0",
"datemath-parser": "~1.0.6",
"import-meta-resolve": "~4.0.0",
"import-meta-resolve": "~4.1.0",
"prom-client": "~15.1.3",
"uuid": "~10.0.0"
"uuid": "~11.0.3"
},
"devDependencies": {
"benchmark": "~2.1.4",
Expand Down
6 changes: 3 additions & 3 deletions packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@terascope/scripts",
"displayName": "Scripts",
"version": "1.5.2",
"version": "1.5.3",
"description": "A collection of terascope monorepo scripts",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/scripts#readme",
"bugs": {
Expand Down Expand Up @@ -35,7 +35,7 @@
"@kubernetes/client-node": "~0.22.0",
"@terascope/utils": "~1.4.1",
"codecov": "~3.8.3",
"execa": "~9.4.0",
"execa": "~9.5.1",
"fs-extra": "~11.2.0",
"globby": "~14.0.2",
"got": "~13.0.0",
Expand All @@ -50,7 +50,7 @@
"package-up": "~5.0.0",
"semver": "~7.6.3",
"signale": "~1.4.0",
"sort-package-json": "~2.10.1",
"sort-package-json": "~2.12.0",
"toposort": "~2.0.2",
"typedoc": "~0.25.13",
"typedoc-plugin-markdown": "~4.0.3",
Expand Down
6 changes: 3 additions & 3 deletions packages/terafoundation/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "terafoundation",
"displayName": "Terafoundation",
"version": "1.6.1",
"version": "1.6.2",
"description": "A Clustering and Foundation tool for Terascope Tools",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/terafoundation#readme",
"bugs": {
Expand All @@ -28,7 +28,7 @@
"test:watch": "ts-scripts test --watch . --"
},
"dependencies": {
"@terascope/file-asset-apis": "~1.0.2",
"@terascope/file-asset-apis": "~1.0.3",
"@terascope/types": "~1.3.1",
"@terascope/utils": "~1.4.1",
"bluebird": "~3.7.2",
Expand All @@ -37,7 +37,7 @@
"convict-format-with-moment": "~6.2.0",
"convict-format-with-validator": "~6.2.0",
"elasticsearch": "~15.4.1",
"elasticsearch-store": "~1.4.1",
"elasticsearch-store": "~1.4.2",
"express": "~4.21.1",
"js-yaml": "~4.1.0",
"nanoid": "~5.0.8",
Expand Down
6 changes: 3 additions & 3 deletions packages/teraslice-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "teraslice-cli",
"displayName": "Teraslice CLI",
"version": "2.8.1",
"version": "2.8.2",
"description": "Command line manager for teraslice jobs, assets, and cluster references.",
"keywords": [
"teraslice"
Expand Down Expand Up @@ -46,7 +46,7 @@
"easy-table": "~1.2.0",
"ejs": "~3.1.10",
"esbuild": "~0.24.0",
"execa": "~9.4.0",
"execa": "~9.5.1",
"fs-extra": "~11.2.0",
"globby": "~14.0.2",
"js-yaml": "~4.1.0",
Expand All @@ -60,7 +60,7 @@
},
"devDependencies": {
"@types/decompress": "~4.2.7",
"@types/diff": "~5.2.2",
"@types/diff": "~6.0.0",
"@types/ejs": "~3.1.5",
"@types/js-yaml": "~4.0.9",
"@types/prompts": "~2.4.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/teraslice-test-harness/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
"fs-extra": "~11.2.0"
},
"devDependencies": {
"@terascope/job-components": "~1.6.1"
"@terascope/job-components": "~1.6.2"
},
"peerDependencies": {
"@terascope/job-components": ">=1.6.1"
"@terascope/job-components": ">=1.6.2"
},
"engines": {
"node": ">=18.18.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/teraslice/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@kubernetes/client-node": "~0.22.0",
"@terascope/elasticsearch-api": "~4.4.1",
"@terascope/job-components": "~1.6.1",
"@terascope/job-components": "~1.6.2",
"@terascope/teraslice-messaging": "~1.7.1",
"@terascope/types": "~1.3.1",
"@terascope/utils": "~1.4.1",
Expand All @@ -63,8 +63,8 @@
"semver": "~7.6.3",
"socket.io": "~1.7.4",
"socket.io-client": "~1.7.4",
"terafoundation": "~1.6.1",
"uuid": "~10.0.0"
"terafoundation": "~1.6.2",
"uuid": "~11.0.3"
},
"devDependencies": {
"@types/archiver": "~6.0.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/ts-transforms/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ts-transforms",
"displayName": "TS Transforms",
"version": "1.4.1",
"version": "1.4.2",
"description": "An ETL framework built upon xlucene-evaluator",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/ts-transforms#readme",
"bugs": {
Expand Down Expand Up @@ -36,12 +36,12 @@
"test:watch": "ts-scripts test --watch . --"
},
"dependencies": {
"@terascope/data-mate": "~1.4.1",
"@terascope/data-mate": "~1.4.2",
"@terascope/types": "~1.3.1",
"@terascope/utils": "~1.4.1",
"awesome-phonenumber": "~7.2.0",
"graphlib": "~2.1.8",
"jexl": "~2.2.2",
"jexl": "~2.3.0",
"nanoid": "~5.0.8",
"valid-url": "~1.0.9",
"validator": "~13.12.0",
Expand All @@ -53,7 +53,7 @@
"@types/valid-url": "~1.0.7",
"@types/validator": "~13.12.2",
"@types/yargs": "~17.0.33",
"execa": "~9.4.0"
"execa": "~9.5.1"
},
"engines": {
"node": ">=18.18.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/xlucene-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xlucene-parser",
"displayName": "xLucene Parser",
"version": "1.4.1",
"version": "1.4.2",
"description": "Flexible Lucene-like evaluator and language parser",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/xlucene-parser#readme",
"repository": {
Expand Down Expand Up @@ -35,7 +35,7 @@
"dependencies": {
"@terascope/types": "~1.3.1",
"@terascope/utils": "~1.4.1",
"peggy": "~4.1.1",
"peggy": "~4.2.0",
"ts-pegjs": "~4.2.1"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/xlucene-translator/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xlucene-translator",
"displayName": "xLucene Translator",
"version": "1.4.1",
"version": "1.4.2",
"description": "Translate xlucene query to database queries",
"homepage": "https://github.com/terascope/teraslice/tree/master/packages/xlucene-translator#readme",
"repository": {
Expand Down Expand Up @@ -32,7 +32,7 @@
"@terascope/types": "~1.3.1",
"@terascope/utils": "~1.4.1",
"@types/elasticsearch": "~5.0.43",
"xlucene-parser": "~1.4.1"
"xlucene-parser": "~1.4.2"
},
"devDependencies": {
"elasticsearch": "~15.4.1"
Expand Down
Loading