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 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
126,276 | 28.12.2021 15:11:02 | 10,800 | 5c6fa8dcc877dfbd7e3cd645f9a477c256048411 | chore(pkg/database): self-contained noWait execAll | [
{
"change_type": "MODIFY",
"diff": "@@ -41,9 +41,7 @@ func (d *db) ExecAll(req *schema.ExecAllRequest) (*schema.TxHeader, error) {\nreturn nil, ErrIsReplica\n}\n- const unsafe bool = true\n-\n- if !unsafe {\n+ if !req.NoWait {\nlastTxID, _ := d.st.Alh()\nerr := d.st.WaitForIndexingUpto(lastTxID, nil)\nif er... | Go | Apache License 2.0 | codenotary/immudb | chore(pkg/database): self-contained noWait execAll
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com> | 1 | chore | pkg/database |
869,310 | 28.12.2021 15:59:41 | -25,200 | 992ce6081d92179b911b6fb017a20a718842a8da | fix: temp fix to let pancakeswap2 work again
It will timeout if we get all top 1000 markets. This will need to be reset in the future | [
{
"change_type": "MODIFY",
"diff": "@@ -23,7 +23,7 @@ class Pancakeswap2 extends Driver {\n*/\nasync getPairs(ids, blockNumber = null) {\n// By default request the current top 1000 markets with the highest volume.\n- const selectQuery = ids ? `first: ${ids.length} where: {id_in: [\"${ids.join('\", \"')}\"]}... | JavaScript | MIT License | coinranking/exchanges | fix: temp fix to let pancakeswap2 work again
It will timeout if we get all top 1000 markets. This will need to be reset in the future | 1 | fix | null |
869,310 | 28.12.2021 16:07:09 | -25,200 | de8b0606d975a875959c9a1e32cf2bd1343bdd58 | fix: test for pancakeswap2 | [
{
"change_type": "MODIFY",
"diff": "@@ -129,7 +129,7 @@ driverNames.forEach((driverName) => {\n});\n});\n- test('Volume are probably less than 10 billion', () => {\n+ test('Volume is probably less than 10 billion', () => {\nconst whitelist = ['USD', 'USDT', 'EUR', 'USDC', 'GUSD', 'PAX', 'BUSD', 'TUSD', 'HUS... | JavaScript | MIT License | coinranking/exchanges | fix: test for pancakeswap2 | 1 | fix | null |
418,677 | 28.12.2021 16:12:15 | -28,800 | 0a81e720f525ddab0718301f44f80fce376f9bfe | feat: add fileupload support | [
{
"change_type": "ADD",
"diff": "Binary files /dev/null and b/doc/zh-cn/component/images/swagger4.jpg differ\n",
"new_path": "doc/zh-cn/component/images/swagger4.jpg",
"old_path": "doc/zh-cn/component/images/swagger4.jpg"
},
{
"change_type": "MODIFY",
"diff": "@@ -17,11 +17,20 @@ import ... | TypeScript | MIT License | midwayjs/midway | feat: add fileupload support (#1439) | 1 | feat | null |
877,015 | 28.12.2021 16:37:28 | -3,600 | 73db89fdd88394d288ec72713c6a773df138eeb3 | docs(@vtmn/css-showcase): use addon backgrounds instead of custom style for search stories | [
{
"change_type": "MODIFY",
"diff": "-<style>\n- #root {\n- background-color: var(--vtmn-semantic-color_background-primary);\n- }\n-</style>\n-\n<div class=\"block\">\n<div class=\"vtmn-search vtmn-search_variant--on-content\" role=\"search\">\n<input type=\"search\" id=\"my-search-1\" placeholder=\"Search\"... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | docs(@vtmn/css-showcase): use addon backgrounds instead of custom style for search stories (#826) | 1 | docs | @vtmn/css-showcase |
889,620 | 28.12.2021 16:51:29 | -28,800 | 5a464fd13e24c881dd3cebb63ea07954e4449aa7 | feat: parse Web element from ComicInfo.xml
closes | [
{
"change_type": "ADD",
"diff": "+CREATE TABLE BOOK_METADATA_LINK\n+(\n+ LABEL varchar NOT NULL,\n+ URL varchar NOT NULL,\n+ BOOK_ID varchar NOT NULL,\n+ FOREIGN KEY (BOOK_ID) REFERENCES BOOK (ID)\n+);\n+\n+alter table book_metadata\n+ add column LINKS_LOCK boolean NOT NULL DEFAULT 0;\n",
"new_path": "k... | Kotlin | MIT License | gotson/komga | feat: parse Web element from ComicInfo.xml
closes #750 | 1 | feat | null |
889,620 | 28.12.2021 16:53:14 | -28,800 | 6d3fe6922cfcd5b5606a8a342c9363d52b448951 | refactor: express BookMetadataPatchCapability as a set instead of list | [
{
"change_type": "MODIFY",
"diff": "@@ -33,7 +33,7 @@ sealed class Task(priority: Int = DEFAULT_PRIORITY) : Serializable {\noverride fun toString(): String = \"GenerateBookThumbnail(bookId='$bookId', priority='$priority')\"\n}\n- class RefreshBookMetadata(val bookId: String, val capabilities: List<BookMetad... | Kotlin | MIT License | gotson/komga | refactor: express BookMetadataPatchCapability as a set instead of list | 1 | refactor | null |
744,016 | 28.12.2021 16:55:55 | 25,200 | 6a2977867bd58dbd8bb550f7b0b4c4c298835597 | fix: wrap unknown args in quotes | [
{
"change_type": "MODIFY",
"diff": "@@ -205,7 +205,7 @@ export function validation(\n'Unknown argument: %s',\n'Unknown arguments: %s',\nunknown.length,\n- unknown.join(', ')\n+ unknown.map(s => (s.trim() ? s : `\"${s}\"`)).join(', ')\n)\n);\n}\n",
"new_path": "lib/validation.ts",
"old_path": "lib/va... | JavaScript | MIT License | yargs/yargs | fix: wrap unknown args in quotes (#2092) | 1 | fix | null |
531,793 | 28.12.2021 17:08:38 | 0 | c454601b3bf0ad8194311f635135d80d6c7c7c69 | chore(ui): tweak silence font | [
{
"change_type": "MODIFY",
"diff": "@@ -267,7 +267,7 @@ exports[`<GroupFooter /> mathes snapshot when silence is rendered 1`] = `\n</svg>\n</div>\n<div class=\\\\\"mx-2 flex-shrink-1 flex-grow-1 mw-1p\\\\\">\n- <div class=\\\\\"font-italic components-managed-silence-comment text-truncate overflow-hidden\\\\... | TypeScript | Apache License 2.0 | prymitive/karma | chore(ui): tweak silence font | 1 | chore | ui |
780,862 | 28.12.2021 17:32:09 | 10,800 | 7250bdad80c8c409e05b4d6654425101444cfc95 | fix(APrices): check min amount from extra discount on price
* fix(APrices): check min amount from extra discount on price
* fix: getPriceWithDiscount return only positive
chore: edit condicional computed price
* Update
[skip ci]
* Update
[skip ci]
* Update APrices.js
[skip ci] | [
{
"change_type": "MODIFY",
"diff": "@@ -19,12 +19,14 @@ import waitStorefrontInfo from './helpers/wait-storefront-info'\nconst getPriceWithDiscount = (price, discount) => {\nconst { type, value } = discount\n+ let priceWithDiscount\nif (value) {\nif (type === 'percentage') {\n- return price * (100 - value) ... | JavaScript | MIT License | ecomplus/storefront | fix(APrices): check min amount from extra discount on price (#588)
* fix(APrices): check min amount from extra discount on price
* fix: getPriceWithDiscount return only positive
chore: edit condicional computed price
* Update @ecomplus/storefront-components/src/js/APrices.js
[skip ci]
* Update @ecomplus/storefront-components/src/js/APrices.js
[skip ci]
* Update APrices.js
[skip ci]
Co-authored-by: Leonardo Matos <leomp120894@gmail.com> | 1 | fix | APrices |
217,922 | 28.12.2021 18:28:25 | -3,600 | 556cd50f0d43ab5ccd0983f987388611e88e2e0b | fix(allagan-reports): fixed FATE reports input not being completed properly | [
{
"change_type": "MODIFY",
"diff": "@@ -22,6 +22,7 @@ import { XivapiService } from '@xivapi/angular-client';\nimport { Language } from '../../core/data/language';\nimport { normalizeI18nName } from '../../core/tools/normalize-i18n';\nimport { TranslateService } from '@ngx-translate/core';\n+import { LazyDa... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(allagan-reports): fixed FATE reports input not being completed properly | 1 | fix | allagan-reports |
841,421 | 28.12.2021 18:49:33 | -32,400 | cec325be6329bbdc175d7850443de8aabfcf31d6 | security(repo): Configure `cargo-crev` | [
{
"change_type": "DELETE",
"diff": "-on: workflow_dispatch\n-\n-name: Managment\n-\n-jobs:\n- publish-crates:\n- name: Publish crates\n- runs-on: ubuntu-latest\n-\n- steps:\n- - uses: actions/checkout@v2\n-\n- - uses: actions/cache@v2\n- with:\n- path: |\n- ~/.cargo/bin/\n- ~/.cargo/registry/index/\n- ~/.ca... | Rust | Apache License 2.0 | swc-project/swc | security(repo): Configure `cargo-crev` (#3124) | 1 | security | repo |
889,620 | 28.12.2021 18:50:57 | -28,800 | 1c32273268aa69f23ff5f020a315aae5556382af | refactor(webui): use rtl class and elements | [
{
"change_type": "MODIFY",
"diff": "v-on=\"on\"\n:to=\"parent.route\"\n>\n- <v-icon v-if=\"$vuetify.rtl\">mdi-arrow-right</v-icon>\n- <v-icon v-else>mdi-arrow-left</v-icon>\n+ <rtl-icon icon=\"mdi-arrow-left\" rtl=\"mdi-arrow-right\"/>\n</v-btn>\n</template>\n<span v-if=\"contextReadList\">{{ $t('common.go_... | Kotlin | MIT License | gotson/komga | refactor(webui): use rtl class and elements | 1 | refactor | webui |
889,620 | 28.12.2021 18:58:36 | -28,800 | ff38516b11a15b66c94bedaaf67c47cf94799878 | feat(webui): display book links
closes | [
{
"change_type": "MODIFY",
"diff": "\"file\": \"FILE\",\n\"format\": \"FORMAT\",\n\"isbn\": \"ISBN\",\n+ \"links\": \"LINKS\",\n\"navigation_within_readlist\": \"Navigation within the readlist: {name}\",\n\"outdated_tooltip\": \"The file for this book has changed, this book must be re-analyzed\",\n\"read_bo... | Kotlin | MIT License | gotson/komga | feat(webui): display book links
closes #750 | 1 | feat | webui |
889,620 | 28.12.2021 18:59:08 | -28,800 | 79cd7db5892b23fbc4c3033b581314a63702a7d6 | refactor: remove unused commented code | [
{
"change_type": "MODIFY",
"diff": "@@ -308,56 +308,6 @@ export default Vue.extend({\n},\nvalidateForm(): any {\nif ((this.$refs.form as any).validate()) {\n- // const metadata = {\n- // authorsLock: this.form.authorsLock,\n- // tagsLock: this.form.tagsLock,\n- // }\n- //\n- // if (this.$v.form?.authors?.$d... | Kotlin | MIT License | gotson/komga | refactor: remove unused commented code | 1 | refactor | null |
889,620 | 28.12.2021 18:59:36 | -28,800 | 0a8aa3e4bb71bfb709ff566c315a77e74fb82383 | refactor: fix incorrect type | [
{
"change_type": "MODIFY",
"diff": "@@ -94,7 +94,7 @@ export interface BookMetadataUpdateDto {\n}\nexport interface BookMetadataUpdateBatchDto {\n- [bookId: string]: BookMetadataUpdateBatchDto\n+ [bookId: string]: BookMetadataUpdateDto\n}\nexport interface AuthorDto {\n",
"new_path": "komga-webui/src/ty... | Kotlin | MIT License | gotson/komga | refactor: fix incorrect type | 1 | refactor | null |
603,467 | 28.12.2021 19:59:02 | -3,600 | 429040fb32b04cd4bc7524100635203fd8128eb6 | feat(web): isVisible checks if the element is in viewport and not hidden behind other elements
The behaviour of isVisible() is now more intuitive as it checks if the element is present in the
DOM, located within the viewport, displayed, and not covered by other elements.
PageElement.isDisplayed is now also replaced by PageElement.isVisible | [
{
"change_type": "MODIFY",
"diff": "import 'mocha';\nimport { expect } from '@integration/testing-tools';\n-import { Ensure } from '@serenity-js/assertions';\n+import { Ensure, not } from '@serenity-js/assertions';\nimport { actorCalled, AssertionError } from '@serenity-js/core';\nimport { By, isClickable, ... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | feat(web): isVisible checks if the element is in viewport and not hidden behind other elements
The behaviour of isVisible() is now more intuitive as it checks if the element is present in the
DOM, located within the viewport, displayed, and not covered by other elements.
PageElement.isDisplayed is now also replaced by PageElement.isVisible | 1 | feat | web |
317,646 | 28.12.2021 20:29:41 | -3,600 | e2a907e121201bef507af4ad760419357ebfe398 | fix(template): do not replace words starting with .Env | [
{
"change_type": "MODIFY",
"diff": "@@ -50,7 +50,7 @@ func (t *textTemplate) render() (string, error) {\nif err != nil {\nreturn \"\", errors.New(invalidTemplate)\n}\n- if strings.Contains(t.Template, \".Env\") {\n+ if strings.Contains(t.Template, \".Env.\") {\nt.loadEnvVars()\n}\nbuffer := new(bytes.Buffer... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(template): do not replace words starting with .Env | 1 | fix | template |
317,646 | 28.12.2021 20:44:04 | -3,600 | 4ecf674e62088572e787134364f30db62315806a | fix(git): return empty on error | [
{
"change_type": "MODIFY",
"diff": "@@ -310,7 +310,10 @@ func (g *git) getGitCommand() string {\nfunc (g *git) getGitCommandOutput(args ...string) string {\nargs = append([]string{\"-C\", g.gitRealFolder, \"--no-optional-locks\", \"-c\", \"core.quotepath=false\", \"-c\", \"color.status=false\"}, args...)\n-... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(git): return empty on error | 1 | fix | git |
160,178 | 28.12.2021 21:06:41 | -28,800 | 1e780906388e187bc947c5022373fe5b34a19ae0 | feat: fix edge style | [
{
"change_type": "MODIFY",
"diff": "@@ -16,7 +16,8 @@ class Model extends BezierEdgeModel {\ngetEdgeStyle () {\nconst attributes = super.getEdgeStyle()\nconst properties = this.properties;\n- return getShapeStyleFuction(attributes, properties)\n+ const style = getShapeStyleFuction(attributes, properties)\n+... | TypeScript | Apache License 2.0 | didi/logicflow | feat: fix edge style | 1 | feat | null |
160,178 | 28.12.2021 21:13:07 | -28,800 | 3e83104b9e872f048835be40d53c09b9677b50b3 | feat: modify MinusNode | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ class MinusModel extends RectNode.model {\nconstructor(data, graphData) {\nsuper(data, graphData)\nthis.width = 80\n- this.height = 80\n+ this.height = 20\n}\ngetNodeStyle() {\nconst style = super.getNodeStyle()\n@@ -27,10 +27,10 @@ class MinusView extends... | TypeScript | Apache License 2.0 | didi/logicflow | feat: modify MinusNode | 1 | feat | null |
841,421 | 28.12.2021 21:37:38 | -32,400 | ec7e0aee256cc7cc13f81ef22164c29f42bb43be | fix(es/utils): Fix `is_valid_ident`
swc_ecma_utils:
- Fix `is_valid_ident`. (Closes | [
{
"change_type": "ADD",
"diff": "+{\n+ \"sourceMaps\": false,\n+ \"jsc\": {\n+ \"loose\": true,\n+ \"parser\": {\n+ \"syntax\": \"ecmascript\"\n+ },\n+ \"target\": \"es3\",\n+ \"minify\": {\n+ \"compress\": true,\n+ \"mangle\": true\n+ }\n+ },\n+ \"minify\": true\n+}\n\\ No newline at end of file\n",
"n... | Rust | Apache License 2.0 | swc-project/swc | fix(es/utils): Fix `is_valid_ident` (#3133)
swc_ecma_utils:
- Fix `is_valid_ident`. (Closes #2118) | 1 | fix | es/utils |
418,677 | 28.12.2021 21:46:44 | -28,800 | 21ec8b6a85b6ba3f4fbff0c8a571484aaa078788 | fix: 3.x copy all properties | [
{
"change_type": "MODIFY",
"diff": "@@ -26,7 +26,6 @@ export function createApiPropertyDecorator(\noptions = {\n...options,\ntype,\n- isArray,\n};\nif (isEnumArray(options)) {\n",
"new_path": "packages/swagger/src/decorators/api-property.decorator.ts",
"old_path": "packages/swagger/src/decorators/ap... | TypeScript | MIT License | midwayjs/midway | fix: 3.x copy all properties (#1444) | 1 | fix | null |
667,676 | 28.12.2021 21:51:55 | -28,800 | b7158b4847662e0e52c814c842d600b237e39dc0 | fix(core): fix convert crash | [
{
"change_type": "MODIFY",
"diff": "namespace hippy {\nnamespace base {\n+constexpr char kCharConversionFailedPrompt[] = \"<string conversion failed>\";\n+constexpr char16_t kU16CharConversionFailedPrompt[] = u\"<u16string conversion failed>\";\n+constexpr char32_t kU32CharConversionFailedPrompt[] = U\"<u32... | C++ | Apache License 2.0 | tencent/hippy | fix(core): fix convert crash | 1 | fix | core |
217,231 | 28.12.2021 21:58:49 | -10,800 | 55d0f2443e344b9c81d3ccb9cb701f02b60d76f5 | fix: replace emoji from title text. | [
{
"change_type": "MODIFY",
"diff": "@@ -22,14 +22,19 @@ function createSVGText(\n) {\nconst attributes = { fill, stroke };\nconst options = { fontSize, anchor: \"top\", attributes };\n+ // Remove all emoji from text\n+ const filteredText = text.replace(\n+ /([\\u2700-\\u27BF]|[\\uE000-\\uF8FF]|\\uD83C[\\uDC... | JavaScript | MIT License | feature-sliced/documentation | fix: replace emoji from title text. | 1 | fix | null |
841,421 | 28.12.2021 22:25:07 | -32,400 | 693c22aa93ce115aca294f61feefe4582336ada3 | fix(es/optimization): Fix inlining
swc_ecma_transforms_optimization:
- `inlining`: Mark all usages as modification. (Closes | [
{
"change_type": "MODIFY",
"diff": "#![recursion_limit = \"2048\"]\n+#![allow(dead_code)]\n#[macro_use]\nextern crate napi_derive;\n",
"new_path": "crates/node/src/lib.rs",
"old_path": "crates/node/src/lib.rs"
},
{
"change_type": "ADD",
"diff": "+{\n+ \"jsc\": {\n+ \"parser\": {\n+ \"syn... | Rust | Apache License 2.0 | swc-project/swc | fix(es/optimization): Fix inlining (#3132)
swc_ecma_transforms_optimization:
- `inlining`: Mark all usages as modification. (Closes #2108) | 1 | fix | es/optimization |
217,231 | 28.12.2021 22:26:16 | -10,800 | 71c2f1ea992dd08e2a760dfde4fff30b935f9810 | feat: center preview text | [
{
"change_type": "MODIFY",
"diff": "@@ -23,7 +23,7 @@ function createSVGText(\nconst attributes = { fill, stroke };\nconst options = { fontSize, anchor: \"top\", attributes };\n// Remove all emoji from text\n- const filteredText = text.replace(\n+ let filteredText = text.replace(\n/([\\u2700-\\u27BF]|[\\uE0... | JavaScript | MIT License | feature-sliced/documentation | feat: center preview text | 1 | feat | null |
902,122 | 28.12.2021 22:56:18 | -3,600 | 898ac18eec3d0649c2f8d84211d469f9565a32e8 | chore(release): v9.3.1 | [
{
"change_type": "MODIFY",
"diff": "All notable changes to this project will be documented in this file.\nSee [Conventional Commits](https://conventionalcommits.org) for commit guidelines.\n+## [9.3.1](https://github.com/microlinkhq/browserless/compare/v9.3.0...v9.3.1) (2021-12-28)\n+\n+**Note:** Version bu... | JavaScript | MIT License | microlinkhq/browserless | chore(release): v9.3.1 | 1 | chore | release |
667,636 | 28.12.2021 23:01:45 | -28,800 | 2cd4581de7f88e9eb18db2b61e25ea586c734399 | chore(gitignore): add some directory to git ignore | [
{
"change_type": "MODIFY",
"diff": "@@ -10,6 +10,29 @@ layout/build\nlayout/cproject\nlayout/.project\nlayout/.settings\n+framework/js/examples/*/res/vendor-manifest.json\n+framework/js/android/sdk/src/main/jni/.vs\n+framework/js/android/sdk/maven-auth.properties\n+framework/js/android/sdk/local.properties\... | C++ | Apache License 2.0 | tencent/hippy | chore(gitignore): add some directory to git ignore | 1 | chore | gitignore |
877,026 | 28.12.2021 23:41:45 | -3,600 | daddc0c1952e152d8cd05f74da27d1472d0c1fdc | feat(@vtmn/css): add token focus-visible for breadcrumb and tabs | [
{
"change_type": "MODIFY",
"diff": ".vtmn-breadcrumb li > a:focus-visible,\n.vtmn-breadcrumb li > button:focus-visible {\noutline: none;\n- box-shadow: 0 0 0 rem(4px) var(--vtmn-semantic-color_border-primary-reversed),\n- 0 0 0 rem(6px) var(--vtmn-semantic-color_border-primary);\n+ box-shadow: var(--vtmn-sh... | JavaScript | Apache License 2.0 | decathlon/vitamin-web | feat(@vtmn/css): add token focus-visible for breadcrumb and tabs (#829) | 1 | feat | @vtmn/css |
603,467 | 29.12.2021 00:24:28 | -3,600 | c3a0ad16de311e71d7e82e4f463baa0ca6b18863 | fix(web): corrected synchronisation in Web questions and interactions
This fixes the issue with Press sometimes not issuing keyboard shortcuts correctly with Protractor,
reported by on the Serenity/JS community chat channel | [
{
"change_type": "ADD",
"diff": "+import { describe, it } from 'mocha';\n+import { asyncMap } from '../../src/io';\n+import { expect } from '../expect';\n+\n+/** @test {asyncMap} */\n+describe('asyncMap', () => {\n+\n+ const items = [ 'a', 'b', 'c' ];\n+\n+ it('should map elements of a list using a synchron... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(web): corrected synchronisation in Web questions and interactions
This fixes the issue with Press sometimes not issuing keyboard shortcuts correctly with Protractor,
reported by @viper3400 on the Serenity/JS community chat channel | 1 | fix | web |
603,467 | 29.12.2021 00:27:07 | -3,600 | b682577ad649046fc1a4cd61a7315e11d60dcf32 | fix(web): Photographer skips taking a screenshot if the Window is closed (DevTools protocol) | [
{
"change_type": "MODIFY",
"diff": "@@ -64,10 +64,8 @@ export abstract class PhotoTakingStrategy {\n}\ntry {\n- const [ screenshot, capabilities ] = await Promise.all([\n- browseTheWeb.takeScreenshot(),\n- browseTheWeb.browserCapabilities(),\n- ]);\n+ const capabilities = await browseTheWeb.browserCapabilit... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(web): Photographer skips taking a screenshot if the Window is closed (DevTools protocol) | 1 | fix | web |
603,467 | 29.12.2021 02:09:20 | -3,600 | f0c8f113433958877d36f13d0bc7f355ea68d280 | fix(web): refactored Selector and NativeElementLocator classes to simplify the implementation | [
{
"change_type": "MODIFY",
"diff": "@@ -117,11 +117,11 @@ export class BrowseTheWebWithProtractor extends BrowseTheWeb<ElementFinder> {\nreturn promised(this.browser.manage().deleteAllCookies());\n}\n- locate<Parameters extends unknown[]>(selector: Selector<Parameters>, locator?: NativeElementLocator<Elemen... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(web): refactored Selector and NativeElementLocator classes to simplify the implementation | 1 | fix | web |
603,467 | 29.12.2021 02:17:46 | -3,600 | 54961a7a3af06716295a1cab56a9c0e10d5dac73 | fix(examples): updated the examples to use the new PageElement, By, and .where APIs
re | [
{
"change_type": "MODIFY",
"diff": "-import { browser, by, element, protractor } from 'protractor';\n+import { browser, by, element, ExpectedConditions, protractor } from 'protractor';\ndescribe('Todo List App', function () {\n@@ -44,6 +44,7 @@ describe('Todo List App', function () {\nawait browser.get('htt... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(examples): updated the examples to use the new PageElement, By, and .where APIs
re #805 | 1 | fix | examples |
841,488 | 29.12.2021 03:38:32 | 28,800 | 356082ad84fa69cf09b5627598a2576bd1b27c36 | fix(es/utils): Fix handling of `new.target` | [
{
"change_type": "MODIFY",
"diff": "@@ -200,12 +200,13 @@ where\n);\nlet pass = add!(pass, BlockScoping, es2015::block_scoping(), true);\n+ let pass = add!(pass, NewTarget, es2015::new_target(), true);\n+\n// TODO:\n// Literals,\n// ObjectSuper,\n// DotAllRegex,\n// UnicodeRegex,\n- // NewTarget,\n// AsyncG... | Rust | Apache License 2.0 | swc-project/swc | fix(es/utils): Fix handling of `new.target` (#3145) | 1 | fix | es/utils |
603,467 | 29.12.2021 03:47:21 | -3,600 | 4592fb7e700bad17fd44d91bd9db169839802d01 | feat(core): forEach for List and PageElements
includes support for nested loops
closes | [
{
"change_type": "MODIFY",
"diff": "@@ -6,9 +6,6 @@ import { By, Click, CssClasses, Navigate, PageElement, PageElements, Text } from\nimport { expect } from '@integration/testing-tools';\nimport { given } from 'mocha-testdata';\n-/** @test {PageElements} */\n-describe('PageElements', () => {\n-\nclass Shopp... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | feat(core): forEach for List and PageElements
includes support for nested loops
closes #823 | 1 | feat | core |
617,459 | 29.12.2021 09:54:46 | -3,600 | fa194b009d11d83e5582a4860f65c8dfad6fbe88 | fix(frontend): regex tooltip | [
{
"change_type": "MODIFY",
"diff": "@@ -13,9 +13,17 @@ export const htmlParser = (html: string): string => {\n: $(this).html();\n});\n- $(\"a\").each(() => {\n- const content = decodeURIComponent($(this).text());\n- $(this).text(content);\n+ // FIXME: Admin regex\n+ $(\"webcomponent-tooltip\").each(function... | TypeScript | Apache License 2.0 | socialgouv/code-du-travail-numerique | fix(frontend): regex tooltip (#4136) | 1 | fix | frontend |
617,459 | 29.12.2021 09:55:03 | -3,600 | 110b77dc661c16ac607871f24dcd7e82a1f076c0 | fix(frontend): remove tag from dailymotion embed | [
{
"change_type": "MODIFY",
"diff": "@@ -6,6 +6,10 @@ export const htmlParser = (html: string): string => {\n// FIXME: Remove style from docx converter\n$(\"style\").remove();\n+ // https://travail-emploi.gouv.fr/le-ministere-en-action/coronavirus-covid-19/questions-reponses-par-theme/article/mesures-de-prev... | TypeScript | Apache License 2.0 | socialgouv/code-du-travail-numerique | fix(frontend): remove tag from dailymotion embed (#4135) | 1 | fix | frontend |
815,609 | 29.12.2021 10:00:08 | -28,800 | 8e43379d6b17eec177cf2fea7a5e9171f661893e | chore(deps): bump quote from 1.0.10 to 1.0.14 | [
{
"change_type": "MODIFY",
"diff": "@@ -3414,9 +3414,9 @@ checksum = \"a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3\"\n[[package]]\nname = \"quote\"\n-version = \"1.0.10\"\n+version = \"1.0.14\"\nsource = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"38bc8cc6a5... | Rust | MIT License | nervosnetwork/ckb | chore(deps): bump quote from 1.0.10 to 1.0.14 | 1 | chore | deps |
306,338 | 29.12.2021 11:34:37 | -3,600 | 0bc2f6ef4cb02a22db182708af5164fc0dd55919 | chore: set `dashboardEnabled` context value
It is sent to Cloud Pricing API as part of an event. | [
{
"change_type": "MODIFY",
"diff": "@@ -205,6 +205,7 @@ func loadGlobalFlags(ctx *config.RunContext, cmd *cobra.Command) error {\n}\n}\n+ ctx.SetContextValue(\"dashboardEnabled\", ctx.Config.EnableDashboard)\nctx.SetContextValue(\"isDefaultPricingAPIEndpoint\", ctx.Config.PricingAPIEndpoint == ctx.Config.De... | Go | Apache License 2.0 | infracost/infracost | chore: set `dashboardEnabled` context value (#1229)
It is sent to Cloud Pricing API as part of an event. | 1 | chore | null |
306,385 | 29.12.2021 11:37:17 | -3,600 | 2b583ee7509f5430db8d1d917e9c2f2a3d5cb9a5 | feat: remove differentKeyEventNamesShimIE | [
{
"change_type": "ADD",
"diff": "+---\n+'@lion/button': minor\n+'@lion/calendar': minor\n+'@lion/core': minor\n+'@lion/listbox': minor\n+'@lion/overlays': minor\n+'@lion/select-rich': minor\n+---\n+\n+Remove differentKeyEventNamesShimIE, since IE11 isn't supported any more\n",
"new_path": ".changeset/si... | JavaScript | MIT License | ing-bank/lion | feat: remove differentKeyEventNamesShimIE | 1 | feat | null |
756,039 | 29.12.2021 12:03:07 | 28,800 | 51f78ae7a0fcba6a68b68a790d706abea5b6e116 | fix(wallet): fix crash when deleting dapps | [
{
"change_type": "MODIFY",
"diff": "@@ -18,7 +18,7 @@ export const DappsWithoutContext = ({ dapps }) => {\nconst remove = ({ actions }) => E(actions).delete();\n- const DappCard = dapp => {\n+ const DappCard = ({ dapp }) => {\nconst [anchorEl, setAnchorEl] = useState(null);\nconst handleClick = event => {\n... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | fix(wallet): fix crash when deleting dapps | 1 | fix | wallet |
217,922 | 29.12.2021 12:15:47 | -3,600 | 34b0818c879d2f98c9657155f55c958adad1dd67 | fix(settings): removed WIP tooltip on metrics capture checkbox | [
{
"change_type": "MODIFY",
"diff": "</label>\n</div>\n<div>\n- <label [(ngModel)]=\"settings.playerMetricsEnabled\" [nzDisabled]=\"!machinaToggle\" nz-checkbox nz-tooltip\n- [nzTooltipTitle]=\"'SETTINGS.Metrics_capture_tooltip' | translate\">\n+ <label [(ngModel)]=\"settings.playerMetricsEnabled\" [nzDisabl... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(settings): removed WIP tooltip on metrics capture checkbox | 1 | fix | settings |
217,922 | 29.12.2021 12:29:28 | -3,600 | fb426277a1ef20c70b302b3c5a31853eb080c33b | fix(simulator): fixed missing name for remove Initial Preparations macro entry | [
{
"change_type": "MODIFY",
"diff": "[simulation]=\"resultData.simulation\"\n[tooltipDisabled]=\"tooltipsDisabled\"></app-action>\n<div *ngIf=\"settings.detailedSimulatorActions\">\n- <div class=\"action-name\">{{action.getId(resultData.simulation.crafterStats.jobId) | actionName | i18n}}</div>\n+ <div class... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(simulator): fixed missing name for remove Initial Preparations macro entry | 1 | fix | simulator |
471,409 | 29.12.2021 12:41:41 | -7,200 | 77aefa6ee5eb65ad6dd71ce22fd7800b3eef881d | feat(add-tav-action): add test-all-versions as github action | [
{
"change_type": "ADD",
"diff": "+name: Test-all-versions\n+on:\n+ pull_request:\n+ branches: [main]\n+\n+jobs:\n+ tav:\n+ name: run test-all-version (tav)\n+ runs-on: ubuntu-latest\n+ services:\n+ memcached:\n+ image: memcached:1.6.9-alpine\n+ ports:\n+ - 11211:11211\n+ mongo:\n+ image: mongo\n+ ports:\n+ ... | TypeScript | Apache License 2.0 | open-telemetry/opentelemetry-js-contrib | feat(add-tav-action): add test-all-versions as github action (#778) | 1 | feat | add-tav-action |
306,385 | 29.12.2021 13:03:31 | -3,600 | 495cb0c50045513c74cc47e15f80ed74dcf082cc | feat(core): remove unused keyboardEventShimIE test helper | [
{
"change_type": "ADD",
"diff": "+---\n+'@lion/core': minor\n+'@lion/calendar': minor\n+---\n+\n+Remove keyboardEventShimIE test helper\n",
"new_path": ".changeset/chilly-poets-march.md",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "import { html } from '@lion/core';\n-import ... | JavaScript | MIT License | ing-bank/lion | feat(core): remove unused keyboardEventShimIE test helper | 1 | feat | core |
667,656 | 29.12.2021 13:25:31 | -28,800 | daf67d33c347b4c2071fe27d9d601edda91ed118 | feat(debug-server): add cli API | [
{
"change_type": "MODIFY",
"diff": "@@ -18,3 +18,17 @@ npm install -g @hippy/debug-server # Install\ncd hippy-react-demo # Change to a hippy-react project folder.\nhippy-debug # Start the debug server\n```\n+\n+If you use custom cli, you could customize like this:\n+\n+```javascript\n+const { webpack, start... | C++ | Apache License 2.0 | tencent/hippy | feat(debug-server): add cli API | 1 | feat | debug-server |
342,861 | 29.12.2021 13:51:50 | -3,600 | ed4b83e7e27f19a46d011bf5a7fd96889761b67f | feat(tracking): add search via props | [
{
"change_type": "MODIFY",
"diff": "@@ -3,6 +3,8 @@ import styled, { css } from \"styled-components\";\nimport { useStaticQuery, graphql, navigate } from \"gatsby\";\nimport { filter } from \"fuzzaldrin-plus\";\nimport { useCombobox } from \"downshift\";\n+import type { DebouncedFunc } from \"lodash\";\n+im... | JavaScript | MIT License | kiwicom/orbit | feat(tracking): add search via props (#3228) | 1 | feat | tracking |
889,620 | 29.12.2021 13:59:41 | -28,800 | 394123d26382439a235b07258489b3f942c93b6b | fix(webui): adjust import views display on small screens | [
{
"change_type": "MODIFY",
"diff": "</v-alert>\n<v-row align=\"center\">\n- <v-col>\n+ <v-col cols=\"12\" sm=\"\">\n<v-text-field\nv-model=\"importPath\"\nclearable\n",
"new_path": "komga-webui/src/views/ImportBooks.vue",
"old_path": "komga-webui/src/views/ImportBooks.vue"
},
{
"change_type"... | Kotlin | MIT License | gotson/komga | fix(webui): adjust import views display on small screens | 1 | fix | webui |
306,385 | 29.12.2021 14:15:45 | -3,600 | 830119181448c7ca300f845ce318e2a61d155659 | feat(core): remove closestPolyfill | [
{
"change_type": "ADD",
"diff": "+---\n+'@lion/core': minor\n+'@lion/listbox': minor\n+---\n+\n+Remove closestPolyfill\n",
"new_path": ".changeset/spotty-zebras-sip.md",
"old_path": null
},
{
"change_type": "DELETE",
"diff": "-import './src/closestPolyfill.js';\n",
"new_path": null,
... | JavaScript | MIT License | ing-bank/lion | feat(core): remove closestPolyfill | 1 | feat | core |
217,922 | 29.12.2021 14:17:22 | -3,600 | 90a3ca9037426e7b02921ed5e7fdab8a0365a198 | fix(recipe-finder): fixed missing ingredients label in basket | [
{
"change_type": "MODIFY",
"diff": ">{{'RECIPE_FINDER.No_missing_ingredients' | translate}}</nz-tag>\n<nz-tag *ngIf=\"row.entry.missing.length === 1\"\n[style.border-color]=\"'#f2b10e'\"\n- class=\"custom-tag\">{{'RECIPE_FINDER.Missing_X_ingredients' | translate:{ amount: row.entry.missing.length } }}</nz-t... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(recipe-finder): fixed missing ingredients label in basket | 1 | fix | recipe-finder |
306,321 | 29.12.2021 14:27:16 | 0 | 8aa62acd900fc96ee5e7d252cc2caaeaa83d29d1 | feat: add resourcecheck cmd | [
{
"change_type": "ADD",
"diff": "+on:\n+ schedule:\n+ - cron: \"0 8 * * *\" # every day at 8am\n+\n+jobs:\n+ check:\n+ name: Check resources\n+ runs-on: ubuntu-latest\n+ steps:\n+ - uses: actions/checkout@v2\n+ - name: Set up Go 1.x\n+ uses: actions/setup-go@v2\n+ with:\n+ go-version: 1.17\n+ - name: Config... | Go | Apache License 2.0 | infracost/infracost | feat: add resourcecheck cmd (#1233) | 1 | feat | null |
667,635 | 29.12.2021 14:29:03 | -28,800 | abc2aff4d5b1f8ea9e798b6b34cd40de9a0fa0a6 | refactor(ios): remove unused file | [
{
"change_type": "MODIFY",
"diff": "F405949A2733C4A900157225 /* HippySRSIMDHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = F40594982733C4A900157225 /* HippySRSIMDHelpers.m */; };\nF417B54D2727ACCE00894090 /* HippyDevManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F417B54C2727ACCE00894090 /... | C++ | Apache License 2.0 | tencent/hippy | refactor(ios): remove unused file | 1 | refactor | ios |
494,227 | 29.12.2021 14:39:12 | -7,200 | 294dfa85b4552b9266c44bb3376b8610c1ff5521 | feat: added phone number identifier
See | [
{
"change_type": "MODIFY",
"diff": "\"via\": {\n\"type\": \"string\",\n\"enum\": [\n- \"email\"\n+ \"email\",\n+ \"phone\"\n]\n}\n}\n",
"new_path": "embedx/identity_extension.schema.json",
"old_path": "embedx/identity_extension.schema.json"
},
{
"change_type": "MODIFY",
"diff": "@@ -72,7... | Go | Apache License 2.0 | ory/kratos | feat: added phone number identifier (#1938)
See #137 | 1 | feat | null |
306,320 | 29.12.2021 14:47:42 | 0 | f5aa9e61a96b612e690a0650908e5597cf60fe46 | enhance: update comment script to use environment variables | [
{
"change_type": "MODIFY",
"diff": "@@ -26,7 +26,7 @@ RUN npm install -g @infracost/compost\nWORKDIR /root/\n# Scripts are used by CI integrations and other use-cases\n-COPY scripts/comment.sh /scripts/comment\n+COPY scripts/ci/comment.sh /scripts/ci/comment\nCOPY --from=builder /app/build/infracost /usr/bi... | Go | Apache License 2.0 | infracost/infracost | enhance: update comment script to use environment variables (#1234) | 1 | enhance | null |
217,922 | 29.12.2021 14:48:13 | -3,600 | bf9c7f84e7fd26aa2cc717bb83824d5dfeadcf4d | fix(simulator): fixed some rotations not loading properly | [
{
"change_type": "MODIFY",
"diff": "@@ -41,12 +41,12 @@ export class CustomSimulatorPageComponent extends AbstractSimulationPage {\n}\n});\nthis.recipeForm = this.fb.group({\n- rlvl: [481, [Validators.min(1), Validators.required]],\n+ rlvl: [560, [Validators.min(1), Validators.required]],\nlevel: [this.curM... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(simulator): fixed some rotations not loading properly | 1 | fix | simulator |
160,178 | 29.12.2021 14:55:46 | -28,800 | f466a57948b9ab7a12261ae796b4e4b67044911b | feat: modify arrowNode | [
{
"change_type": "MODIFY",
"diff": "\"lint\": \"vue-cli-service lint\"\n},\n\"dependencies\": {\n- \"@logicflow/core\": \"^1.0.0-alpha.6\",\n- \"@logicflow/extension\": \"^1.0.0-alpha.6\",\n+ \"@logicflow/core\": \"^1.0.0-alpha.9\",\n+ \"@logicflow/extension\": \"^1.0.0-alpha.9\",\n\"core-js\": \"^3.6.5\",\... | TypeScript | Apache License 2.0 | didi/logicflow | feat: modify arrowNode | 1 | feat | null |
217,922 | 29.12.2021 15:08:06 | -3,600 | b8604f7db86b583d1ede41e28da0fe33be84cb89 | fix(gathering-location): fixed aethersands not being properly searchable | [
{
"change_type": "MODIFY",
"diff": "import { ChangeDetectionStrategy, Component } from '@angular/core';\nimport { BehaviorSubject, combineLatest, Observable } from 'rxjs';\n-import { debounceTime, filter, first, map, switchMap, tap } from 'rxjs/operators';\n+import { debounceTime, filter, first, map, shareR... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(gathering-location): fixed aethersands not being properly searchable | 1 | fix | gathering-location |
667,656 | 29.12.2021 15:11:39 | -28,800 | dc493c654e7ad91e821bb5209b261732d1873c37 | fix(react-demo,vue-demo): local-debug script | [
{
"change_type": "MODIFY",
"diff": "\"scripts\": {\n\"serve\": \"webpack serve --config ./scripts/hippy-webpack.web.dev.js\",\n\"build\": \"webpack --config ./scripts/hippy-webpack.web.js\",\n- \"hippy:local-debug\": \"node ../../packages/hippy-debug-server/index.js\",\n+ \"hippy:local-debug\": \"node ../..... | C++ | Apache License 2.0 | tencent/hippy | fix(react-demo,vue-demo): local-debug script | 1 | fix | react-demo,vue-demo |
667,656 | 29.12.2021 15:11:39 | -28,800 | 47d717504872bf3003a48c42581676b2ec1c7136 | fix(debug-server): webpack dev callback | [
{
"change_type": "MODIFY",
"diff": "@@ -9,23 +9,21 @@ const WebpackDevServer = require('../webpack-dev-server/lib/Server');\nmodule.exports = {\nwebpack: (webpackConfig, cb) => {\n- const compiler = Webpack(webpackConfig, cb);\n- startWebpackDevServer(webpackConfig, compiler);\n+ const compiler = Webpack(we... | C++ | Apache License 2.0 | tencent/hippy | fix(debug-server): webpack dev callback | 1 | fix | debug-server |
841,421 | 29.12.2021 16:01:15 | -32,400 | 333acb56223139817c1df0c8b3763190b55a6295 | doc(es/ast): Improve rustdoc
swc_ecma_ast:
- Document `Str.kind`.
- Document `TpleElement.cooked`. | [
{
"change_type": "MODIFY",
"diff": "@@ -642,6 +642,12 @@ impl Take for TaggedTpl {\npub struct TplElement {\npub span: Span,\npub tail: bool,\n+\n+ /// This value is never used by `swc_ecma_codegen`, and this fact is\n+ /// considered as a public API.\n+ ///\n+ /// If you are going to use codegen right afte... | Rust | Apache License 2.0 | swc-project/swc | doc(es/ast): Improve rustdoc (#3142)
swc_ecma_ast:
- Document `Str.kind`.
- Document `TpleElement.cooked`. | 1 | doc | es/ast |
889,620 | 29.12.2021 16:20:52 | -28,800 | 719554766cb96dde6bcd0f42a335c8a5e840ade4 | feat(webui): edit book links | [
{
"change_type": "MODIFY",
"diff": "<v-icon left class=\"hidden-xs-only\">mdi-tag-multiple</v-icon>\n{{ $t('dialog.edit_books.tab_tags') }}\n</v-tab>\n+ <v-tab class=\"justify-start\" v-if=\"single\">\n+ <v-icon left class=\"hidden-xs-only\">mdi-link</v-icon>\n+ {{ $t('dialog.edit_books.tab_links') }}\n+ </... | Kotlin | MIT License | gotson/komga | feat(webui): edit book links | 1 | feat | webui |
551,648 | 29.12.2021 16:26:12 | -10,800 | 121f15984c0f16101411b0cf7d8b4de21f072cf7 | chore(core): allow disabling query caches | [
{
"change_type": "MODIFY",
"diff": "@@ -87,8 +87,9 @@ public class PropServerConfiguration implements ServerConfiguration {\nprivate final int parallelIndexThreshold;\nprivate final int readerPoolMaxSegments;\nprivate final long spinLockTimeoutUs;\n- private final int sqlCacheRows;\n- private final int sqlC... | Java | Apache License 2.0 | questdb/questdb | chore(core): allow disabling query caches (#1735) | 1 | chore | core |
438,941 | 29.12.2021 16:26:14 | -3,600 | aad8c4573641cb4d444c61d5b7a89b78e6b54e2e | feat(axis): alow user to hide tick lines while using culling
Implement tick.culling.lines option, where make to control
the visibility of tick lines within culling option
Fix
Close | [
{
"change_type": "MODIFY",
"diff": "@@ -50,3 +50,4 @@ Adrian Schmutzler <dev@schmutzler.it>\nAziz Gazanchiyan <ZIZ@KMDPoland.pl>\nEben Collins <collinseben@gmail.com>\nShim Heungwoon <ajaxlab7@gmail.com>\n+Marcos Gomez Castillo <marcos.gomez.castillo@tecsisa.com>\n",
"new_path": "AUTHORS.txt",
"old_... | TypeScript | MIT License | naver/billboard.js | feat(axis): alow user to hide tick lines while using culling
Implement tick.culling.lines option, where make to control
the visibility of tick lines within culling option
Fix #2478
Close #2480 | 1 | feat | axis |
217,922 | 29.12.2021 16:31:16 | -3,600 | d8049b988ee4fd7574101f06e5dcd23486409cff | fix(db): fixed non-targetted retainer ventures not redered properly | [
{
"change_type": "MODIFY",
"diff": "<nz-list-item [nzContent]=\"content\">\n<nz-list-item-meta\n[nzTitle]=\"venture.name ? (venture.job | i18nRow:'jobAbbr' | i18n) || (DOWM | i18n): (venture.id | i18nRow:'ventures' | i18n)\"\n- nzDescription=\"Lv. {{venture.lvl}}\">\n+ [nzDescription]=\"description\">\n+ <n... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(db): fixed non-targetted retainer ventures not redered properly | 1 | fix | db |
667,656 | 29.12.2021 16:42:16 | -28,800 | 8b977cf273998fd13ee4bef26c955726657583fa | fix(debug-server): fix webpack-dev-server compile callback | [
{
"change_type": "MODIFY",
"diff": "@@ -38,7 +38,7 @@ class Server {\nthis.sockets = [];\nthis.compiler = compiler;\nthis.currentHash = null;\n- this.cb = cb;\n+ this.cb = cb || (() => {});\n}\nstatic get DEFAULT_STATS() {\n",
"new_path": "packages/hippy-debug-server/webpack-dev-server/lib/Server.js",
... | C++ | Apache License 2.0 | tencent/hippy | fix(debug-server): fix webpack-dev-server compile callback | 1 | fix | debug-server |
603,467 | 29.12.2021 16:54:09 | -3,600 | c36e210c024052b96ba47e9663c7098e269c5688 | fix(core): you can now retrieve the .length property of an Array wrapped in an Adapter<Array> | [
{
"change_type": "MODIFY",
"diff": "@@ -16,11 +16,11 @@ export function createAdapter<A, Q extends Question<A> = Question<A>>(question:\n}\n}\n- if (key in target) {\n+ if (shouldReflect(target, key)) {\nreturn Reflect.get(target, key, receiver);\n}\n- if (doNotProxy(key)) {\n+ if (! shouldProxy(key)) { // ... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | fix(core): you can now retrieve the .length property of an Array wrapped in an Adapter<Array> | 1 | fix | core |
791,259 | 29.12.2021 17:06:09 | -32,400 | c276428bca79702245d422849af6472bb2e74171 | feat(spanner): Add ReadRowWithOptions method | [
{
"change_type": "MODIFY",
"diff": "@@ -2860,6 +2860,21 @@ func TestClient_Single_Read_WithNumericKey(t *testing.T) {\n}\n}\n+func TestClient_Single_ReadRowWithOptions(t *testing.T) {\n+ t.Parallel()\n+\n+ _, client, teardown := setupMockedTestServer(t)\n+ defer teardown()\n+ ctx := context.Background()\n+ ... | Go | Apache License 2.0 | googleapis/google-cloud-go | feat(spanner): Add ReadRowWithOptions method (#5240)
Co-authored-by: rahul2393 <rahulyadavsep92@gmail.com> | 1 | feat | spanner |
306,338 | 29.12.2021 17:19:38 | -3,600 | 4080b212b998ff15c430204e67fa5b9b4d28e0e6 | chore: optimize run's share URL generation for output command
In case when the output command receives only one file and it already
has its share URL, sending its data to Dashboard would create a
redundant duplicate. | [
{
"change_type": "MODIFY",
"diff": "@@ -149,25 +149,7 @@ func outputCmd(ctx *config.RunContext) *cobra.Command {\nui.PrintWarning(cmd.ErrOrStderr(), \"The dashboard is part of Infracost's hosted services. Contact hello@infracost.io for help.\")\n}\n- projectContexts := make([]*config.ProjectContext, len(com... | Go | Apache License 2.0 | infracost/infracost | chore: optimize run's share URL generation for output command (#1232)
In case when the output command receives only one file and it already
has its share URL, sending its data to Dashboard would create a
redundant duplicate. | 1 | chore | null |
306,338 | 29.12.2021 17:41:16 | -3,600 | e3c6a5d556291c876b9a43ea3ae153e06925faa0 | chore: send run's currency to dashboard | [
{
"change_type": "MODIFY",
"diff": "@@ -29,6 +29,7 @@ type AddRunResponse struct {\ntype runInput struct {\nProjectResults []projectResultInput `json:\"projectResults\"`\n+ Currency string `json:\"currency\"`\nTimeGenerated time.Time `json:\"timeGenerated\"`\nMetadata map[string]interface{} `json:\"metadata... | Go | Apache License 2.0 | infracost/infracost | chore: send run's currency to dashboard (#1230) | 1 | chore | null |
841,421 | 29.12.2021 19:19:44 | -32,400 | 8a1016fb406dd04dcf432ccf4e07036f81d4c9c6 | refactor(bundler): Improve test suite | [
{
"change_type": "MODIFY",
"diff": "path = crates/swc_ecma_parser/tests/test262-parser\nurl = https://github.com/tc39/test262-parser-tests.git\nshallow = true\n+ ignore = dirty\n\\ No newline at end of file\n",
"new_path": ".gitmodules",
"old_path": ".gitmodules"
},
{
"change_type": "MODIFY"... | Rust | Apache License 2.0 | swc-project/swc | refactor(bundler): Improve test suite (#3144) | 1 | refactor | bundler |
780,866 | 29.12.2021 19:24:03 | 10,800 | 5053e9176d8fc2c309f5b7266de7adc2d11ec9b6 | feat(template/css): new `--content-max-width` replacing hardset 80rem
used on header and some sections | [
{
"change_type": "MODIFY",
"diff": "+:root {\n+ --content-max-width: 80rem;\n+}\n+\nbody {\nwidth: 100%;\nheight: 100%;\n",
"new_path": "@ecomplus/storefront-template/template/scss/_main.scss",
"old_path": "@ecomplus/storefront-template/template/scss/_main.scss"
},
{
"change_type": "MODIFY",... | JavaScript | MIT License | ecomplus/storefront | feat(template/css): new `--content-max-width` replacing hardset 80rem
used on header and some sections | 1 | feat | template/css |
306,638 | 29.12.2021 19:24:26 | -19,080 | 122d20bc6f238e0704adabbe2abc10fb109cd8cc | chore: updates checkout action to v2 from v1 | [
{
"change_type": "MODIFY",
"diff": "@@ -10,7 +10,7 @@ jobs:\nname: Release tag\nruns-on: ubuntu-latest\nsteps:\n- - uses: actions/checkout@v1\n+ - uses: actions/checkout@v2\n- name: Check for release commit\nid: 'is_release_commit'\n",
"new_path": ".github/workflows/main.yml",
"old_path": ".github/w... | TypeScript | MIT License | innovaccer/design-system | chore: updates checkout action to v2 from v1 | 1 | chore | null |
551,648 | 29.12.2021 20:01:21 | -10,800 | 616111ea04e3f00e7cea031722d803f834842a95 | chore(core): fix web console bundling in final artifact | [
{
"change_type": "MODIFY",
"diff": "<executions>\n<execution>\n<id>package-web-console</id>\n- <phase>package</phase>\n+ <phase>generate-resources</phase>\n<goals>\n<goal>single</goal>\n</goals>\n",
"new_path": "core/pom.xml",
"old_path": "core/pom.xml"
},
{
"change_type": "MODIFY",
"dif... | Java | Apache License 2.0 | questdb/questdb | chore(core): fix web console bundling in final artifact (#1738) | 1 | chore | core |
743,863 | 29.12.2021 20:09:30 | 0 | b951a7dbb132809e69a28cda539c6754206fa784 | build: use v3 of release-please-action | [
{
"change_type": "MODIFY",
"diff": "@@ -7,7 +7,7 @@ jobs:\nrelease-please:\nruns-on: ubuntu-latest\nsteps:\n- - uses: google-github-actions/release-please-action@bfd488a47b78a5ba7b51dda30bbd261b4059162b\n+ - uses: google-github-actions/release-please-action@v3\nid: release\nwith:\ntoken: ${{ secrets.GITHUB_... | JavaScript | MIT License | yargs/yargs | build: use v3 of release-please-action | 1 | build | null |
160,177 | 29.12.2021 21:06:09 | -28,800 | 2155c379144469848ea08511c9c1c145105f46df | fix: custom node | [
{
"change_type": "ADD",
"diff": "+\n+class ButtonNode extends HtmlNode {\n+ setHtml(rootEl) {\n+ const { properties } = this.props.model;\n+\n+ const el = document.createElement(\"div\");\n+ el.className = \"uml-wrapper\";\n+ const html = `\n+ <div>\n+ <div class=\"uml-head\">Head</div>\n+ <div class=\"uml-... | TypeScript | Apache License 2.0 | didi/logicflow | fix: custom node | 1 | fix | null |
744,023 | 29.12.2021 21:39:33 | -3,600 | 30edd5067111b2b59387dcc47f4e7af93b9054f3 | multiple: improved completion for choices
feat(completion): choices will now work for all possible aliases of an option and not just the default long option
fix(completion): fix for completions that contain non-leading hyphens
fix(completion): changed the check for option arguments to match options that begin with '-', instead of '--', to include short options | [
{
"change_type": "MODIFY",
"diff": "@@ -153,21 +153,33 @@ export class Completion implements CompletionInstance {\nlet previousArg = args[args.length - 1];\nlet filter = '';\n// use second to last argument if the last one is not an option starting with --\n- if (!previousArg.startsWith('--') && args.length ... | JavaScript | MIT License | yargs/yargs | multiple: improved completion for choices
feat(completion): choices will now work for all possible aliases of an option and not just the default long option
fix(completion): fix for completions that contain non-leading hyphens
fix(completion): changed the check for option arguments to match options that begin with '-', instead of '--', to include short options | 1 | multiple | null |
756,039 | 29.12.2021 22:39:09 | 28,800 | 4afa736607178dacfec606d43036f7c2b0ed8024 | feat(web-components): Add Powerbox-compatible petname component | [
{
"change_type": "ADD",
"diff": "+import { AgoricPetname } from './src/AgoricPetname.js';\n+\n+window.customElements.define('agoric-petname', AgoricPetname);\n",
"new_path": "packages/web-components/agoric-petname.js",
"old_path": null
},
{
"change_type": "MODIFY",
"diff": "\"@open-wc/es... | JavaScript | Apache License 2.0 | agoric/agoric-sdk | feat(web-components): Add Powerbox-compatible petname component | 1 | feat | web-components |
603,467 | 29.12.2021 23:25:03 | -3,600 | 5314246305fa3f62446d5ec718f36354152be68d | feat(web): Text.ofAll accepts mapped PageElements
For example:
```typescript
Text.ofAll(
PageElements.located(By.css('li'))
.where(CssClasses, include('expected class'))
.eachMappedTo(PageElement.located(By.css('a')))
)
``` | [
{
"change_type": "MODIFY",
"diff": "@@ -91,7 +91,7 @@ describe('PageElements', () => {\nit('all elements relative to another page element', () =>\nactorCalled('Elle').attemptsTo(\n- Navigate.to('/screenplay/questions/page-elements/shopping_list.html'),\n+ Navigate.to('/screenplay/models/page-elements/shoppi... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | feat(web): Text.ofAll accepts mapped PageElements
For example:
```typescript
Text.ofAll(
PageElements.located(By.css('li'))
.where(CssClasses, include('expected class'))
.eachMappedTo(PageElement.located(By.css('a')))
)
``` | 1 | feat | web |
329,199 | 30.12.2021 00:08:56 | -19,080 | 9f4103adbf71ad462d39df40c2549c8a025b2007 | fix(module): remove extra blank line print | [
{
"change_type": "MODIFY",
"diff": "@@ -152,7 +152,6 @@ export class OgmaService implements LoggerService {\n* @param requestId Optional id of an request\n*/\npublic printError(error: Error, meta: OgmaServiceMeta = {}): void {\n- this.printMessage('', 'error', meta);\nif (!meta.correlationId && this.request... | TypeScript | MIT License | jmcdo29/ogma | fix(module): remove extra blank line print | 1 | fix | module |
603,467 | 30.12.2021 00:35:32 | -3,600 | 92ebf7db720d0fe88ddbe17b9958fa993b1fd02e | feat(web): ElementExpectation makes it easier to define custom PageElement-related Expectations
To be used with Ensure, Wait, Check, and so on. | [
{
"change_type": "MODIFY",
"diff": "@@ -3,20 +3,98 @@ import { AnswersQuestions, Expectation, ExpectationMet, ExpectationNotMet, Expec\nimport { PageElement } from '../screenplay';\n/**\n- * @access private\n+ * @desc\n+ * A convenience method to create a custom {@link PageElement}-related {@link @serenity-... | TypeScript | Apache License 2.0 | serenity-js/serenity-js | feat(web): ElementExpectation makes it easier to define custom PageElement-related Expectations
To be used with Ensure, Wait, Check, and so on. | 1 | feat | web |
841,553 | 30.12.2021 01:12:15 | -32,400 | 5a3bdc9ed37ba39a0591c66bd89eddb95f6df850 | chore(ci): Update `github-action-benchmark` | [
{
"change_type": "MODIFY",
"diff": "@@ -60,7 +60,7 @@ jobs:\nrun: mkdir raw-data && curl -o raw-data/benchmark-data.json https://raw.githubusercontent.com/swc-project/raw-data/gh-pages/benchmark-data.json\n- name: Analyze benchmark result\n- uses: rhysd/github-action-benchmark@v1\n+ uses: benchmark-action/g... | Rust | Apache License 2.0 | swc-project/swc | chore(ci): Update `github-action-benchmark` (#3148) | 1 | chore | ci |
551,636 | 30.12.2021 02:30:50 | 0 | b5cbe496deb6260fb84584312b4e587e28be5f89 | fix(sql): bind variable creation wasn't using correct execution context | [
{
"change_type": "MODIFY",
"diff": "@@ -27,6 +27,7 @@ package io.questdb.griffin;\nimport io.questdb.cairo.CairoConfiguration;\nimport io.questdb.griffin.engine.functions.NegatingFunctionFactory;\nimport io.questdb.griffin.engine.functions.SwappingArgsFunctionFactory;\n+import io.questdb.griffin.model.Expre... | Java | Apache License 2.0 | questdb/questdb | fix(sql): bind variable creation wasn't using correct execution context (#1742) | 1 | fix | sql |
841,530 | 30.12.2021 02:54:10 | 21,600 | a4e8e53c1958f842206916eade24a269d582d69c | test(es/parser): Add tests about null escape | [
{
"change_type": "MODIFY",
"diff": "@@ -1313,6 +1313,191 @@ fn issue_1272_2_js() {\nassert_eq!(errors, vec![]);\n}\n+#[test]\n+fn issue_2853_1_js() {\n+ let (tokens, errors) = lex_errors(crate::Syntax::Es(Default::default()), \"const a = \\\"\\\\0a\\\"\");\n+\n+ assert_eq!(errors, vec![]);\n+ assert_eq!(\n+... | Rust | Apache License 2.0 | swc-project/swc | test(es/parser): Add tests about null escape (#3147) | 1 | test | es/parser |
317,745 | 30.12.2021 07:57:27 | 0 | d2bf556e94d5ad141d834f183c20aae6f1460639 | feat(strava): new segment | [
{
"change_type": "ADD",
"diff": "+---\n+id: strava\n+title: Strava\n+sidebar_label: Strava\n+---\n+\n+import StravaConnect from '/img/strava_connect.svg';\n+\n+## What\n+\n+[Strava][strava] ia a popular activity tracker for bike, run or any other traning.\n+To keep up with your training goals it is importan... | Go | MIT License | jandedobbeleer/oh-my-posh | feat(strava): new segment | 1 | feat | strava |
269,464 | 30.12.2021 09:47:52 | 10,800 | cdcaf038c840247531576a8dd50f30e1615a988c | test: fixes sbom tests
refs | [
{
"change_type": "MODIFY",
"diff": "@@ -14,7 +14,6 @@ import (\n\"github.com/apex/log\"\n\"github.com/goreleaser/fileglob\"\n-\n\"github.com/goreleaser/goreleaser/internal/artifact\"\n\"github.com/goreleaser/goreleaser/internal/ids\"\n\"github.com/goreleaser/goreleaser/internal/semerrgroup\"\n",
"new_pa... | Go | MIT License | goreleaser/goreleaser | test: fixes sbom tests
refs #2798
Signed-off-by: Carlos A Becker <caarlos0@gmail.com> | 1 | test | null |
617,459 | 30.12.2021 10:41:15 | -3,600 | dee15fb7456086df3838a3ed5744e49fb3007d97 | feat(frontend): redirection CC 2111 and 2395 to 3239 | [
{
"change_type": "MODIFY",
"diff": "@@ -11,6 +11,10 @@ import getConfig from \"next/config\";\nimport React from \"react\";\nimport { A11y } from \"../src/a11y\";\n+import {\n+ clientSideRedirectMiddleware,\n+ serverSideRedirectMiddleware,\n+} from \"../src/middleware/redirect\";\nimport { initPiwik } from ... | TypeScript | Apache License 2.0 | socialgouv/code-du-travail-numerique | feat(frontend): redirection CC 2111 and 2395 to 3239 (#4134) | 1 | feat | frontend |
217,922 | 30.12.2021 10:53:44 | -3,600 | d97eb003295113e7495eba11d6f4ea9a0e82174f | fix(lists): fixed korea and chinese region not having working worhshop items | [
{
"change_type": "MODIFY",
"diff": "@@ -22,7 +22,6 @@ import { XivapiService } from '@xivapi/angular-client';\nimport { Language } from '../../core/data/language';\nimport { normalizeI18nName } from '../../core/tools/normalize-i18n';\nimport { TranslateService } from '@ngx-translate/core';\n-import { LazyDa... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(lists): fixed korea and chinese region not having working worhshop items | 1 | fix | lists |
217,922 | 30.12.2021 11:00:39 | -3,600 | 84aa1911511af53b2c678fd3515c0f33dfa2d0a0 | fix(list): fixed "mark panel as HQ" not working with final items inside of it | [
{
"change_type": "MODIFY",
"diff": "@@ -413,6 +413,9 @@ export class ListController {\n}\npublic static resetDone(list: List, item: ListRow): void {\n+ if (!item) {\n+ return;\n+ }\nitem.done = 0;\nitem.used = 0;\nif (item.requires !== undefined) {\n",
"new_path": "apps/client/src/app/modules/list/list-... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(list): fixed "mark panel as HQ" not working with final items inside of it | 1 | fix | list |
667,649 | 30.12.2021 11:02:05 | -28,800 | 5a03a49a1e7c6942b39468140f0dc469f3a15589 | fix(ios): fix HippyDevLoadingView shows in release environment | [
{
"change_type": "MODIFY",
"diff": "@@ -149,7 +149,7 @@ HIPPY_NOT_IMPLEMENTED(-(instancetype)initWithDelegate\nsourceCode = source;\ndispatch_group_leave(initModulesAndLoadSource);\n} onProgress:^(HippyLoadingProgress *progressData) {\n-#ifdef HIPPY_DEV\n+#if HIPPY_DEV\nHippyDevLoadingView *loadingView = [w... | C++ | Apache License 2.0 | tencent/hippy | fix(ios): fix HippyDevLoadingView shows in release environment | 1 | fix | ios |
667,680 | 30.12.2021 12:25:30 | -28,800 | 1a3fe17edc5f4f224939a02581cf5d1d1e5fe865 | refactor(android): update `v8` library(built with NDK r23b) | [
{
"change_type": "MODIFY",
"diff": "version https://git-lfs.github.com/spec/v1\n-oid sha256:a924fc27ff48463b982abca5c39208dbab572123701860169a2be5399ad0ec8d\n-size 27127162\n+oid sha256:98b04487d64c41477e2e61d08e5e581733c05f636bba2f2b19a65d5bd2499c1a\n+size 26502140\n",
"new_path": "android/sdk/src/main... | C++ | Apache License 2.0 | tencent/hippy | refactor(android): update `v8` library(built with NDK r23b) | 1 | refactor | android |
217,922 | 30.12.2021 12:28:26 | -3,600 | a8b9e3b59e4d8cbeb0e9a5c8d03c97047c393323 | fix(desktop): possible fix for retainers import | [
{
"change_type": "MODIFY",
"diff": "@@ -213,14 +213,14 @@ export class StatsService {\nstatsToCompute[stat.ID] = this.getBaseValue(stat.ID, set.job, level, tribe);\n}\n});\n- materias.forEach(([materia, bonus]) => {\n+ materias.filter(materia => materia).forEach(([materia, bonus]) => {\nif (!statsToCompute[... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): possible fix for retainers import | 1 | fix | desktop |
688,434 | 30.12.2021 12:39:47 | -10,800 | 11744a28c81e36d01af4111bae2a70e33427ffa2 | chore(picasso): change key press focus logic for Select component | [
{
"change_type": "ADD",
"diff": "+---\n+'@toptal/picasso': patch\n+---\n+\n+### Select\n+\n+- Typing special symbols after clicking on Select component now triggers focus to its search input\n",
"new_path": ".changeset/small-seahorses-speak.md",
"old_path": null
},
{
"change_type": "MODIFY",... | TypeScript | MIT License | toptal/picasso | chore(picasso): change key press focus logic for Select component (#2356) | 1 | chore | picasso |
418,677 | 30.12.2021 12:44:10 | -28,800 | 97501a989abc211b0c7400b1df45e050bb237c6a | feat: add custom decorator filter | [
{
"change_type": "MODIFY",
"diff": "@@ -44,13 +44,16 @@ export class MidwayDecoratorService {\npropertyName: string;\nkey: string;\nmetadata: any;\n+ impl: boolean;\n}> = getClassMetadata(INJECT_CUSTOM_METHOD, Clzz);\nif (methodDecoratorMetadataList) {\n// loop it, save this order for decorator run\nfor (co... | TypeScript | MIT License | midwayjs/midway | feat: add custom decorator filter (#1477) | 1 | feat | null |
791,255 | 30.12.2021 12:54:01 | 28,800 | 70e40db88bc016f228a425da1e278fc76dbf2e36 | feat(bigquery/storage/managedwriter): support schema change notification
* feat(bigquery/storage/managedwriter): support schema change notification
This adds a way for user to get schema changes by checking AppendResult. | [
{
"change_type": "MODIFY",
"diff": "@@ -16,6 +16,7 @@ package managedwriter\nimport (\n\"context\"\n+ \"fmt\"\nstoragepb \"google.golang.org/genproto/googleapis/cloud/bigquery/storage/v1\"\n\"google.golang.org/protobuf/proto\"\n@@ -38,6 +39,9 @@ type AppendResult struct {\n// the stream offset\noffset int64... | Go | Apache License 2.0 | googleapis/google-cloud-go | feat(bigquery/storage/managedwriter): support schema change notification (#5253)
* feat(bigquery/storage/managedwriter): support schema change notification
This adds a way for user to get schema changes by checking AppendResult. | 1 | feat | bigquery/storage/managedwriter |
551,636 | 30.12.2021 13:20:51 | 0 | 1fbc0d60f90950204de10b3982abc1f1cbb74a2c | fix(core): fixed race condition releasing (and potentially leaking) table reader | [
{
"change_type": "MODIFY",
"diff": "@@ -97,7 +97,7 @@ public class ReaderPool extends AbstractPool implements ResourcePool<TableReader\nif (isClosed()) {\ne.readers[i] = null;\n- r.goodby();\n+ r.goodbye();\nLOG.info().$('\\'').utf8(name).$(\"' born free\").$();\nreturn r;\n}\n@@ -242,9 +242,8 @@ public cla... | Java | Apache License 2.0 | questdb/questdb | fix(core): fixed race condition releasing (and potentially leaking) table reader (#1746) | 1 | fix | core |
667,680 | 30.12.2021 13:23:15 | -28,800 | 5d9d7cc0fbf809b1c41e6e9ad78665d9e4269188 | refactor(android): update layout library(built with NDK r23b) | [
{
"change_type": "MODIFY",
"diff": "version https://git-lfs.github.com/spec/v1\n-oid sha256:8b7cf3921281e59286584f6b6c5692cb51574a67bb68e80994d24a40c43e842a\n-size 2014456\n+oid sha256:48630b575dc9f0b499327a9f8d0334d5ba2da6e7e9cd4ac431a7ee440388f1b7\n+size 2569656\n",
"new_path": "android/sdk/src/main/j... | C++ | Apache License 2.0 | tencent/hippy | refactor(android): update layout library(built with NDK r23b) | 1 | refactor | android |
217,922 | 30.12.2021 13:51:36 | -3,600 | 1c70ee3e4abe35b2e2919d656b31329e4923e746 | fix(desktop): fixed mappy reporter | [
{
"change_type": "MODIFY",
"diff": "@@ -78,7 +78,7 @@ export interface MappyReporterState {\n})\nexport class MappyReporterService {\n- private static readonly XIVAPI_URL = 'staging.xivapi.com';\n+ private static readonly XIVAPI_URL = 'xivapi.com';\npublic available = false;\n@@ -512,11 +512,13 @@ export cl... | TypeScript | MIT License | ffxiv-teamcraft/ffxiv-teamcraft | fix(desktop): fixed mappy reporter | 1 | fix | desktop |
317,646 | 30.12.2021 14:41:01 | -3,600 | 5549e0d7ada2dac21a852f74e72d02b3cd547cc4 | fix(az): add user to exposed model for pwsh | [
{
"change_type": "MODIFY",
"diff": "@@ -144,5 +144,8 @@ func (a *az) getAzureRmContext() bool {\na.ID = defaultContext.Subscription.ID\na.Name = defaultContext.Subscription.Name\na.State = defaultContext.Subscription.State\n+ a.User = &AzureUser{\n+ Name: defaultContext.Subscription.ExtendedProperties.Accou... | Go | MIT License | jandedobbeleer/oh-my-posh | fix(az): add user to exposed model for pwsh | 1 | fix | az |
71,371 | 30.12.2021 14:44:12 | -3,600 | 7d0680a5a858633f92aeb78353cac22b9a391fa7 | feat(ssm): reference latest version of secure string parameters
Supported by CF since April 2021 but not yet ported to CDK.
See
Close
*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": "@@ -311,9 +311,11 @@ export interface StringParameterAttributes extends CommonStringParameterAttribut\n*/\nexport interface SecureStringParameterAttributes extends CommonStringParameterAttributes {\n/**\n- * The version number of the value you wish to retrieve. This is re... | TypeScript | Apache License 2.0 | aws/aws-cdk | feat(ssm): reference latest version of secure string parameters (#18187)
Supported by CF since April 2021 but not yet ported to CDK.
See https://aws.amazon.com/about-aws/whats-new/2021/04/now-reference-latest-aws-systems-manager-parameter-values-in-aws-cloudformation-templates-without-specifying-parameter-versions/
Close #17091
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* | 1 | feat | ssm |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.