Skip to content

Commit bd75ea3

Browse files
committed
release: v0.27.3
1 parent a542476 commit bd75ea3

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.27.3] - 2026-04-03
11+
1012
### Added
1113

1214
- Structure tab context menu with Copy Name, Copy Definition (SQL), Duplicate, and Delete for columns, indexes, and foreign keys
@@ -15,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- Data grid: preview and navigate FK references from right-click context menu
1618
- Data grid: add row from right-click on empty space
1719

20+
### Fixed
21+
22+
- Oracle: crash when opening views caused by OracleNIO state-machine corruption from concurrent queries, LONG column types, and DBMS_METADATA errors
23+
1824
## [0.27.2] - 2026-04-02
1925

2026
### Added
@@ -1142,7 +1148,8 @@ TablePro is a native macOS database client built with SwiftUI and AppKit, design
11421148
- Custom SQL query templates
11431149
- Performance optimized for large datasets
11441150

1145-
[Unreleased]: https://github.com/TableProApp/TablePro/compare/v0.27.2...HEAD
1151+
[Unreleased]: https://github.com/TableProApp/TablePro/compare/v0.27.3...HEAD
1152+
[0.27.3]: https://github.com/TableProApp/TablePro/compare/v0.27.2...v0.27.3
11461153
[0.27.2]: https://github.com/TableProApp/TablePro/compare/v0.27.1...v0.27.2
11471154
[0.27.1]: https://github.com/TableProApp/TablePro/compare/v0.27.0...v0.27.1
11481155
[0.27.0]: https://github.com/TableProApp/TablePro/compare/v0.26.0...v0.27.0

TablePro.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2093,7 +2093,7 @@
20932093
CODE_SIGN_IDENTITY = "Apple Development";
20942094
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
20952095
CODE_SIGN_STYLE = Automatic;
2096-
CURRENT_PROJECT_VERSION = 55;
2096+
CURRENT_PROJECT_VERSION = 56;
20972097
DEAD_CODE_STRIPPING = YES;
20982098
DEVELOPMENT_TEAM = D7HJ5TFYCU;
20992099
ENABLE_APP_SANDBOX = NO;
@@ -2118,7 +2118,7 @@
21182118
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
21192119
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
21202120
MACOSX_DEPLOYMENT_TARGET = 14.0;
2121-
MARKETING_VERSION = 0.27.2;
2121+
MARKETING_VERSION = 0.27.3;
21222122
OTHER_LDFLAGS = (
21232123
"-Wl,-w",
21242124
"-force_load",
@@ -2165,7 +2165,7 @@
21652165
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
21662166
CODE_SIGN_STYLE = Automatic;
21672167
COPY_PHASE_STRIP = YES;
2168-
CURRENT_PROJECT_VERSION = 55;
2168+
CURRENT_PROJECT_VERSION = 56;
21692169
DEAD_CODE_STRIPPING = YES;
21702170
DEPLOYMENT_POSTPROCESSING = YES;
21712171
DEVELOPMENT_TEAM = D7HJ5TFYCU;
@@ -2191,7 +2191,7 @@
21912191
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
21922192
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
21932193
MACOSX_DEPLOYMENT_TARGET = 14.0;
2194-
MARKETING_VERSION = 0.27.2;
2194+
MARKETING_VERSION = 0.27.3;
21952195
OTHER_LDFLAGS = (
21962196
"-Wl,-w",
21972197
"-force_load",

TablePro/Core/SchemaTracking/SchemaStatementGenerator.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,5 +237,4 @@ struct SchemaStatementGenerator {
237237
isDestructive: true
238238
)
239239
}
240-
241240
}

docs/changelog.mdx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ description: "Product updates and announcements for TablePro"
44
rss: true
55
---
66

7+
<Update label="April 3, 2026" description="v0.27.3">
8+
### New Features
9+
10+
- **Foreign Key Preview**: Cmd+Enter or right-click on FK cells to preview referenced rows
11+
- **Structure Tab Context Menu**: Copy Name, Copy Definition, Duplicate, and Delete for columns, indexes, and foreign keys
12+
- **Column Header Context Menu**: Sort and show/hide columns from header right-click
13+
14+
### Bug Fixes
15+
16+
- Fixed Oracle crash when opening views
17+
</Update>
18+
719
<Update label="April 2, 2026" description="v0.27.2">
820
### New Features
921

0 commit comments

Comments
 (0)