Skip to content

Commit

Permalink
Merge pull request #485 from StorytellerCZ/release/1.5.0
Browse files Browse the repository at this point in the history
Release v1.5.0
  • Loading branch information
StorytellerCZ authored Mar 11, 2024
2 parents 5d65ea7 + cbbbe39 commit 899fc4e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
meteor: [2.3.1, 2.6.1, 2.7.3, 2.8.1, 2.9.1, 2.12]
meteor: [2.3.1, 2.6.1, 2.7.3, 2.8.1, 2.9.1, 2.12, 2.14]

steps:
- uses: actions/checkout@v3
Expand Down
56 changes: 29 additions & 27 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,62 +1,64 @@
[email protected]
[email protected].1
[email protected].5
[email protected]
[email protected]
[email protected]
[email protected].1
[email protected].2
[email protected]
callback-hook@1.4.0
callback-hook@1.5.1
[email protected]
[email protected]
[email protected]
cultofcoders:grapher@1.4.1
dburles:mongo-collection-instances@0.3.5
cultofcoders:grapher@1.5.0
dburles:mongo-collection-instances@0.4.0
[email protected]
[email protected]
[email protected]
ddp-server@2.6.0
ddp-server@2.7.0
[email protected]
[email protected].2
[email protected].4
[email protected].0
[email protected].3
[email protected].8
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected].2
[email protected].4
[email protected]
herteby:[email protected].6
herteby:[email protected].7
[email protected]
[email protected]
lai:collection-extensions@0.2.1_1
local-test:cultofcoders:grapher@1.4.1
[email protected].1
matb33:collection-hooks@1.1.2
meteor@1.10.3
lai:collection-extensions@0.4.0
local-test:cultofcoders:grapher@1.5.0
[email protected].3
matb33:collection-hooks@1.3.1
meteor@1.11.5
meteortesting:[email protected]
meteortesting:[email protected]
[email protected].1
[email protected].9
modules@0.19.0
[email protected].3
[email protected].10
modules@0.20.0
[email protected]
[email protected].3
[email protected].8
[email protected]
[email protected]
[email protected]
npm-mongo@4.12.1
npm-mongo@4.17.2
[email protected]
peerlibrary:[email protected]
peerlibrary:[email protected]
practicalmeteor:[email protected]
[email protected]
[email protected]
[email protected].3
[email protected].8
[email protected]
[email protected]
[email protected]
reywood:publish-composite@1.7.3
reywood:publish-composite@1.8.8
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
zodern:[email protected]
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
- Minimum Meteor version bumped to 2.3
- Update dependencies
- Allow unblocking recursive publications [@Floriferous](https://github.com/Floriferous)
- Reverse link nested objects failure [@bhunjadi](https://github.com/bhunjadi) [PR](https://github.com/cult-of-coders/grapher/pull/400)
- `reywood:publish-composite` updated to v1.8.8
- Added test for Meteor 2.12 and 2.14
- Added support for nested links in nested objects and arrays [@bhunjadi](https://github.com/bhunjadi) [PR](https://github.com/cult-of-coders/grapher/pull/479)

## 1.4.1
- Fix reactive counters when filtering on dates [@vparpoil](https://github.com/vparpoil) [PR](https://github.com/cult-of-coders/grapher/pull/402)
Expand Down
15 changes: 8 additions & 7 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const npmPackages = {
Package.onUse(function (api) {
Npm.depends(npmPackages);

api.versionsFrom(["2.3.1", "2.6.1", "2.7.3", "2.8.1", "2.9.1"]);
api.versionsFrom(["2.3.1", "2.6.1", "2.7.3", "2.8.1", "2.9.1", "3.0-beta.4"]);

var packages = [
"ecmascript",
Expand All @@ -29,9 +29,9 @@ Package.onUse(function (api) {
"check",
"reactive-var",
"mongo",
"matb33:collection-hooks@1.2.0",
"reywood:publish-composite@1.7.3",
"dburles:mongo-collection-instances@0.3.6",
"matb33:collection-hooks@1.3.1",
"reywood:publish-composite@1.8.8",
"dburles:mongo-collection-instances@0.4.0",
"peerlibrary:[email protected]",
"herteby:[email protected]"
];
Expand All @@ -54,9 +54,10 @@ Package.onTest(function (api) {
"random",
"ecmascript",
"underscore",
"matb33:[email protected]",
"reywood:[email protected]",
"dburles:[email protected]",
"matb33:[email protected]",
"reywood:[email protected]",
"dburles:[email protected]",
"peerlibrary:[email protected]",
"herteby:[email protected]",
"mongo"
];
Expand Down

0 comments on commit 899fc4e

Please sign in to comment.