id
int64
0
5.38k
issuekey
stringlengths
4
16
created
stringlengths
19
19
title
stringlengths
5
252
description
stringlengths
1
1.39M
storypoint
float64
0
100
54
COMPASS-2628
03/09/2018 11:59:41
Add BSON constants or utils to C# symbol table
Add C# template to the symbol table for each BSON constant or util. Blocked by COMPASS-2727, and needs to be done after COMPASS-2626
5
55
COMPASS-2695
03/26/2018 03:40:14
write c# test cases
This task is meant to correct / input test cases for c#. C# results should be accurate code, but tests don't have to be yet passing. This task also involves researching how c# handles bson / how the language works a bit.
2
56
COMPASS-2716
04/03/2018 20:20:14
Add Snippets to Query Operators
Add snippets to each of the query operator constants.
5
57
COMPASS-2717
04/03/2018 20:21:56
Move Ace Autocomplete Constants to Separate Module
Move the autocomplete constants to a separate module for reuse in Charts. AC: - Create mongodb-ace-autocompletions - Move constants in agg pipeline builder to the new module. - Publish module. - Use module in agg pipeline builder.
3
58
COMPASS-2719
04/03/2018 22:12:42
Kill Long Running Pipelines
For pipeline stages that are taking a long time to run (ex match without index), look at more optimizations or killing stages.
5
59
COMPASS-2722
04/05/2018 16:20:32
Add allowDiskUse to agg pipeline execution
Add allowDiskUse flag to agg pipeline queries.
1
60
COMPASS-2723
04/05/2018 16:26:01
Increase Intelligence of Stage Editor
Have the autocompleter suggest better items based on context.
5
61
COMPASS-2724
04/05/2018 16:47:14
Agg Pipeline Execution Rules
- $limit before $group, $sort (long running ops) - $match nothing before to prevent index use. - remove $sample completely - Add maxTimeMS to each preview and allow user to re-execute.
8
62
COMPASS-2727
04/05/2018 19:13:45
Abstract templates from symbol table
This needs to happen before we can do anything else. Right now the symbol table just has the java templates directly in them, but we need a way for each code generator to fill out the template and argTemplates with the correct language. Should we put it in a separate file, and have a "loader" that fills out the symbol table with the template? Should we have a separate "templates" object? Should we just copy + paste the SymbolTable.js and fill out the correct templates for each target language, then worry about abstracting it away later?
3
63
COMPASS-2737
04/11/2018 13:35:10
Progressive Backoff With MaxTimeMS
Allow users to progressively increase the max time ms setting up to a max amount.
5
64
COMPASS-2742
04/13/2018 12:21:45
Add Link to Create Atlas Cluster
Create a link to create an atlas cluster. AC: - Add the component to the connect window sidebar. - Clicking on the link opens the sign-up page in Atlas in a browser.
2
65
COMPASS-2743
04/13/2018 12:22:42
Track Create Atlas Cluster Link Clicks
Add tracking each time a user clicks on the create Atlas cluster link.
1
66
COMPASS-2749
04/16/2018 08:44:59
Implement Export to language UI
Designs are here: https://jira.mongodb.org/browse/COMPASS-2675
3
67
COMPASS-2750
04/16/2018 15:10:12
Add Telemetry Data to Aggregation Pipeline
Add Telemetry Data to Aggregation Pipeline: - Pipeline length - User scrolling through documents. - Pipeline Error Rate - Stage Operators
3
68
COMPASS-2751
04/16/2018 15:11:34
Import Pipeline
Add the ability to import an aggregation pipeline into the builder.
5
69
COMPASS-2754
04/17/2018 14:33:31
Figure out how to test non-symmetric translations
Right now our test suite expects all translations to be symmetric, but that's not always possible (especially as our generated code gets more idiomatic). For example, Code in javascript can accept a function or a string, but in shell it only accepts a string. Javascript --> Shell: {code:javascript} Code(function(x){console.log(x)};) --> Code("function(x){console.log(x)};") {code} Shell --> Javascript {code:javascript} Code("function(x){console.log(x)};") --> Code("function(x){console.log(x)};") {code}
3
70
COMPASS-2755
04/17/2018 18:23:11
Explicitly indicate a view
h3. User story As a Compass user I want to distinguish views from collections So that I easily understand what I am selecting in the sidebar or in the list of collections h3. Acceptance criteria - Views are represented with an intuitive icon in the sidebar - Views appear after Collections in the sidebar - Views appear after Collections in the [Views and Collections screen|https://mongodb.invisionapp.com/share/ZKQDF41YGSJ#/screens/350992753] - In the Views and Collections screen, Views are displayed with the collection (or view) they are based on h4. Original description bq. Currently a view is distinguished from "normal" collection with a lock side its name. A more explicit way should be used to indicate a view.
3
71
COMPASS-2760
04/18/2018 15:58:50
make bson-compilers work in the browser
currently to consume this package, you need to be running a node environment as all the symbol tables get joined dynamically with 'path'. Need to consider a browserify transform that gets triggered on 'npm prepublish' and packages up a pure javascript module. https://www.npmjs.com/package/path-browserify and https://www.npmjs.com/package/brfs will probably do the trick.
5
72
COMPASS-2761
04/18/2018 18:23:12
As a Compass user, I need support for $near and $nearSphere
Current support for $geoWithin in Compass does not return a sorted list of matching points.
3
73
COMPASS-2766
04/18/2018 21:55:52
Set default numeric type
For example, numeric literals are doubles in the shell and javascript, but in java they are 32-bit integers. Ensure we're being consistent with integer types.
3
74
COMPASS-2774
04/25/2018 13:56:06
Upgrade CRUD Plugin to React 16
Update the CRUD Plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Update dependencies to support changes and fix issues. - Release new major version for Cloud.
5
75
COMPASS-2775
04/25/2018 13:57:50
Upgrade Aggregations Plugin to React 16
Update aggregations plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
5
76
COMPASS-2776
04/25/2018 14:07:44
Update Import/Export to React 16
Update import/export plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
77
COMPASS-2777
04/25/2018 14:09:03
Update Collection Stats to React 16
Update collection stats plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures. - Open source plugin.
3
78
COMPASS-2778
04/25/2018 14:10:03
Update Connect to React 16
Update connect plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
79
COMPASS-2779
04/25/2018 14:11:17
Update Connect Auth Roles to React 16
Update connect auth plugins plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
5
80
COMPASS-2780
04/25/2018 14:12:38
Update Document Validation to React 16
Update document validation plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
81
COMPASS-2781
04/25/2018 14:13:49
Update Deployment Awareness to React 16
Update deployment awareness plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
82
COMPASS-2782
04/25/2018 14:14:51
Update Query History to React 16
Update query history plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
83
COMPASS-2783
04/25/2018 14:15:45
Update Security Plugin to React 16
Update secutiry plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
84
COMPASS-2784
04/25/2018 14:16:19
Update Instance Plugin to React 16
Update instance plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
2
85
COMPASS-2785
04/25/2018 14:17:08
Update Server Stats Plugin to React 16
Update server stats plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
3
86
COMPASS-2786
04/25/2018 14:18:06
Update Server Version to React 16
Update server version plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
2
87
COMPASS-2787
04/25/2018 14:18:56
Update SSH Tunnel Status to React 16
Update ssh tunnel status plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
2
88
COMPASS-2788
04/25/2018 14:19:52
Update Status to React 16
Update status plugin to React 16: AC: - Update to React 16.3.2 - Update Enzyme to 3.3.0 - Bump apiVersion to 2.0.0 - Fix dependencies and failures.
2
89
COMPASS-2789
04/25/2018 15:27:20
get export to language modal to be worked in compass
The Idea™ at the moment is to get start off in compass main repo and create a dropdown to include the current history feature and export to language. To trigger both history and export components, generate an event on the global app registry – `global.hadronApp.appRegistry`. Then get export to language to listen in the `store.onActivated` for the above ^ event to be dispatched. A good example to see something like this working is in import-export plugin. -*Update:* use these two events to get the query bar – open-aggregation-export-to-language, open-query-export-to-language- -*Update2:* once the event is 'caught' in store.onActivated, dispatch an event to be handled in export-query.js module. The event in export-query.js should change the state to have an inputQuery passed in from aggregation/querybar.- *Update3:* check that this actually works with the compass branch that has the appRegistry events; need to send back the close button event
5
90
COMPASS-2797
05/01/2018 15:00:30
Figure out how to handle elisions in java
Elisions in javascript: [,,1, 2] --> [undefined, 1, 2] Won't work in java because doing `.append("array with leading elision", Arrays.asList(null, "1", "2")) will throw a null pointer exception.`   Use BsonUndefined  
1
91
COMPASS-2802
05/02/2018 13:22:09
RTSS Still Polling on Auth Errors
Investigate and fix RTSS still polling when an authentication error is encountered.
1
92
COMPASS-2803
05/02/2018 14:40:55
Write error handling tests for C#
Write C# JSON tests in test/json/error/*   Need to make sure we throw when code won't run in the target language, and the error messages are useful. These tests need to be *complete*, so that we are testing every error path.
3
93
COMPASS-2804
05/02/2018 14:43:09
Write error handling tests for Python
Write Python JSON tests in test/json/error/*   Need to make sure we throw when code won't run in the target language, and the error messages are useful. These tests need to be *complete*, so that we are testing every error path.
3
94
COMPASS-2805
05/02/2018 14:44:39
Write error handling tests for Java
Write Java JSON tests in test/json/error/*   Need to make sure we throw when code won't run in the target language, and the error messages are useful. These tests need to be *complete*, so that we are testing every error path.
3
95
COMPASS-2806
05/02/2018 14:45:14
Write error handling tests for Javascript
Write JS JSON tests in test/json/error/*   Need to make sure we throw when code won't run in the target language, and the error messages are useful. These tests need to be *complete*, so that we are testing every error path.
3
96
COMPASS-2808
05/02/2018 14:49:17
Run python tests in python
Need to run each of the generated python tests in the python interpreter to make sure that they run and do what's expected (i.e. str vs repr).   Can add a python template to [https://github.com/mongodb-js/bson-compilers/blob/test-file/make-test-file.js] and write to a file that can be run in python.
3
97
COMPASS-2814
05/02/2018 14:58:16
Add Shell BSON constructors to JS symbol table
(lower priority because not needed for v1)
1
98
COMPASS-2815
05/02/2018 14:58:51
Add Shell BSON utils to JS symbol table
(lower priority because not needed for v1)
3
99
COMPASS-2816
05/02/2018 14:59:38
Add Shell BSON methods to JS symbol table
(lower priority because not needed for v1)
3
100
COMPASS-2817
05/02/2018 15:05:43
Move anything JS-specific out of the Generators and into javascript/Visitor.js
The generators need to be input-language agnostic, so anytime we execute JS code in an emit method it needs to be moved to the Visitor, whenever possible.
3
101
COMPASS-2820
05/02/2018 15:57:34
Put export to language into read-only ace code editor
To get syntax highlighting and maybe even pretty printing?
3
102
COMPASS-2829
05/04/2018 14:35:22
Create Unique Identifier to Send to Atlas with Link
Send a unique identifier to the Atlas link so they know it came from Compass.
1
103
COMPASS-2830
05/04/2018 14:43:37
Disable Intercom in Compass Dev Environments
Disable Intercom in Compass Dev Environments
2
104
COMPASS-2846
05/14/2018 16:01:42
Validate TLS 1.2 Support with MongoDB 4.0
We need to verify that the latest version of Compass can connect to a MongoDB 3.7.9/4.0.0 instance with --requireSSL enabled [--sslDisabledProtocols=TLS1_0] (1.0 is disabled by default). This is enough to mark Compass as done with regards to the company/product wide Safe TLS initiative driven by the PCI-DSS deadline of June 30, 2018 where TLS 1.0 must be disabled by default everywhere. 
2
105
COMPASS-2847
05/14/2018 16:24:27
Investigate User Upserts Failing
Compass is not updating user data in the data warehouse, failing on the attempted update/upsert via Stitch. Need to investigate is this is a Stitch or Compass issue.
3
106
COMPASS-2864
05/18/2018 15:28:44
Investigate adding buffer type to query bar
Discuss if we want to add a "buffer" support. * Right now it is valid to instantiate a JS Buffer only in the Binary object constructor. Should users be able to instantiate buffer data types outside of the BSON binary object? * Will people ever actually use it, outside of the BSON Binary type? * There isn't a shell equivalent outside of using the subtype like `md5(...data...)`.
1
107
COMPASS-2865
05/21/2018 15:29:53
Explore idiomatic export to language
Exploratory ticket for the idiomatic export to language feature. * Work with the drivers/education teams to specify exactly what "idiomatic" code should look like for Java, Python, Node, Shell, CSharp. * Split the work into tickets with estimates. * Do we want to give people the option to have idiomatic/standard, or do we want to always generate "idiomatic" code?
5
108
COMPASS-2888
05/27/2018 03:37:20
Agg pipeline builder to autocompolete newly defined fields
Currently, the Agg Pipeline builder offers field autocompletion based on the collection selected for aggregation. I'd like to see this extended to the new fields defined in the $project stages that precede any new stages that attempts to use them. See example attached.
3
109
COMPASS-2889
05/27/2018 05:18:36
Agg Pipeline Builder - Create an icon to create (insert) a new stage inplace
Add a plus button next to the Delete button for each stage. When clicked, it inserts a new stage right after the one that is currently selected. This will help avoid a lot of vertical scrolling and also unnecessary movement/dragging of stages when you want to simply insert a stage in the middle of a pipeline, which is very common when authoring/debugging agg pipelines.
3
110
COMPASS-2893
05/29/2018 15:26:18
implement design changes for export to language feature
input / output to be side by side –> [https://mongodb.invisionapp.com/share/YZGJBROJ6UT#/screens/287448203] plus a few code structure / component changes: * -separate out components from main export-modal.jsx. Primarily a new *ace editor* component and *select-box* component- * -create *copy successful* messaging- * -make sure *copy* always works- * -level out and vertically align titles / buttons for ace editor. Currently export-to and select box are misaligned- * write a few more test cases for each component and modules – going to make another ticket for this!
3
111
COMPASS-2894
05/29/2018 15:26:37
implement feedback for c# syntax to be idiomatic
[https://github.com/mongodb-js/bson-compilers/pull/65 |https://github.com/mongodb-js/bson-compilers/pull/65] Doesn't include Builders: see https://jira.mongodb.org/browse/COMPASS-2900?filter=-2
3
112
COMPASS-2895
05/29/2018 15:51:52
create a wiki for bson-compilers
There are a few things that need to be explained in a wiki about how this project works. That way if people want to contribute, it'll be easier for them to get started. Also useful for other teams that will be using this package. Should include: 1) Symbol tables * how are these generated * how does the hierarchy work * what happens to them afterwards 2) Visitors and Generators. How do we end up with ctx being "passed down" from visitor to generator? 3) What happens once Antlr generates the AST? what do we do from there? 4) Diagram to explain the javascript visitor structure. 5) Maybe a few more diagrams if they prove useful
5
113
COMPASS-2896
05/29/2018 16:36:10
Idiomatic java numbers
Generate numbers idiomatically in java.   [https://github.com/mongodb-js/bson-compilers/pull/83]
3
114
COMPASS-2898
05/29/2018 16:39:25
Misc Idiomatic Java Syntax
* Use {{BsonUndefined}} instead of null * {{java.lang}} is always imported, so don't need to use the full name. * Use {{SimpleDateFormat}} instead of {{toString()}} * Use {{toHexString}} instead of {{toString}} for ObjectId * Use {{BINARY}} instead of {{OLD_BINARY}} for Binary subtype. * Use Document constructor, so generate "\{x: 1}" as "new Document("x", 1)" and not "new Document().append("x", 1)" * Remove Code.toString() for JS and Shell because the result is just "[object Object]" [https://github.com/mongodb-js/bson-compilers/pull/82]  [https://github.com/mongodb-js/bson-compilers/pull/84] Comments from: [https://github.com/mongodb-js/bson-compilers/pull/76]  
3
115
COMPASS-2899
05/29/2018 16:42:18
Use Builders for java documents
http://mongodb.github.io/mongo-java-driver/3.6/builders/
5
116
COMPASS-2901
05/29/2018 16:46:25
Misc Python idiomatic syntax
From: https://github.com/mongodb-js/bson-compilers/pull/78
3
117
COMPASS-2902
05/29/2018 16:55:32
Generate accurate and idiomatic Binary data
Instead of extracting the data as a string, we need to extract the data as bytes so that we can generate the correct output language binary data.    Java, for example, has only signed bytes and must be constructed with: {code:java} new BsonBinary(new byte[] {4, 6, 4, -3, -128, 0, 127});{code}
5
118
COMPASS-2903
05/29/2018 17:15:58
Add csharp to test generator
Java + python are already done:  [https://github.com/mongodb-js/bson-compilers/blob/test-file/make-test-file.js]
1
119
COMPASS-2904
05/29/2018 17:27:43
Add "required imports" to generated code
There was some concern that we need to indicate which classes we're using in the generated code so that beginners know exactly how to import the bson classes/etc.   We can use the code in [https://github.com/mongodb-js/bson-compilers/blob/test-file/make-test-file.js] as a starting point.   Open questions:  * how do we want to display this visually? * do we only import what we use (therefore do a scan of the exported code) or should we just provide a generic "import" list of things that can be used? * Is this required for version 1?
3
120
COMPASS-2906
05/30/2018 15:38:03
write nested document tests
should test for larger, more complicated document queries
3
121
COMPASS-2909
05/31/2018 03:16:42
Compass not able to auto fill connection string with LDAP userDN information.
Hi Compass team, Compass not able to auto fill connection string with LDAP userDN information when copying from Atlas connection modal. User have to manually input the all the required information manually.  Please see the screenshot video here: [https://cl.ly/0J2l3Y3T0o00]   Thanks, Steve
1
122
COMPASS-2910
06/01/2018 09:44:07
ace editor to change language modes based on outputs
need to be able to set proper syntax highlighting based on ouptut language in the plugin UI
1
123
COMPASS-2917
06/04/2018 14:03:26
Update Compass Version With Last Login Date
We need to update the Compass version along with the last login date in the metrics.
2
124
COMPASS-2923
06/05/2018 21:29:48
Update Language Model to Support $text, $mod, $bits...
Update the language model to support modern MQL features.
3
125
COMPASS-2937
06/12/2018 15:59:01
Support 4.0 Features in Grammar
Add support for 4.0 conversion features to the grammar. Also support new $bucket syntax.
3
126
COMPASS-2943
06/18/2018 12:03:07
unify test cases for bson compilers
Maintaining tests based on input language might prove itself tedious in the long run. Something to consider in the future is coming up with a yml / json file to store all tests and read out the input and output from a single json / yml object. If either the output or input are non existent for a particular method, the test can be skipped (i.e. the key/value pair will not be in that particular code block).
3
127
COMPASS-2949
06/19/2018 15:50:52
Toggle Auto-Preview
Add another mode, auto-preview, which allows the user to toggle if the stages are executing when typing. When turned off, require CMD/CTL+Return to execute.
3
128
COMPASS-2950
06/19/2018 15:58:55
Add New Atlas Link
Add the new Atlas link to the connect window with the updated designs.
2
129
COMPASS-2964
06/26/2018 12:35:20
Export to Language Modal Needs Max Height
With long queries or pipelines, the export to language modal goes off screen. Think we just need to set a max height on the modal itself and let the contents scroll. See screen shot.
1
130
COMPASS-2966
06/28/2018 15:15:54
Only provide imports for used packages
Only applies to java + javascript imports, but right now we always import all potential classes. We should figure out which classes are actually used and only import those.
3
131
COMPASS-2971
06/29/2018 15:13:41
Abstract new into template
Right now we are using "this.new" to determine if new is required, we should abstract that into a template so that we can support [~durran.jordan]'s work on ruby.
1
132
COMPASS-2976
07/02/2018 20:50:42
NaN in EditableDocument Double fields
if I enter alphabetic characters into a Double field it changes the text to "NaN" and you sort of get stuck in that state. Can't backspace to get rid of it, have to select all and then enter a number to start over   !https://mail.google.com/mail/u/0?ui=2&ik=7a0111ff37&attid=0.1&permmsgid=msg-a:r3017218747656759137&th=1644ca3c9016d539&view=fimg&sz=w1600-h1000&attbid=ANGjdJ8NBqAZ14nzrIKji5xeBJVgPfL0ScqX7gV8M5Hz2Z5uSV9lJQS4hg0lttEK2d94bkfPWf3UjPLQUiaSrsnRMAP7KIshyX1ahWOfOfbCg0EOSmNtgyVCLtRqJOw&disp=emb&realattid=ii_jj09mmwz0!
2
133
COMPASS-2977
07/03/2018 12:55:19
Update Node Driver to 3.1.0
Upgrade the Node driver to 3.1.0 for SCRAM-SHA256 support.
2
134
COMPASS-2983
07/09/2018 12:34:55
Add SCRAM-SHA-256 Support
Add SCRAM-SHA-256 support to the connection window.
5
135
COMPASS-2998
07/16/2018 17:47:29
Add "Idiomatic" button to export to language UI
Since we can support regular documents or builders in java + c# (soon), we need to allow the user to active/deactivate. [~durran.jordan], do we want default to be "use builders" or not?
1
136
COMPASS-3020
07/26/2018 16:44:47
Java default to using builders
[https://github.com/mongodb-js/compass-export-to-language/pull/13] https://github.com/mongodb-js/bson-compilers/pull/120
1
137
COMPASS-3033
07/31/2018 12:40:08
rename Bson-Compilers to Bson-Transpilers
Because Bson-Source-To-Source-Compilers is too long
1
138
COMPASS-3045
08/08/2018 14:36:15
Support Collation in Agg Pipeline Builder
Add collation support to the aggregation pipeline builder.   # Add the collation field. # Pass collation options when executing the stages. # Pass collation options when executing a $out https://mongodb.invisionapp.com/share/ZSMFJZ4DHKY#/screens/309739115_Design_04_-_1280px_-_Option_A
5
139
COMPASS-3051
08/09/2018 15:35:49
Add copy button to original pipeline in Export to Lang modal
* Add copy button to left code snippet (original pipeline) * Add tooltip to both copy buttons "Click to Copy" *
3
140
COMPASS-3063
08/14/2018 19:39:44
Change in-progress banner icons in collation support modals
Updating icons from "align-center" to "spinner" !image-2018-08-14-14-39-05-265.png|width=576,height=411!
2
141
COMPASS-3065
08/15/2018 15:54:42
Migrate services from deis to new techops platform
The auto-update and maps proxy currently run on Deis, which is being decommissioned by TECHOPS this quarter. Migrating to [the new platform|https://github.com/10gen/platform-docs] will dramatically increase reliability and provide long overdue monitoring and alerting. This is a multi-step project that will involve circling back with TECHOPS to update the DNS of these current services to point at the new platform containers. cc [~angelo.olivera]
5
142
COMPASS-3072
08/21/2018 14:11:41
mongodb_schema.rs: project setup
* -setup- [-rust-clippy-|https://github.com/rust-lang-nursery/rust-clippy] * -setup- [-rustfmt-|https://github.com/rust-lang-nursery/rustfmt] * -setup ci to include rust-clippy and rustfmt check- * -setup ci to make sure wasm pack can be build- * -setup github-templates- * -setup [wasm-pack|https://github.com/rustwasm/wasm-pack] (abstraction over [wasm-bindgen|https://github.com/rustwasm/wasm-bindgen])- * look into existing project figure out api endpoints and what will need to be exposed to wasm-pack/wasm-bindgen * -check 'clone' and 'debug' are implemented for all structs- * -figure out how to do testing with rust's internal test framework / possibly look into [quickcheck|https://github.com/BurntSushi/quickcheck] for model testing- * -#![deny(unsafe_code)]- * -deny missing docs- * -add code of conduct- * documentation for all of the above ^
8
143
COMPASS-3074
08/22/2018 10:06:08
Investigate export-to-lang modal size
Split off from COMPASS-3051, since it included two separate features. * Improve the modal height ** See if we can have the modal height extend to full height of the compass window (margin top and bottom should be the same) OR ** See if we can have the modal be resizable? (drag to resize)
3
144
COMPASS-3086
08/24/2018 15:09:18
As a user, I would like an improved experience when pasting pre-existing Aggregation Pipelines.
Let's try if no stage selected and you paste into stage editor, the pipeline fills out. If messy, we'll re-eval !agg-paste-pipeline.png|width=600!
1
145
COMPASS-3099
08/30/2018 21:58:46
Connection string autofill does not recognize authMechanism=PLAIN
https://jira.mongodb.org/browse/INT-3921 is marked done and hence I was testing the connection string autofill I am using compass 1.15.0. I tried having the following strings in clipboard and open compass  mongodb+srv://:@cluster0-prc3c.mmscloudteam.com/%24external?authMechanism=PLAIN mongodb+srv://test:@cluster0-prc3c.mmscloudteam.com/%24external?authMechanism=PLAIN mongodb+srv://cluster0-prc3c.mmscloudteam.com/%24external?authMechanism=PLAIN The 1st two looks good. But when i had the last string in my clipboard, LDAP option is not selected automatically.
1
146
COMPASS-3100
08/31/2018 12:01:12
Windows msi supports unattended installation
Allow users to silently install Compass to a specific directory and set of users.
3
147
COMPASS-3109
09/05/2018 15:20:38
Start on Symbol Table/Template blog post
Write a first draft for the team to edit!
5
148
COMPASS-3110
09/05/2018 15:27:12
Support the python language-types as input to java
Expressions, literals, arrays, objects, comparisons. First output java code. Blocked on COMPASS-3108
8
149
COMPASS-3113
09/05/2018 18:49:09
Refactor .evergreen.yaml for improved build times and functional tests
Refactor .evergreen.yaml to be sane so we can debug during setup for executing functional tests.
8
150
COMPASS-3125
09/12/2018 09:51:25
Warn users instead of hiding replica set field for SSH tunneling
See https://jira.mongodb.org/browse/COMPASS-3057
1
151
COMPASS-3136
09/19/2018 15:12:48
wasm: compass plugin to consume mongodb-schema.rs data
compass should be able to consume and output correct data provided by mongodb-schema.rs.
5
152
COMPASS-3137
09/19/2018 15:14:08
wasm: compass plugin to send data to mongodb-schema.rs
things to watch out for: types! Rust might be particular about the types passed in as input, so we might have to figure out a way to create proper generics which have been currently avoided.
5
153
COMPASS-3150
09/27/2018 12:37:17
Update to Electron 3/Node 10.2.1
Currently blocked by: https://github.com/atom/node-keytar/issues/125
8