Skip to content

Commit 2090016

Browse files
authored
Merge pull request #28 from tinymce/feature/INT-2767
INT-2767: Prepare for TinyMCE 6; change license to MIT
2 parents ee1e7d7 + 50ffdde commit 2090016

File tree

7 files changed

+368
-348
lines changed

7 files changed

+368
-348
lines changed

CHANGELOG.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,36 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## 2.0.0
8+
### Changed
9+
- License changed to MIT (from Apache 2) this matches TinyMCE 6 license
10+
- Changed default cloudChannel to `'6'`.
11+
812
### Fixed
913
- Updated dependencies to latest available versions.
1014

11-
## [1.2.0] - 2021-03-11
15+
## 1.2.0 - 2021-03-11
1216
### Fixed
1317
- Updated dependencies to latest available versions.
1418

15-
## [1.1.0] - 2021-01-07
19+
## 1.1.0 - 2021-01-07
1620
### Changed
1721
- Converted demo server app to TypeScript.
1822
- Updated dependencies.
1923
- Added eslint.
2024
- Adopted beehive-flow branching and versioning process/tooling.
2125

22-
## [1.0.2] - 2020-09-22
26+
## 1.0.2 - 2020-09-22
2327
### Changed
2428
- Updated dependencies to latest available versions
2529

26-
## [1.0.1] - 2020-08-31
30+
## 1.0.1 - 2020-08-31
2731
### Added
2832
- Added CDN demo.
2933

3034
### Changed
3135
- Updated README.md
3236

33-
## [1.0.0] - 2020-08-27
37+
## 1.0.0 - 2020-08-27
3438
### Added
3539
- Initial release of web component wrapper around TinyMCE.

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!groovy
2-
@Library('waluigi@v4.0.0') _
2+
@Library('waluigi@v5.0.0') _
33

44
standardProperties()
55

@@ -12,7 +12,7 @@ node("primary") {
1212
}
1313

1414
stage("dependencies") {
15-
sh "yarn install --frozen-lockfile"
15+
yarnInstall()
1616
}
1717

1818
stage("stamp") {

LICENSE.txt

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1-
Copyright 2020-present Tiny Technologies, Inc.
1+
MIT License
22

3-
Licensed under the Apache License, Version 2.0 (the "License");
4-
you may not use this file except in compliance with the License.
5-
You may obtain a copy of the License at
3+
Copyright (c) 2022 Ephox Corporation DBA Tiny Technologies, Inc.
64

7-
http://www.apache.org/licenses/LICENSE-2.0
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
811

9-
Unless required by applicable law or agreed to in writing, software
10-
distributed under the License is distributed on an "AS IS" BASIS,
11-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
See the License for the specific language governing permissions and
13-
limitations under the License.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"webcomponent"
2222
],
2323
"author": "Tiny Technologies",
24-
"license": "Apache-2.0",
24+
"license": "MIT",
2525
"devDependencies": {
2626
"@ephox/agar": "^7.0.1",
2727
"@ephox/bedrock-client": "^13.0.0",
@@ -33,22 +33,22 @@
3333
"@tinymce/eslint-plugin": "^2.0.1",
3434
"@types/esm": "^3.2.0",
3535
"@types/express": "^4.17.13",
36-
"@types/node": "^17.0.21",
37-
"@typescript-eslint/eslint-plugin": "^5.13.0",
38-
"@typescript-eslint/parser": "^5.13.0",
39-
"eslint": "^8.10.0",
36+
"@types/node": "^17.0.22",
37+
"@typescript-eslint/eslint-plugin": "^5.16.0",
38+
"@typescript-eslint/parser": "^5.16.0",
39+
"eslint": "^8.11.0",
4040
"eslint-plugin-import": "^2.25.4",
4141
"eslint-plugin-prefer-arrow": "^1.2.3",
4242
"esm": "^3.2.25",
4343
"express": "^4.17.3",
44-
"rollup": "^2.69.0",
45-
"tinymce": "^5.10.0",
46-
"ts-loader": "^9.2.7",
47-
"ts-node": "^10.6.0",
44+
"rollup": "^2.70.1",
45+
"tinymce": "^6.0.0",
46+
"ts-loader": "^9.2.8",
47+
"ts-node": "^10.7.0",
4848
"typescript": "~4.6.2",
49-
"webpack": "^5.0.0"
49+
"webpack": "^5.70.0"
5050
},
5151
"dependencies": {},
52-
"version": "1.2.1-rc",
52+
"version": "2.0.0-rc",
5353
"name": "@tinymce/tinymce-webcomponent"
5454
}

0 commit comments

Comments
 (0)