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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
306,309 | 29.11.2021 21:29:25 | -10,800 | a0d93f39be9f2818c8b6e3c90effdca262d63ea5 | feat(azure): add free resource azurerm_storage_account_network_rules | [
{
"change_type": "MODIFY",
"diff": "@@ -250,17 +250,18 @@ var FreeResources = []string{\n// Azure Networking\n\"azurerm_application_security_group\",\n+ \"azurerm_local_network_gateway\",\n+ \"azurerm_nat_gateway_public_ip_association\",\n+ \"azurerm_nat_gateway_public_ip_prefix_association\",\n\"azurerm_ne... | Go | Apache License 2.0 | infracost/infracost | feat(azure): add free resource azurerm_storage_account_network_rules (#1156) | 1 | feat | azure |
603,467 | 29.11.2021 21:59:08 | 0 | e150ec97ebfd8188b40197fe526a3afc07c770ea | refactor(core): extracted a function to simplify the implementation | [
{
"change_type": "MODIFY",
"diff": "@@ -29,29 +29,15 @@ export function inspected(value: Answerable<any>, config?: InspectedConfig): str\n}\nif (Array.isArray(value)) {\n- const indentation = inline ? '' : ' ';\n- const separator = inline ? ' ' : '\\n';\n-\n- const inspectedItem = (item: unknown, index: num... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | refactor(core): extracted a function to simplify the implementation | 1 | refactor | core |
756,013 | 29.11.2021 22:11:00 | 21,600 | aa551d6bc385c8971692aa2ace73d809dd9ea52c | chore(deployment): spruce up scripts with some Node and ShellCheck | [
{
"change_type": "ADD",
"diff": "+#! /usr/bin/env node\n+/* global process */\n+// Get a deployment.json for a 2-node docker setup.\n+\n+const DEFAULT_NUM_VALIDATORS = 2;\n+const DEFAULT_NETWORK_NAME = 'localtest';\n+\n+const NUM_VALIDATORS = process.argv[2] || DEFAULT_NUM_VALIDATORS;\n+\n+const NETWORK_NAM... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | chore(deployment): spruce up scripts with some Node and ShellCheck | 1 | chore | deployment |
603,467 | 29.11.2021 22:15:15 | 0 | 44877bb230bcb7ee78686ffdc86b5b4c03203a22 | test(web): adjusted the timeouts so that they don't cause issues when running against SauceLabs
re | [
{
"change_type": "MODIFY",
"diff": "@@ -207,27 +207,4 @@ describe('Page', () => {\nit('automatically switches the context back to the original page afterwards')\n});\n});\n-\n-\n- // describe('url', () => {\n- //\n- // /** @test {Website} */\n- // it('allows the actor to read the URL of the website', () =>\... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | test(web): adjusted the timeouts so that they don't cause issues when running against SauceLabs
re #805 | 1 | test | web |
667,636 | 29.11.2021 22:17:38 | -28,800 | 51041e68768e16523f49dcd891ee95dd2761ed25 | build(react,vue): add SourceMapDevToolsPlugin for example | [
{
"change_type": "MODIFY",
"diff": "@@ -31,6 +31,10 @@ module.exports = {\n__PLATFORM__: null,\n}),\nnew HippyDynamicImportPlugin(),\n+ new webpack.SourceMapDevToolPlugin({\n+ test: /\\.(js|jsbundle|css|bundle)($|\\?)/i,\n+ filename: '[file].map',\n+ }),\n],\nmodule: {\nrules: [\n",
"new_path": "example... | C++ | Apache License 2.0 | tencent/hippy | build(react,vue): add SourceMapDevToolsPlugin for example | 1 | build | react,vue |
551,701 | 29.11.2021 23:35:52 | -3,600 | 64dddb0cd83544d1723595660496fe8652a98d83 | fix: double and float parsing v2 | [
{
"change_type": "MODIFY",
"diff": "@@ -54,7 +54,7 @@ public final class Numbers {\nprivate static final int MAX_SMALL_BIN_EXP = 62;\nprivate static final int MIN_SMALL_BIN_EXP = -(63 / 3);\nprivate static final long[] pow10;\n- private static final long LONG_OVERFLOW_MAX = Long.MAX_VALUE / 10 + 1;\n+ priva... | Java | Apache License 2.0 | questdb/questdb | fix: double and float parsing v2 #1615 (#1626) | 1 | fix | null |
756,013 | 29.11.2021 23:37:46 | 21,600 | 69a6dbf322a0daa64f49a6d3637728c2c684c6d0 | ci(deployment-test): capture test results as artifacts | [
{
"change_type": "MODIFY",
"diff": "name: Chain deployment test\non:\n+ # Use the following to explicitly start thit workflow.\n+ # packages/deployment/scripts/start-deployment-test.sh <BRANCH-OR-TAG>\n+ workflow_dispatch:\n+ # Otherwise, run on a schedule.\nschedule:\n- cron: \"0 0 * * *\"\n@@ -29,6 +33,26... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | ci(deployment-test): capture test results as artifacts | 1 | ci | deployment-test |
756,013 | 29.11.2021 23:49:23 | 21,600 | a915950241aedd406a0df1018f22f8a517a64a26 | feat(deployment): trace KVStore activity during integration test | [
{
"change_type": "MODIFY",
"diff": "@@ -18,5 +18,6 @@ DOCKER_VOLUMES=\"$(cd \"$thisdir/../../..\" > /dev/null && pwd -P):/usr/src/agoric-\n# Set up the network from our above deployment.json.\n\"$thisdir/setup.sh\" init --noninteractive\n-# Go ahead and bootstrap.\n-exec \"$thisdir/setup.sh\" bootstrap ${1+... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(deployment): trace KVStore activity during integration test | 1 | feat | deployment |
756,013 | 30.11.2021 00:10:56 | 21,600 | 1c2effe98df72e8a2d2be917f60fbc1bb74afbb0 | fix(deployment): get `install-deps.sh` working under Linux | [
{
"change_type": "MODIFY",
"diff": "@@ -21,10 +21,8 @@ TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/${TE\n# Extract, then delete temporary file.\n(\n- terraform_zip=$(mktemp -t terraform)\n- trap \"rm -f \\\"\\$terraform_zip\\\"\" EXIT\n- echo \"$terraform_zip\"\n- exit 1\n+ t... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(deployment): get `install-deps.sh` working under Linux | 1 | fix | deployment |
71,105 | 30.11.2021 06:05:56 | 25,200 | 245c059eabf59d0fb0b352dac5e49d5ab4ef9ee2 | feat(ec2): add vt1 instances
`vt1` instances release note:
Docs have already been updated a while ago:
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | [
{
"change_type": "MODIFY",
"diff": "@@ -585,6 +585,16 @@ export enum InstanceClass {\n* Macintosh instances built on Apple Mac mini computers, 1st generation with Intel procesors\n*/\nMAC1 = 'mac1',\n+\n+ /**\n+ * Multi-stream video transcoding instances for resolutions up to 4K UHD, 1st generation\n+ */\n+... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ec2): add vt1 instances (#17756)
`vt1` instances release note:
https://aws.amazon.com/blogs/aws/new-amazon-ec2-vt1-instances-for-live-multi-stream-video-transcoding/
Docs have already been updated a while ago:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | ec2 |
317,842 | 30.11.2021 06:21:06 | -3,600 | 82cad90aa04365a06b43da56497da2abfa94f7f6 | fix(pwsh): restore pwsh 5 support
In PowerShell 6+, the default encoding is without BOM on all
platforms.
In Windows PowerShell, the default encoding is usually
an extension of latin-1, also known as ISO 8859-1. | [
{
"change_type": "MODIFY",
"diff": "# Description of the functionality provided by this module\nDescription = 'A prompt theme engine for any shell'\n# Minimum version of the Windows PowerShell engine required by this module\n- PowerShellVersion = '6.0'\n+ PowerShellVersion = '5.0'\n# List of all files packa... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(pwsh): restore pwsh 5 support
In PowerShell 6+, the default encoding is UTF-8 without BOM on all
platforms.
In Windows PowerShell, the default encoding is usually Windows-1252,
an extension of latin-1, also known as ISO 8859-1. | 1 | fix | pwsh |
428,399 | 30.11.2021 06:25:01 | -28,800 | b6a63df6269898fb09dd180b512197822727e90a | fix(NODE-2370): correct a return type of hasNext() | [
{
"change_type": "MODIFY",
"diff": "@@ -310,7 +310,9 @@ export class ChangeStream<TSchema extends Document = Document> extends TypedEven\n}\n/** Check if there is any document still available in the Change Stream */\n- hasNext(callback?: Callback): Promise<void> | void {\n+ hasNext(): Promise<boolean>;\n+ h... | TypeScript | Apache License 2.0 | mongodb/node-mongodb-native | fix(NODE-2370): correct a return type of hasNext() (#3058) | 1 | fix | NODE-2370 |
317,646 | 30.11.2021 08:25:14 | -3,600 | 372fbc6f03421b56eb8ae8ec5fb4a784a2590099 | docs(brew): info regarding shell reload
resolves | [
{
"change_type": "MODIFY",
"diff": "@@ -16,9 +16,18 @@ will always keep them compatible when updating Oh My Posh.\n## Update\n```bash\n-brew upgrade oh-my-posh\n+brew update && brew upgrade oh-my-posh\n```\n+:::tip\n+In case you see [strange behaviour][strange] in your shell, reload it after upgrading Oh My... | Go | MIT License | jandedobbeleer/oh-my-posh | docs(brew): info regarding shell reload
resolves #1287 | 1 | docs | brew |
317,646 | 30.11.2021 08:25:29 | -3,600 | 89e2c2819220c6e7e7561b76423fb8a7a8f73df9 | chore: docs run task | [
{
"change_type": "MODIFY",
"diff": "{\n\"type\": \"shell\",\n\"command\": \"go\",\n- \"label\": \"build omp\",\n- \"options\": { \"cwd\": \"${workspaceRoot}/src\" },\n+ \"label\": \"build oh-my-posh\",\n+ \"detail\": \"Build oh-my-posh in the /src folder locally\",\n+ \"options\": {\n+ \"cwd\": \"${workspac... | Go | MIT License | jandedobbeleer/oh-my-posh | chore: docs run task | 1 | chore | null |
277,287 | 30.11.2021 09:26:25 | -3,600 | b9bad42338d5c61d94c9dca3ce06b86720c224d1 | feat: Add preview card | [
{
"change_type": "ADD",
"diff": "+# Preview card\n+# Create a preview card displaying an image with shadow overlay, title, social icons, caption, and button.\n+# ---\n+from h2o_wave import main, app, Q, ui\n+\n+\n+@app('/demo')\n+async def serve(q: Q):\n+ if q.args.preview_card:\n+ q.page['example'] = ui.fo... | Python | Apache License 2.0 | h2oai/wave | feat: Add preview card #1071 (#1130) | 1 | feat | null |
866,400 | 30.11.2021 09:31:23 | 18,000 | f5024360e5924def8983b44a1df07f424ec6377a | test(card-section-simple): add e2e-storybook test coverage
### Related Ticket(s)
Closes
### Description
Adds end-to-end storybook tests for the `dds-card-section-simple` web component and `CardSectionSimple` react component
### Changelog
**New**
Test coverage | [
{
"change_type": "ADD",
"diff": "+/**\n+ * Copyright IBM Corp. 2021\n+ *\n+ * This source code is licensed under the Apache-2.0 license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ */\n+\n+/**\n+ * Sets the correct path\n+ *\n+ * @param default - Path to default variant\n+ * ... | TypeScript | Apache License 2.0 | carbon-design-system/carbon-for-ibm-dotcom | test(card-section-simple): add e2e-storybook test coverage (#7761)
### Related Ticket(s)
Closes #7448
### Description
Adds end-to-end storybook tests for the `dds-card-section-simple` web component and `CardSectionSimple` react component
### Changelog
**New**
- Test coverage | 1 | test | card-section-simple |
711,597 | 30.11.2021 09:50:22 | -3,600 | 5c625e297cc21205601e89f8ff4aadf15795c9b2 | docs: Fix typos in plugin doc | [
{
"change_type": "MODIFY",
"diff": "@@ -15,7 +15,7 @@ This is a complete example of how to implement a simple plugin step-by-step.\n## Example: RandomCatPlugin\n-Let's learn about Vendure plugins by writing a plugin which defines a new database entity and GraphQL mutation.\n+Let's learn about Vendure plugin... | TypeScript | MIT License | vendure-ecommerce/vendure | docs: Fix typos in plugin doc | 1 | docs | null |
126,276 | 30.11.2021 09:50:25 | 10,800 | 16064cefd8eb5b9053c97b3792293bf85f3ab7f3 | chore(embedded/sql): set parsing verbose mode when instantiating sql engine | [
{
"change_type": "MODIFY",
"diff": "@@ -132,6 +132,9 @@ func NewEngine(store *store.ImmuStore, opts *Options) (*Engine, error) {\ncopy(e.prefix, opts.prefix)\n+ // TODO: find a better way to handle parsing errors\n+ yyErrorVerbose = true\n+\nreturn e, nil\n}\n",
"new_path": "embedded/sql/engine.go",
... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/sql): set parsing verbose mode when instantiating sql engine
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/sql |
711,597 | 30.11.2021 10:14:16 | -3,600 | 696e8e27ad3f748aebe92eaa409dc000c2764781 | test(core): Add test for mergeConfig array handling | [
{
"change_type": "MODIFY",
"diff": "@@ -29,6 +29,17 @@ describe('mergeConfig()', () => {\n});\n});\n+ it('does not merge arrays', () => {\n+ const input: any = {\n+ a: [1],\n+ };\n+\n+ const result = mergeConfig(input, { a: [2] } as any);\n+ expect(result).toEqual({\n+ a: [2],\n+ });\n+ });\n+\nit('merges d... | TypeScript | MIT License | vendure-ecommerce/vendure | test(core): Add test for mergeConfig array handling | 1 | test | core |
688,524 | 30.11.2021 10:21:28 | -3,600 | 36fc6c72f1edd39314f6ca1ac559a28c8ffc5b8c | fix(Tag): make checkable styles work only for Tag.Checkable | [
{
"change_type": "ADD",
"diff": "+---\n+'@toptal/picasso': patch\n+'@toptal/picasso-forms': patch\n+'@toptal/picasso-lab': patch\n+---\n+\n+Fix styling of `Tag` when wrapped by `Tooltip`\n",
"new_path": ".changeset/empty-gorillas-walk.md",
"old_path": null
},
{
"change_type": "MODIFY",
"... | TypeScript | MIT License | toptal/picasso | fix(Tag): make checkable styles work only for Tag.Checkable (#2289) | 1 | fix | Tag |
667,676 | 30.11.2021 10:23:47 | -28,800 | 5b7d888be12919fee9454645a04d322da69d4843 | fix(core): disable rtti and c++ exception | [
{
"change_type": "MODIFY",
"diff": "@@ -585,8 +585,7 @@ bool JSCCtx::IsNullOrUndefined(const std::shared_ptr<CtxValue>& value) {\nif (!value) {\nreturn true;\n}\n- std::shared_ptr<JSCCtxValue> ctx_value =\n- std::dynamic_pointer_cast<JSCCtxValue>(value);\n+ std::shared_ptr<JSCCtxValue> ctx_value = std::stat... | C++ | Apache License 2.0 | tencent/hippy | fix(core): disable rtti and c++ exception | 1 | fix | core |
711,597 | 30.11.2021 10:28:17 | -3,600 | 4a0b8d509abc01e1474b5e1dcb290a72e6bd17a8 | docs: Add docs on stand-alone scripts | [
{
"change_type": "MODIFY",
"diff": "@@ -215,3 +215,8 @@ populate(\n},\n);\n```\n+\n+{{< alert >}}\n+If you require more control over how your data is being imported - for example if you also need to import data into custom entities - you can create your own CLI script to do this: see [Stand-Alone CLI Script... | TypeScript | MIT License | vendure-ecommerce/vendure | docs: Add docs on stand-alone scripts | 1 | docs | null |
269,464 | 30.11.2021 10:41:05 | 10,800 | eb4bee7f1350deba91dd1cfc3f13169b4ba9ceb2 | docs: improve goreleaser build readme
refs | [
{
"change_type": "MODIFY",
"diff": "@@ -43,11 +43,20 @@ func newBuildCmd() *buildCmd {\nUse: \"build\",\nAliases: []string{\"b\"},\nShort: \"Builds the current project\",\n- Long: `The build command allows you to execute only a subset of the pipeline, i.e. only the build step with its dependencies.\n+ Long:... | Go | MIT License | goreleaser/goreleaser | docs: improve goreleaser build readme
refs #2710
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | docs | null |
269,464 | 30.11.2021 10:41:50 | 10,800 | 6a30b0e55d99e3bf4fbaa17f5b7d812622ace15e | docs: goreleaser build | [
{
"change_type": "MODIFY",
"diff": "@@ -4,11 +4,20 @@ Builds the current project\n## Synopsis\n-The build command allows you to execute only a subset of the pipeline, i.e. only the build step with its dependencies.\n+The `goreleaser build` command is analogous to the\n+`go build` command, in the sense it on... | Go | MIT License | goreleaser/goreleaser | docs: goreleaser build
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | docs | null |
667,636 | 30.11.2021 10:43:09 | -28,800 | 6b92b0de02db4d1a5e7b8ba236c2ceeade9c4acc | fix(react,vue): fixed timeRemaining judge | [
{
"change_type": "MODIFY",
"diff": "@@ -107,8 +107,8 @@ function getFiberNodeFromId(nodeId: number) {\n*/\nfunction unCacheFiberNodeOnIdle(node: ElementNode | number) {\nrequestIdleCallback((deadline: { timeRemaining: Function, didTimeout: boolean }) => {\n- // if idle time exist or invoked when timeout\n- ... | C++ | Apache License 2.0 | tencent/hippy | fix(react,vue): fixed timeRemaining judge | 1 | fix | react,vue |
777,399 | 30.11.2021 10:46:18 | 28,800 | 2d299f347ae635625c8f6d7b2a92242c597501e6 | docs: add release notes for 0.17.4 | [
{
"change_type": "MODIFY",
"diff": "Version 0.17\n**************\n+Version 0.17.4\n+==============\n+\n+**Release Date:** November 30, 2021\n+\n+**New Features**\n+\n+- WebUI: Add the :ref:`model registry <organizing-models>` as a new top-level navigation option,\n+ allowing for viewing, editing, and deleti... | Python | Apache License 2.0 | determined-ai/determined | docs: add release notes for 0.17.4 (#3242)
(cherry picked from commit 56e5f615fc3950ee5f007d092bcda6a11ef5f050) | 1 | docs | null |
711,597 | 30.11.2021 10:47:46 | -3,600 | 40930ffebb608d095171844092902fd6a502db1a | docs: Remove note from bull plugin | [
{
"change_type": "MODIFY",
"diff": "@@ -11,10 +11,6 @@ import { BullMQPluginOptions } from './types';\n* This plugin is a drop-in replacement of the DefaultJobQueuePlugin, which implements a push-based\n* job queue strategy built on top of the popular [BullMQ](https://github.com/taskforcesh/bullmq) library.... | TypeScript | MIT License | vendure-ecommerce/vendure | docs: Remove note from bull plugin | 1 | docs | null |
877,015 | 30.11.2021 10:50:15 | -3,600 | 552e8f49cf77cea116d74476fa4a3b814da84028 | fix: pre-commit errors | [
{
"change_type": "MODIFY",
"diff": "#!/bin/sh\n. \"$(dirname \"$0\")/_/husky.sh\"\n+yarn\nyarn lint-staged\n",
"new_path": ".husky/pre-commit",
"old_path": ".husky/pre-commit"
},
{
"change_type": "MODIFY",
"diff": "},\n\"lint-staged\": {\n\"./**/package.json\": [\n- \"sort-package-json &... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | fix: pre-commit errors | 1 | fix | null |
71,204 | 30.11.2021 10:56:52 | 18,000 | c62377e14caae677deb7e4eae692eaccb2020c67 | feat(ec2): extend BastionHostLinux to support CloudFormationInit
Implements
Extends the `BastionHostLinux` constructor to accept optional `CloudFormationInit` and `ApplyCloudFormationInitOptions` arguments to be passed to the underlying instance.
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | [
{
"change_type": "MODIFY",
"diff": "@@ -2,8 +2,9 @@ import { IPrincipal, IRole, PolicyStatement } from '@aws-cdk/aws-iam';\nimport { CfnOutput, Resource, Stack } from '@aws-cdk/core';\nimport { Construct } from 'constructs';\nimport { AmazonLinuxGeneration, InstanceArchitecture, InstanceClass, InstanceSize,... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ec2): extend BastionHostLinux to support CloudFormationInit (#17507)
Implements https://github.com/aws/aws-cdk/issues/17161
Extends the `BastionHostLinux` constructor to accept optional `CloudFormationInit` and `ApplyCloudFormationInitOptions` arguments to be passed to the underlying instance.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | ec2 |
711,597 | 30.11.2021 10:58:40 | -3,600 | a3fef0f89b962c87bf52e66eec534d5ab50cc9e1 | fix(core): Make facetValueCollectionFilter safe with uuids | [
{
"change_type": "MODIFY",
"diff": "@@ -26,8 +26,10 @@ export const facetValueCollectionFilter = new CollectionFilter({\nconst ids = args.facetValueIds;\nif (ids.length) {\n- const idsName = `ids_${ids.join('_')}`;\n- const countName = `count_${ids.join('_')}`;\n+ // uuid IDs can include `-` chars, which we... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(core): Make facetValueCollectionFilter safe with uuids | 1 | fix | core |
667,636 | 30.11.2021 11:00:34 | -28,800 | 63cd4732788297cd324cb64b00a1210866974fc5 | chore(unitest): add dispatcher.js unit test | [
{
"change_type": "MODIFY",
"diff": "@@ -2,6 +2,7 @@ import test, { before } from 'ava';\nimport { registerBuiltinElements } from '../../../../elements';\nimport { EventDispatcher } from '../dispatcher';\nimport { setApp, getApp } from '../../../../util';\n+import { preCacheNode } from '../../../../util/node... | C++ | Apache License 2.0 | tencent/hippy | chore(unitest): add dispatcher.js unit test | 1 | chore | unitest |
104,825 | 30.11.2021 11:11:07 | 18,000 | a0ad14d640accd63dd8db190ecc15f7598ad7652 | feat(empty state): add directives for empty state sections | [
{
"change_type": "MODIFY",
"diff": "export { EmptyStateModule } from './empty-state/empty-state.module';\nexport { EmptyStateComponent } from './empty-state/empty-state.component';\n+export { EmptyStateActionDirective } from './empty-state/empty-state-action.directive';\n+export { EmptyStateBodyDirective } ... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | feat(empty state): add directives for empty state sections | 1 | feat | empty state |
744,016 | 30.11.2021 11:23:27 | 25,200 | e75319d99142a048b0abe9856499730fd4bc004c | fix: re-add options to check callback | [
{
"change_type": "MODIFY",
"diff": "@@ -293,7 +293,10 @@ export class YargsInstance {\nthis[kTrackManuallySetKeys](keys);\nreturn this;\n}\n- check(f: (argv: Arguments) => any, global?: boolean): YargsInstance {\n+ check(\n+ f: (argv: Arguments, options: Options) => any,\n+ global?: boolean\n+ ): YargsInsta... | JavaScript | MIT License | yargs/yargs | fix: re-add options to check callback (#2079) | 1 | fix | null |
160,177 | 30.11.2021 11:24:42 | -28,800 | 1c7527fc75929c444d9e5fb4b0b70b87086694c8 | feat: support disabled tool in core package | [
{
"change_type": "MODIFY",
"diff": "@@ -49,6 +49,7 @@ module.exports = {\n'@typescript-eslint/no-non-null-assertion': 0,\n'@typescript-eslint/explicit-module-boundary-types': 0,\n'@typescript-eslint/no-namespace': 'off',\n+ '@typescript-eslint/no-unused-vars': 'off',\n'react/prop-types': 0,\n'react/jsx-prop... | TypeScript | Apache License 2.0 | didi/logicflow | feat: support disabled tool in core package | 1 | feat | null |
306,885 | 30.11.2021 11:27:26 | -3,600 | 0bfce6d4fdfcb569cd1af1181f4f45662889c0bb | fix(elements|ino-autocomplete): set value on initialization | [
{
"change_type": "MODIFY",
"diff": "@@ -12,11 +12,7 @@ import {\nWatch,\n} from '@stencil/core';\nimport classNames from 'classnames';\n-import {\n- getSlotContent,\n- hasSlotContent,\n- moveCursorToEnd,\n-} from '../../util/component-utils';\n+import { getSlotContent, moveCursorToEnd } from '../../util/com... | TypeScript | MIT License | inovex/elements | fix(elements|ino-autocomplete): set value on initialization (#461)
Co-authored-by: Sl1nd <s_lindauer@t-online.de> | 1 | fix | elements|ino-autocomplete |
217,922 | 30.11.2021 11:31:21 | -3,600 | 57dc6ca3fd97e0d0c843f5329ff96992cb7120cd | fix(ux): possible fix for buttons moving in UI while crafting | [
{
"change_type": "MODIFY",
"diff": "[nzPercent]=\"progression.progress\"\n[nzShowInfo]=\"false\"></nz-progress>\n<div fxLayout=\"row\" fxLayoutGap=\"10px\">\n+ <div>\n<button (nzOnConfirm)=\"resetPanel()\"\n(click)=\"$event.stopPropagation()\"\n[nzTooltipTitle]=\"'LIST.Reset_panel' | translate\"\nnzSize=\"s... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(ux): possible fix for buttons moving in UI while crafting | 1 | fix | ux |
889,620 | 30.11.2021 11:38:59 | -28,800 | fed2294b844133f5763ecfce4b2f6a902d65f2cc | feat: automatic oauth2 user creation
enable via
komga.oauth2-account-creation: true
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -49,3 +49,4 @@ nbdist/\n/komga/src/main/resources/public/\n/komga/artemis/\n/komga/lucene/\n+application-oauth2.yml\n",
"new_path": ".gitignore",
"old_path": ".gitignore"
},
{
"change_type": "RENAME",
"diff": "<component name=\"ProjectRunConfigurati... | Kotlin | MIT License | gotson/komga | feat: automatic oauth2 user creation
enable via
komga.oauth2-account-creation: true
closes #716 | 1 | feat | null |
306,885 | 30.11.2021 11:52:06 | -3,600 | cf9e787d3d6329086c4c4916a65d9b7758bc7ac6 | chore: publish v5.1.0 | [
{
"change_type": "MODIFY",
"diff": "# Changelog\n+## [5.1.0](https://github.com/inovex/elements/compare/v5.0.0...v5.1.0) (2021-11-30)\n+\n+\n+### Features\n+\n+* **elements:** add focus and blur methods to input elements ([#306](https://github.com/inovex/elements/issues/306)) ([c2de9a0](https://github.com/i... | TypeScript | MIT License | inovex/elements | chore: publish v5.1.0 | 1 | chore | null |
428,485 | 30.11.2021 11:57:14 | 21,600 | 7a507f08905d2e30f4c4b53adf0bf506e65e357f | fix(NODE-3627): Enable flexible BSON validation for server error key containing invalid utf-8 | [
{
"change_type": "MODIFY",
"diff": "\"version\": \"4.2.0\",\n\"license\": \"Apache-2.0\",\n\"dependencies\": {\n- \"bson\": \"^4.5.4\",\n+ \"bson\": \"^4.6.0\",\n\"denque\": \"^2.0.1\",\n\"mongodb-connection-string-url\": \"^2.2.0\"\n},\n}\n},\n\"node_modules/bson\": {\n- \"version\": \"4.5.4\",\n- \"resolv... | TypeScript | Apache License 2.0 | mongodb/node-mongodb-native | fix(NODE-3627): Enable flexible BSON validation for server error key containing invalid utf-8 (#3054) | 1 | fix | NODE-3627 |
699,201 | 30.11.2021 12:25:00 | 18,000 | 5d4515ea31e06fa3e1478d5e42971a7973de9d51 | chore: alert/popover/modal/toast close button | [
{
"change_type": "ADD",
"diff": "+---\n+'@twilio-paste/alert': patch\n+'@twilio-paste/modal': patch\n+'@twilio-paste/popover': patch\n+'@twilio-paste/toast': patch\n+'@twilio-paste/core': patch\n+---\n+\n+[Alert, Modal, Popover, Toast] Update close button to use `secondary_icon` button variant\n",
"new_... | TypeScript | MIT License | twilio-labs/paste | chore: alert/popover/modal/toast close button | 1 | chore | null |
711,597 | 30.11.2021 12:37:59 | -3,600 | d8016f93b8419a50e0e9a702b1cb110dcc2dc067 | chore(admin-ui): Clean up testing code | [
{
"change_type": "MODIFY",
"diff": "+import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { RouterModule } from '@angular/router';\n-import { addActionBarItem, AppComponent, AppComponentModule } from '@vendure/admin-ui/core';\n+import { AppComponent, AppComponen... | TypeScript | MIT License | vendure-ecommerce/vendure | chore(admin-ui): Clean up testing code | 1 | chore | admin-ui |
877,017 | 30.11.2021 12:51:46 | -3,600 | ff52c9b84d7401e32a52d8db45e331cc675a4a04 | fix(@vtmn/svelte): fix optionnal props values | [
{
"change_type": "MODIFY",
"diff": "* @type string\n* @defaultValue undefined\n*/\n- export let iconLeft;\n+ export let iconLeft = undefined;\n/**\n* Icon to display on the right hand side of button\n* @type string\n* @defaultValue undefined\n*/\n- export let iconRight;\n+ export let iconRight = undefined;\... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | fix(@vtmn/svelte): fix optionnal props values (#768) | 1 | fix | @vtmn/svelte |
71,105 | 30.11.2021 13:13:19 | 25,200 | 845be1012593a9f28457c73c9054bd98ea44d659 | feat(ec2): add m5zn instances
`m5zn` instances release notes:
Docs have already been updated a while ago:
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | [
{
"change_type": "MODIFY",
"diff": "@@ -88,6 +88,16 @@ export enum InstanceClass {\n*/\nM5DN = 'm5dn',\n+ /**\n+ * Standard instances with high memory and compute capacity based on Intel Xeon Scalable (Cascade Lake) processors, 5nd generation\n+ */\n+ STANDARD5_HIGH_COMPUTE = 'm5zn',\n+\n+ /**\n+ * Standard... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ec2): add m5zn instances (#17757)
`m5zn` instances release notes:
https://aws.amazon.com/blogs/aws/new-ec2-m5zn-instances-fastest-intel-xeon-scalable-cpu-in-the-cloud/
Docs have already been updated a while ago:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html#cfn-ec2-instance-instancetype
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | ec2 |
104,825 | 30.11.2021 13:36:05 | 18,000 | d91a48a31a8bd1343b8b40eec698e470d659e313 | refactor(table head): move class to className | [
{
"change_type": "MODIFY",
"diff": "@@ -47,37 +47,6 @@ export class EmptyStateComponent {\n| 'no-icon'\n| TemplateRef<any>;\n- /**\n- * Specifies an empty state action.\n- *\n- * For example\n- *\n- * ```typescript\n- * <ai-empty-state\n- * [secondaryAction]=\"secondaryAction\"\n- * [secondaryActionContext]... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | refactor(table head): move class to className | 1 | refactor | table head |
185,952 | 30.11.2021 13:36:41 | 28,800 | 578436c526489c774119e61e66f9fa81703d28d2 | fix: set MIT license in `package.json` transform | [
{
"change_type": "MODIFY",
"diff": "@@ -18,6 +18,7 @@ export async function forgeTransform(files: Files): Promise<Files> {\nparsed.config ||= {};\nparsed.devDependencies ||= {};\n+ parsed.license ||= 'MIT';\nparsed.scripts ||= {};\nconst { config, devDependencies, scripts } = parsed;\n",
"new_path": "sr... | TypeScript | MIT License | electron/fiddle | fix: set MIT license in `package.json` transform (#919) | 1 | fix | null |
306,423 | 30.11.2021 14:01:03 | -3,600 | c50001c31e4dff738c4593b4bba68e0c27411c4d | chore: bump versions in lock file to please dependabot | [
{
"change_type": "MODIFY",
"diff": "@@ -2919,9 +2919,9 @@ ansi-regex@^4.1.0:\nintegrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==\nansi-regex@^5.0.0:\n- version \"5.0.0\"\n- resolved \"https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539... | JavaScript | MIT License | ing-bank/lion | chore: bump versions in lock file to please dependabot | 1 | chore | null |
141,551 | 30.11.2021 14:09:16 | -39,600 | 89b94bcd2867ffaa0a6d51d22a6fa60660b3f766 | chore: Set timeout for each Buildkite step to 15min | [
{
"change_type": "MODIFY",
"diff": "@@ -13,6 +13,7 @@ x-defaults: &defaults\nsteps:\n- name: \":balloon: Release\"\ncommand: \".buildkite/scripts/release.sh\"\n+ timeout_in_minutes: 15\nbranches: \"master\"\n<<: *defaults\nplugins:\n@@ -26,6 +27,7 @@ steps:\n- name: \":hatched_chick: Release (canary)\"\ncom... | TypeScript | MIT License | cultureamp/kaizen-design-system | chore: Set timeout for each Buildkite step to 15min (#2331) | 1 | chore | null |
865,917 | 30.11.2021 14:17:51 | -3,600 | ecc56cb33966fbe047f8396c89fa320550ca3828 | feat(tabs): redesign tab bar
Closes | [
{
"change_type": "DELETE",
"diff": "-<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" xmlns=\"http://www.w3.org/2000/svg\">\n- <path d=\"M8.00356 14.544C7.1289 14.544 6.30756 14.3787 5.53956 14.048C4.77156 13.728 4.09423 13.28 3.50756 12.704C2.93156 12.1173 2.47823 11.44 2.14756 10.672C1.82756 9.904 1.... | JavaScript | MIT License | camunda/camunda-modeler | feat(tabs): redesign tab bar
Closes #2563 | 1 | feat | tabs |
126,276 | 30.11.2021 14:29:10 | 10,800 | 7f46da7ccc28e34285798f9c9a48255d9263d005 | chore(embedded/sql): rollback token | [
{
"change_type": "MODIFY",
"diff": "@@ -55,6 +55,7 @@ var reservedWords = map[string]int{\n\"BEGIN\": BEGIN,\n\"TRANSACTION\": TRANSACTION,\n\"COMMIT\": COMMIT,\n+ \"ROLLBACK\": ROLLBACK,\n\"SELECT\": SELECT,\n\"DISTINCT\": DISTINCT,\n\"FROM\": FROM,\n",
"new_path": "embedded/sql/parser.go",
"old_pa... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/sql): rollback token
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/sql |
889,620 | 30.11.2021 14:33:46 | -28,800 | a487be9f63119fe7f9e8d80fbb3f04703557f39a | build: fix transitive dependency issue for JGit
this impacts Java 8 only | [
{
"change_type": "MODIFY",
"diff": "import org.apache.tools.ant.taskdefs.condition.Os\nimport org.jetbrains.kotlin.gradle.tasks.KotlinCompile\n+// TODO: remove once https://github.com/n0mer/gradle-git-properties/issues/195 and https://github.com/ajoberstar/grgit/issues/339 are addressed (2021-11-30)\n+build... | Kotlin | MIT License | gotson/komga | build: fix transitive dependency issue for JGit
this impacts Java 8 only | 1 | build | null |
711,597 | 30.11.2021 14:39:35 | -3,600 | 25c9c8a4d716784d66e7871c7f14cab7d8c115e5 | chore(admin-ui): Update apollo client deps | [
{
"change_type": "MODIFY",
"diff": "\"@angular/platform-browser\": \"12.2.2\",\n\"@angular/platform-browser-dynamic\": \"12.2.2\",\n\"@angular/router\": \"12.2.2\",\n- \"@apollo/client\": \"^3.3.11\",\n+ \"@apollo/client\": \"^3.5.5\",\n\"@biesbjerg/ngx-translate-extract-marker\": \"^1.0.0\",\n\"@cds/core\"... | TypeScript | MIT License | vendure-ecommerce/vendure | chore(admin-ui): Update apollo client deps | 1 | chore | admin-ui |
126,276 | 30.11.2021 14:41:07 | 10,800 | 991a43f4b89ac9b41d79bfa6792c32ce8adf159d | fix(embedded/sql): fix rollback stmt | [
{
"change_type": "MODIFY",
"diff": "@@ -173,11 +173,11 @@ func (stmt *RollbackStmt) inferParameters(tx *SQLTx, params map[string]SQLValueT\n}\nfunc (stmt *RollbackStmt) execAt(tx *SQLTx, params map[string]interface{}) (*SQLTx, error) {\n- if tx.explicitClose {\n+ if !tx.explicitClose {\nreturn nil, ErrNoOng... | Go | Apache License 2.0 | codenotary/immudb | fix(embedded/sql): fix rollback stmt
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | fix | embedded/sql |
711,597 | 30.11.2021 14:45:50 | -3,600 | 107ca9a0a8ada54b0c250f0840c0cd5fa4fff944 | feat(core): Allow manual payments to be added by Administrator
Relates to | [
{
"change_type": "MODIFY",
"diff": "@@ -1251,6 +1251,7 @@ describe('Shop orders', () => {\nGET_ACTIVE_ORDER_WITH_PAYMENTS,\n);\nconst payment = order!.payments![0];\n+ expect(order!.state).toBe('ArrangingPayment');\nexpect(order!.payments!.length).toBe(1);\nexpect(payment.method).toBe(testFailingPaymentMeth... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(core): Allow manual payments to be added by Administrator
Relates to #753. | 1 | feat | core |
711,597 | 30.11.2021 14:47:03 | -3,600 | 0416869b3e5ad6728bd0ae7e9fcb8a769396a765 | feat(admin-ui): Allow manual payments to be added by Administrator
Relates to | [
{
"change_type": "MODIFY",
"diff": "<button\nclass=\"btn btn-primary\"\n*ngIf=\"\n- order.state === 'ArrangingAdditionalPayment' &&\n+ (order.state === 'ArrangingPayment' || order.state === 'ArrangingAdditionalPayment') &&\n(hasUnsettledModifications(order) || 0 < outstandingPaymentAmount(order))\n\"\n(clic... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(admin-ui): Allow manual payments to be added by Administrator
Relates to #753. | 1 | feat | admin-ui |
815,585 | 30.11.2021 14:53:16 | -28,800 | 6508ebc55cd26a3ba7f38708638e57ac5b61d2e7 | ci: smoking test failed, fixed it | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,7 @@ jobs:\nfi\ntar -zxf /tmp/ckb_v0.35.0_linux.tar.gz -C /tmp\ncp /tmp/ckb_*/ckb ${{ github.workspace }}/ckb\n+ rm -rf /tmp/ckb_*\n- name: Update ExecStart&StandardOutput\nrun: |\nsed -i \"s#ExecStart=.*#ExecStart=${{github.workspace}}/ckb run -C ${{github.w... | Rust | MIT License | nervosnetwork/ckb | ci: smoking test failed, fixed it | 1 | ci | null |
791,723 | 30.11.2021 15:24:30 | 28,800 | fbb5cc465c2f421e8239888a984b4c2b56d8e57f | tests: move sharding higher so smokehouse-bundle can also shard | [
{
"change_type": "MODIFY",
"diff": "import cloneDeep from 'lodash.clonedeep';\nimport smokeTests from '../test-definitions/core-tests.js';\n-import {runSmokehouse} from '../smokehouse.js';\n+import {runSmokehouse, getShardedDefinitions} from '../smokehouse.js';\n/**\n* @param {Smokehouse.SmokehouseLibOption... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | tests: move sharding higher so smokehouse-bundle can also shard (#13387) | 1 | tests | null |
791,723 | 30.11.2021 15:27:24 | 28,800 | c78661085907a1d511ef6ba16e939bb26de15332 | misc(build): build test flow report to same path as sample-reports | [
{
"change_type": "MODIFY",
"diff": "@@ -16,5 +16,6 @@ import {LH_ROOT, readJson} from '../../root.js';\nconst flow = readJson('lighthouse-core/test/fixtures/fraggle-rock/reports/sample-flow-result.json');\nconst htmlReport = reportGenerator.generateFlowReportHtml(flow);\n-fs.writeFileSync(`${LH_ROOT}/flow.r... | JavaScript | Apache License 2.0 | googlechrome/lighthouse | misc(build): build test flow report to same path as sample-reports (#13324) | 1 | misc | build |
815,577 | 30.11.2021 15:42:20 | -28,800 | 5b19c894592cfb0e3cf4092a4e6c5615d5a77a99 | chore: upgrade yamux | [
{
"change_type": "MODIFY",
"diff": "@@ -4400,9 +4400,9 @@ dependencies = [\n[[package]]\nname = \"tokio-yamux\"\n-version = \"0.3.0\"\n+version = \"0.3.2\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"21dae0498310f69c7cc0cfe16bc32c118bfd89e6aa49997386bd7f3135c36506\"\n+... | Rust | MIT License | nervosnetwork/ckb | chore: upgrade yamux | 1 | chore | null |
865,939 | 30.11.2021 15:43:16 | -3,600 | d5269ba10a1e87a79240362967f5e2b41151c579 | feat(toolbar): remove toolbar
Closes | [
{
"change_type": "MODIFY",
"diff": "@@ -31,12 +31,9 @@ import { WithCache } from './cached';\nimport { DropZone } from './drop-zone';\nimport {\n- Fill,\nSlotFillRoot\n} from './slot-fill';\n-import Toolbar from './Toolbar';\n-\nimport Log from './Log';\nimport { StatusBar } from './status-bar';\n@@ -54,11 ... | JavaScript | MIT License | camunda/camunda-modeler | feat(toolbar): remove toolbar
Closes #2569 | 1 | feat | toolbar |
877,026 | 30.11.2021 15:53:04 | -3,600 | 3485ee3cd6e27795fdf54ff65576f2ca0c8d1b54 | fix(@vtmn/css): specify letter spacing for each size variant of the button | [
{
"change_type": "MODIFY",
"diff": "font-family: var(--vtmn-typo_font-family);\nfont-weight: var(--vtmn-typo_font-weight--bold);\nfont-size: var(--vtmn-typo_text-2-font-size);\n- letter-spacing: rem(0.34px);\n+ letter-spacing: rem(0.27px);\nborder-radius: rem(4px);\ncolor: var(--vtmn-semantic-color_content-... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | fix(@vtmn/css): specify letter spacing for each size variant of the button (#782) | 1 | fix | @vtmn/css |
877,026 | 30.11.2021 16:12:43 | -3,600 | 451754b0d892e137fe476e5bdd7536386e296c0a | feat(@vtmn/css): fix width progressbar linear | [
{
"change_type": "MODIFY",
"diff": "@import '@vtmn/css-design-tokens/src/animations';\n.vtmn-progressbar_container {\n- max-width: rem(375px);\n+ max-width: 100%;\nposition: relative;\ncolor: var(--vtmn-semantic-color_content-primary);\n}\n",
"new_path": "packages/sources/css/src/components/progressbar/... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | feat(@vtmn/css): fix width progressbar linear | 1 | feat | @vtmn/css |
185,952 | 30.11.2021 16:21:08 | 28,800 | a8f824b4ed0947cf991c544ef81958123151e2f9 | chore: v0.27.2 | [
{
"change_type": "MODIFY",
"diff": "{\n\"name\": \"electron-fiddle\",\n\"productName\": \"Electron Fiddle\",\n- \"version\": \"0.27.1\",\n+ \"version\": \"0.27.2\",\n\"description\": \"The easiest way to get started with Electron\",\n\"repository\": \"https://github.com/electron/fiddle\",\n\"main\": \"./dis... | TypeScript | MIT License | electron/fiddle | chore: v0.27.2 (#920) | 1 | chore | null |
877,015 | 30.11.2021 16:43:39 | -3,600 | c48c8cefe6edb49e122e6c0c283dc61f1f193ebd | chore: upgrade major dependency | [
{
"change_type": "MODIFY",
"diff": "\"@rollup/plugin-node-resolve\": \"^13.0.5\",\n\"@rollup/plugin-typescript\": \"^8.2.5\",\n\"@rollup/plugin-url\": \"^6.0.0\",\n- \"@svgr/rollup\": \"^5.5.0\",\n+ \"@svgr/rollup\": \"^6.0.0\",\n\"@types/enzyme\": \"^3.10.8\",\n\"@types/jest\": \"^27.0.1\",\n\"@types/react... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | chore: upgrade major dependency | 1 | chore | null |
126,276 | 30.11.2021 16:48:21 | 10,800 | 8239b0b42835ad79da4fd105ec04675ff9268551 | chore(embedded/store): set header version at commit time | [
{
"change_type": "MODIFY",
"diff": "@@ -879,13 +879,16 @@ func (s *ImmuStore) commit(otx *OngoingTx, expectedHeader *TxHeader, waitForInde\nvar ts int64\nvar blTxID uint64\n+ var version int\nif expectedHeader == nil {\nts = s.timeFunc().Unix()\nblTxID = s.aht.Size()\n+ version = TxHeaderVersion\n} else {\n... | Go | Apache License 2.0 | codenotary/immudb | chore(embedded/store): set header version at commit time
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | embedded/store |
877,015 | 30.11.2021 16:53:15 | -3,600 | be5f39296dfaa2deb89e84f2823e10108fb037a2 | fix(@vtmn/css-tailwind-preset): font-normal class has two definitions | [
{
"change_type": "MODIFY",
"diff": "@@ -154,7 +154,7 @@ module.exports = {\n10: 'var(--vtmn-spacing_10)',\n},\nfontFamily: {\n- normal: ['Roboto', 'system-ui', '-apple-system', 'sans-serif'],\n+ regular: ['Roboto', 'system-ui', '-apple-system', 'sans-serif'],\ncondensed: [\n'Roboto Condensed',\n'system-ui',... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | fix(@vtmn/css-tailwind-preset): font-normal class has two definitions (#760) | 1 | fix | @vtmn/css-tailwind-preset |
126,276 | 30.11.2021 16:55:50 | 10,800 | b18d3eeea49a4f78e5dbca3abdf291256d50906e | chore(cmd/immuclient): temporary disable displaying hash in non-verified methods
chore(cmd/immuclient): temporary disable displaying entry digest
chore(cmd/immuclient): temporary disable displaying entry digest | [
{
"change_type": "MODIFY",
"diff": "@@ -17,14 +17,15 @@ limitations under the License.\npackage cli\nimport (\n- \"github.com/codenotary/immudb/cmd/cmdtest\"\n- \"github.com/codenotary/immudb/pkg/client/tokenservice\"\n- \"github.com/codenotary/immudb/pkg/fs\"\n\"os\"\n\"path\"\n\"strings\"\n\"testing\"\n+ ... | Go | Apache License 2.0 | codenotary/immudb | chore(cmd/immuclient): temporary disable displaying hash in non-verified methods
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
chore(cmd/immuclient): temporary disable displaying entry digest
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
chore(cmd/immuclient): temporary disable displaying entry digest
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | cmd/immuclient |
877,026 | 30.11.2021 17:09:38 | -3,600 | c0e81ca2c7a5c6f4d9615465b1530c68e028aeae | feat(@vtmn/css): fix width cards | [
{
"change_type": "MODIFY",
"diff": "-<div class=\"block\">\n+<div class=\"block\" style=\"width: 50%\">\n<div class=\"vtmn-card vtmn-card_variant--full-image\">\n<div class=\"vtmn-card_image\">\n<img\n</div>\n</div>\n-<div class=\"block\">\n+<div class=\"block\" style=\"width: 50%\">\n<div class=\"vtmn-card... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | feat(@vtmn/css): fix width cards | 1 | feat | @vtmn/css |
386,581 | 30.11.2021 17:18:48 | -7,200 | ce126df4374d74a27a2a40439aa1bf56a63723f5 | feat(server-dev): Fetch Lowdefy config client-side using swr. | [
{
"change_type": "ADD",
"diff": "+/*\n+ Copyright 2020-2021 Lowdefy, Inc\n+\n+ Licensed under the Apache License, Version 2.0 (the \"License\");\n+ you may not use this file except in compliance with the License.\n+ You may obtain a copy of the License at\n+\n+ http://www.apache.org/licenses/LICENSE-2.0\n+\... | JavaScript | Apache License 2.0 | lowdefy/lowdefy | feat(server-dev): Fetch Lowdefy config client-side using swr. | 1 | feat | server-dev |
711,597 | 30.11.2021 17:22:47 | -3,600 | 8f218daf16959f6c8aa6f1d0262aeb124bd4214b | docs(payments-plugin): Add inline documentation for Braintree plugin
Relates to | [
{
"change_type": "MODIFY",
"diff": "-# Braintree plugin\n+# Braintree payment plugin\n-This plugin enables payments to be processed by [Braintree](https://www.braintreepayments.com/), a popular payment provider.\n+This plugin enables payments to be processed by [Braintree](https://www.braintreepayments.com/... | TypeScript | MIT License | vendure-ecommerce/vendure | docs(payments-plugin): Add inline documentation for Braintree plugin
Relates to #1087 | 1 | docs | payments-plugin |
711,658 | 30.11.2021 17:25:26 | -3,600 | e5feac44385d5da8cdf0c187f849e337f74ec647 | feat(admin-ui): Export all catalog components
Fixes | [
{
"change_type": "MODIFY",
"diff": "@@ -28,10 +28,7 @@ import { ProductVariantsTableComponent } from './components/product-variants-tab\nimport { UpdateProductOptionDialogComponent } from './components/update-product-option-dialog/update-product-option-dialog.component';\nimport { VariantPriceDetailComponen... | TypeScript | MIT License | vendure-ecommerce/vendure | feat(admin-ui): Export all catalog components (#1248)
Fixes #1245 | 1 | feat | admin-ui |
711,658 | 30.11.2021 17:27:45 | -3,600 | 5af2b12c500dc5d9a698f2a8e956c58cb58315c8 | fix(admin-ui): Fix error if no array of assets is provided | [
{
"change_type": "MODIFY",
"diff": "@@ -42,7 +42,7 @@ export interface AssetChange {\nexport class ProductAssetsComponent {\n@Input('assets') set assetsSetter(val: Asset[]) {\n// create a new non-readonly array of assets\n- this.assets = val.slice();\n+ this.assets = (val || []).slice();\n}\n@Input() featur... | TypeScript | MIT License | vendure-ecommerce/vendure | fix(admin-ui): Fix error if no array of assets is provided (#1249) | 1 | fix | admin-ui |
471,349 | 30.11.2021 17:42:12 | -7,200 | 7bde622802a88dbca685ae2400bdcf665f1443d1 | test: test multiple versions of `winston` | [
{
"change_type": "ADD",
"diff": "+winston:\n+ # a sample from supported versions\n+ - versions: \"3.3.3 || 3.2.1 || 2.4.5 || 2.4.4 || 2.1.1\"\n+ commands: npm run test\n+\n",
"new_path": "plugins/node/opentelemetry-instrumentation-winston/.tav.yml",
"old_path": null
},
{
"change_type": "MODI... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js-contrib | test: test multiple versions of `winston` (#760) | 1 | test | null |
471,349 | 30.11.2021 17:43:12 | -7,200 | 92221baba9cd4b7ddbc2897e7becf126399ba88a | test: test multiple versions of `pg` and `pg-pool` | [
{
"change_type": "MODIFY",
"diff": "@@ -40,6 +40,8 @@ components:\n- rauno56\nplugins/node/opentelemetry-instrumentation-router:\n- rauno56\n+ plugins/node/opentelemetry-instrumentation-pg:\n+ - rauno56\nplugins/web/opentelemetry-instrumentation-document-load:\n- obecny\nplugins/web/opentelemetry-instrument... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js-contrib | test: test multiple versions of `pg` and `pg-pool` (#751)
Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com> | 1 | test | null |
551,701 | 30.11.2021 18:15:17 | -3,600 | 6564673ff92ca6dd2328dddb1515e71d0cb96ee8 | fix(sql): ALTER TABLE ADD COLUMN parse error | [
{
"change_type": "MODIFY",
"diff": "@@ -1062,7 +1062,8 @@ public class SqlCompiler implements Closeable {\nint symbolCapacity;\nfinal boolean indexed;\n- if (ColumnType.isSymbol(type) && tok != null && !Chars.equals(tok, ',')) {\n+ if (ColumnType.isSymbol(type) && tok != null &&\n+ !Chars.equals(tok, ',') &... | Java | Apache License 2.0 | questdb/questdb | fix(sql): ALTER TABLE ADD COLUMN parse error #1612 (#1634) | 1 | fix | sql |
743,863 | 30.11.2021 18:18:40 | 0 | c4d25b8e007456d1e99eceeb457368725c7c2790 | build: test release-please@v3 | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ jobs:\nrelease-please:\nruns-on: ubuntu-latest\nsteps:\n- - uses: google-github-actions/release-please-action@v2\n+ - uses: google-github-actions/release-please-action@e3884958a78ff5b20796cafecb115c3106799cbd\nid: release\nwith:\ntoken: ${{ secrets.GITHUB_... | JavaScript | MIT License | yargs/yargs | build: test release-please@v3 | 1 | build | null |
71,748 | 30.11.2021 18:31:36 | 0 | d62ac77485b605aacdb1cea1b27ef19f46189644 | chore: update distribution tags for public packages | [
{
"change_type": "MODIFY",
"diff": "\"stability\": \"experimental\",\n\"maturity\": \"developer-preview\",\n\"publishConfig\": {\n- \"tag\": \"next\"\n+ \"tag\": \"latest\"\n}\n}\n",
"new_path": "packages/@aws-cdk/assert/package.json",
"old_path": "packages/@aws-cdk/assert/package.json"
},
{
... | TypeScript | Apache License 2.0 | aws/aws-cdk | chore: update distribution tags for public packages | 1 | chore | null |
217,922 | 30.11.2021 18:45:47 | -3,600 | d001ce6050668118bfcf356dd7ea6f14388d5eda | fix(profile): fixed character search not working | [
{
"change_type": "MODIFY",
"diff": "@@ -28,9 +28,9 @@ export class LodestoneService {\n}\npublic searchCharacter(name: string, server: string): Observable<Partial<Character>[]> {\n- let dataSource$: Observable<Partial<Character>[]>;\n+ let dataSource$: Observable<{ List: Partial<Character>[] }>;\nif (this.i... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(profile): fixed character search not working | 1 | fix | profile |
743,863 | 30.11.2021 18:47:20 | 0 | 8046bc29547490f40a39585a0a1adf7beacd4af4 | build: test latest version of release-please | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ jobs:\nrelease-please:\nruns-on: ubuntu-latest\nsteps:\n- - uses: google-github-actions/release-please-action@e3884958a78ff5b20796cafecb115c3106799cbd\n+ - uses: google-github-actions/release-please-action@e2673a0324ea6d91ed9c6438369b53e2fe7e7360\nid: rele... | JavaScript | MIT License | yargs/yargs | build: test latest version of release-please | 1 | build | null |
743,863 | 30.11.2021 18:58:03 | 0 | 58fcd168c055c2728c1afaaa6c8c5a8b323a03ab | build: release-please with fixed outputs | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ jobs:\nrelease-please:\nruns-on: ubuntu-latest\nsteps:\n- - uses: google-github-actions/release-please-action@e2673a0324ea6d91ed9c6438369b53e2fe7e7360\n+ - uses: google-github-actions/release-please-action@a4578e0d8575662554aa01d055f7f762c9e3f8bc\nid: rele... | JavaScript | MIT License | yargs/yargs | build: release-please with fixed outputs | 1 | build | null |
71,371 | 30.11.2021 19:07:02 | -3,600 | 986f291a51cee46299428298ca6b39a9636d6dd2 | fix(lambda-nodejs): bundling with `nodeModules` fails with paths containing spaces
Enclose paths with double quotes (`"`).
Closes
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | [
{
"change_type": "MODIFY",
"diff": "@@ -305,22 +305,22 @@ class OsCommand {\npublic writeJson(filePath: string, data: any): string {\nconst stringifiedData = JSON.stringify(data);\nif (this.osPlatform === 'win32') {\n- return `echo ^${stringifiedData}^ > ${filePath}`;\n+ return `echo ^${stringifiedData}^ > ... | TypeScript | Apache License 2.0 | aws/aws-cdk | fix(lambda-nodejs): bundling with `nodeModules` fails with paths containing spaces (#17632)
Enclose paths with double quotes (`"`).
Closes #17631
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | fix | lambda-nodejs |
217,922 | 30.11.2021 19:08:38 | -3,600 | 38672f1dd55ad03dcf32216ac91a39f5ee806302 | fix(recipe-finder): fixed add button not properly disabled in some cases | [
{
"change_type": "MODIFY",
"diff": "</div>\n<nz-collapse class=\"inventory-panel\">\n<nz-collapse-panel\n- [nzActive]=\"true\"\n+ [nzActive]=\"false\"\n[nzHeader]=\"header\"\n+ #panel\n>\n<ng-template #header>\n<div class=\"panel-header\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\">\n</div>\n</d... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(recipe-finder): fixed add button not properly disabled in some cases | 1 | fix | recipe-finder |
551,701 | 30.11.2021 19:08:57 | -3,600 | 96d87bb40884b8299b6052852ea95fbccce084b4 | feat(sql): specify index block size in alter table alter column add index | [
{
"change_type": "MODIFY",
"diff": "@@ -939,7 +939,27 @@ public class SqlCompiler implements Closeable {\ntok = expectToken(lexer, \"'add index' or 'cache' or 'nocache'\");\nif (SqlKeywords.isAddKeyword(tok)) {\nexpectKeyword(lexer, \"index\");\n- alterTableColumnAddIndex(tableNamePosition, columnNameNamePo... | Java | Apache License 2.0 | questdb/questdb | feat(sql): specify index block size in alter table alter column add index (#1628) | 1 | feat | sql |
306,309 | 30.11.2021 19:09:37 | -10,800 | 2a3ed8de568f8dee26326238fad0e8c05fde995d | docs: use new GitHub Actions screenshot | [
{
"change_type": "MODIFY",
"diff": "@@ -69,7 +69,7 @@ Infracost's [CI/CD integrations](https://www.infracost.io/docs/integrations/cicd\nIf you run into any issues with CI/CD integrations, please join our [community Slack channel](https://www.infracost.io/community-chat), we'd be happy to guide you through i... | Go | Apache License 2.0 | infracost/infracost | docs: use new GitHub Actions screenshot (#1157) | 1 | docs | null |
217,922 | 30.11.2021 19:25:33 | -3,600 | 418a12ed1b7b9100ed27033f0aa47092348fd358 | fix(recipe-finder): fixed a bug with missing ingredients misscaculation | [
{
"change_type": "MODIFY",
"diff": "@@ -133,16 +133,24 @@ export class RecipeFinderComponent implements OnDestroy {\nentry.missing = entry.ingredients\n// Ignore crystals\n.filter(i => i.id > 19)\n- .filter(i => {\n+ .map(i => {\nconst poolItem = this.pool.find(item => item.id === i.id);\n- return !poolItem... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(recipe-finder): fixed a bug with missing ingredients misscaculation | 1 | fix | recipe-finder |
306,309 | 30.11.2021 19:27:16 | -10,800 | a3228c0d87c4e561dafbff81d168ed439b5d0e88 | docs: add link to the new actions repo | [
{
"change_type": "MODIFY",
"diff": "# Infracost CI scripts\nThis folder holds the `diff.sh` file that is included in the infracost/infracost Docker image and used in the following CI integrations:\n-- GitHub: [infracost-gh-action](https://github.com/infracost/infracost-gh-action), demo is at [gh-actions-dem... | Go | Apache License 2.0 | infracost/infracost | docs: add link to the new actions repo | 1 | docs | null |
217,922 | 30.11.2021 19:32:43 | -3,600 | 5648005d60f36dd9a790b9be1b3895e236011013 | fix(collectables): fixed "add selection to list" not working and missing job icons in input fields | [
{
"change_type": "MODIFY",
"diff": "required type=\"number\"/>\n</nz-input-group>\n<ng-template #jobIcon>\n- <img *ngIf=\"((+control | i18nRow:'jobAbbr').en | async) as icon\" alt=\"\" class=\"job-icon\" src=\"https://garlandtools.org/db/images/{{icon}}.png\">\n+ <img *ngIf=\"(+control | i18nRow:'jobAbbr' |... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(collectables): fixed "add selection to list" not working and missing job icons in input fields | 1 | fix | collectables |
756,013 | 30.11.2021 19:39:20 | 21,600 | a1065c043dc721d967065fe1098ad5a0cb59a3fa | feat(deployment): add scripts to help find nondeterminism | [
{
"change_type": "MODIFY",
"diff": "\"prettier\": {\n\"trailingComma\": \"all\",\n\"singleQuote\": true\n+ },\n+ \"devDependencies\": {\n+ \"readline-transform\": \"^1.0.0\"\n}\n}\n",
"new_path": "packages/deployment/package.json",
"old_path": "packages/deployment/package.json"
},
{
"change_... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(deployment): add scripts to help find nondeterminism | 1 | feat | deployment |
756,013 | 30.11.2021 19:41:18 | 21,600 | fa96b9a369c595cdf6b09e9b57aaad7c06003709 | fix(cosmos): make a repeated array of entries for `beans_per_unit` | [
{
"change_type": "MODIFY",
"diff": "@@ -19,7 +19,11 @@ message Params {\n//\n// The structure and interpretation of this map and the units therein is\n// entirely determined by the JS-level code.\n- map<string, Beans> beans_per_unit = 1 [\n+ //\n+ // There is no required order to this list of entries, but a... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(cosmos): make a repeated array of entries for `beans_per_unit` | 1 | fix | cosmos |
71,562 | 30.11.2021 19:49:40 | -3,600 | 3623982fc1a64c2c67a0dba18a6d3eeeb171e898 | feat(lambda-event-sources): sqs: support reportBatchItemFailures
Fixes
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | [
{
"change_type": "MODIFY",
"diff": "@@ -71,6 +71,7 @@ declare const fn: lambda.Function;\nfn.addEventSource(new SqsEventSource(queue, {\nbatchSize: 10, // default\nmaxBatchingWindow: Duration.minutes(5),\n+ reportBatchItemFailures: true, // default to false\n}));\n```\n",
"new_path": "packages/@aws-cdk/... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(lambda-event-sources): sqs: support reportBatchItemFailures (#17733)
Fixes #17690
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | lambda-event-sources |
392,551 | 30.11.2021 20:03:43 | 28,800 | c9176b36f62731237ceadd58ca9c279203f7f166 | chore: add flow declarations for geo conversions | [
{
"change_type": "MODIFY",
"diff": "@@ -48,6 +48,72 @@ declare function enuToGeodetic(\nrefAlt: number\n): number[];\n+/**\n+ * Convert coordinates from Earth-Centered, Earth-Fixed (ECEF) reference\n+ * to local topocentric (ENU) reference.\n+ * @param {number} X ECEF X-value.\n+ * @param {number} Y ECEF Y-... | TypeScript | MIT License | mapillary/mapillary-js | chore: add flow declarations for geo conversions | 1 | chore | null |
317,646 | 30.11.2021 20:03:58 | -3,600 | 7b4333ae7783fe2dda42c9a7fa86f317bfd21277 | feat: smaller binaries | [
{
"change_type": "MODIFY",
"diff": "@@ -7,8 +7,10 @@ builds:\n-\nbinary: \"posh-{{ .Os }}-{{ .Arch }}\"\nno_unique_dist_dir: true\n+ flags:\n+ - -a\nldflags:\n- - -X main.Version={{.Version}}\n+ - -s -w -X main.Version={{.Version}}\ngoos:\n- linux\n- windows\n",
"new_path": "src/.goreleaser.yml",
"o... | Go | MIT License | jandedobbeleer/oh-my-posh | feat: smaller binaries | 1 | feat | null |
401,147 | 30.11.2021 20:25:58 | -19,080 | 57ac1a001706596196479ee459e3b72b6513a979 | style: update border radius of modal and dialog box
affects: | [
{
"change_type": "MODIFY",
"diff": "@@ -2,13 +2,13 @@ import styled from 'styled-components';\nimport { DialogBoxPopupProps } from './types';\nexport const Popup = styled('div')<DialogBoxPopupProps>`\n- background: ${({ theme }) => theme.modal.backgroundColor};\n+ background: ${({ theme }) => theme.dialogBo... | TypeScript | MIT License | medly/medly-components | style: update border radius of modal and dialog box (#547)
affects: @medly-components/core, @medly-components/theme | 1 | style | null |
217,899 | 30.11.2021 20:42:39 | -32,400 | d2b2f8d4d9fe501a502e9bfeb30dce150acd0e60 | feat(db): support for korean v5.57 update | [
{
"change_type": "MODIFY",
"diff": "export const gameEnv = {\nmaxLevel: 80,\nglobalGameVersion: 5.581,\n- koreanGameVersion: 5.551,\n+ koreanGameVersion: 5.57,\nchineseGameVersion: 5.55\n};\n",
"new_path": "apps/client/src/environments/game-env.ts",
"old_path": "apps/client/src/environments/game-env... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | feat(db): support for korean v5.57 update | 1 | feat | db |
392,551 | 30.11.2021 20:43:35 | 28,800 | cc06c053444383f014bbeede3c67f3790ac24279 | fix: export point mode for flow | [
{
"change_type": "MODIFY",
"diff": "@@ -633,7 +633,7 @@ export interface IGeometryProvider {\n* not an exported method or class.\n* @fires datacreate\n*/\n-export interface IDataProvider {\n+export interface IDataProvider extends IEventEmitter {\n/**\n* Get geometry property.\n* @returns {IGeometryProvider}... | TypeScript | MIT License | mapillary/mapillary-js | fix: export point mode for flow | 1 | fix | null |
667,713 | 30.11.2021 21:05:52 | -28,800 | 391664e9c12c4e09ad9d0dfd5fe9a8d467fc07c6 | refactor(android): publish for debug | [
{
"change_type": "MODIFY",
"diff": "@@ -251,7 +251,8 @@ task dealAfterMergeDebugNativeLibs() {\ndef dealAfterAssemble(buildType) {\nfile(\"$OUTPUT_PATH/$buildType\").deleteDir()\n-\n+ File target = file(\"$OUTPUT_PATH/$ARCHIVES_BASE_NAME\" + \".aar\")\n+ delete target\nfile(OUTPUT_PATH).list().each{fileName... | C++ | Apache License 2.0 | tencent/hippy | refactor(android): publish for debug | 1 | refactor | android |
756,013 | 30.11.2021 21:15:25 | 21,600 | a8f8d9416d7f088e3fa8558ba568d40c43f9eaad | ci(deployment-test): run against default branch | [
{
"change_type": "MODIFY",
"diff": "@@ -4,9 +4,10 @@ on:\n# Use the following to explicitly start thit workflow.\n# packages/deployment/scripts/start-deployment-test.sh <BRANCH-OR-TAG>\nworkflow_dispatch:\n- # Otherwise, run on a schedule.\n- schedule:\n- - cron: \"0 0 * * *\"\n+ # Otherwise, run on default... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | ci(deployment-test): run against default branch | 1 | ci | deployment-test |
104,825 | 30.11.2021 21:26:50 | 18,000 | ae4fd4e9b226fdb2d5d9772d661433b2ea297fe9 | refactor(table): simplify moveNested | [
{
"change_type": "MODIFY",
"diff": "@@ -995,7 +995,6 @@ export class AITableModel implements PaginationModel {\n// This allows us to walk the leaves as if they were in a list from left to right.\n// We need to pass by reference so that we can update this value from within the recursion.\nleafIndexRef = { cu... | JavaScript | Apache License 2.0 | carbon-design-system/carbon-addons-iot-react | refactor(table): simplify moveNested | 1 | refactor | table |
269,464 | 30.11.2021 21:36:19 | 10,800 | 535a383435902ea8995f209e692bfc124225888e | docs: fix after mkdocs upgrade | [
{
"change_type": "MODIFY",
"diff": "@@ -158,7 +158,8 @@ markdown_extensions:\n- meta\n- toc:\npermalink: true\n- - pymdownx.tabbed\n+ - pymdownx.tabbed:\n+ alternate_style: true\n- pymdownx.superfences\n- pymdownx.tasklist:\ncustom_checkbox: true\n",
"new_path": "www/mkdocs.yml",
"old_path": "www/mk... | Go | MIT License | goreleaser/goreleaser | docs: fix after mkdocs upgrade
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | docs | null |
551,701 | 30.11.2021 21:37:51 | -3,600 | d36b1073dfb7e9593fa1e4f694f75c094ed0bd18 | feat: expose memory counters to prometheus | [
{
"change_type": "MODIFY",
"diff": "@@ -29,6 +29,8 @@ import io.questdb.metrics.MetricsRegistry;\nimport io.questdb.metrics.MetricsRegistryImpl;\nimport io.questdb.metrics.NullMetricsRegistry;\nimport io.questdb.metrics.Scrapable;\n+import io.questdb.std.MemoryTag;\n+import io.questdb.std.Unsafe;\nimport io... | Java | Apache License 2.0 | questdb/questdb | feat: expose memory counters to prometheus (#1630) | 1 | feat | null |
756,013 | 30.11.2021 22:01:36 | 21,600 | f303696b61ee9dfe0cce59f0791730de6f10230f | ci: also run `docker` and `deployment-test` on main branch PR close | [
{
"change_type": "MODIFY",
"diff": "@@ -8,6 +8,10 @@ on:\npush:\nbranches:\n- $default-branch\n+ pull_request:\n+ types: [closed]\n+ branches:\n+ - $default-branch\njobs:\ndeployment-test:\n",
"new_path": ".github/workflows/deployment-test.yml",
"old_path": ".github/workflows/deployment-test.yml"
... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | ci: also run `docker` and `deployment-test` on main branch PR close | 1 | ci | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.