Skip to content

Commit 2e08f08

Browse files
committed
Leave a note for where to find the latest release notes
1 parent 117f769 commit 2e08f08

File tree

1 file changed

+47
-43
lines changed

1 file changed

+47
-43
lines changed

CHANGELOG.md

Lines changed: 47 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,138 +1,142 @@
1+
# See Github releases for newer release notes!
2+
3+
We've switched to keeping our changelog in Github releases. [Please go here to view the latest release notes.](https://github.com/nbudin/react-blockly/releases)
4+
15
# Version 6.0.1 - September 17, 2020
26

3-
* Fix broken entrypoint in package.json; clean up build a bit.
7+
- Fix broken entrypoint in package.json; clean up build a bit.
48

59
# Version 6.0.0 - September 15, 2020
610

7-
* **VERSION 6.0.0 IS BROKEN. PLEASE DO NOT USE. USE 6.0.1 INSTEAD.**
8-
* BREAKING CHANGE: BlocklyEditor is now the default export of this package. If you are using a default import, you'll need to change
9-
that. You can still import individual components using named imports (see the updated README for how), and if you only need
11+
- **VERSION 6.0.0 IS BROKEN. PLEASE DO NOT USE. USE 6.0.1 INSTEAD.**
12+
- BREAKING CHANGE: BlocklyEditor is now the default export of this package. If you are using a default import, you'll need to change
13+
that. You can still import individual components using named imports (see the updated README for how), and if you only need
1014
BlocklyEditor, it should be more straightforward to use that.
11-
* Update webpack files to support default export of the component, separate the dev example from the package (thanks @OriAmir!)
15+
- Update webpack files to support default export of the component, separate the dev example from the package (thanks @OriAmir!)
1216

1317
# Version 5.3.0 - August 12, 2020
1418

15-
* Upgrade to Babel 7, fix configuration to actually transpile to ES5
19+
- Upgrade to Babel 7, fix configuration to actually transpile to ES5
1620

1721
# Version 5.2.0 - July 31, 2020
1822

19-
* Suppress a lot of console warnings in development mode (thanks @DarkMetroid!)
23+
- Suppress a lot of console warnings in development mode (thanks @DarkMetroid!)
2024

2125
# Version 5.1.1 - July 6, 2020
2226

23-
* Update to Blockly version v3.20200625.2 (fixes a regression)
27+
- Update to Blockly version v3.20200625.2 (fixes a regression)
2428

2529
# Version 5.1.0 - July 6, 2020
2630

27-
* Update to Blockly version v3.20200625.1 (thanks @mastanca!)
31+
- Update to Blockly version v3.20200625.1 (thanks @mastanca!)
2832

2933
# Version 5.0.0 - January 13, 2020
3034

31-
* Update to Blockly version 3.0! (thanks @samelhusseini!)
35+
- Update to Blockly version 3.0! (thanks @samelhusseini!)
3236

3337
# Version 4.1.0 - August 30, 2019
3438

35-
* Add the ability to use buttons in the toolbox (thanks @GAUTAMRAJU15!)
39+
- Add the ability to use buttons in the toolbox (thanks @GAUTAMRAJU15!)
3640

3741
# Version 4.0.1 - August 26, 2019
3842

39-
* Dev dependency updates and linter cleanups (thanks @abbychau!)
43+
- Dev dependency updates and linter cleanups (thanks @abbychau!)
4044

4145
# Version 4.0.0 - August 13, 2019
4246

43-
* First release under the new package name react-blockly
44-
* Use the new official blockly npm package as a dependency
45-
* Update development dependencies
47+
- First release under the new package name react-blockly
48+
- Use the new official blockly npm package as a dependency
49+
- Update development dependencies
4650

4751
# NOTE: Previous releases are under the package name react-blockly-component
4852

4953
# Version 3.3.0 - June 7, 2019
5054

51-
* Support expanded property on category (thanks @doper1234)
55+
- Support expanded property on category (thanks @doper1234)
5256

5357
# Version 3.2.0 - January 17, 2019
5458

55-
* Support parsing nested blocks (thanks @YuliyaBolbot!)
59+
- Support parsing nested blocks (thanks @YuliyaBolbot!)
5660

5761
# Version 3.1.1 - October 15, 2018
5862

59-
* Bugfix: render single blocks in a category again (thanks @YuliyaBolbot!)
60-
* Add a `prepare` script to make it easier to test forks (thanks again @YuliyaBolbot!)
63+
- Bugfix: render single blocks in a category again (thanks @YuliyaBolbot!)
64+
- Add a `prepare` script to make it easier to test forks (thanks again @YuliyaBolbot!)
6165

6266
# Version 3.1.0 - September 13, 2018
6367

64-
* Add a `parseWorkspaceXml` function that makes it easier to use XML-formatted toolboxes with react-blockly-component (thanks @Macilias!)
68+
- Add a `parseWorkspaceXml` function that makes it easier to use XML-formatted toolboxes with react-blockly-component (thanks @Macilias!)
6569

6670
# Version 3.0.3 - September 7, 2018
6771

68-
* Make `type` an optional prop because categories don't always use it
72+
- Make `type` an optional prop because categories don't always use it
6973

7074
# Version 3.0.2 - May 5, 2018
7175

72-
* Fix a logic error in BlocklyEditor's componentDidUpdate (thanks @prabak!)
76+
- Fix a logic error in BlocklyEditor's componentDidUpdate (thanks @prabak!)
7377

7478
# Version 3.0.1 - January 22, 2018
7579

76-
* If the toolbox props change, automatically update the toolbox in Blockly
80+
- If the toolbox props change, automatically update the toolbox in Blockly
7781

7882
# Version 3.0.0 - December 29, 2017
7983

80-
* Support React 16. Drop support for React 0.14.x.
81-
* Deprecate `xmlDidChange` in favor of `workspaceDidChange`, which gives you access to the workspace object itself to allow generating code for any language including XML (thanks @Xaptor!)
82-
* Stop depending on ReactDOM in favor of callback refs.
83-
* Major internal cleanups to pass AirBnB's eslint configuration.
84+
- Support React 16. Drop support for React 0.14.x.
85+
- Deprecate `xmlDidChange` in favor of `workspaceDidChange`, which gives you access to the workspace object itself to allow generating code for any language including XML (thanks @Xaptor!)
86+
- Stop depending on ReactDOM in favor of callback refs.
87+
- Major internal cleanups to pass AirBnB's eslint configuration.
8488

8589
# Version 2.0.1 - November 22, 2016
8690

87-
* Update react-immutable-proptypes dependency to avoid warning in newer React versions (thanks @ipince!)
91+
- Update react-immutable-proptypes dependency to avoid warning in newer React versions (thanks @ipince!)
8892

8993
# Version 2.0.0 - November 19, 2016
9094

91-
* BREAKING CHANGE: Swap the order of arguments for `domToWorkspace` to match the latest Blockly changes (thanks @ipince!)
95+
- BREAKING CHANGE: Swap the order of arguments for `domToWorkspace` to match the latest Blockly changes (thanks @ipince!)
9296

9397
# Version 1.3.0 - November 19, 2016
9498

95-
* Handle errors when importing/exporting workspace XML, optionally passing the error back to the app (thanks @benjie!)
99+
- Handle errors when importing/exporting workspace XML, optionally passing the error back to the app (thanks @benjie!)
96100

97101
# Version 1.2.1 - September 30, 2016
98102

99-
* Support `readOnly` mode for workspaces (thanks @benjie!).
103+
- Support `readOnly` mode for workspaces (thanks @benjie!).
100104

101105
# Version 1.2.0 - August 29, 2016
102106

103-
* Add `colour` property for toolbox blocks (thanks @benjie!).
107+
- Add `colour` property for toolbox blocks (thanks @benjie!).
104108

105109
# Version 1.1.4 - July 6, 2016
106110

107-
* Add `.npmignore` so that npm doesn't use `.gitignore` by default.
111+
- Add `.npmignore` so that npm doesn't use `.gitignore` by default.
108112

109113
# Version 1.1.3 - July 5, 2016
110114

111-
* Make React a peerDependency.
115+
- Make React a peerDependency.
112116

113117
# Version 1.1.2 - July 5, 2016
114118

115-
* Loosen the React version dependency.
119+
- Loosen the React version dependency.
116120

117121
# Version 1.1.1 - April 12, 2016
118122

119-
* Fix a bug that was causing unnecessary toolbox updates.
123+
- Fix a bug that was causing unnecessary toolbox updates.
120124

121125
# Version 1.1.0 - April 8, 2016
122126

123-
* Expose a `resize` function from `BlocklyEditor` and `BlocklyWorkspace` that causes the workspace to resize to fit its container element.
127+
- Expose a `resize` function from `BlocklyEditor` and `BlocklyWorkspace` that causes the workspace to resize to fit its container element.
124128

125129
# Version 1.0.0 - April 4, 2016
126130

127-
* Breaking change: the component now uses [Immutable.js](https://facebook.github.io/immutable-js/) internally to track its state and properties for dramatically improved performance. This is mostly invisible to embedding apps, but if they have a custom `processToolboxCategory` function, that function will now be passed an Immutable.js Map and is expected to return one (either modified or not).
131+
- Breaking change: the component now uses [Immutable.js](https://facebook.github.io/immutable-js/) internally to track its state and properties for dramatically improved performance. This is mostly invisible to embedding apps, but if they have a custom `processToolboxCategory` function, that function will now be passed an Immutable.js Map and is expected to return one (either modified or not).
128132

129133
# Version 0.1.2 - March 22, 2016
130134

131-
* Reconfigured the build to emit compiled ES5 in the dist-modules directory, for easier use in build systems.
132-
* Add a default export so that this component can easily be used inside another ES6 module.
133-
* Add support for PatientsLikeMe's [https://github.com/google/blockly/pull/224](pending pull request) on Blockly to allow typeahead search.
134-
* Add a code of conduct.
135+
- Reconfigured the build to emit compiled ES5 in the dist-modules directory, for easier use in build systems.
136+
- Add a default export so that this component can easily be used inside another ES6 module.
137+
- Add support for PatientsLikeMe's [https://github.com/google/blockly/pull/224](pending pull request) on Blockly to allow typeahead search.
138+
- Add a code of conduct.
135139

136140
# Version 0.1.0 - December 24, 2016
137141

138-
* Initial public release.
142+
- Initial public release.

0 commit comments

Comments
 (0)