-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Comparing changes
Open a pull request
base repository: yarnpkg/berry
base: ea39bf05158c791ed51cc924284ac4603be4a5ba
head repository: yarnpkg/berry
compare: a71d42c2ffd6278a202cccb5fb92c3ac0caf9cae
Commits on Nov 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for eca356a - Browse repository at this point
Copy the full SHA eca356aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d971876 - Browse repository at this point
Copy the full SHA d971876View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99221da - Browse repository at this point
Copy the full SHA 99221daView commit details
Commits on Nov 21, 2023
-
* Update integration-workflow.yml * Update integration-workflow.yml (cherry picked from commit 323ea57)
Configuration menu - View commit details
-
Copy full SHA for 4968d00 - Browse repository at this point
Copy the full SHA 4968d00View commit details -
chore: add lint rule for
semver.validRange
andsemver.Range
(#4407)(cherry picked from commit 0eb915f)
Configuration menu - View commit details
-
Copy full SHA for 13a5dc4 - Browse repository at this point
Copy the full SHA 13a5dc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 42ab01d - Browse repository at this point
Copy the full SHA 42ab01dView commit details -
ci: test on node 18 instead of 17 (#4618)
(cherry picked from commit 0de5adf)
Configuration menu - View commit details
-
Copy full SHA for 4b31ce4 - Browse repository at this point
Copy the full SHA 4b31ce4View commit details -
docs: use explicit version instead of
next
tag fortypedoc
(#4660)(cherry picked from commit ab84e44)
Configuration menu - View commit details
-
Copy full SHA for 7777c5f - Browse repository at this point
Copy the full SHA 7777c5fView commit details -
test: jest improvements (#4650)
* chore: upgrade to jest 27 * chore: upgrade to jest 28 * refactor: don't specify modern timers since they're the new default * test: fix tests on windows * chore: update babel * ci: use shards * ci: try different shard configuration * style: tweak configuration (cherry picked from commit b6273b3)
Configuration menu - View commit details
-
Copy full SHA for 4761fdf - Browse repository at this point
Copy the full SHA 4761fdfView commit details
Commits on Dec 25, 2023
-
refactor: deprecate
FormatType
(#4725)(cherry picked from commit 6386630)
Configuration menu - View commit details
-
Copy full SHA for ce6c7b6 - Browse repository at this point
Copy the full SHA ce6c7b6View commit details -
docs: Cleans up a couple of errors (#4729)
* Clean up a few extra errors * Versions * Update MessageName.ts (cherry picked from commit 3741be5)
Configuration menu - View commit details
-
Copy full SHA for 9e86493 - Browse repository at this point
Copy the full SHA 9e86493View commit details -
refactor: tweak fs.promises patch (#4762)
(cherry picked from commit c637e5b)
Configuration menu - View commit details
-
Copy full SHA for 0000c2c - Browse repository at this point
Copy the full SHA 0000c2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1c93cf6 - Browse repository at this point
Copy the full SHA 1c93cf6View commit details -
refactor: update node types (#4764)
* refactor: update node types * chore: dedupe * refactor: remove unnecessary switch Co-authored-by: merceyz <merceyz@users.noreply.github.com> (cherry picked from commit 6302ecb)
Configuration menu - View commit details
-
Copy full SHA for 38189ee - Browse repository at this point
Copy the full SHA 38189eeView commit details -
chore: replace
@babel/register
withesbuild-wasm
(#5180)* chore: use esbuild for running sources * deps: update esbuild * chore: remove babel setup * refactor: only use builtin sourcemap support * refactor: remove weekly cache pruning A fresh cache is 2212kB for 263 files so unlikely to become a problem. * fix: disable dynamic imports * chore: workaround issue on windows * fix: support node nightly * chore: link to issues * perf: use brotli Runtime performance is roughly the same but the cache size shrinks: ```diff $ du -s node_modules/.cache/yarn/ - 2212 node_modules/.cache/yarn/ + 1464 node_modules/.cache/yarn/ ``` * Minor stylistic tweaks --------- Co-authored-by: MaΓ«l Nison <nison.mael@gmail.com> (cherry picked from commit 8e2028e)
Configuration menu - View commit details
-
Copy full SHA for dab3d8f - Browse repository at this point
Copy the full SHA dab3d8fView commit details
Commits on Jan 30, 2024
-
fix(compat): update patch for
typescript@5.4.0-beta
(#6110)**What's the problem this PR addresses?** The PnP compatibility patch for TypeScript doesn't apply to `typescript@5.4.0-beta`. Ref microsoft/TypeScript#35206 **How did you fix it?** Rebased it. **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed. (cherry picked from commit 16c1d99)
Configuration menu - View commit details
-
Copy full SHA for 49ae6bd - Browse repository at this point
Copy the full SHA 49ae6bdView commit details -
chore(extensions): update list (#6095)
**What's the problem this PR addresses?** Updates the extensions list to include vuetifyjs/vuetify-loader@6634db3 and lock some of the ranges **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed. (cherry picked from commit 65d2864)
Configuration menu - View commit details
-
Copy full SHA for 4ea4cab - Browse repository at this point
Copy the full SHA 4ea4cabView commit details -
Fixes the optional check depending on the order the tree is traversed (β¦
β¦#5840) **What's the problem this PR addresses?** Depending on the order we traversed the dependency tree, it could happen that we'd see a package as optional before seeing the other cases where it was not optional. Because marking the package as "not optional" occurred after the "has this package been traversed before?" check, we were never updating its status from "optional" to "not optional". Fixes #5827 **How did you fix it?** We now check for optionality regardless of whether the package has been seen or not before. I added an order-dependent dragon test to try to prevent regressions. **Checklist** <!--- Don't worry if you miss something, chores are automatically tested. --> <!--- This checklist exists to help you remember doing the chores when you submit a PR. --> <!--- Put an `x` in all the boxes that apply. --> - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). <!-- See https://yarnpkg.com/advanced/contributing#preparing-your-pr-to-be-released for more details. --> <!-- Check with `yarn version check` and fix with `yarn version check -i` --> - [x] I have set the packages that need to be released for my changes to be effective. <!-- The "Testing chores" workflow validates that your PR follows our guidelines. --> <!-- If it doesn't pass, click on it to see details as to what your PR might be missing. --> - [x] I will check that all automated PR checks pass before the PR gets reviewed. (cherry picked from commit 7aa2359)
Configuration menu - View commit details
-
Copy full SHA for 07d90c4 - Browse repository at this point
Copy the full SHA 07d90c4View commit details -
fix(plugin-npm-cli): fix login with Verdaccio (#5983)
**What's the problem this PR addresses?** This commit fixes `yarn npm login` when the remote registry is Verdaccio. - Closes #1044 - Closes #1848 - Closes verdaccio/verdaccio#1737 ... **How did you fix it?** When a user already exists, the registry replies with `409 Conflict`. The official npm client then retrieves the latest user state and inserts a revision, using HTTP basic authentication. This step was missing, and this commits adds it. The change was tested to work with a private Verdaccio registry. It should now be as reliable as the official npm client. ... **Checklist** <!--- Don't worry if you miss something, chores are automatically tested. --> <!--- This checklist exists to help you remember doing the chores when you submit a PR. --> <!--- Put an `x` in all the boxes that apply. --> - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). <!-- See https://yarnpkg.com/advanced/contributing#preparing-your-pr-to-be-released for more details. --> <!-- Check with `yarn version check` and fix with `yarn version check -i` --> - [x] I have set the packages that need to be released for my changes to be effective. <!-- The "Testing chores" workflow validates that your PR follows our guidelines. --> <!-- If it doesn't pass, click on it to see details as to what your PR might be missing. --> - [x] I will check that all automated PR checks pass before the PR gets reviewed. (cherry picked from commit db6210f)
Configuration menu - View commit details
-
Copy full SHA for db3cd21 - Browse repository at this point
Copy the full SHA db3cd21View commit details -
test: update Node.js range for extensionless files (#6035)
**What's the problem this PR addresses?** Node.js v18.19 has been released and contains nodejs/node#49869 so we need to update tests. **How did you fix it?** Updated the version range. **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed. (cherry picked from commit 6ca73db)
Configuration menu - View commit details
-
Copy full SHA for a8857df - Browse repository at this point
Copy the full SHA a8857dfView commit details
Commits on Feb 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for e02b15f - Browse repository at this point
Copy the full SHA e02b15fView commit details -
| Package name | Version | | --- | --- | | `@yarnpkg/cli` | `3.8.0` | | `@yarnpkg/core` | `3.7.0` | | `@yarnpkg/plugin-essentials` | `3.5.0` | | `@yarnpkg/fslib` | `2.10.4` | | `@yarnpkg/plugin-pnp` | `3.2.15` | | `@yarnpkg/pnp` | `3.3.7` | | `@yarnpkg/pnpify` | `3.1.8` | | `@yarnpkg/sdks` | `2.7.3` | | `@yarnpkg/plugin-git` | `2.6.8` | | `@yarnpkg/plugin-npm-cli` | `3.4.2` | | `@yarnpkg/extensions` | `1.1.3` | | `@yarnpkg/plugin-compat` | `3.1.17` |
Configuration menu - View commit details
-
Copy full SHA for a71d42c - Browse repository at this point
Copy the full SHA a71d42cView commit details
There are no files selected for viewing