| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | v1.3.0 |
| 2 | date: 2020-08-18 |
| 3 | changes: |
| 4 | - Switch to use `safeLoad` for loading YML files via `file.readYAML`. |
| 5 | - Upgrade legacy-log to ~3.0.0. |
| 6 | - Upgrade legacy-util to ~2.0.0. |
| 7 | v1.2.1 |
| 8 | date: 2020-07-07 |
| 9 | changes: |
| 10 | - Remove path-is-absolute dependency. |
| 11 | (PR: https://github.com/gruntjs/grunt/pull/1715) |
| 12 | v1.2.0 |
| 13 | date: 2020-07-03 |
| 14 | changes: |
| 15 | - Allow usage of grunt plugins that are located in any location that |
| 16 | is visible to Node.js and NPM, instead of node_modules directly |
| 17 | inside package that have a dev dependency to these plugins. |
| 18 | (PR: https://github.com/gruntjs/grunt/pull/1677) |
| 19 | - Removed coffeescript from dependencies. To ease transition, if |
| 20 | coffeescript is still around, Grunt will attempt to load it. |
| 21 | If it is not, and the user loads a CoffeeScript file, |
| 22 | Grunt will print a useful error indicating that the |
| 23 | coffeescript package should be installed as a dev dependency. |
| 24 | This is considerably more user-friendly than dropping the require entirely, |
| 25 | but doing so is feasible with the latest grunt-cli as users |
| 26 | may simply use grunt --require coffeescript/register. |
| 27 | (PR: https://github.com/gruntjs/grunt/pull/1675) |
| 28 | - Exposes Grunt Option keys for ease of use. |
| 29 | (PR: https://github.com/gruntjs/grunt/pull/1570) |
| 30 | - Avoiding infinite loop on very long command names. |
| 31 | (PR: https://github.com/gruntjs/grunt/pull/1697) |
| 32 | v1.1.0 |
| 33 | date: 2020-03-16 |
| 34 | changes: |
| 35 | - Update to mkdirp ~1.0.3 |
| 36 | - Only support versions of Node >= 8 |
| 37 | v1.0.4 |
| 38 | date: 2019-04-22 |
| 39 | changes: |
| 40 | - Update js-yaml to address https://npmjs.com/advisories/788 |
| 41 | - Use SOURCE_DATE_EPOCH to render dates in template. |
| 42 | v1.0.3 |
| 43 | date: 2018-06-03 |
| 44 | changes: |
| 45 | - Drop support for Node 0.10 and 0.12. |
| 46 | - Dependency updates: rimraf, grunt-legacy-log, grunt-legacy-util. |
| 47 | - Fix race condition with file.mkdir. |
| 48 | v1.0.2 |
| 49 | date: 2018-02-07 |
| 50 | changes: |
| 51 | - Fix for readYAML error messages. |
| 52 | - Remove deprecation warning for coffeescript. Pull #1621. |
| 53 | v1.0.1 |
| 54 | date: 2016-04-05 |
| 55 | changes: |
| 56 | - minor fix for npm issues when installing grunt and grunt-cli at the same time. Pull #1500. |
| 57 | v1.0.0 |
| 58 | date: 2016-04-04 |
| 59 | changes: |
| 60 | - full list of changes is on http://gruntjs.com, please also see changes from 1.0.0-rc1. |
| 61 | - if you have a Grunt plugin that includes `grunt` in the `peerDependencies`, |
| 62 | we recommend tagging with `"grunt": "">= 0.4.0"` and publishing a new version on npm. |
| 63 | - Prevent async callback from being called multiple times. Pull #1464. |
| 64 | - Update copyright to jQuery Foundation and remove redundant headers. Fixes #1478. |
| 65 | - Update glob to 7.0.x. Fixes #1467. |
| 66 | - Removing duplicate BOM strip code. Pull #1482. |
| 67 | - Update legacy log and util to 1.0.0. |
| 68 | - Update to latest cli ~1.2.0. |
| 69 | - Use grunt-known-options for shared options between Grunt and grunt-cli. |
| 70 | v1.0.0-rc1 |
| 71 | date: 2016-02-11 |
| 72 | changes: |
| 73 | - full list of changes is on http://gruntjs.com |
| 74 | - if you have a Grunt plugin that includes `grunt` in the `peerDependencies`, |
| 75 | we recommend tagging with `"grunt": "">= 0.4.0"` |
| 76 | - `coffee-script` is upgraded to `~1.10.0` which could incur breaking changes |
| 77 | when using the language with plugins and Gruntfiles. |
| 78 | - `nopt` is upgraded to `~3.0.6` which has fixed many issues, including passing |
| 79 | multiple arguments and dealing with numbers as options. Be aware previously |
| 80 | `--foo bar` used to pass the value `'bar'` to the option `foo`. It will now |
| 81 | set the option `foo` to `true` and run the task `bar`. |
| 82 | -`glob` is upgraded to `~6.0.4` and `minimatch` is upgraded to `~3.0.0`. Results |
| 83 | are now sorted by default with `grunt.file.expandMapping()`. Pass the |
| 84 | `nosort: true` option if you don't want the results to be sorted. |
| 85 | - `lodash` was upgraded to `~4.3.0`. Many changes have occurred. Some of which |
| 86 | that directly effect Grunt are `grunt.util._.template()` returns a compile |
| 87 | function and `grunt.util._.flatten` no longer flattens deeply. |
| 88 | `grunt.util._` is deprecated and we highly encourage you to |
| 89 | `npm install lodash` and `var _ = require('lodash')` to use `lodash`. |
| 90 | Please see the lodash changelog for a full list of changes: https://github.com/lodash/lodash/wiki/Changelog |
| 91 | - `iconv-lite` is upgraded to `~0.4.13` and strips the BOM by default. |
| 92 | - `js-yaml` is upgraded to `~3.5.2` and may affect `grunt.file.readYAML`. |
| 93 | We encourage you to please `npm install js-yaml` and use |
| 94 | `var YAML = require('js-yaml')` directly in case of future deprecations. |
| 95 | - A file `mode` option can be passed into |
| 96 | [grunt.file.write()](http://gruntjs.com/api/grunt.file#grunt.file.write). |
| 97 | - `Done, without errors.` was changed to `Done.` to avoid failing by mistake |
| 98 | on the word `errors`. |
| 99 | v0.4.5: |
| 100 | date: 2014-05-12 |
| 101 | changes: |
| 102 | - Updated rimraf to 2.2.8. Closes gh-1134. |
| 103 | - Moved grunt.log into separate grunt-legacy-log module. |
| 104 | - Updated grunt-legacy-util to 0.2.0. Closes gh-971, gh-1129, gh-1118. |
| 105 | - Added grunt.task.exists method to check if a task exists. Closes gh-1131. |
| 106 | - Added grunt.config.merge method to deep merge config data. See gh-1039. |
| 107 | - Fixed symlink issues with 'file.isPathCwd' and 'file.doesPathContain'. Closes gh-1112. |
| 108 | - Config and util.recurse no longer mangle Buffer instances. See gh-971. |
| 109 | - Config and util.recurse now enumerate inherited object properties. See gh-1129. |
| 110 | - Config and util.recurse now throw useful circular reference error. See gh-1118. |
| 111 | - Warn instead of error when no new tasks found via '.loadTasks' method. Closes gh-1059. |
| 112 | - Added Windows CI testing. Closes gh-1110. |
| 113 | - Removed "CONTRIBUTING.md" from .npmignore. Closes gh-1093. |
| 114 | v0.4.4: |
| 115 | date: 2014-03-12 |
| 116 | changes: |
| 117 | - Only signal completion of tasks async if grunt.task.start is invoked with `{asyncDone:true}`. |
| 118 | v0.4.3: |
| 119 | date: 2014-03-07 |
| 120 | changes: |
| 121 | - When devving Grunt, do "npm install && npm uninstall grunt" (isaacs/npm#3958) |
| 122 | - Grunt is now tested on Node.js 0.11 |
| 123 | - Extracted internal "util" lib to "grunt-legacy-util" lib |
| 124 | - task.normalizeMultiTaskFiles now flattens nested "files" arrays. Closes gh-1034. |
| 125 | - Better error in renameTask if task doesn't exist. Closes gh-1058. |
| 126 | - Update rimraf to latest version. Closes gh-1043. |
| 127 | - Empty string "ext" should strip extension. Closes gh-1087. |
| 128 | - Add expandMapping .extDot option. Can be 'first' or 'last' but defaults to 'first'. Closes gh-979. |
| 129 | - Add default array for util.spawn optional args. Closes gh-1064. |
| 130 | - util.spawn "grunt" option now uses proper Node, passes Node exec options. Closes gh-980, gh-981, gh-877. |
| 131 | - Make all tasks asynchronous to reduce call stack. Closes gh-1026. |
| 132 | - Fix <%= grunt.task.current.target %> in Multitask files. Closes gh-994. |
| 133 | - Generalize cli tests, see gh-983, gh-991. |
| 134 | - --debug option can optionally be Boolean. Closes Gh-983, gh-991. |
| 135 | v0.4.2: |
| 136 | date: 2013-11-21 |
| 137 | changes: |
| 138 | - Extract internal "namespace" lib to external "getobject" lib. |
| 139 | - '"Grunt collections" are now deprecated, use peerDependencies. See "grunt-contrib" 0.8.0 for details.' |
| 140 | - Fix stdout / stderr issues on Windows. Closes gh-940, gh-921, gh-744, gh-792, gh-644, gh-708. |
| 141 | - Fix pipe-redirecting on Windows. Closes gh-510. |
| 142 | - Fixed this.options() in renamed basic tasks. Closes gh-855. |
| 143 | - Update underscore.string dependency to follow semver. Closes gh-886. |
| 144 | - Output task options in verbose mode. Closes gh-749. |
| 145 | - Add file.preserveBOM property. Closes gh-806, gh-937. |
| 146 | - Test that file methods warn. Closes gh-909. |
| 147 | - Fixed a few spelling errors in code comments. Closes gh-849. |
| 148 | - Updated watch, jshint and nodeunit deps. Closes gh-914. |
| 149 | v0.4.1: |
| 150 | date: 2013-03-13 |
| 151 | changes: |
| 152 | - Fix path.join thrown errors with expandMapping rename. Closes gh-725. |
| 153 | - Update copyright date to 2013. Closes gh-660. |
| 154 | - Remove some side effects from manually requiring Grunt. Closes gh-605. |
| 155 | - "grunt.log: add formatting support and implicitly cast msg to a string. Closes gh-703." |
| 156 | - Update js-yaml to version 2. Closes gh-683. |
| 157 | - The grunt.util.spawn method now falls back to stdout when the `grunt` option is set. Closes gh-691. |
| 158 | - Making --verbose "Files:" warnings less scary. Closes gh-657. |
| 159 | - "Fixing typo: the grunt.fatal method now defaults to FATAL_ERROR. Closes gh-656, gh-707." |
| 160 | - Removed a duplicate line. Closes gh-702. |
| 161 | - Gruntfile name should no longer be case sensitive. Closes gh-685. |
| 162 | - The grunt.file.delete method warns and returns false if file doesn't exist. Closes gh-635, gh-714. |
| 163 | - The grunt.package property is now resolved via require(). Closes gh-704. |
| 164 | - The grunt.util.spawn method no longer breaks on multibyte stdio. Closes gh-710. |
| 165 | - Fix "path.join arguments must be strings" error in file.expand/recurse when options.cwd is not set. Closes gh-722. |
| 166 | - Adding a fairly relevant keyword to package.json (task). |
| 167 | v0.4.0: |
| 168 | date: 2013-02-18 |
| 169 | changes: |
| 170 | - Initial release of 0.4.0. |
| 171 | - See http://gruntjs.com/upgrading-from-0.3-to-0.4 for a list of changes / migration guide. |