Zoltan Kochan
|
e103abe941
|
chore(release): 10.0.0-rc.2
|
2024-12-29 02:47:35 +01:00 |
|
Zoltan Kochan
|
f90a94b474
|
fix: onlyBuiltDependencies (#8921)
close #8920
|
2024-12-29 02:18:01 +01:00 |
|
Khải
|
f89128883f
|
feat(deploy): create dedicated lockfile (#8828)
* feat(deploy): create dedicated lockfile
Closes https://github.com/pnpm/pnpm/issues/8778
* chore: remove a leftover `console.log`
* fix: hoisted should also use dedicated lockfile
* feat: inherit more keys
* docs(changeset): more details
* refactor: remove a variable
* refactor: use `selectedProject.rootDir`
* fix: manifest files
* fix: update lockfile
* fix: accidentally skipped normal dependencies
* test: update
* fix: meta
* fix: remove links to nowhere
* docs: remove the false todo
* fix: transitive workspace dependencies
* fix: package snapshot names
* fix: dependencies that depend on deployed package
* perf: do not repeat computation
* fix: compile error
* refactor: base on allProjects
* fix: add missing `link:` prefix
* test: add some tests
* fix: revert stupid refactor
This reverts commit 000788127c.
* test: more assertions
* test: more assertions
* test: https://github.com/pnpm/pnpm/issues/8778
* test: exact paths
* refactor: use `toBe`
* refactor: divide section
* fix: eslint
* test: fix assertions
* fix: dependencies that depend on deploy package
* perf: cheap operation first
* test: remove `.only`
* test: add assertions
* test: remove unnecessary assertions
* test: remove unnecessary details
* fix: deployed package depends on itself
* docs: remove the other todo
* fix: self-referential dependencies
* test: fix
* test: more assertions
* feat: convert fallbacks to programmer errors
* fix: `file:` protocol
* refactor: more types
* refactor: remove unused variables
* refactor: fix regex
* feat: force-legacy-deploy
* feat: suggest reporting bug and using workaround
* feat: overrides, patchedDependencies, packageExtensions (wip)
* test: fix
* feat: handle `packageExtensions` in a smarter way
* fix: pnpmfile
* docs: change wording
* fix: `packageExtensions` with internal dependencies
* fix: directory resolution location
* refactor: use `rootProjectManifestDir`
* feat: set `overrides` to `undefined` instead
* refactor: remove `as ProjectRootDirRealPath`
* test: packageExtensions
* test: use regex string matchers
* refactor: move new tests to its own file
* fix: patchedDependencies
* fix: eslint
* test: patchedDependencies
* test: fix windows
* fix: pnpmfile checksum
* docs: change wording
* fix: peer dependencies
* docs: omission of peers
* docs: more detailed explanation
* fix: preserve unique peer dependencies suffix
* refactor: code rearrange
* refactor: shorten lines of code
* feat: add `dedupeInjectedDeps` to `InstallCommandOptions`
* test: peer dependencies suffix
* docs(changeset): config -> force-legacy-deploy
* docs(changeset): merge
* docs(changeset): add missing period
|
2024-12-27 17:17:12 +01:00 |
|
Zoltan Kochan
|
b27e7f553a
|
chore(release): 10.0.0-rc.1
|
2024-12-27 14:20:04 +01:00 |
|
Zoltan Kochan
|
878ea8c43b
|
feat!: use an allow list of built dependencies by default (#8897)
|
2024-12-24 14:06:50 +01:00 |
|
Zoltan Kochan
|
3278c588cd
|
chore(release): 10.0.0-rc.0
|
2024-12-16 02:31:45 +01:00 |
|
Zoltan Kochan
|
ac5b9d8e16
|
feat!: ignore the NODE_ENV env variable (#8839)
close #8827
|
2024-12-15 20:24:51 +01:00 |
|
Zoltan Kochan
|
a162703126
|
chore: replace catalogs in pnpm package.json overrides
|
2024-12-11 23:27:02 +01:00 |
|
Zoltan Kochan
|
6483b646fe
|
feat: a new setting for injecting workspace packages (#8836)
|
2024-12-05 17:37:15 +01:00 |
|
Zoltan Kochan
|
3fe70e7897
|
refactor!: all lib versions should start with pnpm major version
|
2024-11-29 01:04:45 +01:00 |
|
Zoltan Kochan
|
9fcc7e808e
|
chore(release): 10.0.0-beta.0
|
2024-11-28 12:35:01 +01:00 |
|
Zoltan Kochan
|
4dd27a894f
|
feat: add an option to install dependencies before running scripts (#8781)
|
2024-11-25 09:02:12 +01:00 |
|
Zoltan Kochan
|
e476b07eb4
|
fix: don't crash when use-node-version is set and there is no node.js (#8785)
close #8769
|
2024-11-19 23:55:40 +01:00 |
|
Zoltan Kochan
|
1dbc56a977
|
fix: proper types of settings in local .npmrc files (#8775)
close #5075
close #8758
|
2024-11-17 17:15:29 +01:00 |
|
Zoltan Kochan
|
c4b8e88656
|
fix: add verify-deps-before-run to settings (#8763)
|
2024-11-15 12:35:10 +01:00 |
|
Khải
|
19d5b51558
|
feat(exec): check dependencies before running scripts (#8645)
* refactor: break a long line into multiple lines
* feat: cache that tracks workspace structures
* feat: handle hash collisions
* docs(changeset): packages-list-cache
* feat(packages-list-cache): store mtime
* fix(packages-list-cache): JSON5 and YAML manifests
* feat(packages-list-cache): add catalogs
* style: sort fields alphabetically
* fix: actually fix it
* lint: fix
* lint: fix
* test(packages-list-cache): test
* feat(exec): check deps before run scripts
Resolves https://github.com/pnpm/pnpm/issues/8585
* style: fix eslint
* feat: use a single lastValidatedTimestamp
* refactor: rearrange
* perf: don't do pointless comparisons
* perf: optimize non-workspace
* perf: optimize sharedWorkspaceLockfile=false
* perf: remove unnecessary fs reads
* refactor: statManifestFile
* perf: skip comparing manifest to lockfile by stats
* feat: add wantedLockfileDir to error message
* refactor: shorten a function name
* refactor: rename a function
* docs: improve wordings
* feat: export `linkedPackagesAreUpToDate`
* feat: make sure lockfile specs satisfy manifest (wip)
* docs: todo
* fix: projectId
* feat: skip install-related scripts
* fix: type errors
* refactor: use tagged union
* refactor: remove unnecessary type expression
* docs: todo
* feat: add linkedPackagesAreUpToDate (wip)
* refactor: rearrange fields
* refactor: remove a temporary variable
* feat: export `getWorkspacePackagesByDirectory`
* feat: make workspacePackages optional
* feat: complete `linkedPackagesAreUpToDate`
* docs: remove unapplicable todo
* docs: explain why check is skipped
* feat: load allProjects and try again
* refactor: remove unused dependencies
* refactor: remove commented-out code
* refactor: replace `else if` with `return`
* feat: use-case without workspace manifest
* perf: skip unnecessary work
* feat: add a guard
* fix: eslint
* refactor: move code to new package
* refactor: sort dependencies
* test: outline
* refactor: extract assertLockfilesEqual for testing
* test: skip failing tests for now
* fix: eslint
* test: assertLockfilesEqual
* refactor: extract statManifestFile for testing
* test: todo
* test: statManifestFile
* test: shouldRunCheck
* refactor: rename a test file
* test: add
* test: todo
* docs: remove a commented-out code
* test: create groups
* test: todo
* test: add
* test: platform agnostic
* test: remove unnecessary scripts
* test: use `assert.strictEqual` instead
* test: export bin locations
* test: nested `pnpm run`
* test: todo
* test: add `cwd` option to `execPnpmSync`
* test: add
* fix: recursive
* test: add
* test: fix package names
* fix: catalogs comparison
* test: add
* refactor: just use ramda filter
* test: add
* test: mutations
* fix: package.json
* fix: jest
* feat(packages-list): debug logs
* feat: add debug messages
* fix: eslint
* test: check debug messages in other case
* docs: add next step
* test: mtime updates without modification
* docs: correct test description
* test: mtime changes
* test: check should be skipped
* docs: remove fulfilled todos
* fix: remove `.only`
* docs: todo
* docs: correct test names
* test: workspace structure changes
* test: packages list cache
* test: add
* refactor: divide a test file into 2
* docs: consistent wordings
* refactor: clearer error messages
* fix: ignore check in recursive nested scripts
* test: no dependencies
* test: print error messages on failures
* test: improve stdout/stderr in error messages
* docs: consistent wordings
* docs: clarify what did what
* test: nested script
* docs: consistent test descriptions
* docs(changeset): correction
* fix: save catalogs to packages list
* test: catalogs
* test: fix
* test: fix windows
* refactor: remove unused option field
* refactor: prefer `!= null`
* feat: use `node_modules` instead
* refactor: rename a package
* refactor: apply suggestion
* refactor: remove workspaceDir
* refactor: move `shouldRunCheck` to `exec`
* feat: rename config key
* refactor: rename a test dir
* refactor: correct grammar
* refactor: make loadPackagesList sync
* test: multiple lockfiles
* feat: prevent deletion of `node_modules`
* feat: skip checking on filtered install
* fix: accidentally dropping catalogs
* refactor: remove unnecessary `Promise.all`
* refactor: use `virtualStoreDir` from config
* refactor: split `opts` into `ctx` and `opts`
* test: fix
* style: fix eslint
* test: fix windows
* feat(exec): add `verifyDepsBeforeRun` to `exec`
* refactor: sync stat
* feat: stop ignoring filtered install
* test: filtered install
* refactor: rearrange imports
* feat: rename "packages list" to "workspace state"
* test: fix
* fix: workspace state on failed install
|
2024-11-15 01:01:09 +01:00 |
|
Zoltan Kochan
|
26a910cbf8
|
chore(release): 10.0.0-alpha.0
|
2024-10-28 04:16:49 +01:00 |
|
Zoltan Kochan
|
32613a05af
|
Merge remote-tracking branch 'origin/main' into v10
|
2024-10-28 04:01:43 +01:00 |
|
Zoltan Kochan
|
0309365fda
|
chore(release): 9.12.3
|
2024-10-28 03:11:09 +01:00 |
|
Zoltan Kochan
|
284d5e9baf
|
Merge remote-tracking branch 'origin/main' into v10
|
2024-10-26 13:33:00 +02:00 |
|
Shion Ichikawa
|
5e98817eaf
|
fix: handles "packageManager": "pnpm" in package.json (#8697)
close #8696
|
2024-10-26 12:58:14 +02:00 |
|
Zoltan Kochan
|
790ce1e869
|
Merge branch 'main' into v10
|
2024-10-25 22:24:10 +02:00 |
|
Zoltan Kochan
|
1dd419cbb4
|
test: fix killing the registry mock server on teardown (#8695)
|
2024-10-25 21:24:08 +02:00 |
|
Zoltan Kochan
|
477e0c1f74
|
feat!: the link command should add overrides (#8653)
|
2024-10-24 16:59:55 +02:00 |
|
Zoltan Kochan
|
50c3aaf46f
|
Merge branch 'main' into v10
|
2024-10-23 14:08:15 +02:00 |
|
Ardeshir Izadi
|
d04f7f2320
|
fix: don't download node, when wanted node version is running (#8673)
close #8391
---------
Co-authored-by: Zoltan Kochan <z@kochan.io>
|
2024-10-21 02:53:47 +02:00 |
|
Zoltan Kochan
|
592e2ef97f
|
feat!: remove prettier and eslint from the default value of public-hoist-pattern (#8621)
close #8378
|
2024-10-09 03:05:10 +02:00 |
|
Zoltan Kochan
|
aae0808b35
|
Merge remote-tracking branch 'origin/main' into v10
|
2024-10-05 02:24:28 +02:00 |
|
Zoltan Kochan
|
5da5e75e08
|
chore(release): 9.12.0
|
2024-10-02 12:19:20 +02:00 |
|
btea
|
9797a1e889
|
refactor: remove useless parameters from the catch statement (#8583)
|
2024-09-29 12:08:48 +02:00 |
|
Zoltan Kochan
|
e9985b6f21
|
feat!: default value of virtual-store-dir-max-length set to 60 on Windows (#8556)
|
2024-09-23 09:30:45 +02:00 |
|
Zoltan Kochan
|
dfcf0347c5
|
feat!: set manage-package-manager-versions to true
|
2024-09-21 01:35:51 +02:00 |
|
Zoltan Kochan
|
fe996fee1d
|
chore(release): 9.10.0
|
2024-09-09 15:43:02 +02:00 |
|
Zoltan Kochan
|
10d8007747
|
chore(release): 9.9.0
|
2024-08-26 17:12:28 +02:00 |
|
Zoltan Kochan
|
ed3ca011ce
|
chore(release): 9.8.0
|
2024-08-22 12:22:59 +02:00 |
|
Emil Nordling
|
33ba536b95
|
fix(package-is-installable): handle null values in wanted platform gracefully (#8431)
* fix(package-is-installable): handle null values in wanted platform gracefully
* refactor: package-is-installable
---------
Co-authored-by: Zoltan Kochan <z@kochan.io>
|
2024-08-22 12:20:39 +02:00 |
|
Zoltan Kochan
|
56861a569a
|
chore(release): 9.7.1
|
2024-08-14 16:43:15 +02:00 |
|
Khải
|
9b4f73caaf
|
chore(scripts): typecheck-only (#8395)
* chore(scripts): typecheck-only
* feat: change all configuration
* feat: include pnpm/ and pnpm/test/
* chore(deps): remove unused dependency
* refactor(typescript-only): use find-packages
* refactor(typescript-only): refactor paths
* fix: typescript-only
* fix: update compile-only
* fix: compile pnpm
* fix: windows
* fix: windows
* chore: meta-updater
* refactor(tsconfig): remove explicit composite
* fix: path in windows
* feat: don't depend on cwd
---------
Co-authored-by: Zoltan Kochan <z@kochan.io>
|
2024-08-11 08:26:01 +02:00 |
|
Zoltan Kochan
|
97c95cca48
|
chore: update typescript to v5.5 (#8364)
* chore: update typescript to v5.5
* fix: some errors
* chore(deps): update @pnpm/logger
* chore(deps): use catalogs
* refactor: remove a type no longer necessary
* chore(deps): revert the catalog changes
This reverts commit 5a3d4394f1.
* refactor: move types to their own files
* refactor: change logger error type
* feat: add pkgsStack to LogBase
* feat: add type param to StreamParser
* refactor: move error fields out for clarity
* style: fix eslint
* feat: nullify non existence fields
* feat: add hint
* feat: remove the nullifications
This reverts commit 955e196032.
* feat: add `package` field
* feat: extend `RequestRetryMessage.error`
* fix: missing `id` field
* fix: statsLogger
* fix: correct types
* fix: pkgsDiff
* refactor: use interfaces
* fix: reportSummary
* fix: revert erroneous change
This reverts commit 81042a0783.
* fix: audit
* fix: silentReporter
* fix: reporter
* fix: eslint
* fix: main.ts
* fix: errorHandler
* refactor: share code
* fix: test/reportingPeerDependencyIssues
* fix: default-reporter/test/index.ts
* fix: test/reportingErrors.ts
* fix: test/execPnpm
---------
Co-authored-by: khai96_ <hvksmr1996@gmail.com>
|
2024-08-09 19:18:32 +02:00 |
|
Zoltan Kochan
|
449041c5aa
|
chore(release): libs
|
2024-08-07 18:07:03 +02:00 |
|
Khải
|
5bf6aaa407
|
refactor: move @pnpm/logger to the monorepo (#8385)
* chore: create @pnpm/logger
* fix: workaround typescript error
* chore: update manifests
* chore(deps): link @pnpm/logger from workspace
|
2024-08-07 18:02:08 +02:00 |
|
Zoltan Kochan
|
2d3a119bb4
|
chore(release): 9.7.0
|
2024-08-07 02:13:26 +02:00 |
|
Zoltan Kochan
|
26b065c193
|
feat: automatically switch to the right pnpm version (#8363)
close #8360
|
2024-08-06 21:59:43 +02:00 |
|
Zoltan Kochan
|
87439cdf35
|
chore(release): libs
|
2024-08-05 13:45:55 +02:00 |
|
Zoltan Kochan
|
d20eed33ab
|
fix(config): update @pnpm/npm-conf (#8372)
close #6679
|
2024-08-03 11:56:36 +02:00 |
|
Zoltan Kochan
|
e7f6330372
|
refactor: add detectIfCurrentPkgIsExecutable to cli-meta package (#8362)
|
2024-07-31 19:19:52 +02:00 |
|
Zoltan Kochan
|
5d059765a8
|
chore(release): libs
|
2024-07-29 15:58:56 +02:00 |
|
Zoltan Kochan
|
3b82169faf
|
chore(release): 9.6.0
|
2024-07-22 01:41:03 +02:00 |
|
Zoltan Kochan
|
0f0e44101d
|
fix: resolve catalogs in overrides (#8321)
close #8303
|
2024-07-22 01:35:30 +02:00 |
|
Zoltan Kochan
|
07a7ac4a93
|
chore(release): 9.5.0
|
2024-07-07 18:27:55 +02:00 |
|