Closed greenkeeper[bot] closed 6 years ago
After pinning to 3.10.2 your tests are passing again. Downgrade this dependency π.
Your tests are passing again with this version. Explicitly upgrade to this version π
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 6 commits.
ce2ff66
Update dist for release
28b89ef
Merge pull request #344 from canjs/test-helpers
f24c39e
using testHelpers for all dev warning tests
d2132aa
Update dist for release
3a19cd3
Merge pull request #341 from canjs/move-to-can-log
64ac09c
Move to can-log
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 9 commits.
cf719cc
Update dist for release
5318ecd
Merge pull request #345 from canjs/fix-star-self-warnings
945a579
Fix *self warnings
ce2ff66
Update dist for release
28b89ef
Merge pull request #344 from canjs/test-helpers
f24c39e
using testHelpers for all dev warning tests
d2132aa
Update dist for release
3a19cd3
Merge pull request #341 from canjs/move-to-can-log
64ac09c
Move to can-log
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
can-view-scope@3.4.0 added a new scope
keyword to access the templateContext and deprecated *foo
and {{>*self}}
. This release officially deprecates these in the docs and adds documentation for the scope
keyword.
The new version differs by 14 commits.
fa287b0
Update dist for release
de8a247
Merge pull request #346 from canjs/add-scope-deprecate-self
deb7446
deprecating *variable and *self and documenting scope (templateContext)
8ca5ff5
Merge pull request #340 from canjs/45-filename
cf719cc
Update dist for release
5318ecd
Merge pull request #345 from canjs/fix-star-self-warnings
945a579
Fix *self warnings
ce2ff66
Update dist for release
28b89ef
Merge pull request #344 from canjs/test-helpers
f24c39e
using testHelpers for all dev warning tests
d2132aa
Update dist for release
3a19cd3
Merge pull request #341 from canjs/move-to-can-log
64ac09c
Move to can-log
30bc347
accept filename for intermediate_and_imports (fixes canjs/steal-stache#45)
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 16 commits.
5f7a7b2
Update dist for release
8c6ad7e
warn less often (#330)
fa287b0
Update dist for release
de8a247
Merge pull request #346 from canjs/add-scope-deprecate-self
deb7446
deprecating *variable and *self and documenting scope (templateContext)
8ca5ff5
Merge pull request #340 from canjs/45-filename
cf719cc
Update dist for release
5318ecd
Merge pull request #345 from canjs/fix-star-self-warnings
945a579
Fix *self warnings
ce2ff66
Update dist for release
28b89ef
Merge pull request #344 from canjs/test-helpers
f24c39e
using testHelpers for all dev warning tests
d2132aa
Update dist for release
3a19cd3
Merge pull request #341 from canjs/move-to-can-log
64ac09c
Move to can-log
There are 16 commits in total.
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
This deprecates the %special
keywords and moves them into a new scope
keyword:
%index
-> scope.index
%key
-> scope.key
%element
-> scope.element
%event
-> scope.event
%viewModel
-> scope.viewModel
%arguments
-> scope.arguments
This also adds two new keywords:
scope.filename
scope.lineNumber
The new version differs by 39 commits.
63a0d05
Update dist for release
a4cdb9f
Merge pull request #352 from canjs/special-template-context
705f229
deprecating %index/@index in favor of scope.index when using #items
b259553
Merge pull request #303 from canjs/migrate-to-can-globals
eb6a287
Merge remote-tracking branch 'origin/master' into special-template-context
e35c883
Landscaper: Remove deprecated can-util methods and replace with can-globals
0826043
Merge pull request #350 from canjs/325-make-each-work-with-plain-objects
9b574b8
Separate handling of plain object and arrays
d8b32d7
Combine object and array each handling
43614c8
Merge pull request #351 from canjs/landscaper/update-parent
ee63cab
Update docs with new @parent & @collection
50ace69
Fixed issue breaking hash expressions with plain objects
318422a
cleaning up warning filename/linenumber
f39c4df
small doc fix
1d9653a
Move remaining %special values to scope in the docs and deprecated %special
There are 39 commits in total.
See the full diff
Your tests are still failing with this version. Compare the changes π¨
This adds a {[scope.root}}
that you can use to access the data passed to a stache renderer function. This allows you to avoid scope walking with recursive partials:
const data = new DefineMap({
name: "Earthworm Jim",
child: {
name: "Grey Worm",
child: {
name: "MyDoom"
}
},
exclaim: '!!!'
});
const view = stache("AppTemplate", `
{{<personAndChildren}}
<span>{{name}} {{scope.root.exclaim}}</span>
{{#./child}}
<div>
{{>personAndChildren this}}
</div>
{{/./child}}
{{/personAndChildren}}
{{>personAndChildren this}}
`);
The new version differs by 44 commits.
52f45ef
Update dist for release
19dfb0d
Merge pull request #353 from canjs/scope-root
d5154dc
adding root scope to scope.root keyword
cc4cdae
alphabetizing scope keys
8d1f818
removing filename metadata since it is set in {{scope.filename}} now
63a0d05
Update dist for release
a4cdb9f
Merge pull request #352 from canjs/special-template-context
705f229
deprecating %index/@index in favor of scope.index when using #items
b259553
Merge pull request #303 from canjs/migrate-to-can-globals
eb6a287
Merge remote-tracking branch 'origin/master' into special-template-context
e35c883
Landscaper: Remove deprecated can-util methods and replace with can-globals
0826043
Merge pull request #350 from canjs/325-make-each-work-with-plain-objects
9b574b8
Separate handling of plain object and arrays
d8b32d7
Combine object and array each handling
43614c8
Merge pull request #351 from canjs/landscaper/update-parent
There are 44 commits in total.
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 6 commits.
ed1c616
Update dist for release
61ffc70
Merge pull request #357 from canjs/index-with-arrays
5c30cca
correctly setting scope.index and deprecating %index/@index with arays
b7cad0a
Update dist for release
7fe91c1
Merge pull request #355 from canjs/3660-docs
5b23836
Fix the Sections docs
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
The new version differs by 8 commits.
ecb46ab
Update dist for release
a918bca
fix scope.index with can-view-live (#361)
ed1c616
Update dist for release
61ffc70
Merge pull request #357 from canjs/index-with-arrays
5c30cca
correctly setting scope.index and deprecating %index/@index with arays
b7cad0a
Update dist for release
7fe91c1
Merge pull request #355 from canjs/3660-docs
5b23836
Fix the Sections docs
See the full diff
Your tests are passing again with this version. Explicitly upgrade to this version π
Instead of
can-stache: Do not use `{{#each people as person}}`, instead use `{{#each people person=value}}`
this warning will now show
filename.stache:1: the `as` keyword is deprecated. Use {{#each people person=value}} instead of {{#each people as person}}.
The new version differs by 11 commits.
a37d152
Update dist for release
4adf951
Merge pull request #364 from canjs/as-line-numbers
c614eca
Updating as
deprecation warning to give filename and lineNumber
ecb46ab
Update dist for release
a918bca
fix scope.index with can-view-live (#361)
ed1c616
Update dist for release
61ffc70
Merge pull request #357 from canjs/index-with-arrays
5c30cca
correctly setting scope.index and deprecating %index/@index with arays
b7cad0a
Update dist for release
7fe91c1
Merge pull request #355 from canjs/3660-docs
5b23836
Fix the Sections docs
See the full diff
Version 3.10.3 of can-stache was just published.
This version is covered by your current version range and after updating it in your project the build failed.
can-stache is a devDependency of this project. It might not break your production code or affect downstream projects, but probably breaks your build or test tools, which may prevent deploying or publishing.
Status Details
- β **continuous-integration/travis-ci/push** The Travis CI build failed [Details](https://travis-ci.org/canjs/can-list-sort/builds/290071867?utm_source=github_status&utm_medium=notification)Release Notes
Preventing scope values from being read multiple times due to warnings#337
Commits
The new version differs by 11 commits.
b6ec488
Update dist for release
b6903ff
Merge pull request #337 from canjs/double-read-with-warning
e4f74fb
Fixing issue with scope value being read multiple times due to warning
f12beea
Merge pull request #334 from canjs/imaustink-patch-1
92e29a2
Update switch.md
b1b8f29
Merge pull request #333 from canjs/imaustink-patch-1
b547f30
Fix closing unless tag in docs
97d3cfe
Merge pull request #331 from canjs/fix-undefined-dev
d1b80fc
Merge branch 'master' into fix-undefined-dev
17ed45e
make warning test dev-only
ca91015
Add a reference to can-log/dev to mustache-core; write a dev log test
See the full diff
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donβt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: