author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
471,527
11.02.2019 19:18:35
-3,600
922b42a286857a8fdca64d649614724a8d104757
fix(testing-karma-bs): hard code Firefox 64 as 65 produces a timeout
[ { "change_type": "MODIFY", "diff": "@@ -49,6 +49,7 @@ module.exports = () => ({\nbs_win10_firefox_latest: {\nbase: 'BrowserStack',\nbrowser: 'Firefox',\n+ browser_version: '64.0',\nos: 'Windows',\nos_version: '10',\n},\n", "new_path": "packages/testing-karma-bs/bs-settings.js", "old_path": "packages...
JavaScript
MIT License
open-wc/open-wc
fix(testing-karma-bs): hard code Firefox 64 as 65 produces a timeout
1
fix
testing-karma-bs
531,793
11.02.2019 19:23:09
0
17628fec8ecf46a8199f2e82491af6b66e36acd1
feat(ui): set font-display swap policy This tells the browser to use a fallback font until Leto is loaded, which speeds up initial rendering, especially on slow clients
[ { "change_type": "MODIFY", "diff": "$web-font-path: \"\";\n@font-face {\n+ font-display: swap;\nfont-family: \"Lato\";\nfont-weight: 400;\nfont-style: normal;\n@@ -12,6 +13,7 @@ $web-font-path: \"\";\n}\n@font-face {\n+ font-display: swap;\nfont-family: \"Lato\";\nfont-weight: 400;\nfont-style: italic;\n@@ ...
TypeScript
Apache License 2.0
prymitive/karma
feat(ui): set font-display swap policy This tells the browser to use a fallback font until Leto is loaded, which speeds up initial rendering, especially on slow clients
1
feat
ui
471,527
11.02.2019 20:43:41
-3,600
24588aea330f10b0cfb13935a3909b36972efd2b
chore(testing-helpers): more tests for fixture
[ { "change_type": "MODIFY", "diff": "@@ -14,13 +14,13 @@ const isDefinedPromise = action => typeof action === 'object' && Promise.resolve\n*/\nexport async function elementUpdated(el) {\nlet hasSpecificAwait = false;\n- let update = el.updateComplete;\n+ let update = el && el.updateComplete;\nif (isDefinedPr...
JavaScript
MIT License
open-wc/open-wc
chore(testing-helpers): more tests for fixture
1
chore
testing-helpers
471,527
11.02.2019 21:00:03
-3,600
a5916119dcb9cbd6b4f7e4b3245d1b380eaec3ca
fix(testing-helpers): document oneEvent, triggerFocusFor, triggerBlurFor
[ { "change_type": "MODIFY", "diff": "@@ -97,6 +97,41 @@ Waits for `x` ms via `setTimeout`;\nawait aTimeout(10); // would wait 10ms\n```\n+## Testing Events\n+If you want to interact with web components you will sometimes need to await a specific event before you can continue testing.\n+\n+```js\n+it('can awa...
JavaScript
MIT License
open-wc/open-wc
fix(testing-helpers): document oneEvent, triggerFocusFor, triggerBlurFor
1
fix
testing-helpers
791,834
11.02.2019 21:51:06
28,800
7f86c5fb7973e868aeba3b74d9d0a2eba1af90a4
core: give sort fallback for broken test details in node 11
[ { "change_type": "MODIFY", "diff": "@@ -78,7 +78,10 @@ class TotalByteWeight extends ByteEfficiencyAudit {\nresults.push(result);\n});\nconst totalCompletedRequests = results.length;\n- results = results.sort((itemA, itemB) => itemB.totalBytes - itemA.totalBytes).slice(0, 10);\n+ results = results.sort((ite...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core: give sort fallback for broken test details in node 11 (#7216)
1
core
null
531,793
11.02.2019 23:05:53
0
c71834b43c96b81187221fa79f560dd281ceb846
chore(backend): bump caching headers to 1 year It's currently 30 days, if that works than why not set it to a much higher value
[ { "change_type": "MODIFY", "diff": "@@ -93,8 +93,8 @@ func serveFileOr404(path string, contentType string, c *gin.Context) {\nfunc staticHeaders(prefix string) gin.HandlerFunc {\nreturn func(c *gin.Context) {\nif strings.HasPrefix(c.Request.URL.Path, prefix) {\n- c.Header(\"Cache-Control\", \"public, max-ag...
TypeScript
Apache License 2.0
prymitive/karma
chore(backend): bump caching headers to 1 year It's currently 30 days, if that works than why not set it to a much higher value
1
chore
backend
471,527
11.02.2019 23:12:30
-3,600
d41d0c324b007fffc317c26db73b6130222a4dc3
chore: use still global yo for now
[ { "change_type": "MODIFY", "diff": "@@ -7,9 +7,11 @@ The goal of Open Web Components is to empower everyone with a powerful and battl\nThis will bootstrap a vanilla Web Component project based on our latest recommendations.\n```bash\n+npm i -g yo\n+npm i -g generator-open-wc\n+\n# in a new or existing folde...
JavaScript
MIT License
open-wc/open-wc
chore: use still global yo for now
1
chore
null
71,689
12.02.2019 00:20:14
28,800
642c8a616ed2bd8c0dd027dc9eddbcde75184920
fix(cdk): move apply() from Construct to ConstructNode This change moves the aspect `apply()` function from the `Construct` to the `ConstructNode`. All other functionality remains the same. BREAKING CHANGE: Tag aspects use this feature and any consumers of this implementation must change from `myConstruct.apply( ... )`...
[ { "change_type": "MODIFY", "diff": "@@ -230,7 +230,7 @@ export class AutoScalingGroup extends cdk.Construct implements IAutoScalingGroup\n});\nthis.connections = new ec2.Connections({ securityGroups: [this.securityGroup] });\nthis.securityGroups.push(this.securityGroup);\n- this.apply(new cdk.Tag(NAME_TAG, ...
TypeScript
Apache License 2.0
aws/aws-cdk
fix(cdk): move apply() from Construct to ConstructNode (#1738) This change moves the aspect `apply()` function from the `Construct` to the `ConstructNode`. All other functionality remains the same. BREAKING CHANGE: Tag aspects use this feature and any consumers of this implementation must change from `myConstruct...
1
fix
cdk
679,913
12.02.2019 02:52:44
0
7cf98efc392fc5dc6b9d28c7c2dfa5c7429f48a2
feat(transducers-binary): add utf8Length()
[ { "change_type": "MODIFY", "diff": "@@ -153,3 +153,29 @@ const codePoint = (x) =>\nx < 0x10000 ?\nString.fromCharCode(x) :\n(x -= 0x10000, String.fromCharCode(0xd800 | (x >> 10), 0xdc00 | (x & 0x3ff)));\n+\n+export const utf8Length =\n+ (str: string) => {\n+ const n = str.length;\n+ let len = 0;\n+ for (let...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(transducers-binary): add utf8Length()
1
feat
transducers-binary
679,913
12.02.2019 02:57:47
0
aeb05f8f959508c75a9b592ac9ac722226ac3d4e
feat(fsm): update / split until() BREAKING CHANGE: make until() array based, add untilStr() rename existing `until()` => `untilStr()`
[ { "change_type": "MODIFY", "diff": "@@ -7,10 +7,12 @@ import { result } from \"./result\";\n* recorded so far (excluding the matched terminator string) and returns\n* `Match.FULL` result. Else `Match.PARTIAL`.\n*\n+ * @see until\n+ *\n* @param str\n* @param callback\n*/\n-export const until = <C, R>(\n+expo...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(fsm): update / split until() BREAKING CHANGE: make until() array based, add untilStr() - rename existing `until()` => `untilStr()`
1
feat
fsm
679,913
12.02.2019 02:58:29
0
e8cd24227d859700716b61fbafe1680ef998b3a0
refactor(hiccup-markdown): update fsm until() usage
[ { "change_type": "MODIFY", "diff": "@@ -6,7 +6,7 @@ import {\nResultBody,\nseq,\nstr,\n- until,\n+ untilStr,\nwhitespace\n} from \"@thi.ng/fsm\";\nimport { peek } from \"@thi.ng/transducers\";\n@@ -217,9 +217,9 @@ const matchLink =\n(result: (href, body) => any[]) =>\nseq<string, FSMCtx, any>(\n[\n- until(L...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-markdown): update fsm until() usage
1
refactor
hiccup-markdown
679,913
12.02.2019 03:00:13
0
c1bbc6f631af584c5ec91f9e5f90e0f83b9a7b77
feat(bencode): add decode(), fix string length handling add decode() w/ opt utf8 string decoding use utf8Length() for string encoding
[ { "change_type": "MODIFY", "diff": "\"@thi.ng/api\": \"^5.0.2\",\n\"@thi.ng/checks\": \"^2.1.0\",\n\"@thi.ng/defmulti\": \"^1.0.2\",\n+ \"@thi.ng/errors\": \"^1.0.2\",\n\"@thi.ng/transducers\": \"^4.0.1\",\n\"@thi.ng/transducers-binary\": \"^0.1.1\"\n},\n", "new_path": "packages/bencode/package.json", ...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(bencode): add decode(), fix string length handling - add decode() w/ opt utf8 string decoding - use utf8Length() for string encoding
1
feat
bencode
791,690
12.02.2019 10:01:32
21,600
adacf914b96719036b7ad3c33c9da9d77768f9b7
core(font-display): more accurately follow CSS spec
[ { "change_type": "MODIFY", "diff": "const Audit = require('./audit');\nconst URL = require('../lib/url-shim').URL;\n-const PASSING_FONT_DISPLAY_REGEX = /block|fallback|optional|swap/;\n+const PASSING_FONT_DISPLAY_REGEX = /^(block|fallback|optional|swap)$/;\nconst CSS_URL_REGEX = /url\\((.*?)\\)/;\nconst CSS...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(font-display): more accurately follow CSS spec (#7191)
1
core
font-display
217,922
12.02.2019 10:32:08
-3,600
28a722ea82220bcc7fae084ecab5bbe7d8d65c6c
fix(gathering-location): fixed an issue with ephemeral node status
[ { "change_type": "MODIFY", "diff": "@@ -88,10 +88,10 @@ export class GatheringLocationComponent {\n});\n}));\n- const nodesFromGarlandBell = [].concat.apply([], ...items\n+ const nodesFromGarlandBell = [].concat.apply([], items\n.map(item => {\nreturn [].concat.apply([],\n- ...[item.obj.i, ...reductions[ite...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(gathering-location): fixed an issue with ephemeral node status
1
fix
gathering-location
469,438
12.02.2019 10:59:02
28,800
081aa2314d4d8ed3a137e0d2e4eb9ef284126d8e
fix: links should be arrays
[ { "change_type": "MODIFY", "diff": "@@ -296,12 +296,18 @@ Describes the operation for the given method name. The method name is used as th\nField Name | Type | Description\n---|:---:|---\n+<a name=\"methodName\"></a>name | [`string`] | The cannonical name for the method. The name MUST be unique within the m...
JavaScript
Apache License 2.0
open-rpc/spec
fix: links should be arrays
1
fix
null
76,605
12.02.2019 11:42:05
-3,600
367ec8ecdf48d189e2a354d5d67e71683deb44ce
build: update lodash to version 4.17.11
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"node-nlp\",\n- \"version\": \"2.4.0\",\n+ \"version\": \"2.4.1\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n\"balanced-match\": {\n\"version\": \"1.0.0\",\n\"bundled\": true,\n- \"dev\": true\n+ \"dev\": true,\n+ \"optional\": true...
JavaScript
MIT License
axa-group/nlp.js
build: update lodash to version 4.17.11
1
build
null
469,409
12.02.2019 13:13:59
28,800
546275d238ae6f2ebacd262e700f91ef3654887e
fix: method over operation
[ { "change_type": "MODIFY", "diff": "@@ -121,9 +121,9 @@ Field Name | Type | Description\n<a name=\"openrpcVersion\"></a>openrpc | `string` | **REQUIRED**. This string MUST be the [semantic version number](https://semver.org/spec/v2.0.0.html) of the [OpenRPC Specification version](#versions) that the OpenRPC...
JavaScript
Apache License 2.0
open-rpc/spec
fix: method over operation
1
fix
null
469,409
12.02.2019 13:20:13
28,800
bcbc3a7cf3408599638cfd0ce2961a045795e042
fix: result over response
[ { "change_type": "MODIFY", "diff": "@@ -630,10 +630,10 @@ Example Object Examples:\n##### <a name=\"linkObject\"></a>Link Object\n-The `Link object` represents a possible design-time link for a response.\n-The presence of a link does not guarantee the caller's ability to successfully invoke it, rather it pr...
JavaScript
Apache License 2.0
open-rpc/spec
fix: result over response
1
fix
null
469,409
12.02.2019 14:06:26
28,800
a7ff97d2e9548cc0b9c908ef372048797e091401
fix: links example + contentDescriptor example + method example
[ { "change_type": "MODIFY", "diff": "@@ -301,8 +301,8 @@ Field Name | Type | Description\n<a name=\"methodSummary\"></a>summary | `string` | A short summary of what the method does.\n<a name=\"methodDescription\"></a>description | `string` | A verbose explanation of the method behavior. [CommonMark syntax](h...
JavaScript
Apache License 2.0
open-rpc/spec
fix: links example + contentDescriptor example + method example
1
fix
null
821,198
12.02.2019 14:10:51
28,800
505c43b2a45cd7ec4e8e0e30e5742d12050f19dc
fix: don't include mocha types on no mocha
[ { "change_type": "MODIFY", "diff": "@@ -467,12 +467,16 @@ class App extends Generator {\n'tslib@^1',\n)\ndevDependencies.push(\n- '@types/chai@^4',\n- '@types/mocha@^5',\n'@types/node@^10',\n'typescript@^3.3',\n'ts-node@^8',\n)\n+ if (this.mocha) {\n+ devDependencies.push(\n+ '@types/chai@^4',\n+ '@types/mo...
TypeScript
MIT License
oclif/oclif
fix: don't include mocha types on no mocha (#206)
1
fix
null
469,409
12.02.2019 14:12:38
28,800
04e9327c5ad7afd287a1c0a9999764b93d9d65b2
fix: remove linkRequest
[ { "change_type": "MODIFY", "diff": "@@ -641,7 +641,6 @@ Field Name | Type | Description\n---|:---:|---\n<a name=\"linkMethod\"></a>method | `string` | The name of an _existing_, resolvable OpenRPC method, as defined with a unique `method`. This field MUST resolve to a unique [Method Object](#methodObject). ...
JavaScript
Apache License 2.0
open-rpc/spec
fix: remove linkRequest
1
fix
null
469,409
12.02.2019 14:17:56
28,800
336873e392de576b011be12e4baf03e9a624fe8c
fix: error docs meaning field to data
[ { "change_type": "MODIFY", "diff": "@@ -767,7 +767,7 @@ Field Name | Type | Description\n---|:---:|---\n<a name=\"errorCode\"></a>[Application Defined Error Code](https://www.jsonrpc.org/specification#response_object) | `number` | A Number that indicates the error type that occurred. This MUST be an integer...
JavaScript
Apache License 2.0
open-rpc/spec
fix: error docs meaning field to data
1
fix
null
679,913
12.02.2019 14:51:43
0
83260ed64e1e437d124b71667211ba343a7df496
refactor(bencode): update to use
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^5.0.2\",\n+ \"@thi.ng/arrays\": \"^0.0.1\",\n\"@thi.ng/checks\": \"^2.1.0\",\n\"@thi.ng/defmulti\": \"^1.0.2\",\n\"@thi.ng/errors\": \"^1.0.2\",\n", "new_path": "packages/bencode/package.json", "old_path": "packages/ben...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(bencode): update to use @thi.ng/arrays
1
refactor
bencode
679,913
12.02.2019 14:52:48
0
64204a11dba6d554a242f97e3744077ce6b90bda
refactor(csp): use remove obsolete shuffle()
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^5.0.2\",\n+ \"@thi.ng/arrays\": \"^0.0.1\",\n\"@thi.ng/checks\": \"^2.1.0\",\n\"@thi.ng/dcons\": \"^2.0.4\",\n\"@thi.ng/errors\": \"^1.0.2\",\n", "new_path": "packages/csp/package.json", "old_path": "packages/csp/packag...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(csp): use @thi.ng/arrays, remove obsolete shuffle()
1
refactor
csp
679,913
12.02.2019 14:53:17
0
3abdc9ebad544162d418b9abd043a3e5b93368c3
refactor(fsm): update to use
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^5.0.2\",\n+ \"@thi.ng/arrays\": \"^0.0.1\",\n\"@thi.ng/equiv\": \"^1.0.2\",\n\"@thi.ng/errors\": \"^1.0.2\",\n\"@thi.ng/transducers\": \"^4.0.1\"\n", "new_path": "packages/fsm/package.json", "old_path": "packages/fsm/pa...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(fsm): update to use @thi.ng/arrays
1
refactor
fsm
679,913
12.02.2019 14:54:16
0
78095f4f51f1d11f71a400ee3da9ff249af7ba51
refactor(geom): update to use
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^5.0.2\",\n+ \"@thi.ng/arrays\": \"^0.0.1\",\n\"@thi.ng/checks\": \"^2.1.0\",\n\"@thi.ng/compose\": \"^1.0.2\",\n\"@thi.ng/defmulti\": \"^1.0.2\",\n", "new_path": "packages/geom/package.json", "old_path": "packages/geom/...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(geom): update to use @thi.ng/arrays
1
refactor
geom
679,913
12.02.2019 14:54:45
0
5efda384f94edf1cbfcde303e105886a23a06ad2
refactor(geom-accel): update to use
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"^5.0.2\",\n+ \"@thi.ng/arrays\": \"^0.0.1\",\n\"@thi.ng/geom-api\": \"^0.1.1\",\n\"@thi.ng/heaps\": \"^1.0.2\",\n\"@thi.ng/math\": \"^1.1.0\",\n", "new_path": "packages/geom-accel/package.json", "old_path": "packages/geo...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(geom-accel): update to use @thi.ng/arrays
1
refactor
geom-accel
679,913
12.02.2019 14:55:44
0
5ce96937373ea974895cb1744e8c76a08baa6763
minor(heaps): minor updates
[ { "change_type": "MODIFY", "diff": "@@ -173,11 +173,11 @@ export class Heap<T> implements\nif (!n) {\nreturn res;\n}\n- let x = res[n - 1], y;\n+ let x = res[n - 1], y: T;\nfor (let i = n, m = vals.length; i < m; i++) {\ny = vals[i];\nif (cmp(y, x) < 0) {\n- res.splice(binarySearch(res, y, 0, n, cmp), 0, y)...
TypeScript
Apache License 2.0
thi-ng/umbrella
minor(heaps): minor updates
1
minor
heaps
679,913
12.02.2019 14:56:20
0
3a74bf1aa430850533f26bf77291a24e97217f82
refactor(hiccup-markdown): update to use
[ { "change_type": "MODIFY", "diff": "\"typescript\": \"^3.2.2\"\n},\n\"dependencies\": {\n+ \"@thi.ng/arrays\": \"^0.0.1\",\n\"@thi.ng/checks\": \"^2.1.0\",\n\"@thi.ng/defmulti\": \"^1.0.2\",\n\"@thi.ng/errors\": \"^1.0.2\",\n", "new_path": "packages/hiccup-markdown/package.json", "old_path": "packag...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(hiccup-markdown): update to use @thi.ng/arrays
1
refactor
hiccup-markdown
679,913
12.02.2019 14:57:02
0
5a7e44814438d8f20b0e7201b5a2e2e5cf046f99
fix(random): add opt scale arg to IRandom.float()
[ { "change_type": "MODIFY", "diff": "@@ -2,7 +2,7 @@ import { ICopy } from \"@thi.ng/api\";\nexport interface IRandom {\nint(): number;\n- float(): number;\n+ float(norm?: number): number;\nnorm(scale?: number): number;\nminmax(min: number, max: number): number;\ngaussian(samples?: number, offset?: number, s...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(random): add opt scale arg to IRandom.float()
1
fix
random
679,913
12.02.2019 14:58:04
0
b0b41f79ac77fe895d31756f9a780dc881797158
refactor(examples): update to use
[ { "change_type": "MODIFY", "diff": "},\n\"dependencies\": {\n\"@thi.ng/api\": \"latest\",\n+ \"@thi.ng/arrays\": \"latest\",\n\"@thi.ng/checks\": \"latest\",\n\"@thi.ng/hdom\": \"latest\",\n\"@thi.ng/hdom-components\": \"latest\",\n", "new_path": "examples/canvas-dial/package.json", "old_path": "exa...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(examples): update to use @thi.ng/arrays
1
refactor
examples
815,601
12.02.2019 15:19:26
-28,800
6cca12d919fcc71578fae765e8dee313cc7c9363
feat: rewrite jsonrpc http server
[ { "change_type": "MODIFY", "diff": "@@ -572,10 +572,11 @@ dependencies = [\n\"faster-hex 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"flatbuffers 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)\",\n\"futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)\...
Rust
MIT License
nervosnetwork/ckb
feat: rewrite jsonrpc http server
1
feat
null
679,913
12.02.2019 15:35:46
0
f719724d4186eb54c6776fca4dcfe12a39cad67c
feat(random): add randomID() & weightedRandom()
[ { "change_type": "MODIFY", "diff": "@@ -4,3 +4,6 @@ export * from \"./system\";\nexport * from \"./xorshift128\";\nexport * from \"./xorwow\";\nexport * from \"./xsadd\";\n+\n+export * from \"./random-id\";\n+export * from \"./weighted-random\";\n", "new_path": "packages/random/src/index.ts", "old_p...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(random): add randomID() & weightedRandom()
1
feat
random
791,690
12.02.2019 15:36:04
21,600
638ba4ecd36362f2d2108d74792500a39d474b75
tests: replace non-volatile snapshots with inline literals
[ { "change_type": "MODIFY", "diff": "@@ -172,69 +172,63 @@ describe('Font size gatherer', () => {\nit('should identify inline styles', () => {\nconst result = FontSizeGather.getEffectiveFontRule({inlineStyle});\n- expect(result).toMatchInlineSnapshot(`\n-Object {\n- \"cssProperties\": Array [\n- Object {\n- ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests: replace non-volatile snapshots with inline literals (#7217)
1
tests
null
679,913
12.02.2019 15:37:42
0
4b0eec633544d07c053c3880f1312adfcd13a64f
refactor(transducers): remove obsolete randomID() & weightedRandom() BREAKING CHANGE: migrate randomID() & weightedRandom() to update choices() iterator
[ { "change_type": "DELETE", "diff": "-import { IRandom, SYSTEM } from \"@thi.ng/random\";\n-import { choices } from \"../iter/choices\";\n-import { take } from \"../xform/take\";\n-\n-/**\n- * Generates and returns a random string of `len` characters (default\n- * 4), plus optional given `prefix` and using o...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(transducers): remove obsolete randomID() & weightedRandom() BREAKING CHANGE: migrate randomID() & weightedRandom() to @thi.ng/random - update choices() iterator
1
refactor
transducers
730,412
12.02.2019 15:38:26
0
f909ee90d21eb68554051e88aa071dedacef95e5
chore(release): 0.1.418
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.418\"></a>\n+## [0.1.418](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.418
1
chore
release
469,438
12.02.2019 15:41:30
28,800
9c31f53cc02c13e78b9f39a737cc6ce9944a5b6c
fix: always use examples as array
[ { "change_type": "MODIFY", "diff": "@@ -363,7 +363,7 @@ Field Name | Type | Description\n<a name=\"contentDescriptorDescription\"></a>description | `string` | A verbose explanation of the method behavior. [CommonMark syntax](http://spec.commonmark.org/) MAY be used for rich text representation.\n<a name=\"c...
JavaScript
Apache License 2.0
open-rpc/spec
fix: always use examples as array
1
fix
null
469,438
12.02.2019 15:45:02
28,800
948f535bd9e233becc0f51d4dca54262b64c2199
fix: lowercase error field names
[ { "change_type": "MODIFY", "diff": "@@ -765,9 +765,9 @@ Defines an application level error.\nField Name | Type | Description\n---|:---:|---\n-<a name=\"errorCode\"></a>[Application Defined Error Code](https://www.jsonrpc.org/specification#response_object) | `number` | A Number that indicates the error type ...
JavaScript
Apache License 2.0
open-rpc/spec
fix: lowercase error field names
1
fix
null
679,913
12.02.2019 15:49:31
0
dd13fa9da4841d77863446746e2a6d0ce1fc0edd
feat(compose): add new functions add constantly() add delay() add delayed() add identity()
[ { "change_type": "ADD", "diff": "+import { FnAny } from \"@thi.ng/api\";\n+\n+export const constantly =\n+ <T>(x: T): FnAny<T> => () => x;\n", "new_path": "packages/compose/src/constantly.ts", "old_path": null }, { "change_type": "ADD", "diff": "+import { IDeref } from \"@thi.ng/api\";\n...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(compose): add new functions - add constantly() - add delay() - add delayed() - add identity()
1
feat
compose
469,438
12.02.2019 16:04:44
28,800
f1a3347d5808bae21a87ea586b1ecae9bccb9bdb
fix: remove comment about organization
[ { "change_type": "MODIFY", "diff": "@@ -894,8 +894,6 @@ Tag Object Example:\n#### <a name=\"externalDocumentationObject\"></a>External Documentation Object\n-***Prolly doesnt belong at this depth level of the spec***\n-\nAllows referencing an external resource for extended documentation.\nField Name | Type ...
JavaScript
Apache License 2.0
open-rpc/spec
fix: remove comment about organization
1
fix
null
503,951
12.02.2019 16:05:06
18,000
38f69d84669aef5590d5251e714dc02af1ebbab7
fix(readme): fix typo in readme to force react-styles release
[ { "change_type": "MODIFY", "diff": "# @patternfly/react-styles\n-Library that provides CSS-in-JS capabilites along with build plugins to convert raw css imports to a consumable form for JS. This approach is very similar to how [css-modules][css-modules] works.\n+Library that provides CSS-in-JS capabilities ...
TypeScript
MIT License
patternfly/patternfly-react
fix(readme): fix typo in readme to force react-styles release (#1377)
1
fix
readme
469,438
12.02.2019 16:30:36
28,800
a1ca60149e64a9888514ea9375dcf3ae5223ed19
fix: server needs name
[ { "change_type": "MODIFY", "diff": "@@ -211,6 +211,7 @@ An object representing a Server.\nField Name | Type | Description\n---|:---:|---\n+<a name=\"serverName\"></a>name | `string` | **REQUIRED**. A name to be used as the cannonical name for the server.\n<a name=\"serverUrl\"></a>url | `string` | **REQUIRE...
JavaScript
Apache License 2.0
open-rpc/spec
fix: server needs name
1
fix
null
679,913
12.02.2019 17:41:53
0
e9d57fcd720a1b44963bd75e4abf066fd9fa76b0
fix(compose): add varargs override for jux(), add tests
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,8 @@ export function juxt<T, A, B, C, D, E>(a: Fn<T, A>, b: Fn<T, B>, c: Fn<T, C>, d:\nexport function juxt<T, A, B, C, D, E, F>(a: Fn<T, A>, b: Fn<T, B>, c: Fn<T, C>, d: Fn<T, D>, e: Fn<T, E>, f: Fn<T, F>): Fn<T, [A, B, C, D, E, F]>;\nexport function juxt<T, A...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(compose): add varargs override for jux(), add tests
1
fix
compose
815,601
12.02.2019 19:11:57
-28,800
a7523584ca78595bbedbe6f3f0b082c984df653a
fix: fetch fork logic
[ { "change_type": "MODIFY", "diff": "@@ -117,6 +117,8 @@ impl<CI: ChainIndex + 'static> ChainService<CI> {\n}\n}\n+ // process_block will do block verify\n+ // but invoker should guarantee block header be verified\nfn process_block(&mut self, block: Arc<Block>) -> Result<(), ProcessBlockError> {\ndebug!(targ...
Rust
MIT License
nervosnetwork/ckb
fix: fetch fork logic
1
fix
null
679,913
12.02.2019 19:41:51
0
77ed4c54b327bed1308cf6841da591780ba430c8
fix(transducers-binary): update juxt import
[ { "change_type": "MODIFY", "diff": "\"typescript\": \"^3.2.2\"\n},\n\"dependencies\": {\n+ \"@thi.ng/compose\": \"^1.0.2\",\n\"@thi.ng/strings\": \"^1.0.3\",\n\"@thi.ng/transducers\": \"^4.0.1\"\n},\n", "new_path": "packages/transducers-binary/package.json", "old_path": "packages/transducers-binary/...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(transducers-binary): update juxt import
1
fix
transducers-binary
217,922
12.02.2019 20:43:19
-3,600
aab8b882bd46fdbd6ccfe899a43c573d17a0a1a0
fix(simulator): fixed an issue with the bonus from consumables being ceiled instead of floored
[ { "change_type": "MODIFY", "diff": "@@ -594,7 +594,7 @@ export class SimulatorComponent implements OnInit, OnDestroy {\nif (this.selectedFood !== undefined && this.selectedFood !== null) {\nconst foodBonus = this.selectedFood.getBonus(bonusType);\nif (foodBonus !== undefined) {\n- bonusFromFood = Math.ceil(...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue with the bonus from consumables being ceiled instead of floored
1
fix
simulator
471,470
12.02.2019 21:18:00
-3,600
1770904e9a9deef2ae5efb0b26a5db4699930df6
fix(generator-open-wc): allow options for starter-app
[ { "change_type": "MODIFY", "diff": "@@ -20,10 +20,15 @@ function getClassName(tagName) {\nmodule.exports = class GeneratorGetTagName extends Generator {\nasync prompting() {\n+ if (!this.options.appname) {\nthis.answers = await this.prompt(PROMPTS);\nthis.answers.className = getClassName(this.answers.tagNam...
JavaScript
MIT License
open-wc/open-wc
fix(generator-open-wc): allow options for starter-app
1
fix
generator-open-wc
217,922
12.02.2019 21:21:57
-3,600
f82421b123e7297d7a0a40603044c8e8e91dae4b
fix(simulator): fixed an issue with specialist stats toggle
[ { "change_type": "MODIFY", "diff": "<nz-form-item>\n<nz-form-control>\n<label nz-checkbox id=\"specialist\"\n- formControlName=\"specialist\">{{'SIMULATOR.CONFIGURATION.Specialist'\n+ formControlName=\"specialist\"\n+ (click)=\"toggleSpecialist()\">{{'SIMULATOR.CONFIGURATION.Specialist'\n| translate}}</labe...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(simulator): fixed an issue with specialist stats toggle
1
fix
simulator
217,922
12.02.2019 21:26:45
-3,600
b63c1cb84d0f6ffe6cfe3b81d5981b6fb5be7afc
chore(release): 5.0.25
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"5.0.25\"></a>\n+## [5.0.25](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.2...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 5.0.25
1
chore
release
217,922
12.02.2019 21:45:01
-3,600
96bba7960f62b9e504a9b548731bdd349dacc01d
chore: small change to trigger lazy circleCI
[ { "change_type": "MODIFY", "diff": "@@ -1879,7 +1879,6 @@ All notable changes to this project will be documented in this file. See [standa\n* item relationships (requires/requiredBy) dialog box ([43affd3](https://github.com/Supamiu/ffxiv-teamcraft/commit/43affd3))\n* item row states (craftable, has all base...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small change to trigger lazy circleCI
1
chore
null
531,793
12.02.2019 22:37:56
0
5bba87d1a90dedad8d46f6616fcfcb903ad133a6
feat(ci): wrap fragile commands with travis_retry travis_retry allows to retry a command a few times if it fails, use it for all commands that depend on external resources which could fail, so that we reduce noise caused by temporary issues with docker hub or npm/yarn registry
[ { "change_type": "MODIFY", "diff": "@@ -25,7 +25,7 @@ jobs:\n- make mock-assets\nscript: make test-go\nafter_success:\n- - bash <(curl -s https://codecov.io/bash) -F backend\n+ - travis_retry bash <(curl -s https://codecov.io/bash) -F backend\n- stage: Test\n<<: *DEFAULTS_JS\n@@ -34,7 +34,7 @@ jobs:\n- NODE...
TypeScript
Apache License 2.0
prymitive/karma
feat(ci): wrap fragile commands with travis_retry travis_retry allows to retry a command a few times if it fails, use it for all commands that depend on external resources which could fail, so that we reduce noise caused by temporary issues with docker hub or npm/yarn registry
1
feat
ci
603,467
12.02.2019 23:43:44
0
44a97b27daaccf3ef97f2c6d916341bfa602dd63
feat(protractor): Press.the(key).into(field) interaction
[ { "change_type": "ADD", "diff": "+import { expect } from '@integration/testing-tools';\n+import { Ensure, equals } from '@serenity-js/assertions';\n+import { Actor } from '@serenity-js/core';\n+import { given } from 'mocha-testdata';\n+import { by, Key, protractor } from 'protractor';\n+\n+import { BrowseTh...
TypeScript
Apache License 2.0
serenity-js/serenity-js
feat(protractor): Press.the(key).into(field) interaction
1
feat
protractor
71,452
12.02.2019 23:57:04
25,200
46236d90edb544e9f9861eb8d0f694aa1228727e
feat(apigateway): add support for MethodResponse to aws-apigateway.
[ { "change_type": "MODIFY", "diff": "@@ -213,6 +213,10 @@ to allow users revert the stage to an old deployment manually.\nSee [awslabs/aws-cdk#723](https://github.com/awslabs/aws-cdk/issues/723) for a\nlist of missing features.\n+### Roadmap\n+\n+- [ ] Support defining REST API Models [#1695](https://github....
TypeScript
Apache License 2.0
aws/aws-cdk
feat(apigateway): add support for MethodResponse to aws-apigateway. (#1572)
1
feat
apigateway
603,467
13.02.2019 00:06:07
0
62e4af96b6d46f1b332f97d2eb35d3e404b09152
chore(local-server): Removed to avoid faulty typings breaking the build
[ { "change_type": "MODIFY", "diff": "\"@serenity-js/rest\": \"2.0.1-alpha.14\",\n\"@types/express\": \"4.16.0\",\n\"@types/hapi\": \"17.6.3\",\n- \"@types/koa\": \"2.0.46\",\n\"@types/restify\": \"7.2.6\",\n\"axios\": \"0.18.0\",\n\"express\": \"4.16.4\",\n", "new_path": "packages/local-server/package.js...
TypeScript
Apache License 2.0
serenity-js/serenity-js
chore(local-server): Removed @types/koa to avoid faulty typings breaking the build
1
chore
local-server
67,494
13.02.2019 02:51:48
-3,600
c7da907e503870d904b30256f1d24e920d0e0976
refactor(router): make go await popstate & add suppress popstate callback option
[ { "change_type": "MODIFY", "diff": "@@ -22,6 +22,9 @@ export class QueuedBrowserHistory implements QueuedBrowserHistory {\nprivate currentHistoryActivity: QueueItem;\nprivate callback: (ev?: PopStateEvent) => void;\n+ private goResolve: ((value?: void | PromiseLike<void>) => void);\n+ private suppressPopsta...
TypeScript
MIT License
aurelia/aurelia
refactor(router): make go await popstate & add suppress popstate callback option
1
refactor
router
67,494
13.02.2019 03:03:59
-3,600
b90f124e2680a2908fdb075a160d24c04a0bb792
chore(router): add missing intialization
[ { "change_type": "MODIFY", "diff": "@@ -32,6 +32,7 @@ export class QueuedBrowserHistory implements QueuedBrowserHistory {\nthis.isActive = false;\nthis.currentHistoryActivity = null;\nthis.callback = null;\n+ this.goResolve = null;\nthis.suppressPopstateResolve = null;\n}\n", "new_path": "packages/route...
TypeScript
MIT License
aurelia/aurelia
chore(router): add missing intialization
1
chore
router
67,494
13.02.2019 03:23:30
-3,600
b9a5592e4ebf48051d060cc0ff409527e1eeb1f3
refactor(router): fix typo bug
[ { "change_type": "MODIFY", "diff": "@@ -103,7 +103,7 @@ export class QueuedBrowserHistory implements QueuedBrowserHistory {\nthis.callback(ev);\n} else {\nconst resolve = this.suppressPopstateResolve;\n- this.suppressPopstate = null;\n+ this.suppressPopstateResolve = null;\nresolve();\n}\n}\n", "new_pat...
TypeScript
MIT License
aurelia/aurelia
refactor(router): fix typo bug
1
refactor
router
71,101
13.02.2019 10:08:25
-3,600
77063024341f15ab47a55f274a1d71481ccf32ea
feat(kms): Allow opting out of "Retain" deletion policy Gives the user control over whether the key should be retained or scheduled for deletion when it is removed from the stack (or the stack is deleted). This is convenient in particular for integration tests, to avoid accumulating garbage over successive runs.
[ { "change_type": "MODIFY", "diff": "@@ -106,6 +106,14 @@ export interface EncryptionKeyProps {\n* administer the key will be created.\n*/\npolicy?: PolicyDocument;\n+\n+ /**\n+ * Whether the encryption key should be retained when it is removed from the Stack. This is useful when one wants to\n+ * retain acc...
TypeScript
Apache License 2.0
aws/aws-cdk
feat(kms): Allow opting out of "Retain" deletion policy (#1685) Gives the user control over whether the key should be retained or scheduled for deletion when it is removed from the stack (or the stack is deleted). This is convenient in particular for integration tests, to avoid accumulating garbage over successive ...
1
feat
kms
603,467
13.02.2019 10:21:48
0
a1847b72b7f6f0deb81cad6457857667fd194a06
fix(protractor): Navigate.to accepts a KnowableUnknown<string>
[ { "change_type": "MODIFY", "diff": "@@ -13,7 +13,7 @@ import { promiseOf } from '../promiseOf';\n*/\nexport abstract class Navigate implements Interaction {\n- static to(url: string) {\n+ static to(url: KnowableUnknown<string>) {\nreturn new NavigateToUrl(url);\n}\n", "new_path": "packages/protractor/sr...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(protractor): Navigate.to accepts a KnowableUnknown<string>
1
fix
protractor
67,494
13.02.2019 10:22:29
-3,600
f0287e425acf167d044c0cac554148d22093f6e5
test(router): update queued browser history tests
[ { "change_type": "MODIFY", "diff": "@@ -90,6 +90,7 @@ describe('QueuedBrowserHistory', function () {\nawait qbh.pushState('two', null, '#two');\nexpect(qbh.history.state).to.equal('two');\nawait qbh.go(-1);\n+ await Promise.resolve();\nexpect(qbh.history.state).to.equal('one');\nexpect(counter).to.equal(1);...
TypeScript
MIT License
aurelia/aurelia
test(router): update queued browser history tests
1
test
router
67,475
13.02.2019 11:29:43
-36,000
51a10c6b38be00d0aa0a437329409d6eac625e94
feat(e2e): add in cypress package.json The Cypress e2e tests are installed separately, otherwise install time for the rest of the packages and app in CI greatly suffers.
[ { "change_type": "ADD", "diff": "+package-lock=false\n", "new_path": "test/cypress/.npmrc", "old_path": null }, { "change_type": "ADD", "diff": "+{\n+ \"name\": \"cypress-e2e\",\n+ \"version\": \"1.0.0\",\n+ \"description\": \"The Cypress integration tests.\",\n+ \"main\": \"index.js\",\...
TypeScript
MIT License
aurelia/aurelia
feat(e2e): add in cypress package.json The Cypress e2e tests are installed separately, otherwise install time for the rest of the packages and app in CI greatly suffers.
1
feat
e2e
67,475
13.02.2019 11:32:20
-36,000
a5195f234d0cb085394b9f7db8b90b7f692256c9
feat(e2e): added in beginning of test app for cypress testing This will be a standalone kitchen-sink style app broken into different testable sections. Each and every package will be tested from within this very app, with tests navigating to the different sections to test the application.
[ { "change_type": "ADD", "diff": "+dist\n+.cache\n", "new_path": "test/cypress/app/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "+package-lock=false\n", "new_path": "test/cypress/app/.npmrc", "old_path": null }, { "change_type": "ADD", "diff": "+<!D...
TypeScript
MIT License
aurelia/aurelia
feat(e2e): added in beginning of test app for cypress testing This will be a standalone kitchen-sink style app broken into different testable sections. Each and every package will be tested from within this very app, with tests navigating to the different sections to test the application.
1
feat
e2e
808,029
13.02.2019 11:36:25
28,800
8a71ac452db0a1ead2a651eaf0da9ce991f09af8
fix(publish): Make the missing license warning clearer and more actionable
[ { "change_type": "MODIFY", "diff": "@@ -11,6 +11,7 @@ jest.mock(\"../../version/lib/is-anything-committed\");\njest.mock(\"../../version/lib/is-behind-upstream\");\njest.mock(\"../../version/lib/remote-branch-exists\");\n+const fs = require(\"fs-extra\");\nconst path = require(\"path\");\n// mocked modules\...
JavaScript
MIT License
lerna/lerna
fix(publish): Make the missing license warning clearer and more actionable (#1921)
1
fix
publish
67,475
13.02.2019 11:42:56
-36,000
bbd93c5d7ec67cdabd7f3a8d89824c1ffb27724f
feat(e2e): update test run task
[ { "change_type": "MODIFY", "diff": "\"test-firefox\": \"cross-env TS_NODE_PROJECT=\\\"scripts/tsconfig.json\\\" karma start scripts/karma.conf.ts --browsers=FirefoxHeadless --single-run\",\n\"test:watch\": \"cross-env TS_NODE_PROJECT=\\\"scripts/tsconfig.json\\\" karma start scripts/karma.conf.ts --browsers...
TypeScript
MIT License
aurelia/aurelia
feat(e2e): update test run task
1
feat
e2e
67,475
13.02.2019 11:43:11
-36,000
47e1f8dc259dbb7aedac66f3fa2aa2bbcd772b04
chore(e2e): change port for dev server for e2e test app
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"watch\": \"webpack-dev-server --no-inline\",\n\"build\": \"rimraf dist && webpack --config webpack.config.js\",\n- \"serve\": \"http-server -c-1 -p 9000 dist\"\n+ \"serve\": \"http-server -c-1 -p 9001 dist\"\n},\n\"dependencies\": {\n\"@aurelia/debug\": ...
TypeScript
MIT License
aurelia/aurelia
chore(e2e): change port for dev server for e2e test app
1
chore
e2e
603,467
13.02.2019 11:47:14
0
2368ebae9df5c18e6052c50a2ebd758e21b3dd0a
fix(rest): Descriptions of HTTPRequests are more human-friendly, and so is the description of the Lo
[ { "change_type": "MODIFY", "diff": "@@ -45,8 +45,8 @@ describe('@serenity-js/local-server', () => {\nPick.from(events)\n.next(ActivityStarts, hasName(`Nadia starts the local server`))\n.next(ActivityFinished, hasName(`Nadia starts the local server`))\n- .next(ActivityFinished, hasName(`Nadia ensures that UR...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(rest): Descriptions of HTTPRequests are more human-friendly, and so is the description of the Lo
1
fix
rest
807,849
13.02.2019 11:49:32
28,800
9b8dd9ce21f97666616d5888aede5ad181cf1dca
fix(collect-updates): Clarify logging in context
[ { "change_type": "MODIFY", "diff": "@@ -41,8 +41,6 @@ function collectUpdates(filteredPackages, packageGraph, execOpts, commandOptions\n}\n}\n- log.info(\"\", `Looking for changed packages since ${committish || \"initial commit.\"}`);\n-\nif (forced.size) {\n// \"warn\" might seem a bit loud, but it is appr...
JavaScript
MIT License
lerna/lerna
fix(collect-updates): Clarify logging in context
1
fix
collect-updates
104,827
13.02.2019 11:55:59
21,600
6e91179541b03579a650096b67351130e0d652b2
feat(table): add row expansion
[ { "change_type": "MODIFY", "diff": "],\n\"react/jsx-filename-extension\": 0, // allow js extensions\n\"no-prototype-builtins\": 0, // not needed as we never mess with prototype\n+ \"no-nested-ternary\": 0,\n\"react/jsx-one-expression-per-line\": 0,\n\"react/no-did-update-set-state\": 0, //not needed after r...
JavaScript
Apache License 2.0
carbon-design-system/carbon-addons-iot-react
feat(table): add row expansion
1
feat
table
273,648
13.02.2019 12:08:58
-3,600
2d2ec44da67bab024f5c187e8ac3b7baf6d26821
feat(router): deep node fields as route params
[ { "change_type": "MODIFY", "diff": "@@ -284,7 +284,7 @@ test('prefix dynamic route with leading slash', () => {\ntest('add type with custom fields in route', () => {\nconst contentType = createPlugin().store.addContentType({\ntypeName: 'TestPost',\n- route: '/:test/:test_raw/:id/:numeric/:author/:slug'\n+ r...
JavaScript
MIT License
gridsome/gridsome
feat(router): deep node fields as route params (#115)
1
feat
router
67,475
13.02.2019 12:14:43
-36,000
11eb956c99f7059becea6a61bf5cd40a1a517c2e
fix(e2e): router import and utils from jurgen demo
[ { "change_type": "MODIFY", "diff": "+import { Registration } from '@aurelia/kernel';\n+import { NavCustomElement, ViewportCustomElement } from '@aurelia/router';\nimport { DebugConfiguration } from '@aurelia/debug';\nimport { BasicConfiguration } from '@aurelia/jit-html-browser';\nimport { Aurelia } from '@...
TypeScript
MIT License
aurelia/aurelia
fix(e2e): router import and utils from jurgen demo
1
fix
e2e
67,475
13.02.2019 12:15:45
-36,000
da810063bc8e75ee900d7bb1266018ae79be13f9
feat(e2e): more router configuration for testing app
[ { "change_type": "MODIFY", "diff": "<template>\n- <div>${message}</div>\n+ <au-viewport name=\"app\" used-by=\"view\"></au-viewport>\n</template>\n", "new_path": "test/cypress/app/src/app.html", "old_path": "test/cypress/app/src/app.html" }, { "change_type": "MODIFY", "diff": "-import { ...
TypeScript
MIT License
aurelia/aurelia
feat(e2e): more router configuration for testing app
1
feat
e2e
67,475
13.02.2019 12:32:30
-36,000
a403f5e1bf42afea508d3bb70eedc3624c6a2c5d
feat(e2e): default router package testing route
[ { "change_type": "MODIFY", "diff": "<template>\n- <au-viewport name=\"app\" used-by=\"view\"></au-viewport>\n+ <au-viewport name=\"app\" default=\"routerHome\"></au-viewport>\n</template>\n", "new_path": "test/cypress/app/src/app.html", "old_path": "test/cypress/app/src/app.html" }, { "chang...
TypeScript
MIT License
aurelia/aurelia
feat(e2e): default router package testing route
1
feat
e2e
67,475
13.02.2019 12:41:35
-36,000
38b94e14f21b9590e37e8dceac81e062177c7ebb
fix(e2e): local test app now working
[ { "change_type": "MODIFY", "diff": "-import { Registration } from '@aurelia/kernel';\nimport { NavCustomElement, ViewportCustomElement } from '@aurelia/router';\nimport { DebugConfiguration } from '@aurelia/debug';\nimport { BasicConfiguration } from '@aurelia/jit-html-browser';\n@@ -13,8 +12,7 @@ const con...
TypeScript
MIT License
aurelia/aurelia
fix(e2e): local test app now working
1
fix
e2e
67,475
13.02.2019 12:51:23
-36,000
2f36b1ffede3c87b9c3de9e78e4c0cf1c982406b
test(e2e): default e2e test to show it works
[ { "change_type": "DELETE", "diff": "-{\n- \"fixturesFolder\": \"test/cypress/fixtures\",\n- \"integrationFolder\": \"test/cypress/integration\",\n- \"pluginsFile\": \"test/cypress/plugins/index.js\",\n- \"screenshotsFolder\": \"test/cypress/screenshots\",\n- \"supportFile\": \"test/cypress/support/index.js\...
TypeScript
MIT License
aurelia/aurelia
test(e2e): default e2e test to show it works
1
test
e2e
807,849
13.02.2019 13:06:49
28,800
b2e3029b2788bb992209e8ec9803eb664878a1d2
test(publish): Split from-git & from-package tests out of publish-command tests
[ { "change_type": "MODIFY", "diff": "@@ -17,15 +17,11 @@ const npmPublish = require(\"@lerna/npm-publish\");\nconst packDirectory = require(\"@lerna/pack-directory\");\nconst PromptUtilities = require(\"@lerna/prompt\");\nconst collectUpdates = require(\"@lerna/collect-updates\");\n-const output = require(\"...
JavaScript
MIT License
lerna/lerna
test(publish): Split from-git & from-package tests out of publish-command tests
1
test
publish
471,626
13.02.2019 13:38:39
18,000
012a8675c730a6cd4cd4c1e966918bc1bd64e465
fix(testing): add info to docs to test legacy browsers
[ { "change_type": "MODIFY", "diff": "@@ -57,7 +57,13 @@ Already part of `yo open-wc:testing`\n```js\n\"scripts\": {\n\"test\": \"karma start\",\n- \"test:watch\": \"karma start --auto-watch=true --single-run=false\",\n+ \"test:watch\": \"karma start --auto-watch=true --single-run=false\"\n+ },\n+ ```\n+#### ...
JavaScript
MIT License
open-wc/open-wc
fix(testing): add info to docs to test legacy browsers
1
fix
testing
807,849
13.02.2019 14:12:54
28,800
8cf5866cb6630c63bed8320f49a964cc26d1c208
test(publish): rename testDir -> cwd
[ { "change_type": "MODIFY", "diff": "@@ -29,10 +29,10 @@ expect.extend(require(\"@lerna-test/figgy-pudding-matchers\"));\ndescribe(\"publish from-git\", () => {\nit(\"publishes tagged packages\", async () => {\n- const testDir = await initFixture(\"normal\");\n+ const cwd = await initFixture(\"normal\");\n- ...
JavaScript
MIT License
lerna/lerna
test(publish): rename testDir -> cwd
1
test
publish
807,849
13.02.2019 14:20:22
28,800
a6733a2b864cf9d082d080bbd3bfedb04e59b0ab
fix(publish): Revert foolhardy refactoring (5e975e0)
[ { "change_type": "MODIFY", "diff": "@@ -115,8 +115,6 @@ class PublishCommand extends Command {\nlet chain = Promise.resolve();\n- // attempting to publish a release with local changes is not allowed\n- chain = chain.then(() => this.verifyWorkingTreeClean());\nchain = chain.then(() => this.findVersionedUpdat...
JavaScript
MIT License
lerna/lerna
fix(publish): Revert foolhardy refactoring (5e975e0)
1
fix
publish
807,849
13.02.2019 14:36:21
28,800
c794244a31fcb920a16af2e643850d2e8978de5e
refactor(publish): Inline findVersionedUpdates() into initialize
[ { "change_type": "MODIFY", "diff": "@@ -115,7 +115,15 @@ class PublishCommand extends Command {\nlet chain = Promise.resolve();\n- chain = chain.then(() => this.findVersionedUpdates());\n+ if (this.options.bump === \"from-git\") {\n+ chain = chain.then(() => this.detectFromGit());\n+ } else if (this.options...
JavaScript
MIT License
lerna/lerna
refactor(publish): Inline findVersionedUpdates() into initialize
1
refactor
publish
807,849
13.02.2019 15:11:43
28,800
df49bfc6a1c61e3081d712ab5a47bfbe678eabc2
feat(publish): Allow `from-package` positional to run without a git repo Refs
[ { "change_type": "MODIFY", "diff": "@@ -11,7 +11,11 @@ jest.mock(\"../../version/lib/is-anything-committed\");\njest.mock(\"../../version/lib/is-behind-upstream\");\njest.mock(\"../../version/lib/remote-branch-exists\");\n+const fs = require(\"fs-extra\");\n+const path = require(\"path\");\n+\n// mocked or ...
JavaScript
MIT License
lerna/lerna
feat(publish): Allow `from-package` positional to run without a git repo Refs #1933
1
feat
publish
807,849
13.02.2019 15:32:10
28,800
3d18f2fd6eb10e5ec4b15f77011586159ec93601
feat(publish): Add `--git-head` option to preserve gitless `from-package` metadata Fixes
[ { "change_type": "MODIFY", "diff": "@@ -46,6 +46,7 @@ This is useful when a previous `lerna publish` failed to publish all packages to\n- [`--canary`](#--canary)\n- [`--contents <dir>`](#--contents-dir)\n- [`--dist-tag <tag>`](#--dist-tag-tag)\n+- [`--git-head <sha>`](#--git-head-sha)\n- [`--no-git-reset`](...
JavaScript
MIT License
lerna/lerna
feat(publish): Add `--git-head` option to preserve gitless `from-package` metadata Fixes #1933
1
feat
publish
791,690
13.02.2019 15:48:56
21,600
e6dbefa15c07903733a9b1f90dbb9ae393b35cb6
tests: re-organize driver tests by method
[ { "change_type": "MODIFY", "diff": "*/\n'use strict';\n-let sendCommandParams = [];\n-const sendCommandMockResponses = new Map();\n-\nconst Driver = require('../../gather/driver.js');\nconst Connection = require('../../gather/connections/connection.js');\nconst Element = require('../../lib/element.js');\n@@...
JavaScript
Apache License 2.0
googlechrome/lighthouse
tests: re-organize driver tests by method (#7212)
1
tests
null
603,467
13.02.2019 16:20:34
0
41e9db3acc7f348c711778509a7e664aa7be9ed6
fix(core): `formatted` tag function correctly removes new line characters from the output
[ { "change_type": "MODIFY", "diff": "@@ -3,7 +3,7 @@ import { given } from 'mocha-testdata';\nimport { expect } from '@integration/testing-tools';\nimport { Actor, AssertionError, KnowableUnknown } from '@serenity-js/core';\n-import { Ensure } from '../src';\n+import { Ensure, equals } from '../src';\nimport...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(core): `formatted` tag function correctly removes new line characters from the output
1
fix
core
217,922
13.02.2019 17:12:18
-3,600
59ba763234c714286c1943881e4f978e2b0e7288
chore: added cloud functions for items stats monitoring
[ { "change_type": "ADD", "diff": "+import { Injectable } from '@angular/core';\n+import { AngularFireDatabase } from '@angular/fire/database';\n+import { NgSerializerService } from '@kaiu/ng-serializer';\n+import { Stats } from './stats';\n+import { Observable } from 'rxjs';\n+import { map, shareReplay } fro...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: added cloud functions for items stats monitoring
1
chore
null
815,601
13.02.2019 17:28:33
-28,800
b9d371e0a6b232e649fdfd278cf839c3b3bac23e
chore: improve core types debug format
[ { "change_type": "MODIFY", "diff": "use bincode::{deserialize, serialize};\n+use faster_hex::hex_string;\nuse hash::sha3_256;\nuse numext_fixed_hash::H256;\nuse numext_fixed_uint::U256;\nuse serde_derive::{Deserialize, Serialize};\n+use std::fmt;\npub use crate::{BlockNumber, Version};\n-#[derive(Clone, Ser...
Rust
MIT License
nervosnetwork/ckb
chore: improve core types debug format
1
chore
null
217,922
13.02.2019 17:38:26
-3,600
d30317c73840d639706bdc6685ba52a15da3695a
chore: small fix for the new stats system
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,7 @@ function getCompact(list) {\nfunction registerItemsCreation(items) {\nreturn Promise.all(items.map(item => {\nreturn admin.database().ref('/stats').transaction(current => {\n+ current = current || {};\nconst entry = current[`${item.id}:${item.recipeId}`]...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: small fix for the new stats system
1
chore
null
603,467
13.02.2019 17:50:44
0
25222a9a43591f34ceae4fe1dc4192ec943da3bd
fix(core): Serenity BDD reports errors with root causes correctly
[ { "change_type": "MODIFY", "diff": "@@ -344,10 +344,17 @@ describe('SerenityBDDReporter', () => {\n* @test {ExecutionCompromised}\n*/\nit('has been compromised', () => {\n- const error = new TestCompromisedError(`Test database not deployed, no point running the test`);\n+ const dbError = new Error(`Could no...
TypeScript
Apache License 2.0
serenity-js/serenity-js
fix(core): Serenity BDD reports errors with root causes correctly
1
fix
core
217,922
13.02.2019 18:44:45
-3,600
4f95d63ede8a27af8f5c2b75deabfb8b30967fb7
fix(list-details): fixed an issue with team members assignment
[ { "change_type": "MODIFY", "diff": "@@ -124,6 +124,19 @@ export class ListDetailsComponent extends TeamcraftComponent implements OnInit,\n).subscribe(regeneratedList => {\nthis.listsFacade.updateList(regeneratedList);\n});\n+\n+ combineLatest(this.list$, this.teamsFacade.allTeams$, this.teamsFacade.selected...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(list-details): fixed an issue with team members assignment
1
fix
list-details
217,922
13.02.2019 18:46:34
-3,600
edef0423028d2523c5fab7dc2206ecdacd99823e
chore(release): 5.0.26
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"5.0.26\"></a>\n+## [5.0.26](https://github.com/Supamiu/ffxiv-teamcraft/compare/v5.0.2...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore(release): 5.0.26
1
chore
release
791,780
13.02.2019 19:37:47
0
c8ed757fa6a8be007d65c9ddccc5d4aa46a159ab
core(seo): remove manual mobile-friendly audit
[ { "change_type": "MODIFY", "diff": "@@ -369,9 +369,6 @@ Object {\nObject {\n\"path\": \"seo/canonical\",\n},\n- Object {\n- \"path\": \"seo/manual/mobile-friendly\",\n- },\nObject {\n\"path\": \"seo/manual/structured-data\",\n},\n@@ -989,10 +986,6 @@ Object {\n\"id\": \"tap-targets\",\n\"weight\": 1,\n},\n-...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(seo): remove manual mobile-friendly audit (#7223)
1
core
seo
471,527
13.02.2019 19:45:25
-3,600
1744317f1143bf8ba3bd1e0d47c35c18f7298419
fix(testing-helpers): raise peer dependency of lit-html to 1.x
[ { "change_type": "MODIFY", "diff": "\"prepublishOnly\": \"../../scripts/insert-header.js\"\n},\n\"peerDependencies\": {\n- \"lit-html\": \"^0.12.0\"\n+ \"lit-html\": \"^1.0.0\"\n},\n\"devDependencies\": {\n\"@bundled-es-modules/chai\": \"^4.2.0\",\n", "new_path": "packages/testing-helpers/package.json",...
JavaScript
MIT License
open-wc/open-wc
fix(testing-helpers): raise peer dependency of lit-html to 1.x
1
fix
testing-helpers
217,922
13.02.2019 20:03:51
-3,600
4c1a61cf10c1f434a92591e826af2c2fc3ea77b8
fix: fixed an issue with cloud functions crashing for list compacts update
[ { "change_type": "MODIFY", "diff": "@@ -68,7 +68,7 @@ exports.createListCompacts = functions.firestore.document('/lists/{uid}').onCrea\nexports.updateListCompacts = functions.firestore.document('/lists/{uid}').onUpdate((snap) => {\nconst compact = getCompact(snap.data.data());\n- const diff = snap.after.dat...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: fixed an issue with cloud functions crashing for list compacts update
1
fix
null
730,412
13.02.2019 20:08:41
0
563b87399089d6b36672bb31f1e95ef6a95558d9
chore(release): 0.1.419
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.1.419\"></a>\n+## [0.1.419](https://github.com/webex/react-ciscospark/compare/v0.1....
JavaScript
MIT License
webex/react-widgets
chore(release): 0.1.419
1
chore
release
503,922
13.02.2019 20:14:09
-3,600
300f6f3fee99977ec4f168820b0ca5b53a90d119
fix(tokens): Use only light theme variables
[ { "change_type": "MODIFY", "diff": "@@ -21,9 +21,10 @@ cssFiles.forEach(filePath => {\nconst absFilePath = resolve(pfStylesDir, filePath);\nconst cssAst = parse(readFileSync(absFilePath, 'utf8'));\ncssAst.stylesheet.rules.forEach(node => {\n- if (node.type !== 'rule') {\n+ if (node.type !== 'rule' || node.s...
TypeScript
MIT License
patternfly/patternfly-react
fix(tokens): Use only light theme variables (#1330)
1
fix
tokens
679,913
13.02.2019 22:14:40
0
7efac033ae4c05b3097b855b4f0636be4be077b4
feat(unionfind): import package / port from old clojure version
[ { "change_type": "ADD", "diff": "+.meta\n+.nyc_output\n+*.html\n+*.tgz\n+build\n+coverage\n+dev\n+doc\n+export\n+src*\n+test\n+tsconfig.json\n", "new_path": "packages/unionfind/.npmignore", "old_path": null }, { "change_type": "ADD", "diff": "+ Apache License\n+ Version 2.0, January 2004...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(unionfind): import package / port from old clojure version
1
feat
unionfind
679,913
13.02.2019 22:15:54
0
51959b757ca4dd4e517acf2b520563e113f62e74
fix(geom-accel): fix addAll(), addKeys()
[ { "change_type": "MODIFY", "diff": "@@ -123,7 +123,7 @@ export class KdTree<K extends ReadonlyVec, V> implements\naddAll(pts: Iterable<Pair<K, V>>, eps = EPS) {\nlet ok = true;\nfor (let [k, v] of pts) {\n- ok = ok && this.add(k, v, eps);\n+ ok = this.add(k, v, eps) && ok;\n}\nreturn ok;\n}\n@@ -135,7 +135,...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(geom-accel): fix addAll(), addKeys()
1
fix
geom-accel
503,926
13.02.2019 23:54:09
-7,200
b984fbb99562a50cf61c7aed6d6ba974dd0ef0bc
fix(Login card page): Submit is disabled when input is empty
[ { "change_type": "MODIFY", "diff": "@@ -94,7 +94,6 @@ const createProps = () => {\nhref: '#',\nonClick: e => storyAction(e, 'Forgot password was clicked')\n},\n- disableSubmit: false,\nsubmitText: card.form.submitText,\nonSubmit: (e, onError) => {\nonError(card.form.error);\n", "new_path": "packages/pat...
TypeScript
MIT License
patternfly/patternfly-react
fix(Login card page): Submit is disabled when input is empty (#1188)
1
fix
Login card page
504,024
14.02.2019 02:28:03
-28,800
d2751054aa20f33c74a2830822a1d6fe82ddc224
fix(core): FormSelect onChange value type was missing
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ export interface FormSelectProps\nisDisabled?: boolean;\nonBlur?(event: React.FormEvent<HTMLSelectElement>): void;\nonFocus?(event: React.FormEvent<HTMLSelectElement>): void;\n- onChange?(event: React.FormEvent<HTMLSelectElement>): void;\n+ onChange?(value...
TypeScript
MIT License
patternfly/patternfly-react
fix(core): FormSelect onChange value type was missing (#1380)
1
fix
core
217,922
14.02.2019 08:22:48
-3,600
5d4172a204f2d8e7148e78dbf77790712b8467e8
fix(permissions): fixed an issue with readonly permission
[ { "change_type": "MODIFY", "diff": "</div>\n<div class=\"amount-input\">\n<button nz-button nzSize=\"small\" nz-popover [nzTitle]=\"'LIST_DETAILS.Add_remove_amount' | translate\"\n+ [disabled]=\"(permissionLevel$ | async) < 20\"\n[nzContent]=\"calculator\" nzTrigger=\"click\">\n<i nz-icon type=\"calculator\...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(permissions): fixed an issue with readonly permission
1
fix
permissions
217,922
14.02.2019 09:15:21
-3,600
a5ff3178336641acf1e8609d5dc2555933d7ed63
fix(layout): fixed an issue with tiers system breaking items ordering
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,8 @@ export class LayoutsFacade {\n.map(row => {\nconst result: FilterResult = row.filter.filter(unfilteredRows);\nunfilteredRows = result.rejected;\n- let orderedAccepted = this.layoutOrder.order(result.accepted, row.orderBy, row.order);\n+ // If it's using ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix(layout): fixed an issue with tiers system breaking items ordering
1
fix
layout