forked from dart-backend/angel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dart-backend#136 from dukefirehawk/feature/rethinkdb
Feature/rethinkdb
- Loading branch information
Showing
25 changed files
with
780 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"image": "dart:3.0", | ||
"image": "dart:3.4", | ||
"forwardPorts": [3000,5000], | ||
"features": { | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
services: | ||
rethinkdb: | ||
image: rethinkdb:latest | ||
restart: "no" | ||
ports: | ||
- "8080:8080" | ||
- "28015:28015" | ||
- "29015:29015" | ||
volumes: | ||
- "rethinkdb:/data" | ||
networks: | ||
- webnet | ||
|
||
volumes: | ||
rethinkdb: | ||
driver: local | ||
|
||
networks: | ||
webnet: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Change Log | ||
|
||
## 8.2.1 | ||
|
||
* Updated error handling | ||
|
||
## 8.2.0 | ||
|
||
* Require Dart >= 3.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# See https://www.dartlang.org/tools/private-files.html | ||
|
||
# Files and directories created by pub | ||
.buildlog | ||
.packages | ||
.project | ||
.pub/ | ||
build/ | ||
**/packages/ | ||
.dart_tool | ||
|
||
# Files created by dart2js | ||
# (Most Dart developers will use pub build to compile Dart, use/modify these | ||
# rules if you intend to use dart2js directly | ||
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to | ||
# differentiate from explicit Javascript files) | ||
*.dart.js | ||
*.part.js | ||
*.js.deps | ||
*.js.map | ||
*.info.json | ||
|
||
# Directory created by dartdoc | ||
doc/api/ | ||
|
||
# Don't commit pubspec lock file | ||
# (Library packages only! Remove pattern if developing an application package) | ||
pubspec.lock | ||
### Dart template | ||
# See https://www.dartlang.org/tools/private-files.html | ||
|
||
# Files and directories created by pub | ||
|
||
# Files created by dart2js | ||
# (Most Dart developers will use pub build to compile Dart, use/modify these | ||
# rules if you intend to use dart2js directly | ||
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to | ||
# differentiate from explicit Javascript files) | ||
|
||
# Directory created by dartdoc | ||
|
||
# Don't commit pubspec lock file | ||
# (Library packages only! Remove pattern if developing an application package) | ||
### JetBrains template | ||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | ||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
|
||
# User-specific stuff: | ||
.idea/workspace.xml | ||
.idea/tasks.xml | ||
.idea/dictionaries | ||
.idea/vcs.xml | ||
.idea/jsLibraryMappings.xml | ||
|
||
# Sensitive or high-churn files: | ||
.idea/dataSources.ids | ||
.idea/dataSources.xml | ||
.idea/dataSources.local.xml | ||
.idea/sqlDataSources.xml | ||
.idea/dynamic.xml | ||
.idea/uiDesigner.xml | ||
|
||
# Gradle: | ||
.idea/gradle.xml | ||
.idea/libraries | ||
|
||
# Mongo Explorer plugin: | ||
.idea/mongoSettings.xml | ||
|
||
## File-based project format: | ||
*.iws | ||
|
||
## Plugin-specific files: | ||
|
||
# IntelliJ | ||
/out/ | ||
|
||
# mpeltonen/sbt-idea plugin | ||
.idea_modules/ | ||
|
||
# JIRA plugin | ||
atlassian-ide-plugin.xml | ||
|
||
# Crashlytics plugin (for Android Studio and IntelliJ) | ||
com_crashlytics_export_strings.xml | ||
crashlytics.properties | ||
crashlytics-build.properties | ||
fabric.properties | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Primary Authors | ||
=============== | ||
|
||
* __[Thomas Hii]([email protected])__ | ||
|
||
Thomas is the current maintainer of the code base. He has refactored and migrated the | ||
code base to support NNBD. | ||
|
||
* __[Tobe O]([email protected])__ | ||
|
||
Tobe has written much of the original code prior to NNBD migration. He has moved on and | ||
is no longer involved with the project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Change Log | ||
|
||
## 8.0.0 | ||
|
||
* Require Dart >= 3.3 | ||
* Updated `lints` to 4.0.0 | ||
|
||
## 7.0.0 | ||
|
||
* Skipped release | ||
|
||
## 6.0.0 | ||
|
||
* Skipped release | ||
|
||
## 5.0.0 | ||
|
||
* Skipped release | ||
|
||
## 4.0.0 | ||
|
||
* Skipped release | ||
|
||
## 3.0.0 | ||
|
||
* Skipped release | ||
|
||
## 2.0.0 | ||
|
||
* Migrated to support Dart >= 2.12 NNBD | ||
|
||
## 1.1.0 | ||
|
||
* Moved to `package:rethinkdb_driver` | ||
* Fixed references to old hooked event names |
Oops, something went wrong.