musora-content-services 1.0.203 → 1.0.205
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 +4 -0
- package/package.json +1 -1
- package/src/contentMetaData.js +1 -0
- package/src/filterBuilder.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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
|
+
### [1.0.205](https://github.com/railroadmedia/musora-content-services/compare/v1.0.204...v1.0.205) (2024-12-01)
|
|
6
|
+
|
|
7
|
+
### [1.0.204](https://github.com/railroadmedia/musora-content-services/compare/v1.0.203...v1.0.204) (2024-12-01)
|
|
8
|
+
|
|
5
9
|
### [1.0.203](https://github.com/railroadmedia/musora-content-services/compare/v1.0.202...v1.0.203) (2024-12-01)
|
|
6
10
|
|
|
7
11
|
### [1.0.202](https://github.com/railroadmedia/musora-content-services/compare/v1.0.201...v1.0.202) (2024-11-30)
|
package/package.json
CHANGED
package/src/contentMetaData.js
CHANGED
package/src/filterBuilder.js
CHANGED
|
@@ -113,9 +113,9 @@ export class FilterBuilder {
|
|
|
113
113
|
} else if (!this.pullFutureContent) {
|
|
114
114
|
this._andWhere(`published_on <= '${now}'`);
|
|
115
115
|
} else {
|
|
116
|
-
const date = new Date();
|
|
117
|
-
const theFuture = new Date(date.setMonth(date.getMonth() + 18));
|
|
118
|
-
this._andWhere(`published_on <= '${theFuture}'`);
|
|
116
|
+
// const date = new Date();
|
|
117
|
+
// const theFuture = new Date(date.setMonth(date.getMonth() + 18));
|
|
118
|
+
// this._andWhere(`published_on <= '${theFuture}'`);
|
|
119
119
|
}
|
|
120
120
|
return this;
|
|
121
121
|
}
|