Skip to content

Commit

Permalink
release: v1.4.0-alpha.2 (#112)
Browse files Browse the repository at this point in the history
* release: v1.4.0-alpha.2

* build: update node lts (v14.x)
  • Loading branch information
cyjake authored Jun 7, 2021
1 parent 789eab5 commit fb12f19
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x]
node-version: [12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
- name: Install PostgreSQL client & SQLite
run: |
sudo apt-get install -y postgresql-client sqlite3 libsqlite3-dev
Expand All @@ -62,7 +62,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm publish
Expand Down
12 changes: 8 additions & 4 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
1.4.0 / 2020-04-??
1.4.0 / 2020-06-??
==================

* feat: `realm.raw('SELECT ...')` and `Model.raw('SELECT ...')` (#94)
* feat: support multiple order rules in one single string or one-dimensional array (#92)
* feat: `realm.raw('SELECT ...')` and `Model.raw('SELECT ...')`
* feat: `Model.truncate()` now uses TRUNCATE if possible
* feat: `Model.find().optimizerHints('SET_VAR(foreign_key_checks=OFF)')`
* fix: make sure connection is passed around in all queries carried out within transaction
* docs: migrations, validations, hooks, and sequelize adapter
* fix: batch upsert (#108)
* fix: make sure connection is passed around in all queries carried out within transaction (#105)
* fix: update, sequelize mode get API, destroy compitable (#104)
* docs: revise instructions for installing Jekyll (#111)
* docs: migrations, validations, hooks, and sequelize adapter (#103)
* docs: contributing guides

1.3.0 / 2020-03-01
==================
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "leoric",
"version": "1.4.0-alpha.1",
"version": "1.4.0-alpha.2",
"description": "JavaScript Object-relational mapping alchemy",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit fb12f19

Please sign in to comment.