mongodb-pipeline-builder 4.0.4 → 4.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/Readme.md +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [4.2.0](https://github.com/MikeDev75015/mongodb-pipeline-builder/compare/v4.0.4...v4.2.0) (2026-02-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* apply code changes ([b5f8576](https://github.com/MikeDev75015/mongodb-pipeline-builder/commit/b5f85761eadab004c6b95103340e7e65ffce622d))
|
|
11
|
+
|
|
12
|
+
## [4.1.0](https://github.com/MikeDev75015/mongodb-pipeline-builder/compare/v4.0.4...v4.1.0) (2026-02-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* apply code changes ([b5f8576](https://github.com/MikeDev75015/mongodb-pipeline-builder/commit/b5f85761eadab004c6b95103340e7e65ffce622d))
|
|
18
|
+
|
|
5
19
|
### [4.0.4](https://github.com/MikeDev75015/mongodb-pipeline-builder/compare/v4.0.2...v4.0.4) (2026-02-20)
|
|
6
20
|
|
|
7
21
|
### [4.0.3](https://github.com/MikeDev75015/mongodb-pipeline-builder/compare/v4.0.2...v4.0.3) (2026-02-20)
|
package/Readme.md
CHANGED
|
@@ -134,13 +134,12 @@ const pipeline = new PipelineBuilder('users-with-profiles')
|
|
|
134
134
|
|
|
135
135
|
- **[Pipeline Stages](./docs/api/stages.md)** - All MongoDB aggregation stages
|
|
136
136
|
- **[Operators](./docs/api/operators.md)** - Aggregation operators ($match, $group, etc.)
|
|
137
|
-
- **[Helpers](./docs/api/helpers.md)** - Utility functions
|
|
137
|
+
- **[Helpers](./docs/api/helpers.md)** - Utility functions and stage helpers (Field, ProjectHelper, LookupHelper, etc.)
|
|
138
138
|
|
|
139
139
|
### Examples & Tutorials
|
|
140
140
|
|
|
141
141
|
- **[Pagination Examples](./docs/examples/pagination.md)** - Implementing pagination patterns
|
|
142
142
|
- **[Lookup & Join Examples](./docs/examples/lookups.md)** - Working with multiple collections
|
|
143
|
-
- **[Complex Aggregations](./docs/examples/aggregations.md)** - Advanced aggregation patterns
|
|
144
143
|
|
|
145
144
|
---
|
|
146
145
|
|