Sourced from turbo's releases.
Turborepo v2.8.10
What's Changed
create-turbo
- fix: Sanitize git command inputs in create-turbo by
@anthonyshewin vercel/turborepo#11876Changelog
- fix: Move
node-plopto dependencies soPlopTypesresolves for consumers by@anthonyshewin vercel/turborepo#11862- chore: Use 2024 edition in more packages, do not ignore some clippy l… by
@ognevnyin vercel/turborepo#11860- perf: Optimize hot-path hash computation by avoiding clones and using unstable sorts by
@anthonyshewin vercel/turborepo#11872- perf: Replace twox-hash with xxhash-rust and optimize file hashing by
@anthonyshewin vercel/turborepo#11874- fix: Restrict credential file permissions to owner-only by
@anthonyshewin vercel/turborepo#11870- perf: Reduce allocations in globwalk by
@anthonyshewin vercel/turborepo#11528- perf: Replace O(V³) Floyd-Warshall with O(V+E) DFS in watch mode subgraph creation by
@anthonyshewin vercel/turborepo#11878- feat: Generate LLM-friendly markdown alongside --profile trace output by
@anthonyshewin vercel/turborepo#11880- feat: Make
--profileand--anon-profilefilename optional by@anthonyshewin vercel/turborepo#11883- perf: Batch per-package git subprocess calls into repo-wide index by
@anthonyshewin vercel/turborepo#11887- perf: Parallelize and pre-build RepoGitIndex by
@anthonyshewin vercel/turborepo#11889- perf: Pre-compile glob exclusion filter and cache path prefix in file hashing by
@anthonyshewin vercel/turborepo#11891Full Changelog: https://github.com/vercel/turborepo/compare/v2.8.9...v2.8.10
Turborepo v2.8.10-canary.9
What's Changed
Changelog
- perf: Pre-compile glob exclusion filter and cache path prefix in file hashing by
@anthonyshewin vercel/turborepo#11891Full Changelog: https://github.com/vercel/turborepo/compare/v2.8.10-canary.8...v2.8.10-canary.9
Turborepo v2.8.10-canary.8
What's Changed
Changelog
- perf: Parallelize and pre-build RepoGitIndex by
@anthonyshewin vercel/turborepo#11889Full Changelog: https://github.com/vercel/turborepo/compare/v2.8.10-canary.7...v2.8.10-canary.8
Turborepo v2.8.10-canary.7
What's Changed
Changelog
- perf: Batch per-package git subprocess calls into repo-wide index by
@anthonyshewin vercel/turborepo#11887
... (truncated)
1e0e1ae
publish 2.8.10 to registry7cb9f0c
release(turborepo): 2.8.10-canary.9 (#11892)2af1c0d
perf: Pre-compile glob exclusion filter and cache path prefix in file
hashing...31e29c9
release(turborepo): 2.8.10-canary.8 (#11890)5cbeef3
perf: Parallelize and pre-build RepoGitIndex (#11889)a4213a1
release(turborepo): 2.8.10-canary.7 (#11888)42ab7fc
perf: Batch per-package git subprocess calls into repo-wide index (#11887)48f5a2b
release(turborepo): 2.8.10-canary.6 (#11885)8e3395e
feat: Make --profile and --anon-profile
filename optional (#11883)5febe7f
release(turborepo): 2.8.10-canary.5 (#11884)Sourced from eslint's releases.
v10.0.1
Bug Fixes
c87d5bdfix: update eslint (#20531) (renovate[bot])d841001fix: updateminimatchto10.2.1to address security vulnerabilities (#20519) (루밀LuMir)04c2147fix: update error message for unused suppressions (#20496) (fnx)38b089cfix: update dependency@eslint/config-arrayto ^0.23.1 (#20484) (renovate[bot])Documentation
5b3dbcedocs: add AI acknowledgement section to templates (#20431) (루밀LuMir)6f23076docs: toggle nav in no-JS mode (#20476) (Tanuj Kanti)b69cfb3docs: Update README (GitHub Actions Bot)Chores
e5c281fchore: updates for v9.39.3 release (Jenkins)8c3832achore: update@typescript-eslint/parserto ^8.56.0 (#20514) (Milos Djermanovic)8330d23test: add tests for config-api (#20493) (Milos Djermanovic)37d6e91chore: remove eslint v10 prereleases from eslint-config-eslint deps (#20494) (Milos Djermanovic)da7cd0erefactor: cleanup error message templates (#20479) (Francesco Trotta)84fb885chore: package.json update for@eslint/jsrelease (Jenkins)1f66734chore: addeslinttopeerDependenciesof@eslint/js(#20467) (Milos Djermanovic)
0bd5497
10.0.1ddb80ef
Build: changelog update for 10.0.1c87d5bd
fix: update eslint (#20531)e5c281f
chore: updates for v9.39.3 released841001
fix: update minimatch to 10.2.1 to address
security vulnerabilities (#20519)8c3832a
chore: update @typescript-eslint/parser to ^8.56.0 (#20514)5b3dbce
docs: add AI acknowledgement section to templates (#20431)04c2147
fix: update error message for unused suppressions (#20496)8330d23
test: add tests for config-api (#20493)37d6e91
chore: remove eslint v10 prereleases from eslint-config-eslint deps (#20494)Sourced from @langchain/core's
releases.
@langchain/core@1.1.26Patch Changes
- #10085
ed6ea53Thanks@colifran! - fix(google): tool_calls are not preserved when concatenating AIMessageChunks
@langchain/core@1.1.25Patch Changes
#10002
27186c5Thanks@aditya-gg04! - fix(core): support reasoning/thinking blocks in StringOutputParser#10077
05396f7Thanks@christian-bromann! - feat(core): add ContextOverflowError, raise in anthropic and openai#10081
5a6f26bThanks@hntrl! - feat(core): add namespace-based symbol branding for error class hierarchiesIntroduces
createNamespaceutility for hierarchical symbol-based branding of class hierarchies. All LangChain error classes now use this pattern, replacing hand-rolled duck-typeisInstancechecks with reliable cross-realmSymbol.for-based identity.
- New
LangChainErrorbase class that all LangChain errors extend- New
createNamespace/NamespaceAPI in@langchain/core/utils/namespace- Refactored
ModelAbortError,ContextOverflowErrorto use namespace branding- Added
ContextOverflowError.fromError()static factory method- Deprecated
addLangChainErrorFieldsin favor ofLangChainErrorsubclasses- Migrated Google provider errors (
GoogleError,ConfigurationError, etc.) to namespace branding- Updated Anthropic and OpenAI providers to use
ContextOverflowError.fromError()
Sourced from @langchain/langgraph's
releases.
@langchain/langgraph-checkpoint-mongodb@1.1.5Patch Changes
- #1856
a9fa28bThanks@christian-bromann! - retry release: Updates the checkpoint-mongodb to append client metadata
@langchain/langgraph@1.1.5Patch Changes
f38b91c
chore: version packages (#1974)