Skip to content

Commit

Permalink
Prep v1.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Sep 23, 2023
1 parent b7c10fa commit d4596e1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.8.0

* Allow to pass async function to publishComposite [PR](https://github.com/Meteor-Community-Packages/meteor-publish-composite/pull/156) [@alisnic](https://github.com/alisnic)
* Added Meteor v2.8.1 as an additional minimum build target [@storytellercz](https://github.com/sponsors/StorytellerCZ)

## v1.7.4

* Reformat code to StandardJS & add other community standards
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
Package.describe({
name: 'reywood:publish-composite',
summary: 'Publish a set of related documents from multiple collections with a reactive join',
version: '1.7.4',
version: '1.8.0',
git: 'https://github.com/Meteor-Community-Packages/meteor-publish-composite'
})

Package.onUse((api) => {
api.versionsFrom('1.8.3')
api.versionsFrom(['1.8.3', '2.8.1'])
api.use([
'check',
'ecmascript',
Expand Down
4 changes: 2 additions & 2 deletions tests/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ describe('publishComposite', () => {
}
})

testPublication('Should publish authors to both Authors with children as Function with Multip leLevel', {
testPublication('Should publish authors to both Authors with children as Function with Multiple Level', {
publication: 'publishCommentAuthorsWithChildrenAsFunctionMultipleLevel',

testHandler: (onComplete) => {
Expand Down Expand Up @@ -369,7 +369,7 @@ describe('publishComposite', () => {
}
})

testPublication('Should publish two top level publications specifed with an array', {
testPublication('Should publish two top level publications specified with an array', {
publication: 'twoFixedAuthors',

testHandler: (onComplete) => {
Expand Down

0 comments on commit d4596e1

Please sign in to comment.