canjs / can-define-lodash

Lodash integration for CanJS
MIT License
0 stars 0 forks source link

Update generator-donejs to the latest version 🚀 #11

Open greenkeeper[bot] opened 6 years ago

greenkeeper[bot] commented 6 years ago

Version 1.1.0 of generator-donejs was just published.

Dependency generator-donejs
Current Version 0.10.0-pre.4
Type devDependency

The version 1.1.0 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of generator-donejs.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Commits

The new version differs by 185 commits.

  • 447389d 1.1.0
  • d17333e Merge pull request #272 from donejs/alg-placement
  • d387efe Make algebra after the List in supermodel template
  • 33cdf07 Remove “Building the documentation” docs from the plugin generator
  • cc596d9 1.0.7
  • d62f3d3 Merge pull request #259 from donejs/ignore_trainling_slash_component_name_component_parts_248
  • 0285027 Ignore trailing slashes on component name
  • 91a57ef Merge pull request #258 from donejs/yeoman-assert-as-assert-library
  • b7f9f24 Adding missing license.
  • 451b036 cleaning the mess again
  • 8a35676 cleaning the mess
  • 30b0c10 Merge branch 'yeoman-assert-as-assert-library' of https://github.com/donejs/generator-donejs into yeoman-assert-as-assert-library
  • 10fe143 clean the mess
  • f8a5bad remove 'only'
  • fc0679d use yeoman-assert to fix tests errors

There are 185 commits in total.

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

Version 2.0.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 25 commits.

  • 98c414e 2.0.0
  • 74810bc Merge pull request #280 from donejs/major
  • 0f3141d 2.0.0-pre.5
  • d48a6d0 Merge pull request #279 from donejs/can-debug
  • ae474c9 Use latest pre-release version of donejs-cli
  • 87813a5 Conditionally load can-debug in development
  • c19d05e 2.0.0-pre.4
  • ebd9614 Merge pull request #277 from donejs/tilde
  • 65152bb Update test fixtures to use tilde
  • 8fb639b Use ~ instead of app name in imports
  • db1fd1f Merge pull request #276 from donejs/nodeenv
  • cc9fbe1 Provide env.NODE_ENV as a default AppViewModel property
  • 834488d 2.0.0-pre.3
  • 83294c5 Merge pull request #275 from donejs/upd
  • 179df21 Update tested node versions

There are 25 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 2.1.0 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • c85bfeb 2.1.0
  • 65b7772 Merge pull request #281 from donejs/use-defaults
  • 823b6ae Use prompt defaults when option is passed in

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead 🚀

Release Notes for 3.0.0

This is a major release of generator-donejs. This release is for DoneJS 3.0, bringing compatibility with CanJS 5 and StealJS 2.

Commits

The new version differs by 38 commits.

  • b76ca51 3.0.0
  • 921e67d Merge pull request #298 from donejs/major
  • 78b2fc4 Merge branch 'master' into major
  • cc5f6d0 3.0.0-pre.8
  • ad0490e Merge pull request #297 from donejs/model
  • 2a0296d Update fixture templates
  • 7b23bc4 3.0.0-pre.7
  • d3f2779 Merge pull request #295 from donejs/exp
  • 4c6fcfb Name the main application viewmodel
  • f4f3ce9 Export the ViewModel and Component from modlets
  • 75b8405 Merge branch 'major' of github.com:donejs/generator-donejs into major
  • 7d300d6 3.0.0-pre.6
  • 7511d9e Merge pull request #294 from donejs/deep-component
  • 3af9c2e Allow .component files in nested folders to be pages
  • d401bb0 3.0.0-pre.5

There are 38 commits in total.

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead 🚀

Release Notes for 3.1.0

This is a minor release. This adds two new features:

  • Models are generated with names. This means instead of:
const Restaurant = DefineMap.extend({ ...

Names are given for better devtools integration:

const Restaurant = DefineMap.extend("Restaurant", { ...

Secondly, modlet component demo pages use a simpler method that involves using the constructible can-components.

<script type="steal-module">
import "place-my-order-assets";
import "~/models/fixtures/";
import RestaurantList from "~/pages/restaurant/list/";

const list = new RestaurantList({
  viewModel: {}
});

document.body.appendChild(list.element);
</script>
Commits

The new version differs by 5 commits.

  • 50b4ac4 3.1.0
  • 06a0cfe Merge pull request #302 from donejs/demo
  • b779f57 Merge pull request #301 from donejs/model-name
  • 06c462e Update demo pages to use can-component constructors
  • a223d4b Give model types a function name

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead 🚀

Release Notes for 3.2.0

Configures steal to use the can package for stache files.

Commits

The new version differs by 4 commits.

  • 34e5060 3.2.0
  • 94daa09 Merge pull request #303 from donejs/can-plugin
  • 10a7027 Update test to use can instead of steal-stache
  • c15d645 Use can plugin for steal

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead 🚀

Release Notes for Component name with same name as the app

Now the user is able to generate a component that has the same name as the app, for example, given an app named cms with src folder for the code:
donejs add component cms -> generates src/cms/cms.js

It is applicable to the component's folder too:
donejs add component cms/cms -> generates src/cms/cms/cms.js

#304

Commits

The new version differs by 3 commits.

  • 83843b8 3.3.0
  • c9730bf Merge pull request #304 from donejs/1175-component-name-as-project
  • 530e122 component with same name as app

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 2a24617 3.4.0
  • 0234264 Merge pull request #305 from donejs/plugin-scoped-project-support
  • e25ed7f Handle scoped name of projects

See the full diff

greenkeeper[bot] commented 5 years ago

Update to this version instead 🚀

greenkeeper[bot] commented 4 years ago

Update to this version instead 🚀