diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewAggregateRule.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewAggregateRule.java index 854d728d09e74c..186f39ee35a4e9 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewAggregateRule.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewAggregateRule.java @@ -119,7 +119,6 @@ protected Plan rewriteQueryByView(MatchMode matchMode, queryTopPlan, materializationContext.getShuttledExprToScanExprMapping(), viewToQuerySlotMapping, - true, queryStructInfo.getTableBitSet()); boolean isRewrittenQueryExpressionValid = true; if (!rewrittenQueryExpressions.isEmpty()) { diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewJoinRule.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewJoinRule.java index 7550e074b6c9a1..28ea4dc2c7e16f 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewJoinRule.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewJoinRule.java @@ -49,7 +49,6 @@ protected Plan rewriteQueryByView(MatchMode matchMode, queryStructInfo.getTopPlan(), materializationContext.getShuttledExprToScanExprMapping(), targetToSourceMapping, - true, queryStructInfo.getTableBitSet() ); // Can not rewrite, bail out diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewRule.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewRule.java index a7be811e815dd2..f51f1098949f63 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewRule.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewRule.java @@ -44,10 +44,12 @@ import org.apache.doris.nereids.trees.expressions.Slot; import org.apache.doris.nereids.trees.expressions.SlotReference; import org.apache.doris.nereids.trees.expressions.functions.agg.AggregateFunction; +import org.apache.doris.nereids.trees.expressions.functions.scalar.ElementAt; import org.apache.doris.nereids.trees.expressions.functions.scalar.NonNullable; import org.apache.doris.nereids.trees.expressions.functions.scalar.Nullable; import org.apache.doris.nereids.trees.expressions.literal.BooleanLiteral; import org.apache.doris.nereids.trees.expressions.literal.Literal; +import org.apache.doris.nereids.trees.expressions.literal.VarcharLiteral; import org.apache.doris.nereids.trees.plans.JoinType; import org.apache.doris.nereids.trees.plans.Plan; import org.apache.doris.nereids.trees.plans.algebra.CatalogRelation; @@ -56,6 +58,7 @@ import org.apache.doris.nereids.trees.plans.logical.LogicalOlapScan; import org.apache.doris.nereids.trees.plans.logical.LogicalProject; import org.apache.doris.nereids.trees.plans.logical.LogicalUnion; +import org.apache.doris.nereids.types.VariantType; import org.apache.doris.nereids.util.ExpressionUtils; import org.apache.doris.nereids.util.TypeUtils; import org.apache.doris.qe.SessionVariable; @@ -114,7 +117,7 @@ public List rewrite(Plan queryPlan, CascadesContext cascadesContext) { continue; } // check mv plan is valid or not - if (!isMaterializationValid(cascadesContext, context)) { + if (!isMaterializationValid(queryPlan, cascadesContext, context)) { continue; } // get query struct infos according to the view strut info, if valid query struct infos is empty, bail out @@ -238,7 +241,7 @@ protected List doRewrite(StructInfo queryStructInfo, CascadesContext casca // Try to rewrite compensate predicates by using mv scan List rewriteCompensatePredicates = rewriteExpression(compensatePredicates.toList(), queryPlan, materializationContext.getShuttledExprToScanExprMapping(), - viewToQuerySlotMapping, true, queryStructInfo.getTableBitSet()); + viewToQuerySlotMapping, queryStructInfo.getTableBitSet()); if (rewriteCompensatePredicates.isEmpty()) { materializationContext.recordFailReason(queryStructInfo, "Rewrite compensate predicate by view fail", @@ -521,33 +524,20 @@ protected Plan rewriteQueryByView(MatchMode matchMode, StructInfo queryStructInf * @param sourcePlan the source plan witch the source expression belong to * @param targetExpressionMapping target expression mapping, if finding the expression in key set of the mapping * then use the corresponding value of mapping to replace it - * @param targetExpressionNeedSourceBased if targetExpressionNeedSourceBased is true, - * we should make the target expression map key to source based, - * Note: the key expression in targetExpressionMapping should be shuttled. with the method - * ExpressionUtils.shuttleExpressionWithLineage. - * example as following: - * source target - * project(slot 1, 2) project(slot 3, 2, 1) - * scan(table) scan(table) - * then - * transform source to: - * project(slot 2, 1) - * target */ protected List rewriteExpression(List sourceExpressionsToWrite, Plan sourcePlan, - ExpressionMapping targetExpressionMapping, SlotMapping targetToSourceMapping, - boolean targetExpressionNeedSourceBased, BitSet sourcePlanBitSet) { + ExpressionMapping targetExpressionMapping, SlotMapping targetToSourceMapping, BitSet sourcePlanBitSet) { // Firstly, rewrite the target expression using source with inverse mapping // then try to use the target expression to represent the query. if any of source expressions // can not be represented by target expressions, return null. // generate target to target replacement expression mapping, and change target expression to source based List sourceShuttledExpressions = ExpressionUtils.shuttleExpressionWithLineage( sourceExpressionsToWrite, sourcePlan, sourcePlanBitSet); - ExpressionMapping expressionMappingKeySourceBased = targetExpressionNeedSourceBased - ? targetExpressionMapping.keyPermute(targetToSourceMapping) : targetExpressionMapping; + ExpressionMapping expressionMappingKeySourceBased = targetExpressionMapping.keyPermute(targetToSourceMapping); // target to target replacement expression mapping, because mv is 1:1 so get first element List> flattenExpressionMap = expressionMappingKeySourceBased.flattenMap(); - Map targetToTargetReplacementMapping = flattenExpressionMap.get(0); + Map targetToTargetReplacementMappingQueryBased = + flattenExpressionMap.get(0); List rewrittenExpressions = new ArrayList<>(); for (Expression expressionShuttledToRewrite : sourceShuttledExpressions) { @@ -557,8 +547,13 @@ protected List rewriteExpression(List sourceEx } final Set slotsToRewrite = expressionShuttledToRewrite.collectToSet(expression -> expression instanceof Slot); + + final Set variants = + expressionShuttledToRewrite.collectToSet(expression -> expression instanceof SlotReference + && ((SlotReference) expression).getDataType() instanceof VariantType); + extendMappingByVariant(variants, targetToTargetReplacementMappingQueryBased); Expression replacedExpression = ExpressionUtils.replace(expressionShuttledToRewrite, - targetToTargetReplacementMapping); + targetToTargetReplacementMappingQueryBased); if (replacedExpression.anyMatch(slotsToRewrite::contains)) { // if contains any slot to rewrite, which means can not be rewritten by target, bail out return ImmutableList.of(); @@ -568,6 +563,94 @@ protected List rewriteExpression(List sourceEx return rewrittenExpressions; } + /** + * if query contains variant slot reference, extend the expression mapping for rewrte + * such as targetToTargetReplacementMappingQueryBased is + * id#0 -> id#8 + * type#1 -> type#9 + * payload#4 -> payload#10 + * query variants is payload['issue']['number']#20 + * then we can add payload['issue']['number']#20 -> element_at(element_at(payload#10, 'issue'), 'number') + * to targetToTargetReplacementMappingQueryBased + * */ + private void extendMappingByVariant(Set queryVariants, + Map targetToTargetReplacementMappingQueryBased) { + if (queryVariants.isEmpty()) { + return; + } + Map, Expression> viewNameToExprMap = new HashMap<>(); + for (Map.Entry targetExpressionEntry : + targetToTargetReplacementMappingQueryBased.entrySet()) { + if (targetExpressionEntry.getKey() instanceof SlotReference + && ((SlotReference) targetExpressionEntry.getKey()).getDataType() instanceof VariantType) { + SlotReference targetSlotReference = (SlotReference) targetExpressionEntry.getKey(); + List nameIdentifier = new ArrayList<>(targetSlotReference.getQualifier()); + nameIdentifier.add(targetSlotReference.getName()); + nameIdentifier.addAll(targetSlotReference.getSubPath()); + viewNameToExprMap.put(nameIdentifier, targetExpressionEntry.getValue()); + } + } + if (viewNameToExprMap.isEmpty()) { + return; + } + Map, SlotReference> queryNameAndExpressionMap = new HashMap<>(); + for (SlotReference slotReference : queryVariants) { + List nameIdentifier = new ArrayList<>(slotReference.getQualifier()); + nameIdentifier.add(slotReference.getName()); + nameIdentifier.addAll(slotReference.getSubPath()); + queryNameAndExpressionMap.put(nameIdentifier, slotReference); + } + for (Map.Entry, ? extends Expression> queryNameEntry : queryNameAndExpressionMap.entrySet()) { + Expression minExpr = null; + List minCompensateName = null; + for (Map.Entry, Expression> entry : viewNameToExprMap.entrySet()) { + if (!containsAllWithOrder(queryNameEntry.getKey(), entry.getKey())) { + continue; + } + List removedQueryName = new ArrayList<>(queryNameEntry.getKey()); + removedQueryName.removeAll(entry.getKey()); + if (minCompensateName == null) { + minCompensateName = removedQueryName; + minExpr = entry.getValue(); + } + if (removedQueryName.size() < minCompensateName.size()) { + minCompensateName = removedQueryName; + minExpr = entry.getValue(); + } + } + if (minExpr != null) { + targetToTargetReplacementMappingQueryBased.put(queryNameEntry.getValue(), + constructElementAt(minExpr, minCompensateName)); + } + } + } + + private static Expression constructElementAt(Expression target, List atList) { + Expression elementAt = target; + for (String at : atList) { + elementAt = new ElementAt(elementAt, new VarcharLiteral(at)); + } + return elementAt; + } + + // source names is contain all target with order or not + private static boolean containsAllWithOrder(List sourceNames, List targetNames) { + if (sourceNames.size() < targetNames.size()) { + return false; + } + for (int index = 0; index < targetNames.size(); index++) { + String sourceName = sourceNames.get(index); + String targetName = targetNames.get(index); + if (sourceName == null || targetName == null) { + return false; + } + if (!sourceName.equals(targetName)) { + return false; + } + } + return true; + } + /** * Normalize expression with query, keep the consistency of exprId and nullable props with * query @@ -753,7 +836,8 @@ protected boolean checkIfRewritten(Plan plan, MaterializationContext context) { } // check mv plan is valid or not, this can use cache for performance - private boolean isMaterializationValid(CascadesContext cascadesContext, MaterializationContext context) { + private boolean isMaterializationValid(Plan queryPlan, CascadesContext cascadesContext, + MaterializationContext context) { long materializationId = context.generateMaterializationIdentifier().hashCode(); Boolean cachedCheckResult = cascadesContext.getMemo().materializationHasChecked(this.getClass(), materializationId); @@ -764,6 +848,11 @@ private boolean isMaterializationValid(CascadesContext cascadesContext, Material context.recordFailReason(context.getStructInfo(), "View struct info is invalid", () -> String.format("view plan is %s", context.getStructInfo().getOriginalPlan().treeString())); + // tmp to location question + LOG.debug(String.format("View struct info is invalid, mv identifier is %s, query plan is %s," + + "view plan is %s", + context.generateMaterializationIdentifier(), queryPlan.treeString(), + context.getStructInfo().getTopPlan().treeString())); cascadesContext.getMemo().recordMaterializationCheckResult(this.getClass(), materializationId, false); return false; @@ -775,12 +864,20 @@ private boolean isMaterializationValid(CascadesContext cascadesContext, Material context.recordFailReason(context.getStructInfo(), "View struct info is invalid", () -> String.format("view plan is %s", context.getStructInfo().getOriginalPlan().treeString())); + LOG.debug(String.format("View struct info is invalid, mv identifier is %s, query plan is %s," + + "view plan is %s", + context.generateMaterializationIdentifier(), queryPlan.treeString(), + context.getStructInfo().getTopPlan().treeString())); return false; } if (!context.getStructInfo().isValid()) { context.recordFailReason(context.getStructInfo(), - "View struct info is invalid", () -> String.format("view plan is %s", + "View original struct info is invalid", () -> String.format("view plan is %s", context.getStructInfo().getOriginalPlan().treeString())); + LOG.debug(String.format("View struct info is invalid, mv identifier is %s, query plan is %s," + + "view plan is %s", + context.generateMaterializationIdentifier(), queryPlan.treeString(), + context.getStructInfo().getTopPlan().treeString())); return false; } return true; diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewScanRule.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewScanRule.java index 9e87c926f8ff1e..7cd49c94b09ed6 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewScanRule.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/AbstractMaterializedViewScanRule.java @@ -50,7 +50,6 @@ protected Plan rewriteQueryByView(MatchMode matchMode, queryStructInfo.getTopPlan(), materializationContext.getShuttledExprToScanExprMapping(), targetToSourceMapping, - true, queryStructInfo.getTableBitSet() ); // Can not rewrite, bail out diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/Mapping.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/Mapping.java index e14b79a52eaade..d9192569a0cbca 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/Mapping.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/Mapping.java @@ -19,10 +19,15 @@ import org.apache.doris.nereids.trees.expressions.ExprId; import org.apache.doris.nereids.trees.expressions.Slot; +import org.apache.doris.nereids.trees.expressions.SlotReference; import org.apache.doris.nereids.trees.plans.RelationId; import org.apache.doris.nereids.trees.plans.algebra.CatalogRelation; +import com.google.common.collect.ImmutableList; + +import java.util.ArrayList; import java.util.HashMap; +import java.util.List; import java.util.Map; import java.util.Objects; import javax.annotation.Nullable; @@ -41,13 +46,24 @@ public static final class MappedRelation { public final RelationId relationId; public final CatalogRelation belongedRelation; // Generate eagerly, will be used to generate slot mapping - private final Map slotNameToSlotMap = new HashMap<>(); + private final Map, Slot> slotNameToSlotMap = new HashMap<>(); + /** + * Construct relation and slot map + */ public MappedRelation(RelationId relationId, CatalogRelation belongedRelation) { this.relationId = relationId; this.belongedRelation = belongedRelation; for (Slot slot : belongedRelation.getOutput()) { - slotNameToSlotMap.put(slot.getName(), slot); + if (slot instanceof SlotReference) { + // variant slot + List slotNames = new ArrayList<>(); + slotNames.add(slot.getName()); + slotNames.addAll(((SlotReference) slot).getSubPath()); + slotNameToSlotMap.put(slotNames, slot); + } else { + slotNameToSlotMap.put(ImmutableList.of(slot.getName()), slot); + } } } @@ -63,7 +79,7 @@ public CatalogRelation getBelongedRelation() { return belongedRelation; } - public Map getSlotNameToSlotMap() { + public Map, Slot> getSlotNameToSlotMap() { return slotNameToSlotMap; } diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/SlotMapping.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/SlotMapping.java index 8384b3e094f61e..882dec19ea82dd 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/SlotMapping.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/rules/exploration/mv/mapping/SlotMapping.java @@ -19,6 +19,7 @@ import org.apache.doris.nereids.trees.expressions.Slot; import org.apache.doris.nereids.trees.expressions.SlotReference; +import org.apache.doris.nereids.types.VariantType; import com.google.common.collect.BiMap; import com.google.common.collect.HashBiMap; @@ -26,6 +27,7 @@ import org.apache.logging.log4j.Logger; import java.util.HashMap; +import java.util.List; import java.util.Map; import javax.annotation.Nullable; @@ -68,20 +70,29 @@ public static SlotMapping generate(RelationMapping relationMapping) { BiMap mappedRelationMap = relationMapping.getMappedRelationMap(); for (Map.Entry mappedRelationEntry : mappedRelationMap.entrySet()) { MappedRelation sourceRelation = mappedRelationEntry.getKey(); - Map sourceSlotNameToSlotMap = sourceRelation.getSlotNameToSlotMap(); + Map, Slot> sourceSlotNameToSlotMap = sourceRelation.getSlotNameToSlotMap(); MappedRelation targetRelation = mappedRelationEntry.getValue(); - Map targetSlotNameSlotMap = targetRelation.getSlotNameToSlotMap(); + Map, Slot> targetSlotNameSlotMap = targetRelation.getSlotNameToSlotMap(); - for (String sourceSlotName : sourceSlotNameToSlotMap.keySet()) { + for (List sourceSlotName : sourceSlotNameToSlotMap.keySet()) { + Slot sourceSlot = sourceSlotNameToSlotMap.get(sourceSlotName); Slot targetSlot = targetSlotNameSlotMap.get(sourceSlotName); // source slot can not map from target, bail out - if (targetSlot == null) { + if (targetSlot == null && !(((SlotReference) sourceSlot).getDataType() instanceof VariantType)) { LOG.warn(String.format("SlotMapping generate is null, source relation is %s, " + "target relation is %s", sourceRelation, targetRelation)); return null; } - Slot sourceSlot = sourceSlotNameToSlotMap.get(sourceSlotName); + if (targetSlot == null) { + // if variant, though can not map slot from query to view, but we maybe derive slot from query + // variant self, such as query slot to view slot mapping is payload#4 -> payload#10 + // and query has a variant which is payload['issue']['number']#20, this can not get from view. + // in this scene, we can derive + // payload['issue']['number']#20 -> element_at(element_at(payload#10, 'issue'), 'number') mapping + // in expression rewrite + continue; + } relationSlotMap.put(MappedSlot.of(sourceSlot, sourceRelation.getBelongedRelation()), MappedSlot.of(targetSlot, targetRelation.getBelongedRelation())); diff --git a/regression-test/data/nereids_rules_p0/mv/variant/variant_data.json b/regression-test/data/nereids_rules_p0/mv/variant/variant_data.json new file mode 100644 index 00000000000000..40ac0e9ece245d --- /dev/null +++ b/regression-test/data/nereids_rules_p0/mv/variant/variant_data.json @@ -0,0 +1,28 @@ +{"id":"25061821745","type":"PushEvent","actor":{"id":99616594,"login":"nahuel3223","display_login":"nahuel3223","gravatar_id":"","url":"https://api.github.com/users/nahuel3223","avatar_url":"https://avatars.githubusercontent.com/u/99616594?"},"repo":{"id":550562949,"name":"anmarinur/E-commerce-PF","url":"https://api.github.com/repos/anmarinur/E-commerce-PF"},"payload":{"push_id":11572649821,"size":4,"distinct_size":1,"ref":"refs/heads/dev","head":"79d92c1ed453507b4309f66d3f5985ac92011af8","before":"f5014dfc22bd705c6fb794489eb742078a608dfa","commits":[{"sha":"67a1efcc543609737672365d9fe140707e764188","author":{"email":"andersonmarindev@gmail.com","name":"anmarinur"},"message":"Change name, id and for","distinct":false,"url":"https://api.github.com/repos/anmarinur/E-commerce-PF/commits/67a1efcc543609737672365d9fe140707e764188"},{"sha":"995cc1a5b85f37476b729b9fb1762c69a23deb59","author":{"email":"andersonmarindev@gmail.com","name":"anmarinur"},"message":"fix: delete button and add more style","distinct":false,"url":"https://api.github.com/repos/anmarinur/E-commerce-PF/commits/995cc1a5b85f37476b729b9fb1762c69a23deb59"},{"sha":"f8f68f49d85febf86c7c57e7ce046a972fb54763","author":{"email":"andersonmarindev@gmail.com","name":"Anderson Marín"},"message":"Merge branch 'dev' into fix-image-comments","distinct":false,"url":"https://api.github.com/repos/anmarinur/E-commerce-PF/commits/f8f68f49d85febf86c7c57e7ce046a972fb54763"},{"sha":"79d92c1ed453507b4309f66d3f5985ac92011af8","author":{"email":"99616594+nahuel3223@users.noreply.github.com","name":"nahuel3223"},"message":"Merge pull request #280 from anmarinur/fix-image-comments\n\nFix image comments","distinct":true,"url":"https://api.github.com/repos/anmarinur/E-commerce-PF/commits/79d92c1ed453507b4309f66d3f5985ac92011af8"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821748","type":"PushEvent","actor":{"id":98024358,"login":"jfrog-pipelie-intg","display_login":"jfrog-pipelie-intg","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?"},"repo":{"id":562683829,"name":"jfrog-pipelie-intg/jfinte2e_1667789956723_16","url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16"},"payload":{"push_id":11572649828,"size":1,"distinct_size":1,"ref":"refs/heads/test-notification-sent-branch-10238493157623136113","head":"334433de436baa198024ef9f55f0647721bcd750","before":"f84a26792f44d54305ddd41b7e3a79d25b1a9568","commits":[{"sha":"334433de436baa198024ef9f55f0647721bcd750","author":{"email":"98024358+jfrog-pipelie-intg@users.noreply.github.com","name":"jfrog-pipelie-intg"},"message":"commit message 10238493157623136117","distinct":true,"url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/commits/334433de436baa198024ef9f55f0647721bcd750"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821752","type":"PullRequestEvent","actor":{"id":49699333,"login":"dependabot[bot]","display_login":"dependabot","gravatar_id":"","url":"https://api.github.com/users/dependabot[bot]","avatar_url":"https://avatars.githubusercontent.com/u/49699333?"},"repo":{"id":530873656,"name":"girlsavenue/trusteeWallet","url":"https://api.github.com/repos/girlsavenue/trusteeWallet"},"payload":{"action":"opened","number":2,"pull_request":{"url":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/2","id":1112188316,"node_id":"PR_kwDOH6R9OM5CSqWc","html_url":"https://github.com/girlsavenue/trusteeWallet/pull/2","diff_url":"https://github.com/girlsavenue/trusteeWallet/pull/2.diff","patch_url":"https://github.com/girlsavenue/trusteeWallet/pull/2.patch","issue_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/2","number":2,"state":"open","locked":false,"title":"Bump react-native-reanimated from 1.9.0 to 2.10.0","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"body":"Bumps [react-native-reanimated](https://github.com/software-mansion/react-native-reanimated) from 1.9.0 to 2.10.0.\n
\nRelease notes\n

Sourced from react-native-reanimated's releases.

\n
\n

2.10.0

\n

🚀 Main changes

\n
    \n
  • Added useAnimatedKeyboard() hook
  • \n
  • Added useFrameCallback() hook
  • \n
  • Added support for React Native 0.70
  • \n
  • Added support for react-native-v8 (building from source only)
  • \n
  • Detect multiple versions of Reanimated.
  • \n
  • And many different fixes.
  • \n
\n

Build: https://github.com/software-mansion/react-native-reanimated/actions/runs/2889631689

\n

Full Changelog: https://github.com/software-mansion/react-native-reanimated/compare/2.9.1...2.10.0

\n

2.9.1

\n

What's Changed

\n\n

Build: https://github.com/software-mansion/react-native-reanimated/actions/runs/2595830511

\n

🙌 Thank you for your contributions!

\n

2.9.0

\n

What's Changed

\n\n

Package contains binaries for react-native in version from 0.65 to 0.69

\n

Build: https://github.com/software-mansion/react-native-reanimated/actions/runs/2590392729

\n

🙌 Thank you for your contributions!

\n

2.8.0

\n

What's Changed

\n\n

New Contributors

\n

@​dylmye @​jiulongw @​lukmccall

\n

Full Changelog: https://github.com/software-mansion/react-native-reanimated/compare/2.7.0...2.8.0

\n

🙌 Thank you for your contributions!

\n

2.7.0

\n

What's Changed

\n\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\nMaintainer changes\n

This version was pushed to npm by piaskowyk, a new releaser for react-native-reanimated since your current version.

\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-native-reanimated&package-manager=npm_and_yarn&previous-version=1.9.0&new-version=2.10.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/girlsavenue/trusteeWallet/network/alerts).\n\n
","created_at":"2022-11-07T02:59:59Z","updated_at":"2022-11-07T02:59:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/2/commits","review_comments_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/2/comments","review_comment_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/comments{/number}","comments_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/2/comments","statuses_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/statuses/b2835bb7a120cd474164020da1fcc1b3f1897733","head":{"label":"girlsavenue:dependabot/npm_and_yarn/react-native-reanimated-2.10.0","ref":"dependabot/npm_and_yarn/react-native-reanimated-2.10.0","sha":"b2835bb7a120cd474164020da1fcc1b3f1897733","user":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"repo":{"id":530873656,"node_id":"R_kgDOH6R9OA","name":"trusteeWallet","full_name":"girlsavenue/trusteeWallet","private":false,"owner":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"html_url":"https://github.com/girlsavenue/trusteeWallet","description":"you can build your own trustee wallet from full source code","fork":true,"url":"https://api.github.com/repos/girlsavenue/trusteeWallet","forks_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/forks","keys_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/teams","hooks_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/hooks","issue_events_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/events{/number}","events_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/events","assignees_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/assignees{/user}","branches_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/branches{/branch}","tags_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/tags","blobs_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/refs{/sha}","trees_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/statuses/{sha}","languages_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/languages","stargazers_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/stargazers","contributors_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/contributors","subscribers_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/subscribers","subscription_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/subscription","commits_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/commits{/sha}","git_commits_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/commits{/sha}","comments_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/comments{/number}","issue_comment_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/comments{/number}","contents_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/contents/{+path}","compare_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/merges","archive_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/downloads","issues_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues{/number}","pulls_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls{/number}","milestones_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/milestones{/number}","notifications_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/labels{/name}","releases_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/releases{/id}","deployments_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/deployments","created_at":"2022-08-31T00:01:59Z","updated_at":"2022-08-28T00:42:42Z","pushed_at":"2022-11-07T02:59:58Z","git_url":"git://github.com/girlsavenue/trusteeWallet.git","ssh_url":"git@github.com:girlsavenue/trusteeWallet.git","clone_url":"https://github.com/girlsavenue/trusteeWallet.git","svn_url":"https://github.com/girlsavenue/trusteeWallet","homepage":"","size":18236,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"girlsavenue:master","ref":"master","sha":"60c0fb993ff15d1a1f7343b42c007195c998bfb5","user":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"repo":{"id":530873656,"node_id":"R_kgDOH6R9OA","name":"trusteeWallet","full_name":"girlsavenue/trusteeWallet","private":false,"owner":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"html_url":"https://github.com/girlsavenue/trusteeWallet","description":"you can build your own trustee wallet from full source code","fork":true,"url":"https://api.github.com/repos/girlsavenue/trusteeWallet","forks_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/forks","keys_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/keys{/key_id}","collaborators_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/teams","hooks_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/hooks","issue_events_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/events{/number}","events_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/events","assignees_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/assignees{/user}","branches_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/branches{/branch}","tags_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/tags","blobs_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/refs{/sha}","trees_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/trees{/sha}","statuses_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/statuses/{sha}","languages_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/languages","stargazers_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/stargazers","contributors_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/contributors","subscribers_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/subscribers","subscription_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/subscription","commits_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/commits{/sha}","git_commits_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/git/commits{/sha}","comments_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/comments{/number}","issue_comment_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/comments{/number}","contents_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/contents/{+path}","compare_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/compare/{base}...{head}","merges_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/merges","archive_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/downloads","issues_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues{/number}","pulls_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls{/number}","milestones_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/milestones{/number}","notifications_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/labels{/name}","releases_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/releases{/id}","deployments_url":"https://api.github.com/repos/girlsavenue/trusteeWallet/deployments","created_at":"2022-08-31T00:01:59Z","updated_at":"2022-08-28T00:42:42Z","pushed_at":"2022-11-07T02:59:58Z","git_url":"git://github.com/girlsavenue/trusteeWallet.git","ssh_url":"git@github.com:girlsavenue/trusteeWallet.git","clone_url":"https://github.com/girlsavenue/trusteeWallet.git","svn_url":"https://github.com/girlsavenue/trusteeWallet","homepage":"","size":18236,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/2"},"html":{"href":"https://github.com/girlsavenue/trusteeWallet/pull/2"},"issue":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/2"},"comments":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/2/comments"},"review_comment":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/pulls/2/commits"},"statuses":{"href":"https://api.github.com/repos/girlsavenue/trusteeWallet/statuses/b2835bb7a120cd474164020da1fcc1b3f1897733"}},"author_association":"NONE","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":240,"deletions":11,"changed_files":2}},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821761","type":"CreateEvent","actor":{"id":114388303,"login":"nicolas-brement","display_login":"nicolas-brement","gravatar_id":"","url":"https://api.github.com/users/nicolas-brement","avatar_url":"https://avatars.githubusercontent.com/u/114388303?"},"repo":{"id":562672082,"name":"nicolas-brement/fansite","url":"https://api.github.com/repos/nicolas-brement/fansite"},"payload":{"ref":"main","ref_type":"branch","master_branch":"main","description":null,"pusher_type":"user"},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821772","type":"PushEvent","actor":{"id":62139123,"login":"betonucon","display_login":"betonucon","gravatar_id":"","url":"https://api.github.com/users/betonucon","avatar_url":"https://avatars.githubusercontent.com/u/62139123?"},"repo":{"id":561605970,"name":"betonucon/hrcweb","url":"https://api.github.com/repos/betonucon/hrcweb"},"payload":{"push_id":11572649834,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"8ef56744757d4c330310fe06d1fe644cc0711adf","before":"c4f744d97fbd42872d8158ad23e62922b6d607e4","commits":[{"sha":"8ef56744757d4c330310fe06d1fe644cc0711adf","author":{"email":"betonucon@gmail.com","name":"betonucon"},"message":"push","distinct":true,"url":"https://api.github.com/repos/betonucon/hrcweb/commits/8ef56744757d4c330310fe06d1fe644cc0711adf"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821783","type":"PushEvent","actor":{"id":113555610,"login":"proxylist-to-bot","display_login":"proxylist-to-bot","gravatar_id":"","url":"https://api.github.com/users/proxylist-to-bot","avatar_url":"https://avatars.githubusercontent.com/u/113555610?"},"repo":{"id":535107981,"name":"proxylist-to/proxy-list","url":"https://api.github.com/repos/proxylist-to/proxy-list"},"payload":{"push_id":11572649835,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"20042c2a3f03e17e6d350d612740481e971a3739","before":"7b529ac3ad5c313cf940c776e579776556cb9399","commits":[{"sha":"20042c2a3f03e17e6d350d612740481e971a3739","author":{"email":"113555610+proxylist-to-bot@users.noreply.github.com","name":"ProxyList.to Bot"},"message":"SOCKS5 UPDATE: 2022-11-07 2:59:57 AM","distinct":true,"url":"https://api.github.com/repos/proxylist-to/proxy-list/commits/20042c2a3f03e17e6d350d612740481e971a3739"}]},"public":true,"created_at":"2022-11-07T03:00:00Z","org":{"id":113262918,"login":"proxylist-to","gravatar_id":"","url":"https://api.github.com/orgs/proxylist-to","avatar_url":"https://avatars.githubusercontent.com/u/113262918?"}} +{"id":"25061821788","type":"CreateEvent","actor":{"id":49699333,"login":"dependabot[bot]","display_login":"dependabot","gravatar_id":"","url":"https://api.github.com/users/dependabot[bot]","avatar_url":"https://avatars.githubusercontent.com/u/49699333?"},"repo":{"id":542453248,"name":"girlsavenue/asciinema","url":"https://api.github.com/repos/girlsavenue/asciinema"},"payload":{"ref":"dependabot/github_actions/actions/setup-python-4","ref_type":"branch","master_branch":"develop","description":"Terminal session recorder 📹","pusher_type":"user"},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821791","type":"PullRequestEvent","actor":{"id":41898282,"login":"github-actions[bot]","display_login":"github-actions","gravatar_id":"","url":"https://api.github.com/users/github-actions[bot]","avatar_url":"https://avatars.githubusercontent.com/u/41898282?"},"repo":{"id":436346889,"name":"pepperize/cdk-serverless-cluster-from-snapshot","url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot"},"payload":{"action":"closed","number":477,"pull_request":{"url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/477","id":1094454737,"node_id":"PR_kwDOGgIgCc5BPA3R","html_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot/pull/477","diff_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot/pull/477.diff","patch_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot/pull/477.patch","issue_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/477","number":477,"state":"closed","locked":false,"title":"chore(deps-dev): bump jsii from 1.61.0 to 1.70.0","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"body":"Bumps [jsii](https://github.com/aws/jsii/tree/HEAD/packages/jsii) from 1.61.0 to 1.70.0.\n
\nRelease notes\n

Sourced from jsii's releases.

\n
\n

v1.70.0

\n

Features

\n
    \n
  • add error awareness to go deserialization (#3793) (9b6a307)
  • \n
  • python: add error differentiation to Python. (#3772) (e3f7d5e)
  • \n
  • superchain: add 'acl' package to support projen GHA (#3783) (306b248)
  • \n
\n

Bug Fixes

\n
    \n
  • jsii-reflect: TypeMember is not SourceLocatable (#3778) (db809e2), closes #3777
  • \n
  • python: KeyError in type checks when decorating methods (#3791) (dae724c)
  • \n
\n

v1.69.0

\n

Features

\n\n

Bug Fixes

\n\n

v1.68.0

\n

Features

\n
    \n
  • kernel: distinguish framework errors from userland errors in Java (#3747) (a4d39c6)
  • \n
\n

Bug Fixes

\n\n

v1.67.0

\n

Features

\n
    \n
  • java: dynamic type checking for union-typed parameters (#3703) (26ca47c)
  • \n
  • java: utility to perform unsafe cast (#3730) (4a52d4c)
  • \n
  • kernel: experimental runtime package cache (#3724) (4c2dcd5), closes #3389
  • \n
\n

Bug Fixes

\n
    \n
  • java: type generation code-gen issues (#3735) (cf04f79)
  • \n
  • pacmak: crash when generating java code (1fd58db)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nChangelog\n

Sourced from jsii's changelog.

\n
\n

1.70.0 (2022-10-19)

\n

Features

\n
    \n
  • add error awareness to go deserialization (#3793) (9b6a307)
  • \n
  • python: add error differentiation to Python. (#3772) (e3f7d5e)
  • \n
  • superchain: add 'acl' package to support projen GHA (#3783) (306b248)
  • \n
\n

Bug Fixes

\n
    \n
  • jsii-reflect: TypeMember is not SourceLocatable (#3778) (db809e2), closes #3777
  • \n
  • python: KeyError in type checks when decorating methods (#3791) (dae724c)
  • \n
\n

1.69.0 (2022-09-27)

\n

Features

\n\n

Bug Fixes

\n\n

1.68.0 (2022-09-22)

\n

Features

\n
    \n
  • kernel: distinguish framework errors from userland errors in Java (#3747) (a4d39c6)
  • \n
\n

Bug Fixes

\n\n

1.67.0 (2022-09-02)

\n

Features

\n
    \n
  • java: dynamic type checking for union-typed parameters (#3703) (26ca47c)
  • \n
  • java: utility to perform unsafe cast (#3730) (4a52d4c)
  • \n
\n\n
\n

... (truncated)

\n
\n
\nCommits\n\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jsii&package-manager=npm_and_yarn&previous-version=1.61.0&new-version=1.70.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n
","created_at":"2022-10-20T21:53:54Z","updated_at":"2022-11-07T02:59:59Z","closed_at":"2022-11-07T02:59:59Z","merged_at":null,"merge_commit_sha":"ba1a7f2500c0269034b4532963828da74cdf3de1","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":3625007582,"node_id":"LA_kwDOGgIgCc7YETne","url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/labels/auto-approve","name":"auto-approve","color":"ededed","default":false,"description":null},{"id":4543007664,"node_id":"LA_kwDOGgIgCc8AAAABDsjLsA","url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/labels/stale","name":"stale","color":"ededed","default":false,"description":null}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/477/commits","review_comments_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/477/comments","review_comment_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/comments{/number}","comments_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/477/comments","statuses_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/statuses/cbdd97b15d8b416b6450aecf2f31356466264038","head":{"label":"pepperize:dependabot/npm_and_yarn/jsii-1.70.0","ref":"dependabot/npm_and_yarn/jsii-1.70.0","sha":"cbdd97b15d8b416b6450aecf2f31356466264038","user":{"login":"pepperize","id":60035171,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYwMDM1MTcx","avatar_url":"https://avatars.githubusercontent.com/u/60035171?v=4","gravatar_id":"","url":"https://api.github.com/users/pepperize","html_url":"https://github.com/pepperize","followers_url":"https://api.github.com/users/pepperize/followers","following_url":"https://api.github.com/users/pepperize/following{/other_user}","gists_url":"https://api.github.com/users/pepperize/gists{/gist_id}","starred_url":"https://api.github.com/users/pepperize/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pepperize/subscriptions","organizations_url":"https://api.github.com/users/pepperize/orgs","repos_url":"https://api.github.com/users/pepperize/repos","events_url":"https://api.github.com/users/pepperize/events{/privacy}","received_events_url":"https://api.github.com/users/pepperize/received_events","type":"Organization","site_admin":false},"repo":{"id":436346889,"node_id":"R_kgDOGgIgCQ","name":"cdk-serverless-cluster-from-snapshot","full_name":"pepperize/cdk-serverless-cluster-from-snapshot","private":false,"owner":{"login":"pepperize","id":60035171,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYwMDM1MTcx","avatar_url":"https://avatars.githubusercontent.com/u/60035171?v=4","gravatar_id":"","url":"https://api.github.com/users/pepperize","html_url":"https://github.com/pepperize","followers_url":"https://api.github.com/users/pepperize/followers","following_url":"https://api.github.com/users/pepperize/following{/other_user}","gists_url":"https://api.github.com/users/pepperize/gists{/gist_id}","starred_url":"https://api.github.com/users/pepperize/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pepperize/subscriptions","organizations_url":"https://api.github.com/users/pepperize/orgs","repos_url":"https://api.github.com/users/pepperize/repos","events_url":"https://api.github.com/users/pepperize/events{/privacy}","received_events_url":"https://api.github.com/users/pepperize/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot","description":"Deprecated: Use https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_rds.ServerlessClusterFromSnapshot.html","fork":false,"url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot","forks_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/forks","keys_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/teams","hooks_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/hooks","issue_events_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/events{/number}","events_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/events","assignees_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/assignees{/user}","branches_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/branches{/branch}","tags_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/tags","blobs_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/refs{/sha}","trees_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/statuses/{sha}","languages_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/languages","stargazers_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/stargazers","contributors_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/contributors","subscribers_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/subscribers","subscription_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/subscription","commits_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/commits{/sha}","git_commits_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/commits{/sha}","comments_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/comments{/number}","issue_comment_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/comments{/number}","contents_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/contents/{+path}","compare_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/merges","archive_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/downloads","issues_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues{/number}","pulls_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls{/number}","milestones_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/milestones{/number}","notifications_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/labels{/name}","releases_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/releases{/id}","deployments_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/deployments","created_at":"2021-12-08T18:11:11Z","updated_at":"2022-10-31T21:41:23Z","pushed_at":"2022-11-02T21:42:52Z","git_url":"git://github.com/pepperize/cdk-serverless-cluster-from-snapshot.git","ssh_url":"git@github.com:pepperize/cdk-serverless-cluster-from-snapshot.git","clone_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot.git","svn_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot","homepage":"","size":2077,"stargazers_count":2,"watchers_count":2,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["aurora","aws","cdk","cluster","database","rds","serverless","snapshot"],"visibility":"public","forks":0,"open_issues":0,"watchers":2,"default_branch":"main"}},"base":{"label":"pepperize:main","ref":"main","sha":"c85bbdfaa0cc26d9c9f9a2ac5b932f42c8c06fa3","user":{"login":"pepperize","id":60035171,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYwMDM1MTcx","avatar_url":"https://avatars.githubusercontent.com/u/60035171?v=4","gravatar_id":"","url":"https://api.github.com/users/pepperize","html_url":"https://github.com/pepperize","followers_url":"https://api.github.com/users/pepperize/followers","following_url":"https://api.github.com/users/pepperize/following{/other_user}","gists_url":"https://api.github.com/users/pepperize/gists{/gist_id}","starred_url":"https://api.github.com/users/pepperize/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pepperize/subscriptions","organizations_url":"https://api.github.com/users/pepperize/orgs","repos_url":"https://api.github.com/users/pepperize/repos","events_url":"https://api.github.com/users/pepperize/events{/privacy}","received_events_url":"https://api.github.com/users/pepperize/received_events","type":"Organization","site_admin":false},"repo":{"id":436346889,"node_id":"R_kgDOGgIgCQ","name":"cdk-serverless-cluster-from-snapshot","full_name":"pepperize/cdk-serverless-cluster-from-snapshot","private":false,"owner":{"login":"pepperize","id":60035171,"node_id":"MDEyOk9yZ2FuaXphdGlvbjYwMDM1MTcx","avatar_url":"https://avatars.githubusercontent.com/u/60035171?v=4","gravatar_id":"","url":"https://api.github.com/users/pepperize","html_url":"https://github.com/pepperize","followers_url":"https://api.github.com/users/pepperize/followers","following_url":"https://api.github.com/users/pepperize/following{/other_user}","gists_url":"https://api.github.com/users/pepperize/gists{/gist_id}","starred_url":"https://api.github.com/users/pepperize/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pepperize/subscriptions","organizations_url":"https://api.github.com/users/pepperize/orgs","repos_url":"https://api.github.com/users/pepperize/repos","events_url":"https://api.github.com/users/pepperize/events{/privacy}","received_events_url":"https://api.github.com/users/pepperize/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot","description":"Deprecated: Use https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_rds.ServerlessClusterFromSnapshot.html","fork":false,"url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot","forks_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/forks","keys_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/keys{/key_id}","collaborators_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/teams","hooks_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/hooks","issue_events_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/events{/number}","events_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/events","assignees_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/assignees{/user}","branches_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/branches{/branch}","tags_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/tags","blobs_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/refs{/sha}","trees_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/trees{/sha}","statuses_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/statuses/{sha}","languages_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/languages","stargazers_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/stargazers","contributors_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/contributors","subscribers_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/subscribers","subscription_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/subscription","commits_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/commits{/sha}","git_commits_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/git/commits{/sha}","comments_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/comments{/number}","issue_comment_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/comments{/number}","contents_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/contents/{+path}","compare_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/compare/{base}...{head}","merges_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/merges","archive_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/downloads","issues_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues{/number}","pulls_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls{/number}","milestones_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/milestones{/number}","notifications_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/labels{/name}","releases_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/releases{/id}","deployments_url":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/deployments","created_at":"2021-12-08T18:11:11Z","updated_at":"2022-10-31T21:41:23Z","pushed_at":"2022-11-02T21:42:52Z","git_url":"git://github.com/pepperize/cdk-serverless-cluster-from-snapshot.git","ssh_url":"git@github.com:pepperize/cdk-serverless-cluster-from-snapshot.git","clone_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot.git","svn_url":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot","homepage":"","size":2077,"stargazers_count":2,"watchers_count":2,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["aurora","aws","cdk","cluster","database","rds","serverless","snapshot"],"visibility":"public","forks":0,"open_issues":0,"watchers":2,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/477"},"html":{"href":"https://github.com/pepperize/cdk-serverless-cluster-from-snapshot/pull/477"},"issue":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/477"},"comments":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/issues/477/comments"},"review_comments":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/477/comments"},"review_comment":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/pulls/477/commits"},"statuses":{"href":"https://api.github.com/repos/pepperize/cdk-serverless-cluster-from-snapshot/statuses/cbdd97b15d8b416b6450aecf2f31356466264038"}},"author_association":"CONTRIBUTOR","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":false,"mergeable_state":"unstable","merged_by":null,"comments":2,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":16,"deletions":24,"changed_files":1}},"public":true,"created_at":"2022-11-07T03:00:00Z","org":{"id":60035171,"login":"pepperize","gravatar_id":"","url":"https://api.github.com/orgs/pepperize","avatar_url":"https://avatars.githubusercontent.com/u/60035171?"}} +{"id":"25061821797","type":"PullRequestReviewEvent","actor":{"id":114601237,"login":"AntonellaTortoza18","display_login":"AntonellaTortoza18","gravatar_id":"","url":"https://api.github.com/users/AntonellaTortoza18","avatar_url":"https://avatars.githubusercontent.com/u/114601237?"},"repo":{"id":561097179,"name":"AndreaCastanoS/my-tinerary-ctrl-devs","url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs"},"payload":{"action":"created","review":{"id":1169740143,"node_id":"PRR_kwDOIXGp285FuNFv","user":{"login":"AntonellaTortoza18","id":114601237,"node_id":"U_kgDOBtStFQ","avatar_url":"https://avatars.githubusercontent.com/u/114601237?v=4","gravatar_id":"","url":"https://api.github.com/users/AntonellaTortoza18","html_url":"https://github.com/AntonellaTortoza18","followers_url":"https://api.github.com/users/AntonellaTortoza18/followers","following_url":"https://api.github.com/users/AntonellaTortoza18/following{/other_user}","gists_url":"https://api.github.com/users/AntonellaTortoza18/gists{/gist_id}","starred_url":"https://api.github.com/users/AntonellaTortoza18/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AntonellaTortoza18/subscriptions","organizations_url":"https://api.github.com/users/AntonellaTortoza18/orgs","repos_url":"https://api.github.com/users/AntonellaTortoza18/repos","events_url":"https://api.github.com/users/AntonellaTortoza18/events{/privacy}","received_events_url":"https://api.github.com/users/AntonellaTortoza18/received_events","type":"User","site_admin":false},"body":"","commit_id":"a2b10c7e89eb8568d5db6ba3bf01582bca500858","submitted_at":"2022-11-07T02:59:59Z","state":"approved","html_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs/pull/29#pullrequestreview-1169740143","pull_request_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29","author_association":"COLLABORATOR","_links":{"html":{"href":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs/pull/29#pullrequestreview-1169740143"},"pull_request":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29"}}},"pull_request":{"url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29","id":1112187441,"node_id":"PR_kwDOIXGp285CSqIx","html_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs/pull/29","diff_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs/pull/29.diff","patch_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs/pull/29.patch","issue_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/29","number":29,"state":"open","locked":false,"title":"MT-F2-14","user":{"login":"AndreaCastanoS","id":102301626,"node_id":"U_kgDOBhj_ug","avatar_url":"https://avatars.githubusercontent.com/u/102301626?v=4","gravatar_id":"","url":"https://api.github.com/users/AndreaCastanoS","html_url":"https://github.com/AndreaCastanoS","followers_url":"https://api.github.com/users/AndreaCastanoS/followers","following_url":"https://api.github.com/users/AndreaCastanoS/following{/other_user}","gists_url":"https://api.github.com/users/AndreaCastanoS/gists{/gist_id}","starred_url":"https://api.github.com/users/AndreaCastanoS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AndreaCastanoS/subscriptions","organizations_url":"https://api.github.com/users/AndreaCastanoS/orgs","repos_url":"https://api.github.com/users/AndreaCastanoS/repos","events_url":"https://api.github.com/users/AndreaCastanoS/events{/privacy}","received_events_url":"https://api.github.com/users/AndreaCastanoS/received_events","type":"User","site_admin":false},"body":"-Creacion de componente New Hotel\r\n-Captura de datos en local storage y useReff\r\n\r\n![newhotels3](https://user-images.githubusercontent.com/102301626/200217105-56645a25-4a48-4957-99e1-8601964a21aa.jpg)\r\n![newhotels2](https://user-images.githubusercontent.com/102301626/200217118-681b8650-ca0d-4f83-8e9b-45f3b0f0d535.jpg)\r\n![newhotels](https://user-images.githubusercontent.com/102301626/200217127-b169ad4d-96e8-4907-8e41-6bd513b0c576.jpg)\r\n","created_at":"2022-11-07T02:57:46Z","updated_at":"2022-11-07T02:59:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29/commits","review_comments_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29/comments","review_comment_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/comments{/number}","comments_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/29/comments","statuses_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/statuses/a2b10c7e89eb8568d5db6ba3bf01582bca500858","head":{"label":"AndreaCastanoS:MT-F2-14","ref":"MT-F2-14","sha":"a2b10c7e89eb8568d5db6ba3bf01582bca500858","user":{"login":"AndreaCastanoS","id":102301626,"node_id":"U_kgDOBhj_ug","avatar_url":"https://avatars.githubusercontent.com/u/102301626?v=4","gravatar_id":"","url":"https://api.github.com/users/AndreaCastanoS","html_url":"https://github.com/AndreaCastanoS","followers_url":"https://api.github.com/users/AndreaCastanoS/followers","following_url":"https://api.github.com/users/AndreaCastanoS/following{/other_user}","gists_url":"https://api.github.com/users/AndreaCastanoS/gists{/gist_id}","starred_url":"https://api.github.com/users/AndreaCastanoS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AndreaCastanoS/subscriptions","organizations_url":"https://api.github.com/users/AndreaCastanoS/orgs","repos_url":"https://api.github.com/users/AndreaCastanoS/repos","events_url":"https://api.github.com/users/AndreaCastanoS/events{/privacy}","received_events_url":"https://api.github.com/users/AndreaCastanoS/received_events","type":"User","site_admin":false},"repo":{"id":561097179,"node_id":"R_kgDOIXGp2w","name":"my-tinerary-ctrl-devs","full_name":"AndreaCastanoS/my-tinerary-ctrl-devs","private":false,"owner":{"login":"AndreaCastanoS","id":102301626,"node_id":"U_kgDOBhj_ug","avatar_url":"https://avatars.githubusercontent.com/u/102301626?v=4","gravatar_id":"","url":"https://api.github.com/users/AndreaCastanoS","html_url":"https://github.com/AndreaCastanoS","followers_url":"https://api.github.com/users/AndreaCastanoS/followers","following_url":"https://api.github.com/users/AndreaCastanoS/following{/other_user}","gists_url":"https://api.github.com/users/AndreaCastanoS/gists{/gist_id}","starred_url":"https://api.github.com/users/AndreaCastanoS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AndreaCastanoS/subscriptions","organizations_url":"https://api.github.com/users/AndreaCastanoS/orgs","repos_url":"https://api.github.com/users/AndreaCastanoS/repos","events_url":"https://api.github.com/users/AndreaCastanoS/events{/privacy}","received_events_url":"https://api.github.com/users/AndreaCastanoS/received_events","type":"User","site_admin":false},"html_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs","description":null,"fork":false,"url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs","forks_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/forks","keys_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/teams","hooks_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/hooks","issue_events_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/events{/number}","events_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/events","assignees_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/assignees{/user}","branches_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/branches{/branch}","tags_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/tags","blobs_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/refs{/sha}","trees_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/statuses/{sha}","languages_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/languages","stargazers_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/stargazers","contributors_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/contributors","subscribers_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/subscribers","subscription_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/subscription","commits_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/commits{/sha}","git_commits_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/commits{/sha}","comments_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/comments{/number}","issue_comment_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/comments{/number}","contents_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/contents/{+path}","compare_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/merges","archive_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/downloads","issues_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues{/number}","pulls_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls{/number}","milestones_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/milestones{/number}","notifications_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/labels{/name}","releases_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/releases{/id}","deployments_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/deployments","created_at":"2022-11-03T00:02:06Z","updated_at":"2022-11-03T00:02:06Z","pushed_at":"2022-11-07T02:57:47Z","git_url":"git://github.com/AndreaCastanoS/my-tinerary-ctrl-devs.git","ssh_url":"git@github.com:AndreaCastanoS/my-tinerary-ctrl-devs.git","clone_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs.git","svn_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs","homepage":null,"size":439,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":15,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":15,"watchers":0,"default_branch":"main"}},"base":{"label":"AndreaCastanoS:sprint-1","ref":"sprint-1","sha":"c08579ebfabc9e590a82655d493c0ce6bae62dff","user":{"login":"AndreaCastanoS","id":102301626,"node_id":"U_kgDOBhj_ug","avatar_url":"https://avatars.githubusercontent.com/u/102301626?v=4","gravatar_id":"","url":"https://api.github.com/users/AndreaCastanoS","html_url":"https://github.com/AndreaCastanoS","followers_url":"https://api.github.com/users/AndreaCastanoS/followers","following_url":"https://api.github.com/users/AndreaCastanoS/following{/other_user}","gists_url":"https://api.github.com/users/AndreaCastanoS/gists{/gist_id}","starred_url":"https://api.github.com/users/AndreaCastanoS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AndreaCastanoS/subscriptions","organizations_url":"https://api.github.com/users/AndreaCastanoS/orgs","repos_url":"https://api.github.com/users/AndreaCastanoS/repos","events_url":"https://api.github.com/users/AndreaCastanoS/events{/privacy}","received_events_url":"https://api.github.com/users/AndreaCastanoS/received_events","type":"User","site_admin":false},"repo":{"id":561097179,"node_id":"R_kgDOIXGp2w","name":"my-tinerary-ctrl-devs","full_name":"AndreaCastanoS/my-tinerary-ctrl-devs","private":false,"owner":{"login":"AndreaCastanoS","id":102301626,"node_id":"U_kgDOBhj_ug","avatar_url":"https://avatars.githubusercontent.com/u/102301626?v=4","gravatar_id":"","url":"https://api.github.com/users/AndreaCastanoS","html_url":"https://github.com/AndreaCastanoS","followers_url":"https://api.github.com/users/AndreaCastanoS/followers","following_url":"https://api.github.com/users/AndreaCastanoS/following{/other_user}","gists_url":"https://api.github.com/users/AndreaCastanoS/gists{/gist_id}","starred_url":"https://api.github.com/users/AndreaCastanoS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AndreaCastanoS/subscriptions","organizations_url":"https://api.github.com/users/AndreaCastanoS/orgs","repos_url":"https://api.github.com/users/AndreaCastanoS/repos","events_url":"https://api.github.com/users/AndreaCastanoS/events{/privacy}","received_events_url":"https://api.github.com/users/AndreaCastanoS/received_events","type":"User","site_admin":false},"html_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs","description":null,"fork":false,"url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs","forks_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/forks","keys_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/teams","hooks_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/hooks","issue_events_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/events{/number}","events_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/events","assignees_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/assignees{/user}","branches_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/branches{/branch}","tags_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/tags","blobs_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/refs{/sha}","trees_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/statuses/{sha}","languages_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/languages","stargazers_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/stargazers","contributors_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/contributors","subscribers_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/subscribers","subscription_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/subscription","commits_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/commits{/sha}","git_commits_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/git/commits{/sha}","comments_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/comments{/number}","issue_comment_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/comments{/number}","contents_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/contents/{+path}","compare_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/merges","archive_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/downloads","issues_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues{/number}","pulls_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls{/number}","milestones_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/milestones{/number}","notifications_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/labels{/name}","releases_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/releases{/id}","deployments_url":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/deployments","created_at":"2022-11-03T00:02:06Z","updated_at":"2022-11-03T00:02:06Z","pushed_at":"2022-11-07T02:57:47Z","git_url":"git://github.com/AndreaCastanoS/my-tinerary-ctrl-devs.git","ssh_url":"git@github.com:AndreaCastanoS/my-tinerary-ctrl-devs.git","clone_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs.git","svn_url":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs","homepage":null,"size":439,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":15,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":1,"open_issues":15,"watchers":0,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29"},"html":{"href":"https://github.com/AndreaCastanoS/my-tinerary-ctrl-devs/pull/29"},"issue":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/29"},"comments":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/issues/29/comments"},"review_comments":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29/comments"},"review_comment":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/pulls/29/commits"},"statuses":{"href":"https://api.github.com/repos/AndreaCastanoS/my-tinerary-ctrl-devs/statuses/a2b10c7e89eb8568d5db6ba3bf01582bca500858"}},"author_association":"OWNER","auto_merge":null,"active_lock_reason":null}},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821803","type":"CreateEvent","actor":{"id":74837352,"login":"RodrigoNOliveira","display_login":"RodrigoNOliveira","gravatar_id":"","url":"https://api.github.com/users/RodrigoNOliveira","avatar_url":"https://avatars.githubusercontent.com/u/74837352?"},"repo":{"id":562683527,"name":"RodrigoNOliveira/padraoComposite","url":"https://api.github.com/repos/RodrigoNOliveira/padraoComposite"},"payload":{"ref":"main","ref_type":"branch","master_branch":"main","description":null,"pusher_type":"user"},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821806","type":"PushEvent","actor":{"id":102448438,"login":"goodstudy2022327","display_login":"goodstudy2022327","gravatar_id":"","url":"https://api.github.com/users/goodstudy2022327","avatar_url":"https://avatars.githubusercontent.com/u/102448438?"},"repo":{"id":529581430,"name":"goodstudy2022327/personPic","url":"https://api.github.com/repos/goodstudy2022327/personPic"},"payload":{"push_id":11572649845,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"5bb624c83111f4f5b21f1962adc3c3488bff375e","before":"17de541e23d7e9f0c5be2a60991579a1aba6a257","commits":[{"sha":"5bb624c83111f4f5b21f1962adc3c3488bff375e","author":{"email":"102448438+goodstudy2022327@users.noreply.github.com","name":"goodstudy2022327"},"message":"Upload by PicGo","distinct":true,"url":"https://api.github.com/repos/goodstudy2022327/personPic/commits/5bb624c83111f4f5b21f1962adc3c3488bff375e"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821810","type":"PushEvent","actor":{"id":41898282,"login":"github-actions[bot]","display_login":"github-actions","gravatar_id":"","url":"https://api.github.com/users/github-actions[bot]","avatar_url":"https://avatars.githubusercontent.com/u/41898282?"},"repo":{"id":352635273,"name":"sebbourgeois/sebbourgeois","url":"https://api.github.com/repos/sebbourgeois/sebbourgeois"},"payload":{"push_id":11572649850,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"09ebe2ac340f780fc23f98f6b161f5f6405f5a86","before":"410574123dedd895f24f67133fef8a31f6436501","commits":[{"sha":"09ebe2ac340f780fc23f98f6b161f5f6405f5a86","author":{"email":"41898282+github-actions[bot]@users.noreply.github.com","name":"github-actions[bot]"},"message":"Update github-metrics.svg - [Skip GitHub Action]","distinct":true,"url":"https://api.github.com/repos/sebbourgeois/sebbourgeois/commits/09ebe2ac340f780fc23f98f6b161f5f6405f5a86"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821814","type":"PushEvent","actor":{"id":41898282,"login":"github-actions[bot]","display_login":"github-actions","gravatar_id":"","url":"https://api.github.com/users/github-actions[bot]","avatar_url":"https://avatars.githubusercontent.com/u/41898282?"},"repo":{"id":273053362,"name":"rvaughan/weather-data","url":"https://api.github.com/repos/rvaughan/weather-data"},"payload":{"push_id":11572649849,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6b11f011d0c876ee4aa5731e1303f295a41df1d3","before":"956e3534c8afc316aae3e0133370062f9c27533f","commits":[{"sha":"6b11f011d0c876ee4aa5731e1303f295a41df1d3","author":{"email":"actions@users.noreply.github.com","name":"Automated"},"message":"Latest BBC Weather for Cardiff: Mon Nov 7 02:59:59 UTC 2022","distinct":true,"url":"https://api.github.com/repos/rvaughan/weather-data/commits/6b11f011d0c876ee4aa5731e1303f295a41df1d3"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821817","type":"ForkEvent","actor":{"id":45201868,"login":"ZhxJia","display_login":"ZhxJia","gravatar_id":"","url":"https://api.github.com/users/ZhxJia","avatar_url":"https://avatars.githubusercontent.com/u/45201868?"},"repo":{"id":360530218,"name":"ethz-asl/sl_sensor","url":"https://api.github.com/repos/ethz-asl/sl_sensor"},"payload":{"forkee":{"id":562683981,"node_id":"R_kgDOIYngTQ","name":"sl_sensor","full_name":"ZhxJia/sl_sensor","private":false,"owner":{"login":"ZhxJia","id":45201868,"node_id":"MDQ6VXNlcjQ1MjAxODY4","avatar_url":"https://avatars.githubusercontent.com/u/45201868?v=4","gravatar_id":"","url":"https://api.github.com/users/ZhxJia","html_url":"https://github.com/ZhxJia","followers_url":"https://api.github.com/users/ZhxJia/followers","following_url":"https://api.github.com/users/ZhxJia/following{/other_user}","gists_url":"https://api.github.com/users/ZhxJia/gists{/gist_id}","starred_url":"https://api.github.com/users/ZhxJia/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ZhxJia/subscriptions","organizations_url":"https://api.github.com/users/ZhxJia/orgs","repos_url":"https://api.github.com/users/ZhxJia/repos","events_url":"https://api.github.com/users/ZhxJia/events{/privacy}","received_events_url":"https://api.github.com/users/ZhxJia/received_events","type":"User","site_admin":false},"html_url":"https://github.com/ZhxJia/sl_sensor","description":"SL Sensor: An open-source, real-time and ROS-based structured light sensor for high accuracy construction robotic applications","fork":true,"url":"https://api.github.com/repos/ZhxJia/sl_sensor","forks_url":"https://api.github.com/repos/ZhxJia/sl_sensor/forks","keys_url":"https://api.github.com/repos/ZhxJia/sl_sensor/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ZhxJia/sl_sensor/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ZhxJia/sl_sensor/teams","hooks_url":"https://api.github.com/repos/ZhxJia/sl_sensor/hooks","issue_events_url":"https://api.github.com/repos/ZhxJia/sl_sensor/issues/events{/number}","events_url":"https://api.github.com/repos/ZhxJia/sl_sensor/events","assignees_url":"https://api.github.com/repos/ZhxJia/sl_sensor/assignees{/user}","branches_url":"https://api.github.com/repos/ZhxJia/sl_sensor/branches{/branch}","tags_url":"https://api.github.com/repos/ZhxJia/sl_sensor/tags","blobs_url":"https://api.github.com/repos/ZhxJia/sl_sensor/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ZhxJia/sl_sensor/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ZhxJia/sl_sensor/git/refs{/sha}","trees_url":"https://api.github.com/repos/ZhxJia/sl_sensor/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ZhxJia/sl_sensor/statuses/{sha}","languages_url":"https://api.github.com/repos/ZhxJia/sl_sensor/languages","stargazers_url":"https://api.github.com/repos/ZhxJia/sl_sensor/stargazers","contributors_url":"https://api.github.com/repos/ZhxJia/sl_sensor/contributors","subscribers_url":"https://api.github.com/repos/ZhxJia/sl_sensor/subscribers","subscription_url":"https://api.github.com/repos/ZhxJia/sl_sensor/subscription","commits_url":"https://api.github.com/repos/ZhxJia/sl_sensor/commits{/sha}","git_commits_url":"https://api.github.com/repos/ZhxJia/sl_sensor/git/commits{/sha}","comments_url":"https://api.github.com/repos/ZhxJia/sl_sensor/comments{/number}","issue_comment_url":"https://api.github.com/repos/ZhxJia/sl_sensor/issues/comments{/number}","contents_url":"https://api.github.com/repos/ZhxJia/sl_sensor/contents/{+path}","compare_url":"https://api.github.com/repos/ZhxJia/sl_sensor/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ZhxJia/sl_sensor/merges","archive_url":"https://api.github.com/repos/ZhxJia/sl_sensor/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ZhxJia/sl_sensor/downloads","issues_url":"https://api.github.com/repos/ZhxJia/sl_sensor/issues{/number}","pulls_url":"https://api.github.com/repos/ZhxJia/sl_sensor/pulls{/number}","milestones_url":"https://api.github.com/repos/ZhxJia/sl_sensor/milestones{/number}","notifications_url":"https://api.github.com/repos/ZhxJia/sl_sensor/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ZhxJia/sl_sensor/labels{/name}","releases_url":"https://api.github.com/repos/ZhxJia/sl_sensor/releases{/id}","deployments_url":"https://api.github.com/repos/ZhxJia/sl_sensor/deployments","created_at":"2022-11-07T02:59:59Z","updated_at":"2022-11-07T02:59:55Z","pushed_at":"2022-07-13T20:44:53Z","git_url":"git://github.com/ZhxJia/sl_sensor.git","ssh_url":"git@github.com:ZhxJia/sl_sensor.git","clone_url":"https://github.com/ZhxJia/sl_sensor.git","svn_url":"https://github.com/ZhxJia/sl_sensor","homepage":"https://www.sciencedirect.com/science/article/pii/S0926580522002977","size":710,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"agpl-3.0","name":"GNU Affero General Public License v3.0","spdx_id":"AGPL-3.0","url":"https://api.github.com/licenses/agpl-3.0","node_id":"MDc6TGljZW5zZTE="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2022-11-07T03:00:00Z","org":{"id":475362,"login":"ethz-asl","gravatar_id":"","url":"https://api.github.com/orgs/ethz-asl","avatar_url":"https://avatars.githubusercontent.com/u/475362?"}} +{"id":"25061821824","type":"CreateEvent","actor":{"id":110168274,"login":"itigoame","display_login":"itigoame","gravatar_id":"","url":"https://api.github.com/users/itigoame","avatar_url":"https://avatars.githubusercontent.com/u/110168274?"},"repo":{"id":562683980,"name":"itigoame/sample-AI","url":"https://api.github.com/repos/itigoame/sample-AI"},"payload":{"ref":null,"ref_type":"repository","master_branch":"main","description":null,"pusher_type":"user"},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821825","type":"PushEvent","actor":{"id":34259289,"login":"simonxin","display_login":"simonxin","gravatar_id":"","url":"https://api.github.com/users/simonxin","avatar_url":"https://avatars.githubusercontent.com/u/34259289?"},"repo":{"id":542899877,"name":"simonxin/aadtokens","url":"https://api.github.com/repos/simonxin/aadtokens"},"payload":{"push_id":11572649851,"size":3,"distinct_size":3,"ref":"refs/heads/main","head":"f17bde840e883424b52a04800dc689bf403ce179","before":"690442543c41c0eb61dd52261009d1aa7af60b04","commits":[{"sha":"84bb56c924fba1772c7f11e6baf096570a5c0300","author":{"email":"simonxin@microsoft.com","name":"Simon Xin"},"message":"add sample image","distinct":true,"url":"https://api.github.com/repos/simonxin/aadtokens/commits/84bb56c924fba1772c7f11e6baf096570a5c0300"},{"sha":"b9b1030ec540afe5cf9a03f515920029ff449e17","author":{"email":"simonxin@microsoft.com","name":"Simon Xin"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/simonxin/aadtokens/commits/b9b1030ec540afe5cf9a03f515920029ff449e17"},{"sha":"f17bde840e883424b52a04800dc689bf403ce179","author":{"email":"simonxin@microsoft.com","name":"Simon Xin"},"message":"update readme","distinct":true,"url":"https://api.github.com/repos/simonxin/aadtokens/commits/f17bde840e883424b52a04800dc689bf403ce179"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821843","type":"PushEvent","actor":{"id":73926367,"login":"armenfesliyan","display_login":"armenfesliyan","gravatar_id":"","url":"https://api.github.com/users/armenfesliyan","avatar_url":"https://avatars.githubusercontent.com/u/73926367?"},"repo":{"id":562670554,"name":"armenfesliyan/seatpsychology","url":"https://api.github.com/repos/armenfesliyan/seatpsychology"},"payload":{"push_id":11572649869,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"4173f304d660220cc1a6de1a151eb5a1af78c9ad","before":"b0899d4fc2e190460f63aa76e03a0333e6d6a998","commits":[{"sha":"4173f304d660220cc1a6de1a151eb5a1af78c9ad","author":{"email":"armenfes@gmail.com","name":"Armen Fesliyan"},"message":"header","distinct":true,"url":"https://api.github.com/repos/armenfesliyan/seatpsychology/commits/4173f304d660220cc1a6de1a151eb5a1af78c9ad"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821852","type":"PullRequestEvent","actor":{"id":98024358,"login":"jfrog-pipelie-intg","display_login":"jfrog-pipelie-intg","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?"},"repo":{"id":562683829,"name":"jfrog-pipelie-intg/jfinte2e_1667789956723_16","url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16"},"payload":{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/3","id":1112188326,"node_id":"PR_kwDOIYnftc5CSqWm","html_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pull/3","diff_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pull/3.diff","patch_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pull/3.patch","issue_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/3","number":3,"state":"open","locked":false,"title":"Test PR","user":{"login":"jfrog-pipelie-intg","id":98024358,"node_id":"U_kgDOBde7pg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?v=4","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","html_url":"https://github.com/jfrog-pipelie-intg","followers_url":"https://api.github.com/users/jfrog-pipelie-intg/followers","following_url":"https://api.github.com/users/jfrog-pipelie-intg/following{/other_user}","gists_url":"https://api.github.com/users/jfrog-pipelie-intg/gists{/gist_id}","starred_url":"https://api.github.com/users/jfrog-pipelie-intg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfrog-pipelie-intg/subscriptions","organizations_url":"https://api.github.com/users/jfrog-pipelie-intg/orgs","repos_url":"https://api.github.com/users/jfrog-pipelie-intg/repos","events_url":"https://api.github.com/users/jfrog-pipelie-intg/events{/privacy}","received_events_url":"https://api.github.com/users/jfrog-pipelie-intg/received_events","type":"User","site_admin":false},"body":null,"created_at":"2022-11-07T03:00:00Z","updated_at":"2022-11-07T03:00:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/3/commits","review_comments_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/3/comments","review_comment_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/comments{/number}","comments_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/3/comments","statuses_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/statuses/334433de436baa198024ef9f55f0647721bcd750","head":{"label":"jfrog-pipelie-intg:test-notification-sent-branch-10238493157623136113","ref":"test-notification-sent-branch-10238493157623136113","sha":"334433de436baa198024ef9f55f0647721bcd750","user":{"login":"jfrog-pipelie-intg","id":98024358,"node_id":"U_kgDOBde7pg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?v=4","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","html_url":"https://github.com/jfrog-pipelie-intg","followers_url":"https://api.github.com/users/jfrog-pipelie-intg/followers","following_url":"https://api.github.com/users/jfrog-pipelie-intg/following{/other_user}","gists_url":"https://api.github.com/users/jfrog-pipelie-intg/gists{/gist_id}","starred_url":"https://api.github.com/users/jfrog-pipelie-intg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfrog-pipelie-intg/subscriptions","organizations_url":"https://api.github.com/users/jfrog-pipelie-intg/orgs","repos_url":"https://api.github.com/users/jfrog-pipelie-intg/repos","events_url":"https://api.github.com/users/jfrog-pipelie-intg/events{/privacy}","received_events_url":"https://api.github.com/users/jfrog-pipelie-intg/received_events","type":"User","site_admin":false},"repo":{"id":562683829,"node_id":"R_kgDOIYnftQ","name":"jfinte2e_1667789956723_16","full_name":"jfrog-pipelie-intg/jfinte2e_1667789956723_16","private":false,"owner":{"login":"jfrog-pipelie-intg","id":98024358,"node_id":"U_kgDOBde7pg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?v=4","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","html_url":"https://github.com/jfrog-pipelie-intg","followers_url":"https://api.github.com/users/jfrog-pipelie-intg/followers","following_url":"https://api.github.com/users/jfrog-pipelie-intg/following{/other_user}","gists_url":"https://api.github.com/users/jfrog-pipelie-intg/gists{/gist_id}","starred_url":"https://api.github.com/users/jfrog-pipelie-intg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfrog-pipelie-intg/subscriptions","organizations_url":"https://api.github.com/users/jfrog-pipelie-intg/orgs","repos_url":"https://api.github.com/users/jfrog-pipelie-intg/repos","events_url":"https://api.github.com/users/jfrog-pipelie-intg/events{/privacy}","received_events_url":"https://api.github.com/users/jfrog-pipelie-intg/received_events","type":"User","site_admin":false},"html_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16","description":null,"fork":false,"url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16","forks_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/forks","keys_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/teams","hooks_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/hooks","issue_events_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/events{/number}","events_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/events","assignees_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/assignees{/user}","branches_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/branches{/branch}","tags_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/tags","blobs_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/refs{/sha}","trees_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/statuses/{sha}","languages_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/languages","stargazers_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/stargazers","contributors_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/contributors","subscribers_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/subscribers","subscription_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/subscription","commits_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/commits{/sha}","git_commits_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/commits{/sha}","comments_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/comments{/number}","issue_comment_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/comments{/number}","contents_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/contents/{+path}","compare_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/merges","archive_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/downloads","issues_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues{/number}","pulls_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls{/number}","milestones_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/milestones{/number}","notifications_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/labels{/name}","releases_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/releases{/id}","deployments_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/deployments","created_at":"2022-11-07T02:59:16Z","updated_at":"2022-11-07T02:59:16Z","pushed_at":"2022-11-07T02:59:59Z","git_url":"git://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16.git","ssh_url":"git@github.com:jfrog-pipelie-intg/jfinte2e_1667789956723_16.git","clone_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16.git","svn_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":1,"watchers":0,"default_branch":"main"}},"base":{"label":"jfrog-pipelie-intg:main","ref":"main","sha":"8cb41e4f10633edc2dc457c5df845770ba2cd19b","user":{"login":"jfrog-pipelie-intg","id":98024358,"node_id":"U_kgDOBde7pg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?v=4","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","html_url":"https://github.com/jfrog-pipelie-intg","followers_url":"https://api.github.com/users/jfrog-pipelie-intg/followers","following_url":"https://api.github.com/users/jfrog-pipelie-intg/following{/other_user}","gists_url":"https://api.github.com/users/jfrog-pipelie-intg/gists{/gist_id}","starred_url":"https://api.github.com/users/jfrog-pipelie-intg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfrog-pipelie-intg/subscriptions","organizations_url":"https://api.github.com/users/jfrog-pipelie-intg/orgs","repos_url":"https://api.github.com/users/jfrog-pipelie-intg/repos","events_url":"https://api.github.com/users/jfrog-pipelie-intg/events{/privacy}","received_events_url":"https://api.github.com/users/jfrog-pipelie-intg/received_events","type":"User","site_admin":false},"repo":{"id":562683829,"node_id":"R_kgDOIYnftQ","name":"jfinte2e_1667789956723_16","full_name":"jfrog-pipelie-intg/jfinte2e_1667789956723_16","private":false,"owner":{"login":"jfrog-pipelie-intg","id":98024358,"node_id":"U_kgDOBde7pg","avatar_url":"https://avatars.githubusercontent.com/u/98024358?v=4","gravatar_id":"","url":"https://api.github.com/users/jfrog-pipelie-intg","html_url":"https://github.com/jfrog-pipelie-intg","followers_url":"https://api.github.com/users/jfrog-pipelie-intg/followers","following_url":"https://api.github.com/users/jfrog-pipelie-intg/following{/other_user}","gists_url":"https://api.github.com/users/jfrog-pipelie-intg/gists{/gist_id}","starred_url":"https://api.github.com/users/jfrog-pipelie-intg/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfrog-pipelie-intg/subscriptions","organizations_url":"https://api.github.com/users/jfrog-pipelie-intg/orgs","repos_url":"https://api.github.com/users/jfrog-pipelie-intg/repos","events_url":"https://api.github.com/users/jfrog-pipelie-intg/events{/privacy}","received_events_url":"https://api.github.com/users/jfrog-pipelie-intg/received_events","type":"User","site_admin":false},"html_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16","description":null,"fork":false,"url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16","forks_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/forks","keys_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/teams","hooks_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/hooks","issue_events_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/events{/number}","events_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/events","assignees_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/assignees{/user}","branches_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/branches{/branch}","tags_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/tags","blobs_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/refs{/sha}","trees_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/statuses/{sha}","languages_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/languages","stargazers_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/stargazers","contributors_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/contributors","subscribers_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/subscribers","subscription_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/subscription","commits_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/commits{/sha}","git_commits_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/git/commits{/sha}","comments_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/comments{/number}","issue_comment_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/comments{/number}","contents_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/contents/{+path}","compare_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/merges","archive_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/downloads","issues_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues{/number}","pulls_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls{/number}","milestones_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/milestones{/number}","notifications_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/labels{/name}","releases_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/releases{/id}","deployments_url":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/deployments","created_at":"2022-11-07T02:59:16Z","updated_at":"2022-11-07T02:59:16Z","pushed_at":"2022-11-07T02:59:59Z","git_url":"git://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16.git","ssh_url":"git@github.com:jfrog-pipelie-intg/jfinte2e_1667789956723_16.git","clone_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16.git","svn_url":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16","homepage":null,"size":0,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":null,"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":1,"watchers":0,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/3"},"html":{"href":"https://github.com/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pull/3"},"issue":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/3"},"comments":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/jfrog-pipelie-intg/jfinte2e_1667789956723_16/statuses/334433de436baa198024ef9f55f0647721bcd750"}},"author_association":"OWNER","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":1,"deletions":0,"changed_files":1}},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821874","type":"PushEvent","actor":{"id":97817672,"login":"alawrence30","display_login":"alawrence30","gravatar_id":"","url":"https://api.github.com/users/alawrence30","avatar_url":"https://avatars.githubusercontent.com/u/97817672?"},"repo":{"id":539737621,"name":"alawrence30/Deep-Learning","url":"https://api.github.com/repos/alawrence30/Deep-Learning"},"payload":{"push_id":11572649878,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"74cdba61e387b4ca52f9e2eeb2ef028d98018a99","before":"39ce1cc5891385cb8b0c986b16c74882b38183c9","commits":[{"sha":"74cdba61e387b4ca52f9e2eeb2ef028d98018a99","author":{"email":"97817672+alawrence30@users.noreply.github.com","name":"alawrence30"},"message":"Delete A_MSDS458_Assignment_03_EDA_v4.ipynb","distinct":true,"url":"https://api.github.com/repos/alawrence30/Deep-Learning/commits/74cdba61e387b4ca52f9e2eeb2ef028d98018a99"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821880","type":"PushEvent","actor":{"id":29478770,"login":"Tanimodori","display_login":"Tanimodori","gravatar_id":"","url":"https://api.github.com/users/Tanimodori","avatar_url":"https://avatars.githubusercontent.com/u/29478770?"},"repo":{"id":555947399,"name":"Tanimodori/viteburner-template","url":"https://api.github.com/repos/Tanimodori/viteburner-template"},"payload":{"push_id":11572649876,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"c78af6066de42b741a01db4746634b0c82077e14","before":"93ddf66099a85955b3d0ab3bd58869bb91ab8f73","commits":[{"sha":"c78af6066de42b741a01db4746634b0c82077e14","author":{"email":"unknowner2014@gmail.com","name":"Tanimodori"},"message":"chore: update viteburner","distinct":true,"url":"https://api.github.com/repos/Tanimodori/viteburner-template/commits/c78af6066de42b741a01db4746634b0c82077e14"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821893","type":"PullRequestReviewEvent","actor":{"id":108444335,"login":"filiphsps","display_login":"filiphsps","gravatar_id":"","url":"https://api.github.com/users/filiphsps","avatar_url":"https://avatars.githubusercontent.com/u/108444335?"},"repo":{"id":361369680,"name":"SerenityOS/discord-bot","url":"https://api.github.com/repos/SerenityOS/discord-bot"},"payload":{"action":"created","review":{"id":1169740146,"node_id":"PRR_kwDOFYoQUM5FuNFy","user":{"login":"filiphsps","id":108444335,"node_id":"U_kgDOBna6rw","avatar_url":"https://avatars.githubusercontent.com/u/108444335?v=4","gravatar_id":"","url":"https://api.github.com/users/filiphsps","html_url":"https://github.com/filiphsps","followers_url":"https://api.github.com/users/filiphsps/followers","following_url":"https://api.github.com/users/filiphsps/following{/other_user}","gists_url":"https://api.github.com/users/filiphsps/gists{/gist_id}","starred_url":"https://api.github.com/users/filiphsps/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filiphsps/subscriptions","organizations_url":"https://api.github.com/users/filiphsps/orgs","repos_url":"https://api.github.com/users/filiphsps/repos","events_url":"https://api.github.com/users/filiphsps/events{/privacy}","received_events_url":"https://api.github.com/users/filiphsps/received_events","type":"User","site_admin":false},"body":null,"commit_id":"01f07ec2d851b41e756a7a1d5af220f5078ba0a8","submitted_at":"2022-11-07T03:00:00Z","state":"commented","html_url":"https://github.com/SerenityOS/discord-bot/pull/711#pullrequestreview-1169740146","pull_request_url":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711","author_association":"CONTRIBUTOR","_links":{"html":{"href":"https://github.com/SerenityOS/discord-bot/pull/711#pullrequestreview-1169740146"},"pull_request":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711"}}},"pull_request":{"url":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711","id":1112140494,"node_id":"PR_kwDOFYoQUM5CSerO","html_url":"https://github.com/SerenityOS/discord-bot/pull/711","diff_url":"https://github.com/SerenityOS/discord-bot/pull/711.diff","patch_url":"https://github.com/SerenityOS/discord-bot/pull/711.patch","issue_url":"https://api.github.com/repos/SerenityOS/discord-bot/issues/711","number":711,"state":"open","locked":false,"title":"CommitStatsCommand: Redesign","user":{"login":"filiphsps","id":108444335,"node_id":"U_kgDOBna6rw","avatar_url":"https://avatars.githubusercontent.com/u/108444335?v=4","gravatar_id":"","url":"https://api.github.com/users/filiphsps","html_url":"https://github.com/filiphsps","followers_url":"https://api.github.com/users/filiphsps/followers","following_url":"https://api.github.com/users/filiphsps/following{/other_user}","gists_url":"https://api.github.com/users/filiphsps/gists{/gist_id}","starred_url":"https://api.github.com/users/filiphsps/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filiphsps/subscriptions","organizations_url":"https://api.github.com/users/filiphsps/orgs","repos_url":"https://api.github.com/users/filiphsps/repos","events_url":"https://api.github.com/users/filiphsps/events{/privacy}","received_events_url":"https://api.github.com/users/filiphsps/received_events","type":"User","site_admin":false},"body":"Requires #710 \r\n\r\n![1000](https://user-images.githubusercontent.com/108444335/200207064-b12a5bfc-8881-4a90-88d0-6a3547adde2c.png)\r\n","created_at":"2022-11-07T01:14:01Z","updated_at":"2022-11-07T03:00:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"87a7845e78da8b3e2ed5681729662bfee183e988","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711/commits","review_comments_url":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711/comments","review_comment_url":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/comments{/number}","comments_url":"https://api.github.com/repos/SerenityOS/discord-bot/issues/711/comments","statuses_url":"https://api.github.com/repos/SerenityOS/discord-bot/statuses/01f07ec2d851b41e756a7a1d5af220f5078ba0a8","head":{"label":"filiphsps:dev-redesign","ref":"dev-redesign","sha":"01f07ec2d851b41e756a7a1d5af220f5078ba0a8","user":{"login":"filiphsps","id":108444335,"node_id":"U_kgDOBna6rw","avatar_url":"https://avatars.githubusercontent.com/u/108444335?v=4","gravatar_id":"","url":"https://api.github.com/users/filiphsps","html_url":"https://github.com/filiphsps","followers_url":"https://api.github.com/users/filiphsps/followers","following_url":"https://api.github.com/users/filiphsps/following{/other_user}","gists_url":"https://api.github.com/users/filiphsps/gists{/gist_id}","starred_url":"https://api.github.com/users/filiphsps/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filiphsps/subscriptions","organizations_url":"https://api.github.com/users/filiphsps/orgs","repos_url":"https://api.github.com/users/filiphsps/repos","events_url":"https://api.github.com/users/filiphsps/events{/privacy}","received_events_url":"https://api.github.com/users/filiphsps/received_events","type":"User","site_admin":false},"repo":{"id":561259434,"node_id":"R_kgDOIXQjqg","name":"discord-bot","full_name":"filiphsps/discord-bot","private":false,"owner":{"login":"filiphsps","id":108444335,"node_id":"U_kgDOBna6rw","avatar_url":"https://avatars.githubusercontent.com/u/108444335?v=4","gravatar_id":"","url":"https://api.github.com/users/filiphsps","html_url":"https://github.com/filiphsps","followers_url":"https://api.github.com/users/filiphsps/followers","following_url":"https://api.github.com/users/filiphsps/following{/other_user}","gists_url":"https://api.github.com/users/filiphsps/gists{/gist_id}","starred_url":"https://api.github.com/users/filiphsps/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/filiphsps/subscriptions","organizations_url":"https://api.github.com/users/filiphsps/orgs","repos_url":"https://api.github.com/users/filiphsps/repos","events_url":"https://api.github.com/users/filiphsps/events{/privacy}","received_events_url":"https://api.github.com/users/filiphsps/received_events","type":"User","site_admin":false},"html_url":"https://github.com/filiphsps/discord-bot","description":"Discord Bot for the Serenity Operating System Community 🐞","fork":true,"url":"https://api.github.com/repos/filiphsps/discord-bot","forks_url":"https://api.github.com/repos/filiphsps/discord-bot/forks","keys_url":"https://api.github.com/repos/filiphsps/discord-bot/keys{/key_id}","collaborators_url":"https://api.github.com/repos/filiphsps/discord-bot/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/filiphsps/discord-bot/teams","hooks_url":"https://api.github.com/repos/filiphsps/discord-bot/hooks","issue_events_url":"https://api.github.com/repos/filiphsps/discord-bot/issues/events{/number}","events_url":"https://api.github.com/repos/filiphsps/discord-bot/events","assignees_url":"https://api.github.com/repos/filiphsps/discord-bot/assignees{/user}","branches_url":"https://api.github.com/repos/filiphsps/discord-bot/branches{/branch}","tags_url":"https://api.github.com/repos/filiphsps/discord-bot/tags","blobs_url":"https://api.github.com/repos/filiphsps/discord-bot/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/filiphsps/discord-bot/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/filiphsps/discord-bot/git/refs{/sha}","trees_url":"https://api.github.com/repos/filiphsps/discord-bot/git/trees{/sha}","statuses_url":"https://api.github.com/repos/filiphsps/discord-bot/statuses/{sha}","languages_url":"https://api.github.com/repos/filiphsps/discord-bot/languages","stargazers_url":"https://api.github.com/repos/filiphsps/discord-bot/stargazers","contributors_url":"https://api.github.com/repos/filiphsps/discord-bot/contributors","subscribers_url":"https://api.github.com/repos/filiphsps/discord-bot/subscribers","subscription_url":"https://api.github.com/repos/filiphsps/discord-bot/subscription","commits_url":"https://api.github.com/repos/filiphsps/discord-bot/commits{/sha}","git_commits_url":"https://api.github.com/repos/filiphsps/discord-bot/git/commits{/sha}","comments_url":"https://api.github.com/repos/filiphsps/discord-bot/comments{/number}","issue_comment_url":"https://api.github.com/repos/filiphsps/discord-bot/issues/comments{/number}","contents_url":"https://api.github.com/repos/filiphsps/discord-bot/contents/{+path}","compare_url":"https://api.github.com/repos/filiphsps/discord-bot/compare/{base}...{head}","merges_url":"https://api.github.com/repos/filiphsps/discord-bot/merges","archive_url":"https://api.github.com/repos/filiphsps/discord-bot/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/filiphsps/discord-bot/downloads","issues_url":"https://api.github.com/repos/filiphsps/discord-bot/issues{/number}","pulls_url":"https://api.github.com/repos/filiphsps/discord-bot/pulls{/number}","milestones_url":"https://api.github.com/repos/filiphsps/discord-bot/milestones{/number}","notifications_url":"https://api.github.com/repos/filiphsps/discord-bot/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/filiphsps/discord-bot/labels{/name}","releases_url":"https://api.github.com/repos/filiphsps/discord-bot/releases{/id}","deployments_url":"https://api.github.com/repos/filiphsps/discord-bot/deployments","created_at":"2022-11-03T09:59:53Z","updated_at":"2022-11-03T10:00:22Z","pushed_at":"2022-11-07T01:10:43Z","git_url":"git://github.com/filiphsps/discord-bot.git","ssh_url":"git@github.com:filiphsps/discord-bot.git","clone_url":"https://github.com/filiphsps/discord-bot.git","svn_url":"https://github.com/filiphsps/discord-bot","homepage":"","size":983,"stargazers_count":0,"watchers_count":0,"language":"TypeScript","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause","node_id":"MDc6TGljZW5zZTQ="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"SerenityOS:master","ref":"master","sha":"47652d0258f77f44b665c6a210e25b87fc0595bd","user":{"login":"SerenityOS","id":50811782,"node_id":"MDEyOk9yZ2FuaXphdGlvbjUwODExNzgy","avatar_url":"https://avatars.githubusercontent.com/u/50811782?v=4","gravatar_id":"","url":"https://api.github.com/users/SerenityOS","html_url":"https://github.com/SerenityOS","followers_url":"https://api.github.com/users/SerenityOS/followers","following_url":"https://api.github.com/users/SerenityOS/following{/other_user}","gists_url":"https://api.github.com/users/SerenityOS/gists{/gist_id}","starred_url":"https://api.github.com/users/SerenityOS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SerenityOS/subscriptions","organizations_url":"https://api.github.com/users/SerenityOS/orgs","repos_url":"https://api.github.com/users/SerenityOS/repos","events_url":"https://api.github.com/users/SerenityOS/events{/privacy}","received_events_url":"https://api.github.com/users/SerenityOS/received_events","type":"Organization","site_admin":false},"repo":{"id":361369680,"node_id":"MDEwOlJlcG9zaXRvcnkzNjEzNjk2ODA=","name":"discord-bot","full_name":"SerenityOS/discord-bot","private":false,"owner":{"login":"SerenityOS","id":50811782,"node_id":"MDEyOk9yZ2FuaXphdGlvbjUwODExNzgy","avatar_url":"https://avatars.githubusercontent.com/u/50811782?v=4","gravatar_id":"","url":"https://api.github.com/users/SerenityOS","html_url":"https://github.com/SerenityOS","followers_url":"https://api.github.com/users/SerenityOS/followers","following_url":"https://api.github.com/users/SerenityOS/following{/other_user}","gists_url":"https://api.github.com/users/SerenityOS/gists{/gist_id}","starred_url":"https://api.github.com/users/SerenityOS/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/SerenityOS/subscriptions","organizations_url":"https://api.github.com/users/SerenityOS/orgs","repos_url":"https://api.github.com/users/SerenityOS/repos","events_url":"https://api.github.com/users/SerenityOS/events{/privacy}","received_events_url":"https://api.github.com/users/SerenityOS/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/SerenityOS/discord-bot","description":"Discord Bot for the Serenity Operating System Community 🐞","fork":false,"url":"https://api.github.com/repos/SerenityOS/discord-bot","forks_url":"https://api.github.com/repos/SerenityOS/discord-bot/forks","keys_url":"https://api.github.com/repos/SerenityOS/discord-bot/keys{/key_id}","collaborators_url":"https://api.github.com/repos/SerenityOS/discord-bot/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/SerenityOS/discord-bot/teams","hooks_url":"https://api.github.com/repos/SerenityOS/discord-bot/hooks","issue_events_url":"https://api.github.com/repos/SerenityOS/discord-bot/issues/events{/number}","events_url":"https://api.github.com/repos/SerenityOS/discord-bot/events","assignees_url":"https://api.github.com/repos/SerenityOS/discord-bot/assignees{/user}","branches_url":"https://api.github.com/repos/SerenityOS/discord-bot/branches{/branch}","tags_url":"https://api.github.com/repos/SerenityOS/discord-bot/tags","blobs_url":"https://api.github.com/repos/SerenityOS/discord-bot/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/SerenityOS/discord-bot/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/SerenityOS/discord-bot/git/refs{/sha}","trees_url":"https://api.github.com/repos/SerenityOS/discord-bot/git/trees{/sha}","statuses_url":"https://api.github.com/repos/SerenityOS/discord-bot/statuses/{sha}","languages_url":"https://api.github.com/repos/SerenityOS/discord-bot/languages","stargazers_url":"https://api.github.com/repos/SerenityOS/discord-bot/stargazers","contributors_url":"https://api.github.com/repos/SerenityOS/discord-bot/contributors","subscribers_url":"https://api.github.com/repos/SerenityOS/discord-bot/subscribers","subscription_url":"https://api.github.com/repos/SerenityOS/discord-bot/subscription","commits_url":"https://api.github.com/repos/SerenityOS/discord-bot/commits{/sha}","git_commits_url":"https://api.github.com/repos/SerenityOS/discord-bot/git/commits{/sha}","comments_url":"https://api.github.com/repos/SerenityOS/discord-bot/comments{/number}","issue_comment_url":"https://api.github.com/repos/SerenityOS/discord-bot/issues/comments{/number}","contents_url":"https://api.github.com/repos/SerenityOS/discord-bot/contents/{+path}","compare_url":"https://api.github.com/repos/SerenityOS/discord-bot/compare/{base}...{head}","merges_url":"https://api.github.com/repos/SerenityOS/discord-bot/merges","archive_url":"https://api.github.com/repos/SerenityOS/discord-bot/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/SerenityOS/discord-bot/downloads","issues_url":"https://api.github.com/repos/SerenityOS/discord-bot/issues{/number}","pulls_url":"https://api.github.com/repos/SerenityOS/discord-bot/pulls{/number}","milestones_url":"https://api.github.com/repos/SerenityOS/discord-bot/milestones{/number}","notifications_url":"https://api.github.com/repos/SerenityOS/discord-bot/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/SerenityOS/discord-bot/labels{/name}","releases_url":"https://api.github.com/repos/SerenityOS/discord-bot/releases{/id}","deployments_url":"https://api.github.com/repos/SerenityOS/discord-bot/deployments","created_at":"2021-04-25T08:14:56Z","updated_at":"2022-11-05T20:03:38Z","pushed_at":"2022-11-07T01:14:02Z","git_url":"git://github.com/SerenityOS/discord-bot.git","ssh_url":"git@github.com:SerenityOS/discord-bot.git","clone_url":"https://github.com/SerenityOS/discord-bot.git","svn_url":"https://github.com/SerenityOS/discord-bot","homepage":"","size":1102,"stargazers_count":28,"watchers_count":28,"language":"TypeScript","has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":21,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":8,"license":{"key":"bsd-2-clause","name":"BSD 2-Clause \"Simplified\" License","spdx_id":"BSD-2-Clause","url":"https://api.github.com/licenses/bsd-2-clause","node_id":"MDc6TGljZW5zZTQ="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":["bot","discord-bot","hacktoberfest","serenity"],"visibility":"public","forks":21,"open_issues":8,"watchers":28,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711"},"html":{"href":"https://github.com/SerenityOS/discord-bot/pull/711"},"issue":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/issues/711"},"comments":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/issues/711/comments"},"review_comments":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711/comments"},"review_comment":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/pulls/711/commits"},"statuses":{"href":"https://api.github.com/repos/SerenityOS/discord-bot/statuses/01f07ec2d851b41e756a7a1d5af220f5078ba0a8"}},"author_association":"CONTRIBUTOR","auto_merge":null,"active_lock_reason":null}},"public":true,"created_at":"2022-11-07T03:00:00Z","org":{"id":50811782,"login":"SerenityOS","gravatar_id":"","url":"https://api.github.com/orgs/SerenityOS","avatar_url":"https://avatars.githubusercontent.com/u/50811782?"}} +{"id":"25061821900","type":"CreateEvent","actor":{"id":88118667,"login":"KidBourbon","display_login":"KidBourbon","gravatar_id":"","url":"https://api.github.com/users/KidBourbon","avatar_url":"https://avatars.githubusercontent.com/u/88118667?"},"repo":{"id":562683862,"name":"KidBourbon/bea-gift","url":"https://api.github.com/repos/KidBourbon/bea-gift"},"payload":{"ref":"main","ref_type":"branch","master_branch":"main","description":null,"pusher_type":"user"},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821904","type":"PushEvent","actor":{"id":41898282,"login":"github-actions[bot]","display_login":"github-actions","gravatar_id":"","url":"https://api.github.com/users/github-actions[bot]","avatar_url":"https://avatars.githubusercontent.com/u/41898282?"},"repo":{"id":510923468,"name":"felipelyra3/felipelyra3","url":"https://api.github.com/repos/felipelyra3/felipelyra3"},"payload":{"push_id":11572649892,"size":1,"distinct_size":1,"ref":"refs/heads/output","head":"5c2e11b7f4b60ad122840c78dd2dcf6eff8df4e7","before":"9aaafa9618302c27c1c8f9c72ac8e31420fa090f","commits":[{"sha":"5c2e11b7f4b60ad122840c78dd2dcf6eff8df4e7","author":{"email":"41898282+github-actions[bot]@users.noreply.github.com","name":"github-actions[bot]"},"message":"Deploy to GitHub pages","distinct":true,"url":"https://api.github.com/repos/felipelyra3/felipelyra3/commits/5c2e11b7f4b60ad122840c78dd2dcf6eff8df4e7"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821908","type":"PushEvent","actor":{"id":77421250,"login":"mikaelaslade","display_login":"mikaelaslade","gravatar_id":"","url":"https://api.github.com/users/mikaelaslade","avatar_url":"https://avatars.githubusercontent.com/u/77421250?"},"repo":{"id":340796783,"name":"mikaelaslade/LISportfolio","url":"https://api.github.com/repos/mikaelaslade/LISportfolio"},"payload":{"push_id":11572649889,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"6b3ae57fdc0d84ce460ad5f129852dd6ac54184a","before":"422be4b42334a83654d1f4e15e87c8a0da0e91c4","commits":[{"sha":"6b3ae57fdc0d84ce460ad5f129852dd6ac54184a","author":{"email":"77421250+mikaelaslade@users.noreply.github.com","name":"mikaelaslade"},"message":"Update outcome4c.md","distinct":true,"url":"https://api.github.com/repos/mikaelaslade/LISportfolio/commits/6b3ae57fdc0d84ce460ad5f129852dd6ac54184a"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821910","type":"PullRequestEvent","actor":{"id":49699333,"login":"dependabot[bot]","display_login":"dependabot","gravatar_id":"","url":"https://api.github.com/users/dependabot[bot]","avatar_url":"https://avatars.githubusercontent.com/u/49699333?"},"repo":{"id":530875030,"name":"girlsavenue/pancake-frontend","url":"https://api.github.com/repos/girlsavenue/pancake-frontend"},"payload":{"action":"opened","number":1,"pull_request":{"url":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/1","id":1112188324,"node_id":"PR_kwDOH6SCls5CSqWk","html_url":"https://github.com/girlsavenue/pancake-frontend/pull/1","diff_url":"https://github.com/girlsavenue/pancake-frontend/pull/1.diff","patch_url":"https://github.com/girlsavenue/pancake-frontend/pull/1.patch","issue_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/1","number":1,"state":"open","locked":false,"title":"chore(deps): bump follow-redirects from 1.14.7 to 1.15.2","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"body":"Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.7 to 1.15.2.\n
\nCommits\n
    \n
  • 9655237 Release version 1.15.2 of the npm package.
  • \n
  • 6e2b86d Default to localhost if no host given.
  • \n
  • 449e895 Throw invalid URL error on relative URLs.
  • \n
  • e30137c Use type functions.
  • \n
  • 76ea31f ternary operator syntax fix
  • \n
  • 84c00b0 HTTP header lines are separated by CRLF.
  • \n
  • d28bcbf Create SECURITY.md (#202)
  • \n
  • 62a551c Release version 1.15.1 of the npm package.
  • \n
  • 7fe0779 Use for ... of.
  • \n
  • 948c30c Fix redirecting to relative URL when using proxy
  • \n
  • Additional commits viewable in compare view
  • \n
\n
\n
\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=follow-redirects&package-manager=npm_and_yarn&previous-version=1.14.7&new-version=1.15.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/girlsavenue/pancake-frontend/network/alerts).\n\n
","created_at":"2022-11-07T02:59:59Z","updated_at":"2022-11-07T02:59:59Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/1/commits","review_comments_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/1/comments","review_comment_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/comments{/number}","comments_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/1/comments","statuses_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/statuses/6f4054ce39edbeb05eb785c3f06c4285a3a0ec41","head":{"label":"girlsavenue:dependabot/npm_and_yarn/follow-redirects-1.15.2","ref":"dependabot/npm_and_yarn/follow-redirects-1.15.2","sha":"6f4054ce39edbeb05eb785c3f06c4285a3a0ec41","user":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"repo":{"id":530875030,"node_id":"R_kgDOH6SClg","name":"pancake-frontend","full_name":"girlsavenue/pancake-frontend","private":false,"owner":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"html_url":"https://github.com/girlsavenue/pancake-frontend","description":":pancakes: Pancake main features (farms, pools, IFO, lottery, profiles)","fork":true,"url":"https://api.github.com/repos/girlsavenue/pancake-frontend","forks_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/forks","keys_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/teams","hooks_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/hooks","issue_events_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/events{/number}","events_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/events","assignees_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/assignees{/user}","branches_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/branches{/branch}","tags_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/tags","blobs_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/languages","stargazers_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/stargazers","contributors_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/contributors","subscribers_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/subscribers","subscription_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/subscription","commits_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/comments{/number}","contents_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/contents/{+path}","compare_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/merges","archive_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/downloads","issues_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues{/number}","pulls_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/labels{/name}","releases_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/releases{/id}","deployments_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/deployments","created_at":"2022-08-31T00:08:44Z","updated_at":"2022-08-30T14:19:59Z","pushed_at":"2022-11-07T03:00:00Z","git_url":"git://github.com/girlsavenue/pancake-frontend.git","ssh_url":"git@github.com:girlsavenue/pancake-frontend.git","clone_url":"https://github.com/girlsavenue/pancake-frontend.git","svn_url":"https://github.com/girlsavenue/pancake-frontend","homepage":"https://pancakeswap.finance","size":281250,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"base":{"label":"girlsavenue:develop","ref":"develop","sha":"52f333477dd15f39f41e25f593cd4f323a7c9c03","user":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"repo":{"id":530875030,"node_id":"R_kgDOH6SClg","name":"pancake-frontend","full_name":"girlsavenue/pancake-frontend","private":false,"owner":{"login":"girlsavenue","id":106947100,"node_id":"U_kgDOBl_iHA","avatar_url":"https://avatars.githubusercontent.com/u/106947100?v=4","gravatar_id":"","url":"https://api.github.com/users/girlsavenue","html_url":"https://github.com/girlsavenue","followers_url":"https://api.github.com/users/girlsavenue/followers","following_url":"https://api.github.com/users/girlsavenue/following{/other_user}","gists_url":"https://api.github.com/users/girlsavenue/gists{/gist_id}","starred_url":"https://api.github.com/users/girlsavenue/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/girlsavenue/subscriptions","organizations_url":"https://api.github.com/users/girlsavenue/orgs","repos_url":"https://api.github.com/users/girlsavenue/repos","events_url":"https://api.github.com/users/girlsavenue/events{/privacy}","received_events_url":"https://api.github.com/users/girlsavenue/received_events","type":"User","site_admin":false},"html_url":"https://github.com/girlsavenue/pancake-frontend","description":":pancakes: Pancake main features (farms, pools, IFO, lottery, profiles)","fork":true,"url":"https://api.github.com/repos/girlsavenue/pancake-frontend","forks_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/forks","keys_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/keys{/key_id}","collaborators_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/teams","hooks_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/hooks","issue_events_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/events{/number}","events_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/events","assignees_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/assignees{/user}","branches_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/branches{/branch}","tags_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/tags","blobs_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/refs{/sha}","trees_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/trees{/sha}","statuses_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/statuses/{sha}","languages_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/languages","stargazers_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/stargazers","contributors_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/contributors","subscribers_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/subscribers","subscription_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/subscription","commits_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/commits{/sha}","git_commits_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/git/commits{/sha}","comments_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/comments{/number}","issue_comment_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/comments{/number}","contents_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/contents/{+path}","compare_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/compare/{base}...{head}","merges_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/merges","archive_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/downloads","issues_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues{/number}","pulls_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls{/number}","milestones_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/milestones{/number}","notifications_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/labels{/name}","releases_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/releases{/id}","deployments_url":"https://api.github.com/repos/girlsavenue/pancake-frontend/deployments","created_at":"2022-08-31T00:08:44Z","updated_at":"2022-08-30T14:19:59Z","pushed_at":"2022-11-07T03:00:00Z","git_url":"git://github.com/girlsavenue/pancake-frontend.git","ssh_url":"git@github.com:girlsavenue/pancake-frontend.git","clone_url":"https://github.com/girlsavenue/pancake-frontend.git","svn_url":"https://github.com/girlsavenue/pancake-frontend","homepage":"https://pancakeswap.finance","size":281250,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":1,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"topics":[],"visibility":"public","forks":0,"open_issues":1,"watchers":0,"default_branch":"develop"}},"_links":{"self":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/1"},"html":{"href":"https://github.com/girlsavenue/pancake-frontend/pull/1"},"issue":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/1"},"comments":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/1/comments"},"review_comment":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/pulls/1/commits"},"statuses":{"href":"https://api.github.com/repos/girlsavenue/pancake-frontend/statuses/6f4054ce39edbeb05eb785c3f06c4285a3a0ec41"}},"author_association":"NONE","auto_merge":null,"active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":3,"deletions":3,"changed_files":1}},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821916","type":"PushEvent","actor":{"id":14532444,"login":"onirosd","display_login":"onirosd","gravatar_id":"","url":"https://api.github.com/users/onirosd","avatar_url":"https://avatars.githubusercontent.com/u/14532444?"},"repo":{"id":562681613,"name":"onirosd/appdirektor","url":"https://api.github.com/repos/onirosd/appdirektor"},"payload":{"push_id":11572649891,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"8182bbf8c643daedbd5ed9219cb7ab2d81ab2616","before":"54ae4238e455326ada3478dcc81a429a98ad4e72","commits":[{"sha":"8182bbf8c643daedbd5ed9219cb7ab2d81ab2616","author":{"email":"diegowarthon1190@gmail.com","name":"onirosd"},"message":"first","distinct":true,"url":"https://api.github.com/repos/onirosd/appdirektor/commits/8182bbf8c643daedbd5ed9219cb7ab2d81ab2616"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821923","type":"CreateEvent","actor":{"id":49699333,"login":"dependabot[bot]","display_login":"dependabot","gravatar_id":"","url":"https://api.github.com/users/dependabot[bot]","avatar_url":"https://avatars.githubusercontent.com/u/49699333?"},"repo":{"id":240446072,"name":"AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia","url":"https://api.github.com/repos/AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia"},"payload":{"ref":"dependabot/npm_and_yarn/minimatch-and-ionic/v1-toolkit-and-gulp-3.0.4","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"},"public":true,"created_at":"2022-11-07T03:00:00Z"} +{"id":"25061821927","type":"PushEvent","actor":{"id":40018936,"login":"ramachandrasai7","display_login":"ramachandrasai7","gravatar_id":"","url":"https://api.github.com/users/ramachandrasai7","avatar_url":"https://avatars.githubusercontent.com/u/40018936?"},"repo":{"id":561944721,"name":"disha4u/CSE564-Assignment3","url":"https://api.github.com/repos/disha4u/CSE564-Assignment3"},"payload":{"push_id":11572649905,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"2d9fbe9df4f6312004e77859b4aa0efbb8e5a454","before":"e1d861513d3c35b801fc4d97db86fc3246683e01","commits":[{"sha":"2d9fbe9df4f6312004e77859b4aa0efbb8e5a454","author":{"email":"40018936+ramachandrasai7@users.noreply.github.com","name":"ramachandrasai7"},"message":"Dec Obs Single","distinct":true,"url":"https://api.github.com/repos/disha4u/CSE564-Assignment3/commits/2d9fbe9df4f6312004e77859b4aa0efbb8e5a454"}]},"public":true,"created_at":"2022-11-07T03:00:00Z"} \ No newline at end of file diff --git a/regression-test/data/nereids_rules_p0/mv/variant/variant_mv.out b/regression-test/data/nereids_rules_p0/mv/variant/variant_mv.out new file mode 100644 index 00000000000000..42400ca6276d7c --- /dev/null +++ b/regression-test/data/nereids_rules_p0/mv/variant/variant_mv.out @@ -0,0 +1,877 @@ +-- This file is automatically generated. You should know what you did if you want to edit this +-- !query1_0_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821908 PushEvent 77421350 mikaelaslade \N + +-- !query1_0_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821908 PushEvent 77421350 mikaelaslade \N + +-- !query1_1_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot 1112188316 +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions 1094454737 +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 1112187441 +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821825 PushEvent 34259389 simonxin \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg 1112188326 +25061821874 PushEvent 97817772 alawrence30 \N +25061821880 PushEvent 29478870 Tanimodori \N +25061821893 PullRequestReviewEvent 108444435 filiphsps 1112140494 +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot 1112188324 +25061821916 PushEvent 14532544 onirosd \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query1_1_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot 1112188316 +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions 1094454737 +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 1112187441 +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821825 PushEvent 34259389 simonxin \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg 1112188326 +25061821874 PushEvent 97817772 alawrence30 \N +25061821880 PushEvent 29478870 Tanimodori \N +25061821893 PullRequestReviewEvent 108444435 filiphsps 1112140494 +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot 1112188324 +25061821916 PushEvent 14532544 onirosd \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query1_2_before -- +25061821745 PushEvent 99616694 \N +25061821748 PushEvent 98024458 \N +25061821752 PullRequestEvent 49699433 1112188316 +25061821761 CreateEvent 114388403 \N +25061821772 PushEvent 62139223 \N +25061821783 PushEvent 113555710 \N +25061821788 CreateEvent 49699433 \N +25061821791 PullRequestEvent 41898382 1094454737 +25061821797 PullRequestReviewEvent 114601337 1112187441 +25061821803 CreateEvent 74837452 \N +25061821806 PushEvent 102448538 \N +25061821810 PushEvent 41898382 \N +25061821814 PushEvent 41898382 \N +25061821817 ForkEvent 45201968 \N +25061821824 CreateEvent 110168374 \N +25061821825 PushEvent 34259389 \N +25061821843 PushEvent 73926467 \N +25061821852 PullRequestEvent 98024458 1112188326 +25061821874 PushEvent 97817772 \N +25061821880 PushEvent 29478870 \N +25061821893 PullRequestReviewEvent 108444435 1112140494 +25061821900 CreateEvent 88118767 \N +25061821904 PushEvent 41898382 \N +25061821908 PushEvent 77421350 \N +25061821910 PullRequestEvent 49699433 1112188324 +25061821916 PushEvent 14532544 \N +25061821923 CreateEvent 49699433 \N +25061821927 PushEvent 40019036 \N + +-- !query1_2_after -- +25061821745 PushEvent 99616694 \N +25061821748 PushEvent 98024458 \N +25061821752 PullRequestEvent 49699433 1112188316 +25061821761 CreateEvent 114388403 \N +25061821772 PushEvent 62139223 \N +25061821783 PushEvent 113555710 \N +25061821788 CreateEvent 49699433 \N +25061821791 PullRequestEvent 41898382 1094454737 +25061821797 PullRequestReviewEvent 114601337 1112187441 +25061821803 CreateEvent 74837452 \N +25061821806 PushEvent 102448538 \N +25061821810 PushEvent 41898382 \N +25061821814 PushEvent 41898382 \N +25061821817 ForkEvent 45201968 \N +25061821824 CreateEvent 110168374 \N +25061821825 PushEvent 34259389 \N +25061821843 PushEvent 73926467 \N +25061821852 PullRequestEvent 98024458 1112188326 +25061821874 PushEvent 97817772 \N +25061821880 PushEvent 29478870 \N +25061821893 PullRequestReviewEvent 108444435 1112140494 +25061821900 CreateEvent 88118767 \N +25061821904 PushEvent 41898382 \N +25061821908 PushEvent 77421350 \N +25061821910 PullRequestEvent 49699433 1112188324 +25061821916 PushEvent 14532544 \N +25061821923 CreateEvent 49699433 \N +25061821927 PushEvent 40019036 \N + +-- !query1_3_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821908 PushEvent 77421350 mikaelaslade \N + +-- !query1_3_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821908 PushEvent 77421350 mikaelaslade \N + +-- !query1_4_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821908 PushEvent 77421350 mikaelaslade \N + +-- !query1_4_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821908 PushEvent 77421350 mikaelaslade \N + +-- !query2_0_before -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_0_after -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_1_before -- +25061821745 anmarinur/E-commerce-PF 1 99616694 +25061821748 jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 girlsavenue/trusteeWallet 1 49699433 +25061821761 nicolas-brement/fansite 1 114388403 +25061821772 betonucon/hrcweb 1 62139223 +25061821783 proxylist-to/proxy-list 1 113555710 +25061821788 girlsavenue/asciinema 1 49699433 +25061821791 pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 goodstudy2022327/personPic 1 102448538 +25061821810 sebbourgeois/sebbourgeois 1 41898382 +25061821814 rvaughan/weather-data 1 41898382 +25061821817 ethz-asl/sl_sensor 1 45201968 +25061821824 itigoame/sample-AI 1 110168374 +25061821843 armenfesliyan/seatpsychology 1 73926467 +25061821852 jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 alawrence30/Deep-Learning 1 97817772 +25061821893 SerenityOS/discord-bot 1 108444435 +25061821900 KidBourbon/bea-gift 1 88118767 +25061821904 felipelyra3/felipelyra3 1 41898382 +25061821908 mikaelaslade/LISportfolio 1 77421350 +25061821910 girlsavenue/pancake-frontend 1 49699433 +25061821923 AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_1_after -- +25061821745 anmarinur/E-commerce-PF 1 99616694 +25061821748 jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 girlsavenue/trusteeWallet 1 49699433 +25061821761 nicolas-brement/fansite 1 114388403 +25061821772 betonucon/hrcweb 1 62139223 +25061821783 proxylist-to/proxy-list 1 113555710 +25061821788 girlsavenue/asciinema 1 49699433 +25061821791 pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 goodstudy2022327/personPic 1 102448538 +25061821810 sebbourgeois/sebbourgeois 1 41898382 +25061821814 rvaughan/weather-data 1 41898382 +25061821817 ethz-asl/sl_sensor 1 45201968 +25061821824 itigoame/sample-AI 1 110168374 +25061821843 armenfesliyan/seatpsychology 1 73926467 +25061821852 jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 alawrence30/Deep-Learning 1 97817772 +25061821893 SerenityOS/discord-bot 1 108444435 +25061821900 KidBourbon/bea-gift 1 88118767 +25061821904 felipelyra3/felipelyra3 1 41898382 +25061821908 mikaelaslade/LISportfolio 1 77421350 +25061821910 girlsavenue/pancake-frontend 1 49699433 +25061821923 AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_2_before -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_2_after -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_3_before -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_3_after -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_4_before -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query2_4_after -- +25061821745 PushEvent anmarinur/E-commerce-PF 1 99616694 +25061821748 PushEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821752 PullRequestEvent girlsavenue/trusteeWallet 1 49699433 +25061821761 CreateEvent nicolas-brement/fansite 1 114388403 +25061821772 PushEvent betonucon/hrcweb 1 62139223 +25061821783 PushEvent proxylist-to/proxy-list 1 113555710 +25061821788 CreateEvent girlsavenue/asciinema 1 49699433 +25061821791 PullRequestEvent pepperize/cdk-serverless-cluster-from-snapshot 1 41898382 +25061821797 PullRequestReviewEvent AndreaCastanoS/my-tinerary-ctrl-devs 1 114601337 +25061821803 CreateEvent RodrigoNOliveira/padraoComposite 1 74837452 +25061821806 PushEvent goodstudy2022327/personPic 1 102448538 +25061821810 PushEvent sebbourgeois/sebbourgeois 1 41898382 +25061821814 PushEvent rvaughan/weather-data 1 41898382 +25061821817 ForkEvent ethz-asl/sl_sensor 1 45201968 +25061821824 CreateEvent itigoame/sample-AI 1 110168374 +25061821843 PushEvent armenfesliyan/seatpsychology 1 73926467 +25061821852 PullRequestEvent jfrog-pipelie-intg/jfinte2e_1667789956723_16 1 98024458 +25061821874 PushEvent alawrence30/Deep-Learning 1 97817772 +25061821893 PullRequestReviewEvent SerenityOS/discord-bot 1 108444435 +25061821900 CreateEvent KidBourbon/bea-gift 1 88118767 +25061821904 PushEvent felipelyra3/felipelyra3 1 41898382 +25061821908 PushEvent mikaelaslade/LISportfolio 1 77421350 +25061821910 PullRequestEvent girlsavenue/pancake-frontend 1 49699433 +25061821923 CreateEvent AdamariMosqueda/P05.Mosqueda-Espinoza-Adamari-Antonia 1 49699433 +25061821927 PushEvent disha4u/CSE564-Assignment3 1 40019036 + +-- !query3_0_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_0_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_5_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_5_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_1_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot 1112188316 +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions 1094454737 +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 1112187441 +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821825 PushEvent 34259389 simonxin \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg 1112188326 +25061821874 PushEvent 97817772 alawrence30 \N +25061821880 PushEvent 29478870 Tanimodori \N +25061821893 PullRequestReviewEvent 108444435 filiphsps 1112140494 +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot 1112188324 +25061821916 PushEvent 14532544 onirosd \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_1_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot 1112188316 +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions 1094454737 +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 1112187441 +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821825 PushEvent 34259389 simonxin \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg 1112188326 +25061821874 PushEvent 97817772 alawrence30 \N +25061821880 PushEvent 29478870 Tanimodori \N +25061821893 PullRequestReviewEvent 108444435 filiphsps 1112140494 +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot 1112188324 +25061821916 PushEvent 14532544 onirosd \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_2_before -- +25061821745 PushEvent 99616694 \N +25061821748 PushEvent 98024458 \N +25061821752 PullRequestEvent 49699433 1112188316 +25061821761 CreateEvent 114388403 \N +25061821772 PushEvent 62139223 \N +25061821783 PushEvent 113555710 \N +25061821788 CreateEvent 49699433 \N +25061821791 PullRequestEvent 41898382 1094454737 +25061821797 PullRequestReviewEvent 114601337 1112187441 +25061821803 CreateEvent 74837452 \N +25061821806 PushEvent 102448538 \N +25061821810 PushEvent 41898382 \N +25061821814 PushEvent 41898382 \N +25061821817 ForkEvent 45201968 \N +25061821824 CreateEvent 110168374 \N +25061821825 PushEvent 34259389 \N +25061821843 PushEvent 73926467 \N +25061821852 PullRequestEvent 98024458 1112188326 +25061821874 PushEvent 97817772 \N +25061821880 PushEvent 29478870 \N +25061821893 PullRequestReviewEvent 108444435 1112140494 +25061821900 CreateEvent 88118767 \N +25061821904 PushEvent 41898382 \N +25061821908 PushEvent 77421350 \N +25061821910 PullRequestEvent 49699433 1112188324 +25061821916 PushEvent 14532544 \N +25061821923 CreateEvent 49699433 \N +25061821927 PushEvent 40019036 \N + +-- !query3_2_after -- +25061821745 PushEvent 99616694 \N +25061821748 PushEvent 98024458 \N +25061821752 PullRequestEvent 49699433 1112188316 +25061821761 CreateEvent 114388403 \N +25061821772 PushEvent 62139223 \N +25061821783 PushEvent 113555710 \N +25061821788 CreateEvent 49699433 \N +25061821791 PullRequestEvent 41898382 1094454737 +25061821797 PullRequestReviewEvent 114601337 1112187441 +25061821803 CreateEvent 74837452 \N +25061821806 PushEvent 102448538 \N +25061821810 PushEvent 41898382 \N +25061821814 PushEvent 41898382 \N +25061821817 ForkEvent 45201968 \N +25061821824 CreateEvent 110168374 \N +25061821825 PushEvent 34259389 \N +25061821843 PushEvent 73926467 \N +25061821852 PullRequestEvent 98024458 1112188326 +25061821874 PushEvent 97817772 \N +25061821880 PushEvent 29478870 \N +25061821893 PullRequestReviewEvent 108444435 1112140494 +25061821900 CreateEvent 88118767 \N +25061821904 PushEvent 41898382 \N +25061821908 PushEvent 77421350 \N +25061821910 PullRequestEvent 49699433 1112188324 +25061821916 PushEvent 14532544 \N +25061821923 CreateEvent 49699433 \N +25061821927 PushEvent 40019036 \N + +-- !query3_3_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_3_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_4_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_4_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_6_before -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + +-- !query3_6_after -- +25061821745 PushEvent 99616694 nahuel3223 \N +25061821748 PushEvent 98024458 jfrog-pipelie-intg \N +25061821752 PullRequestEvent 49699433 dependabot \N +25061821761 CreateEvent 114388403 nicolas-brement \N +25061821772 PushEvent 62139223 betonucon \N +25061821783 PushEvent 113555710 proxylist-to-bot \N +25061821788 CreateEvent 49699433 dependabot \N +25061821791 PullRequestEvent 41898382 github-actions \N +25061821797 PullRequestReviewEvent 114601337 AntonellaTortoza18 \N +25061821803 CreateEvent 74837452 RodrigoNOliveira \N +25061821806 PushEvent 102448538 goodstudy2022327 \N +25061821810 PushEvent 41898382 github-actions \N +25061821814 PushEvent 41898382 github-actions \N +25061821817 ForkEvent 45201968 ZhxJia \N +25061821824 CreateEvent 110168374 itigoame \N +25061821843 PushEvent 73926467 armenfesliyan \N +25061821852 PullRequestEvent 98024458 jfrog-pipelie-intg \N +25061821874 PushEvent 97817772 alawrence30 \N +25061821893 PullRequestReviewEvent 108444435 filiphsps \N +25061821900 CreateEvent 88118767 KidBourbon \N +25061821904 PushEvent 41898382 github-actions \N +25061821908 PushEvent 77421350 mikaelaslade \N +25061821910 PullRequestEvent 49699433 dependabot \N +25061821923 CreateEvent 49699433 dependabot \N +25061821927 PushEvent 40019036 ramachandrasai7 \N + diff --git a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy index a964996c2366b6..4d5127b8644496 100644 --- a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy +++ b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy @@ -1475,6 +1475,29 @@ class Suite implements GroovyInterceptable { } } + def check_mv_rewrite_success_without_check_chosen = { db, mv_sql, query_sql, mv_name -> + + sql """DROP MATERIALIZED VIEW IF EXISTS ${mv_name}""" + sql""" + CREATE MATERIALIZED VIEW ${mv_name} + BUILD IMMEDIATE REFRESH COMPLETE ON MANUAL + DISTRIBUTED BY RANDOM BUCKETS 2 + PROPERTIES ('replication_num' = '1') + AS ${mv_sql} + """ + + def job_name = getJobName(db, mv_name); + waitingMTMVTaskFinished(job_name) + explain { + sql("${query_sql}") + check {result -> + def splitResult = result.split("MaterializedViewRewriteFail") + splitResult.length == 2 ? splitResult[0].contains(mv_name) : false + } + } + } + + def check_mv_rewrite_fail = { db, mv_sql, query_sql, mv_name -> sql """DROP MATERIALIZED VIEW IF EXISTS ${mv_name}""" diff --git a/regression-test/suites/nereids_rules_p0/mv/agg_without_roll_up/aggregate_without_roll_up.groovy b/regression-test/suites/nereids_rules_p0/mv/agg_without_roll_up/aggregate_without_roll_up.groovy index ab05d36939dcd2..d9607a98998eaf 100644 --- a/regression-test/suites/nereids_rules_p0/mv/agg_without_roll_up/aggregate_without_roll_up.groovy +++ b/regression-test/suites/nereids_rules_p0/mv/agg_without_roll_up/aggregate_without_roll_up.groovy @@ -144,18 +144,20 @@ suite("aggregate_without_roll_up") { "group by " + "o_shippriority, " + "o_comment " - def query1_0 = "select o_shippriority, o_comment, " + - "count(distinct case when o_shippriority > 1 and o_orderkey IN (1, 3) then o_custkey else null end) as cnt_1, " + - "count(distinct case when O_SHIPPRIORITY > 2 and o_orderkey IN (2) then o_custkey else null end) as cnt_2, " + - "sum(o_totalprice), " + - "max(o_totalprice), " + - "min(o_totalprice), " + - "count(*) " + - "from orders " + - "where o_shippriority in (1, 2)" + - "group by " + - "o_shippriority, " + - "o_comment " + def query1_0 = """ + select o_shippriority, o_comment, + count(distinct case when o_shippriority > 1 and o_orderkey IN (1, 3) then o_custkey else null end) as cnt_1, + count(distinct case when O_SHIPPRIORITY > 2 and o_orderkey IN (2) then o_custkey else null end) as cnt_2, + sum(o_totalprice), + max(o_totalprice), + min(o_totalprice), + count(*) + from orders + where o_shippriority in (1, 2) + group by + o_shippriority, + o_comment; + """ order_qt_query1_0_before "${query1_0}" check_mv_rewrite_success(db, mv1_0, query1_0, "mv1_0") order_qt_query1_0_after "${query1_0}" diff --git a/regression-test/suites/nereids_rules_p0/mv/variant/variant_mv.groovy b/regression-test/suites/nereids_rules_p0/mv/variant/variant_mv.groovy new file mode 100644 index 00000000000000..b1c4d371dbb101 --- /dev/null +++ b/regression-test/suites/nereids_rules_p0/mv/variant/variant_mv.groovy @@ -0,0 +1,591 @@ +package mv.variant +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. + +suite("variant_mv") { + String db = context.config.getDbNameByFile(context.file) + sql "use ${db}" + sql "set runtime_filter_mode=OFF"; + sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'" + sql "SET enable_agg_state = true" + + sql """ + drop table if exists github_events1 + """ + + sql """ + CREATE TABLE IF NOT EXISTS github_events1 ( + id BIGINT NOT NULL, + type VARCHAR(30) NULL, + actor VARIANT NULL, + repo VARIANT NULL, + payload VARIANT NULL, + public BOOLEAN NULL, + created_at DATETIME NULL, + INDEX idx_payload (`payload`) USING INVERTED PROPERTIES("parser" = "english") COMMENT 'inverted index for payload' + ) + DUPLICATE KEY(`id`) + DISTRIBUTED BY HASH(id) BUCKETS 10 + properties("replication_num" = "1"); + """ + + sql """ + drop table if exists github_events2 + """ + + sql """ + CREATE TABLE IF NOT EXISTS github_events2 ( + id BIGINT NOT NULL, + type VARCHAR(30) NULL, + actor VARIANT NULL, + repo VARIANT NULL, + payload VARIANT NULL, + public BOOLEAN NULL, + created_at DATETIME NULL, + INDEX idx_payload (`payload`) USING INVERTED PROPERTIES("parser" = "english") COMMENT 'inverted index for payload' + ) + DUPLICATE KEY(`id`) + DISTRIBUTED BY HASH(id) BUCKETS 10 + properties("replication_num" = "1"); + """ + + streamLoad { + table "github_events1" + set 'columns', 'id, type, actor, repo, payload, public, created_at' + set 'format', 'json' + set 'read_json_by_line', 'true' + set 'strip_outer_array', 'false' + file context.config.dataPath + "/nereids_rules_p0/mv/variant/variant_data.json" + time 10000 + } + + streamLoad { + table "github_events2" + set 'read_json_by_line', 'true' + set 'format', 'json' + set 'columns', 'id, type, actor, repo, payload, public, created_at' + set 'strip_outer_array', 'false' + file context.config.dataPath + "/nereids_rules_p0/mv/variant/variant_data.json" + time 10000 // limit inflight 10s + } + + sql "sync" + sql """analyze table github_events1 with sync;""" + sql """analyze table github_events2 with sync;""" + + // variant appear in where both slot and in expression + def mv1_0 = """ + SELECT + id, + type, + actor, + payload, + payload['issue'] + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000; + """ + def query1_0 = """ + SELECT + id, + type, + floor(cast(actor['id'] as int) + 100.5), + actor['display_login'], + payload['issue']['href'] + FROM github_events1 + where actor['id'] > 64259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000; + """ + order_qt_query1_0_before "${query1_0}" + check_mv_rewrite_success(db, mv1_0, query1_0, "mv1_0") + order_qt_query1_0_after "${query1_0}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv1_0""" + + + def mv1_1 = """ + SELECT + id, + type, + actor, + payload, + payload['pull_request'] + FROM github_events1; + """ + def query1_1 = """ + SELECT + id, + type, + floor(cast(actor['id'] as int) + 100.5), + actor['display_login'], + payload['pull_request']['id'] + FROM github_events1 + """ + order_qt_query1_1_before "${query1_1}" + check_mv_rewrite_success(db, mv1_1, query1_1, "mv1_1") + order_qt_query1_1_after "${query1_1}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv1_1""" + + // floor expression is different, should fail + def mv1_2 = """ + SELECT + id, + type, + floor(cast(actor['id'] as int) + 200.5), + payload, + payload['pull_request'] + FROM github_events1; + """ + def query1_2 = """ + SELECT + id, + type, + floor(cast(actor['id'] as int) + 100.5), + payload['pull_request']['id'] + FROM github_events1; + """ + order_qt_query1_2_before "${query1_2}" + // the expression floor(cast(actor['id'] as int) + 200.5) in query and view is different + check_mv_rewrite_fail(db, mv1_2, query1_2, "mv1_2") + order_qt_query1_2_after "${query1_2}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv1_2""" + + def mv1_3 = """ + SELECT + id, + type, + actor['type'], + payload, + payload['issue'] + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000; + """ + def query1_3 = """ + SELECT + id, + type, + floor(cast(actor['id'] as int) + 100.5), + actor['display_login'], + payload['issue']['href'] + FROM github_events1 + where actor['id'] > 64259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000; + """ + order_qt_query1_3_before "${query1_3}" + // the query repo['id'] expression in compensatory filter is not in mv + check_mv_rewrite_fail(db, mv1_3, query1_3, "mv1_3") + order_qt_query1_3_after "${query1_3}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv1_3""" + + + def mv1_4 = """ + SELECT + id, + type, + actor, + repo['id'], + payload, + payload['issue'] + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000; + """ + def query1_4 = """ + SELECT + id, + type, + floor(cast(actor['id'] as int) + 100.5), + actor['display_login'], + payload['issue']['href'] + FROM github_events1 + where actor['id'] > 64259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000; + """ + order_qt_query1_4_before "${query1_4}" + check_mv_rewrite_success(db, mv1_4, query1_4, "mv1_4") + order_qt_query1_4_after "${query1_4}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv1_4""" + + + // variant appear in agg both slot and in expression + // not roll up + def mv2_0 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)); + """ + def query2_0 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)); + """ + order_qt_query2_0_before "${query2_0}" + check_mv_rewrite_success(db, mv2_0, query2_0, "mv2_0") + order_qt_query2_0_after "${query2_0}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv2_0""" + + + // roll up + def mv2_1 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)); + """ + def query2_1 = """ + SELECT + id, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + cast(repo['name'] as varchar(100)); + """ + order_qt_query2_1_before "${query2_1}" + check_mv_rewrite_success(db, mv2_1, query2_1, "mv2_1") + order_qt_query2_1_after "${query2_1}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv2_1""" + + + def mv2_2 = """ + SELECT + id, + type, + cast(repo as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo as varchar(100)); + """ + def query2_2 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)); + """ + order_qt_query2_2_before "${query2_2}" + // cast(repo) expression is different, should fail + check_mv_rewrite_fail(db, mv2_2, query2_2, "mv2_2") + order_qt_query2_2_after "${query2_2}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv2_2""" + + + def mv2_3 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(actor['id'] as int), + cast(repo['name'] as varchar(100)); + """ + def query2_3 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where cast(actor['id'] as int) > 34259300 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)); + """ + order_qt_query2_3_before "${query2_3}" + // compensatory filter (actor['id'] is not in mv output should fail + check_mv_rewrite_fail(db, mv2_3, query2_3, "mv2_3") + order_qt_query2_3_after "${query2_3}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv2_3""" + + + def mv2_4 = """ + SELECT + id, + type, + cast(actor['id'] as int), + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where actor['id'] > 34259289 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)), + cast(actor['id'] as int); + """ + def query2_4 = """ + SELECT + id, + type, + cast(repo['name'] as varchar(100)), + count(*), + max(floor(cast(actor['id'] as int) + 100.5)) + FROM github_events1 + where cast(actor['id'] as int) > 34259300 and cast(actor['id'] as int) + cast(repo['id'] as int) > 80000000 + group by + id, + type, + cast(repo['name'] as varchar(100)); + """ + order_qt_query2_4_before "${query2_4}" + check_mv_rewrite_success_without_check_chosen(db, mv2_4, query2_4, "mv2_4") + order_qt_query2_4_after "${query2_4}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv2_4""" + + + // variant appear in join both slot and in expression + def mv3_0 = """ + SELECT + g1.id, + g2.type, + g1.actor, + g2.payload, + g1.payload['issue'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259289 and cast(g1.actor['id'] as int) + cast(g2.repo['id'] as int) > 80000000; + """ + def query3_0 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.actor['display_login'], + g2.payload['issue']['href'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259289 and cast(g1.actor['id'] as int) + cast(g2.repo['id'] as int) > 80000000; + """ + order_qt_query3_0_before "${query3_0}" + // condition in join other conjuects is not supported now, suppport later +// check_mv_rewrite_success(db, mv3_0, query3_0, "mv3_0") + order_qt_query3_0_after "${query3_0}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_0""" + + + def mv3_5 = """ + SELECT + g1.id, + g2.type, + g1.actor, + g2.actor as actor_g2, + g2.payload, + g1.payload['issue'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259289; + """ + def query3_5 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.actor['display_login'], + g2.payload['issue']['href'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259300; + """ + order_qt_query3_5_before "${query3_5}" + check_mv_rewrite_success(db, mv3_5, query3_5, "mv3_5") + order_qt_query3_5_after "${query3_5}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_5""" + + + def mv3_1 = """ + SELECT + g1.id, + g2.type, + g1.actor, + g2.payload, + g1.payload['pull_request'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id; + """ + def query3_1 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.actor['display_login'], + g1.payload['pull_request']['id'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id; + """ + order_qt_query3_1_before "${query3_1}" + check_mv_rewrite_success(db, mv3_1, query3_1, "mv3_1") + order_qt_query3_1_after "${query3_1}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_1""" + + + def mv3_2 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 200.5), + g1.payload['pull_request'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id; + """ + def query3_2 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.payload['pull_request']['id'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id; + """ + order_qt_query3_2_before "${query3_2}" + // floor expression is different, should fail + check_mv_rewrite_fail(db, mv3_2, query3_2, "mv3_2") + order_qt_query3_2_after "${query3_2}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_2""" + + + def mv3_3 = """ + SELECT + g1.id, + g2.type, + g1.actor, + g2.payload, + g1.payload['issue'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259289 and cast(g1.actor['id'] as int) + cast(g2.repo['id'] as int) > 80000000; + """ + def query3_3 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.actor['display_login'], + g2.payload['issue']['href'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259300 and cast(g1.actor['id'] as int) + cast(g2.repo['id'] as int) > 80000000; + """ + order_qt_query3_3_before "${query3_3}" + // the query g2.actor['id'] expression in compensatory filter is not in mv + check_mv_rewrite_fail(db, mv3_3, query3_3, "mv3_3") + order_qt_query3_3_after "${query3_3}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_3""" + + + def mv3_4 = """ + SELECT + g1.id, + g2.type, + g1.actor, + g2.payload, + g2.actor['id'], + g1.payload['issue'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259289 and cast(g1.actor['id'] as int) + cast(g2.repo['id'] as int) > 80000000; + """ + def query3_4 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.actor['display_login'], + g2.payload['issue']['href'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259300 and cast(g1.actor['id'] as int) + cast(g2.repo['id'] as int) > 80000000; + """ + order_qt_query3_4_before "${query3_4}" + // condition in join other conjuects is not supported now, suppport later +// check_mv_rewrite_success(db, mv3_4, query3_4, "mv3_4") + order_qt_query3_4_after "${query3_4}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_4""" + + + def mv3_6 = """ + SELECT + g1.id, + g2.type, + g1.actor, + g2.payload, + g1.actor['id'], + g1.payload['issue'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259289; + """ + def query3_6 = """ + SELECT + g1.id, + g2.type, + floor(cast(g1.actor['id'] as int) + 100.5), + g1.actor['display_login'], + g2.payload['issue']['href'] + FROM github_events1 g1 + left join github_events2 g2 on g1.id = g2.id + where g2.actor['id'] > 34259300; + """ + order_qt_query3_6_before "${query3_6}" + // should success, should enable in future + check_mv_rewrite_fail(db, mv3_6, query3_6, "mv3_6") + order_qt_query3_6_after "${query3_6}" + sql """ DROP MATERIALIZED VIEW IF EXISTS mv3_6""" +}