Skip to content

Commit

Permalink
fix(deps): update core verdaccio dependencies (5.x) (#4539)
Browse files Browse the repository at this point in the history
* fix(deps): update core verdaccio dependencies

* Create fsevents-patch-2882183fbf-8.zip

* fix types

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Juan Picado <juanpicado19@gmail.com>
  • Loading branch information
renovate[bot] and juanpicado committed Mar 16, 2024
1 parent 6b2fddd commit da50302
Show file tree
Hide file tree
Showing 53 changed files with 797 additions and 172 deletions.
485 changes: 406 additions & 79 deletions .pnp.cjs

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .yarn/cache/fsevents-patch-2882183fbf-8.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@
},
"dependencies": {
"@cypress/request": "3.0.1",
"@verdaccio/config": "7.0.0-next-7.11",
"@verdaccio/core": "7.0.0-next-7.11",
"@verdaccio/config": "7.0.0-next-7.12",
"@verdaccio/core": "7.0.0-next-7.12",
"@verdaccio/local-storage": "10.3.3",
"@verdaccio/logger-7": "7.0.0-next-7.11",
"@verdaccio/middleware": "7.0.0-next-7.11",
"@verdaccio/search": "7.0.0-next.2",
"@verdaccio/logger-7": "7.0.0-next-7.12",
"@verdaccio/middleware": "7.0.0-next-7.12",
"@verdaccio/search": "7.0.0-next-7.1",
"@verdaccio/search-indexer": "7.0.0-next.0",
"@verdaccio/signature": "7.0.0-next.3",
"@verdaccio/streams": "10.2.1",
"@verdaccio/tarball": "12.0.0-next-7.11",
"@verdaccio/ui-theme": "7.0.0-next-7.11",
"@verdaccio/url": "12.0.0-next-7.11",
"@verdaccio/utils": "7.0.0-next-7.11",
"@verdaccio/tarball": "12.0.0-next-7.12",
"@verdaccio/ui-theme": "7.0.0-next-7.12",
"@verdaccio/url": "12.0.0-next-7.12",
"@verdaccio/utils": "7.0.0-next-7.12",
"JSONStream": "1.3.5",
"async": "3.2.5",
"clipanion": "3.2.1",
Expand All @@ -55,8 +56,8 @@
"pkginfo": "0.4.1",
"semver": "7.6.0",
"validator": "13.11.0",
"verdaccio-audit": "12.0.0-next-7.11",
"verdaccio-htpasswd": "12.0.0-next-7.11"
"verdaccio-audit": "12.0.0-next-7.12",
"verdaccio-htpasswd": "12.0.0-next-7.12"
},
"devDependencies": {
"@babel/cli": "7.23.9",
Expand Down
2 changes: 1 addition & 1 deletion src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { getUserAgent } from '@verdaccio/config';
import { pluginUtils } from '@verdaccio/core';
import { errorReportingMiddleware, final, handleError } from '@verdaccio/middleware';
import { log } from '@verdaccio/middleware';
import { SearchMemoryIndexer } from '@verdaccio/search';
import { SearchMemoryIndexer } from '@verdaccio/search-indexer';
import { Config as IConfig } from '@verdaccio/types';

import Auth from '../lib/auth';
Expand Down
2 changes: 1 addition & 1 deletion src/api/web/api/search.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Router } from 'express';

import { SearchMemoryIndexer } from '@verdaccio/search';
import { SearchMemoryIndexer } from '@verdaccio/search-indexer';
import { Manifest } from '@verdaccio/types';

import Auth from '../../../lib/auth';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/storage-utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import _ from 'lodash';

import { pkgUtils } from '@verdaccio/core';
import { SearchMemoryIndexer } from '@verdaccio/search';
import { SearchMemoryIndexer } from '@verdaccio/search-indexer';
import { AbbreviatedManifest, AbbreviatedVersions, Manifest, Version } from '@verdaccio/types';
import { generateRandomHexString } from '@verdaccio/utils';

Expand Down
2 changes: 1 addition & 1 deletion src/lib/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import _ from 'lodash';
import Stream from 'stream';

import { validatioUtils } from '@verdaccio/core';
import { SearchMemoryIndexer } from '@verdaccio/search';
import { SearchMemoryIndexer } from '@verdaccio/search-indexer';
import { ReadTarball } from '@verdaccio/streams';
import {
Callback,
Expand Down

0 comments on commit da50302

Please sign in to comment.