Skip to content

Commit d01c392

Browse files
author
Colin Viebrock
committed
version bump
1 parent 462ab3b commit d01c392

File tree

4 files changed

+190
-100
lines changed

4 files changed

+190
-100
lines changed

.semver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 1
3-
:minor: 7
3+
:minor: 8
44
:patch: 0
55
:special: ''

CHANGELOG.md

Lines changed: 41 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
11
# Changelog
22

3+
## 1.8.0 - 26-Nov-2020
4+
5+
- Reworked handling of signed autoincrement integers and
6+
unsigned floating-point types (#36, thanks @nick15marketing)
7+
- Adds support for SET columns
8+
- Adds support for NUMERIC and FIXED columns (exported as `->decimal()`),
9+
and DOUBLE PRECISION and REAL columns (exported as `->double()`)
10+
- Table columns are now ordered in the migration the same way
11+
they are in the database
12+
13+
314
## 1.7.0 - 09-Mar-2020
415

516
- Adds support for timestamp columns with `ON UPDATE CURRENT_TIMESTAMP`
6-
- suppresses `->characterSet()` and `->collation()` on text columns
17+
- Suppresses `->characterSet()` and `->collation()` on text columns
718
that share the table's default character set and/or collation
8-
- removes some extra blank lines from the resulting migration file
9-
- a bit of code cleanup
19+
- Removes some extra blank lines from the resulting migration file
20+
- A bit of code cleanup
1021

1122

1223
## 1.6.0 - 20-Jan-2020
@@ -25,71 +36,76 @@
2536

2637
## 1.4.1 - 24-Nov-2017
2738

28-
- Real fix for handling FULLTEXT indices.
39+
- Real fix for handling FULLTEXT indices
2940

3041

3142
## 1.4.0 - 21-Nov-2017
3243

33-
- Broken fix for FULLTEXT (version deleted).
44+
- Broken fix for FULLTEXT (version deleted)
3445

3546

3647
## 1.3.1 - 01-Nov-2017
3748

38-
- Fix for ENUM handling and default values.
49+
- Fix for ENUM handling and default values
3950

4051

4152
## 1.3.0 - 16-Oct-2017
4253

43-
- Check that `REFERENTIAL_CONSTRAINTS` table exists before using it; should make bundle work with MySQL 5.1.
54+
- Check that `REFERENTIAL_CONSTRAINTS` table exists before using it;
55+
should make bundle work with MySQL 5.1
4456

4557

4658
## 1.2.0 - 14-Jul-2017
4759

48-
- Fix for listing indices when the table name is a reserved word.
49-
- Nicer output (with clickable links to generated files).
50-
- Parsing script moved into separate bash file, rather than stored in the plist (easier to maintain).
60+
- Fix for listing indices when the table name is a reserved word
61+
- Nicer output (with clickable links to generated files)
62+
- Parsing script moved into separate bash file, rather than stored
63+
in the plist (easier to maintain)
5164

5265

5366
## 1.1.0 - 17-May-2017
5467

55-
- Added support for `tinytext()` columns.
56-
- Migrations are now saved to `~/Desktop/SequelProLaravelExport/` instead of directly on the desktop.
68+
- Added support for `tinytext()` columns
69+
- Migrations are now saved to `~/Desktop/SequelProLaravelExport/`
70+
instead of directly on the desktop
5771

5872

5973
## 1.0.2 - 18-Nov-2016
6074

61-
- Fix for when there is more than one databases with the same table name(s).
75+
- Fix for when there is more than one database with the same table name(s)
6276

6377

6478
## 1.0.1 - 16-Nov-2016
6579

66-
- Added support for `comment()`.
80+
- Added support for `comment()`
6781

6882

6983
## 1.0.0 - 18-Oct-2016
7084

71-
- First stable release.
72-
- Added support for exporting multiple tables.
73-
- Fix primary keys using multiple columns.
74-
- Better handling of default values for numeric and boolean columns.
85+
- First stable release
86+
- Added support for exporting multiple tables
87+
- Fix primary keys using multiple columns
88+
- Better handling of default values for numeric and boolean columns
7589

7690

7791
## 1.0-beta.3 - 17-Oct-2016
7892

79-
- Added support for `json` columns.
80-
- Fixed `enum` column output.
81-
- Fixed `unsignedIncrements()` bug.
82-
- Bug fixes.
93+
- Added support for `json` columns
94+
- Fixed `enum` column output
95+
- Fixed `unsignedIncrements()` bug
96+
- Bug fixes
97+
8398

8499
## 1.0-beta.2 - 13-Oct-2016
85100

86-
- Better foreign key handling (cascade, etc.).
87-
- Bug fixes.
101+
- Better foreign key handling (cascade, etc.)
102+
- Bug fixes
103+
88104

89105
## 1.0-beta - 06-Oct-2016
90106

91107
## 1.0-alpha.2 - 05-Oct-2016
92108

93109
## 1.0-alpha - 05-Oct-2016
94110

95-
- Initial release.
111+
- Initial release

0 commit comments

Comments
 (0)