fabric 2.2.4 → 2.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.travis.yml CHANGED
@@ -4,7 +4,7 @@ services:
4
4
  - docker
5
5
 
6
6
  node_js:
7
- - "6"
7
+ - "10"
8
8
 
9
9
  addons:
10
10
  apt:
@@ -26,6 +26,13 @@ env:
26
26
  - LAUNCHER=Node
27
27
 
28
28
  jobs:
29
+
30
+
31
+ jobs:
32
+ fast_finish: true
33
+ allow_failures:
34
+ - node_js: "10"
35
+ - env: LAUNCHER=Node
29
36
  include:
30
37
  - stage: Linting and Building
31
38
  env: STEP=LINT
@@ -36,7 +43,7 @@ jobs:
36
43
  packages: # avoid installing packages
37
44
  - stage: Linting and Building
38
45
  env: STEP=BUILD
39
- install: npm install uglify-js@3.1.x
46
+ install: npm install uglify-js@3.3.x
40
47
  script: 'npm run build'
41
48
  addons:
42
49
  apt:
@@ -53,6 +60,8 @@ jobs:
53
60
  addons:
54
61
  apt:
55
62
  packages: # avoid installing packages
63
+ - stage: test
64
+ node_js: "10"
56
65
  - stage: test
57
66
  node_js: "9"
58
67
  - stage: test
package/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ **Version 2.3.3**
2
+ - Fix: Fixed font generic names for text, measurement of zero width related characters and also trailing of cursor when zooming. [#5048](https://github.com/fabricjs/fabric.js/pull/5048)
3
+
4
+ **Version 2.3.2**
5
+ - Fix: justify + charspacing + textDecoration Add and improve more events for transformations and mouse interaction. [#5007](https://github.com/fabricjs/fabric.js/pull/5007) [#5009](https://github.com/fabricjs/fabric.js/pull/5009)
6
+ - Fix: Enter edit on object selected programmatically. [#5010](https://github.com/fabricjs/fabric.js/pull/5010)
7
+ - Fix: Canvas.dispose was not removing all events properly. [#5020](https://github.com/fabricjs/fabric.js/pull/5020)
8
+ - Fix: Make rgba and hsla regex work case insensitive. [#5017](https://github.com/fabricjs/fabric.js/pull/5017)
9
+ - Fix: Make group transitioning from not cached to cached work. [#5021](https://github.com/fabricjs/fabric.js/pull/5021)
10
+
11
+ **Version 2.3.1**
12
+ - Improve nested svg import and text positioning, spikes. [#4984](https://github.com/kangax/fabric.js/pull/4984)
13
+
14
+ **Version 2.3.0**
15
+ - Add and improve more events for transformations and mouse interaction [#4979](https://github.com/kangax/fabric.js/pull/4979)
16
+ - Improvement: whenever possible use cache for target transparency sampling [#4955](https://github.com/kangax/fabric.js/pull/4955)
17
+
1
18
  **Version 2.2.4**
2
19
  - Fix getPointer on touch devices [#4866](https://github.com/kangax/fabric.js/pull/4866)
3
20
  - Fix issues with selectionDashArray bleeding into free drawing [#4894](https://github.com/kangax/fabric.js/pull/4894)
package/ISSUE_TEMPLATE.md CHANGED
@@ -25,7 +25,7 @@ Remove the template from below and provide thoughtful commentary *and code sampl
25
25
 
26
26
  <!-- BUG TEMPLATE -->
27
27
  ## Version
28
- 2.2.4
28
+ 2.3.0
29
29
 
30
30
  ## Test Case
31
31
  http://jsfiddle.net/fabricjs/Da7SP/
package/build.js CHANGED
@@ -253,11 +253,6 @@ else {
253
253
  process.exit(0);
254
254
  }
255
255
 
256
- // add js wrapping in AMD closure for requirejs if necessary
257
- if (amdLib !== false) {
258
- exec('uglifyjs fabric.js ' + amdUglifyFlags + ' -b --output fabric.js');
259
- }
260
-
261
256
  if (amdLib !== false) {
262
257
  console.log('Built distribution to ' + distributionPath + 'fabric.js (' + amdLib + '-compatible)');
263
258
  } else {