donejs / done-ssr

Server Side Rendering for DoneJS
https://www.npmjs.com/package/done-ssr
MIT License
23 stars 11 forks source link

An in-range update of can-stache is breaking the build 🚨 #395

Closed greenkeeper[bot] closed 6 years ago

greenkeeper[bot] commented 6 years ago

Version 3.10.5 of can-stache was just published.

Branch Build failing 🚨
Dependency can-stache
Current Version 3.10.4
Type devDependency

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/donejs/done-ssr/builds/291795373?utm_source=github_status&utm_medium=notification) - βœ… **continuous-integration/appveyor/branch** AppVeyor build succeeded [Details](https://ci.appveyor.com/project/daffl/done-ssr/build/1.0.888)

Release Notes using testHelpers for all dev warning tests

#344

Commits

The new version differs by 3 commits.

  • ce2ff66 Update dist for release
  • 28b89ef Merge pull request #344 from canjs/test-helpers
  • f24c39e using testHelpers for all dev warning tests

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:

greenkeeper[bot] commented 6 years ago

After pinning to 3.10.4 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.

greenkeeper[bot] commented 6 years ago

Version 3.10.6 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes Move from deprecated *self to scope.view
  • Fix *self warnings #345

v3.10.5...v3.10.6

Commits

The new version differs by 3 commits.

  • cf719cc Update dist for release
  • 5318ecd Merge pull request #345 from canjs/fix-star-self-warnings
  • 945a579 Fix *self warnings

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.11.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes Deprecating `*foo` and `{{>*self}}` and documenting `scope`

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.

Commits

The new version differs by 5 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
  • 30bc347 accept filename for intermediate_and_imports (fixes canjs/steal-stache#45)

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.11.1 just got published.

Your tests are passing again with this version. Explicitly upgrade to this version πŸš€

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.13.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes Adding scope.root

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}}
`);

#353

Commits

The new version differs by 30 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 30 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.12.0 just got published.

Your tests are still failing with this version. Compare the changes 🚨

Release Notes Moving %special keywords to scope keyword

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

#352

Commits

The new version differs by commits ahead by 0, behind by 5.

See the full diff