Skip to content

Commit fec14b3

Browse files
committed
Release ts-sql-query 1.66.0
Add a reference to the v2 new documentation
1 parent ce4096a commit fec14b3

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

docs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## v1.66.0 (14 Jun 2025)
4+
5+
**Documentation changes**:
6+
7+
- The upcoming version 2 of ts-sql-query is cooking! A completely new documentation portal is already available for preview: [Take a look](https://ts-sql-query.readthedocs.io/en/latest/).
8+
39
## v1.65.0 (24 Aug 2024)
410

511
**Changes**:

docs/custom.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,11 @@ hljs.highlightAll();
4343

4444
searchInResult.parentElement.appendChild(openGoogleSearch);
4545
}
46-
})();
46+
})();
47+
48+
document.addEventListener("DOMContentLoaded", function () {
49+
var banner = document.createElement("div");
50+
banner.style.cssText = "background-color: #fffae6; padding: 10px; text-align: center; border-bottom: 1px solid #ddd; font-weight: bold;";
51+
banner.innerHTML = '🚀 The upcoming version 2 of ts-sql-query is cooking! A completely new documentation portal is already available for preview: <a href="https://ts-sql-query.readthedocs.io/en/latest/" target="_blank" rel="noopener">Take a look</a>.';
52+
document.body.insertBefore(banner, document.body.firstChild);
53+
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-sql-query",
3-
"version": "1.65.0",
3+
"version": "1.66.0",
44
"description": "Type-safe SQL query builder like QueryDSL or JOOQ in Java or Linq in .Net for TypeScript with MariaDB, MySql, Oracle, PostgreSql, Sqlite and SqlServer support.",
55
"license": "MIT",
66
"author": "juanluispaz",

0 commit comments

Comments
 (0)