jashkenas/backbone 27784
Give your JS App some Backbone with Models, Views, Collections, and Events
jashkenas/underscore 25984
JavaScript's utility _ belt
knex/knex 14284
A query builder for PostgreSQL, MySQL and SQLite3, designed to be flexible, portable, and fun to use.
graphql-nexus/nexus 2403
Code-First, Type-Safe, GraphQL Schema Construction
graphile/starter 1162
Opinionated SaaS quick-start with pre-built user account and organization system for full-stack application development in React, Node.js, GraphQL and PostgreSQL. Powered by PostGraphile, TypeScript, Apollo Client, Graphile Worker, Graphile Migrate, GraphQL Code Generator, Ant Design and Next.js
graphql-nexus/nexus-plugin-prisma 782
A plugin for Nexus that integrates Prisma
myndzi/pool2 38
tgriesser/backbone-multi-router 10
Enable independent Routers which each match one or more routes for the current url fragment.
Simple handling of nested Backbone views
PR opened knex/documentation
Hi,
The query documentation states that conflict merge works for batch insert too, but the example is not quite right.
This is the current example
knex('tableName')
.insert(
{ email: "[email protected]", name: "John Doe" },
{ email: "[email protected]", name: "Jane Doe" },
{ email: "[email protected]", name: "Alex Doe" },
)
.onConflict('email')
.merge()
outputs sql for a single insert:
insert into `tableName` (`email`, `name`) values ('[email protected]', 'John Doe') on duplicate key update `email` = values(`email`), `name` = values(`name`)
A better example would have been (note the array of inserted objects):
knex('tableName')
.insert([
{ email: "[email protected]", name: "John Doe" },
{ email: "[email protected]", name: "Jane Doe" },
{ email: "[email protected]", name: "Alex Doe" },
])
.onConflict('email')
.merge()
which gives the intended sql
insert into `tableName` (`email`, `name`) values ('[email protected]', 'John Doe'), ('[email protected]', 'Jane Doe'), ('[email protected]', 'Alex Doe') on duplicate key update `email` = values(`email`), `name` = values(`name`)
pr created time in an hour
pull request commentgraphql/graphql-wg
Draft: Guidelines for speaking on behalf of the project
It's my preference (and that of all of my friends I've discussed this with) that the GraphQL Foundation remains politically neutral.
If we implement this mechanism of having the TSC vote on proposals to add political messaging to GraphQL Foundation projects, at least there should be a requirement that proposals include the time and mechanism the messaging is to be removed. Otherwise we will be stuck with a growing list of political statements forever, as with virtue-signaling and cancel culture at fever pitch, no one will want to be the person to stick their neck out and eventually remove it. Most of the worlds problems won't be solved quickly, if ever.
I'm uncomfortable with the idea of a small group of elites, typically fed by billion-dollar globalist corporations, giving themselves the ability to propagandize the work of thousands of open source contributors, from a diverse range of backgrounds, distributed all over the world. It's almost guaranteed if you put the same political messaging proposal to a vote by the TSC, vs all contributors, vs all users, you would often get 3 different outcomes. It's problematic for a privileged elite to exploit the captivated audience of the open source projects they maintain. How do you think someone starving to death in Tigray, or Yemen would feel, seeing a BLM slogan at the top of a GraphQL Foundation project they depend on to financially survive, while the starvation, rape, or murder of millions in their community is ignored?
A lot of, if not most, developers feel this way. Propagandizing the GraphQL Foundation will sabotage its legitimacy and moral standing, and will drive contributors away. To many, open source is a welcome refuge from conflict, politics, and greed.
comment created time in 5 hours
pull request commentknex/documentation
@Ahacad TS types expect number to be passed as opposed to number-like string. Sorry for being ambiguous, could you please change the example to actual numbers?
comment created time in 15 hours
pull request commentknex/documentation
using mysql default 3306 port now as an example
comment created time in 17 hours
pull request commentknex/documentation
Could you please replace your_port with more realistic param, which usually would be a number?
comment created time in 20 hours
issue commentknex/documentation
Sure, I'll make one right away.
comment created time in 20 hours
issue commentknex/documentation
@Ahacad Would you be open to submit a PR for this?
comment created time in 20 hours
issue openedknex/documentation
I tried a non-standard port and it can be used in knex, and I think it may be better to list the port option in the doc.
const knex = require('knex')({
client: 'mysql',
connection: {
host : '127.0.0.1',
port: 'your_port',
user : 'your_database_user',
password : 'your_database_password',
database : 'myapp_test'
},
pool: { min: 0, max: 7 }
});
created time in 20 hours
issue closedgraphql-nexus/nexus
Generated files won't re-generate when schema changes
When using tsc -w as opposed to ts-node-dev, generated files are placed inside /dist which we have to exclude in our tsconfig and not have access to those types. We can get around this by generating the files before running our npm dev script with tsc -w, but we won't be able to re-generate our schema unless we manually generate the files.
closed time in a day
miguelc1221issue openedgraphql-nexus/nexus
Generated files won't re-generate when schema changes
When using tsc -w as opposed to ts-node-dev, generated files are placed inside /dist which we have to exclude in our tsconfig and not have access to those types. We can get around this by generating the files before running our npm dev script with tsc -w, but we won't be able to re-generate our schema unless we manually generate the files.
created time in 2 days
PR opened danielgindi/knex-schema-builder
Bumps glob-parent from 5.1.1 to 5.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gulpjs/glob-parent/releases">glob-parent's releases</a>.</em></p> <blockquote> <h2>v5.1.2</h2> <h3>Bug Fixes</h3> <ul> <li>eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366">f923116</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md">glob-parent's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2">5.1.2</a> (2021-03-06)</h3> <h3>Bug Fixes</h3> <ul> <li>eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366">f923116</a>)</li> </ul> <h2><a href="https://www.github.com/gulpjs/glob-parent/compare/v5.1.2...v6.0.0">6.0.0</a> (2021-05-03)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>Correct mishandled escaped path separators (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/34">#34</a>)</li> <li>upgrade scaffold, dropping node <10 support</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Correct mishandled escaped path separators (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/34">#34</a>) (<a href="https://www.github.com/gulpjs/glob-parent/commit/32f6d52663b7addac38d0dff570d8127edf03f47">32f6d52</a>), closes <a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/32">#32</a></li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li>upgrade scaffold, dropping node <10 support (<a href="https://www.github.com/gulpjs/glob-parent/commit/e83d0c5a411947cf69eb58f36349db80439c606f">e83d0c5</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gulpjs/glob-parent/commit/eb2c439de448c779b450472e591a2bc9e37e9668"><code>eb2c439</code></a> chore: update changelog</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/12bcb6c45c942e2d05fc1e6ff5402e72555b54b6"><code>12bcb6c</code></a> chore: release 5.1.2</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366"><code>f923116</code></a> fix: eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>)</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/0b014a7962789b2d8f2cf0b6311f40667aecd62c"><code>0b014a7</code></a> chore: add JSDoc returns information (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/33">#33</a>)</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/2b24ebd64b2a045aa167c825376335555da139fd"><code>2b24ebd</code></a> chore: generate initial changelog</li> <li>See full diff in <a href="https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2">compare view</a></li> </ul> </details> <br />
Dependabot 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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr created time in 2 days
create barnchdanielgindi/knex-schema-builder
branch : dependabot/npm_and_yarn/glob-parent-5.1.2
created branch time in 2 days
create barnchtgriesser/autobarrel
branch : dependabot/npm_and_yarn/glob-parent-5.1.2
created branch time in 3 days
PR opened tgriesser/autobarrel
Bumps glob-parent from 5.1.1 to 5.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gulpjs/glob-parent/releases">glob-parent's releases</a>.</em></p> <blockquote> <h2>v5.1.2</h2> <h3>Bug Fixes</h3> <ul> <li>eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366">f923116</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md">glob-parent's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2">5.1.2</a> (2021-03-06)</h3> <h3>Bug Fixes</h3> <ul> <li>eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366">f923116</a>)</li> </ul> <h2><a href="https://www.github.com/gulpjs/glob-parent/compare/v5.1.2...v6.0.0">6.0.0</a> (2021-05-03)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>Correct mishandled escaped path separators (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/34">#34</a>)</li> <li>upgrade scaffold, dropping node <10 support</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Correct mishandled escaped path separators (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/34">#34</a>) (<a href="https://www.github.com/gulpjs/glob-parent/commit/32f6d52663b7addac38d0dff570d8127edf03f47">32f6d52</a>), closes <a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/32">#32</a></li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li>upgrade scaffold, dropping node <10 support (<a href="https://www.github.com/gulpjs/glob-parent/commit/e83d0c5a411947cf69eb58f36349db80439c606f">e83d0c5</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gulpjs/glob-parent/commit/eb2c439de448c779b450472e591a2bc9e37e9668"><code>eb2c439</code></a> chore: update changelog</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/12bcb6c45c942e2d05fc1e6ff5402e72555b54b6"><code>12bcb6c</code></a> chore: release 5.1.2</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366"><code>f923116</code></a> fix: eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>)</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/0b014a7962789b2d8f2cf0b6311f40667aecd62c"><code>0b014a7</code></a> chore: add JSDoc returns information (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/33">#33</a>)</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/2b24ebd64b2a045aa167c825376335555da139fd"><code>2b24ebd</code></a> chore: generate initial changelog</li> <li>See full diff in <a href="https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2">compare view</a></li> </ul> </details> <br />
Dependabot 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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr created time in 3 days
issue openedadelsz/pgtyped
I see that Postgres limits how much nullability information can be automatically discovered.
#242 looks like a great solution to provide hints to solve the INSERT/UPDATE case.
Would you be open to a PR to do something similar for fields returned by queries?
For example, sometimes you have a materialized view which lacks nullability information, or functions that lack nullability info (eg #197, #191, #121).
Proposal: You could alias the output fields to hint that they are actually non-null:
SELECT count(*) AS "count!" FROM table
to get a type like:
export interface IQueryResult {
count: number;
}
This could also be extended for the case where Postgres incorrectly infers NOT NULL due to OUTER JOINs (#201), eg:
SELECT id, name AS "name?" FROM users LEFT JOIN names USING (id)
would give:
export interface IQueryResult {
id: number;
name: string | null;
}
This seems like more of a hack than #242 because we're actually overriding Postgres's type system, but pragmatically, I think it might be pretty useful.
It could also be implemented fairly easily/non-invasively as a post-processing step entirely outside of pgtyped, so it'd make sense to want to keep pgtyped more pure, too.
created time in 3 days
push eventgraphql/graphql-wg
commit sha b581154fc121141a1dec4c1848d25f2853dd6ef7
Add Gabriel McAdams to the June Agenda (#705) Co-authored-by: Benjie Gillam <[email protected]>
push time in 3 days
issue commentgraphql-nexus/nexus
makeSchema's outputs/contextType .ts files need to be replaced with .js in production
ran into a similar issue, using tsc to compile and it can't find the ./context.ts in the dist folder, my solution was to generate the typegen before compiling when in dev but still need the above solution @chrishoermann suggested. Dropping the extension doesn't seem to work .......dist/src/api/context for the type context does not exist
comment created time in 3 days
PR opened tgriesser/promises-spec
Bumps glob-parent from 5.1.0 to 5.1.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/gulpjs/glob-parent/releases">glob-parent's releases</a>.</em></p> <blockquote> <h2>v5.1.2</h2> <h3>Bug Fixes</h3> <ul> <li>eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366">f923116</a>)</li> </ul> <h2>v5.1.1</h2> <h3>Bug Fixes</h3> <ul> <li>unescape exclamation mark (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/26">#26</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/a98874f1a59e407f4fb1beb0db4efa8392da60bb">a98874f</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md">glob-parent's changelog</a>.</em></p> <blockquote> <h3><a href="https://github.com/gulpjs/glob-parent/compare/v5.1.1...v5.1.2">5.1.2</a> (2021-03-06)</h3> <h3>Bug Fixes</h3> <ul> <li>eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366">f923116</a>)</li> </ul> <h2><a href="https://www.github.com/gulpjs/glob-parent/compare/v5.1.2...v6.0.0">6.0.0</a> (2021-05-03)</h2> <h3>⚠ BREAKING CHANGES</h3> <ul> <li>Correct mishandled escaped path separators (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/34">#34</a>)</li> <li>upgrade scaffold, dropping node <10 support</li> </ul> <h3>Bug Fixes</h3> <ul> <li>Correct mishandled escaped path separators (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/34">#34</a>) (<a href="https://www.github.com/gulpjs/glob-parent/commit/32f6d52663b7addac38d0dff570d8127edf03f47">32f6d52</a>), closes <a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/32">#32</a></li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li>upgrade scaffold, dropping node <10 support (<a href="https://www.github.com/gulpjs/glob-parent/commit/e83d0c5a411947cf69eb58f36349db80439c606f">e83d0c5</a>)</li> </ul> <h3><a href="https://github.com/gulpjs/glob-parent/compare/v5.1.0...v5.1.1">5.1.1</a> (2021-01-27)</h3> <h3>Bug Fixes</h3> <ul> <li>unescape exclamation mark (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/26">#26</a>) (<a href="https://github.com/gulpjs/glob-parent/commit/a98874f1a59e407f4fb1beb0db4efa8392da60bb">a98874f</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/gulpjs/glob-parent/commit/eb2c439de448c779b450472e591a2bc9e37e9668"><code>eb2c439</code></a> chore: update changelog</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/12bcb6c45c942e2d05fc1e6ff5402e72555b54b6"><code>12bcb6c</code></a> chore: release 5.1.2</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/f9231168b0041fea3f8f954b3cceb56269fc6366"><code>f923116</code></a> fix: eliminate ReDoS (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/36">#36</a>)</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/0b014a7962789b2d8f2cf0b6311f40667aecd62c"><code>0b014a7</code></a> chore: add JSDoc returns information (<a href="https://github-redirect.dependabot.com/gulpjs/glob-parent/issues/33">#33</a>)</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/2b24ebd64b2a045aa167c825376335555da139fd"><code>2b24ebd</code></a> chore: generate initial changelog</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/9b6e8747ddf664c9b1a36fbd2a23e43a35b8a52f"><code>9b6e874</code></a> chore: release 5.1.1</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/749c35ee084498ebb1ce8cc9cf655f6aa4d623c5"><code>749c35e</code></a> ci: try wrapping the JOB_ID in a string</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/5d39def48c9e9eaee0ca36dafdf7b6cdcd875b85"><code>5d39def</code></a> ci: attempt to switch to published coveralls</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/0b5b37f674a7e207457c99cb2f123299e5ab31c9"><code>0b5b37f</code></a> ci: put the npm step back in for only Windows</li> <li><a href="https://github.com/gulpjs/glob-parent/commit/473f5d87644bf19f32c53de21d2420f03aa02e5a"><code>473f5d8</code></a> ci: update azure build images</li> <li>Additional commits viewable in <a href="https://github.com/gulpjs/glob-parent/compare/v5.1.0...v5.1.2">compare view</a></li> </ul> </details> <br />
Dependabot 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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr created time in 3 days
create barnchtgriesser/promises-spec
branch : dependabot/npm_and_yarn/glob-parent-5.1.2
created branch time in 3 days
issue commentgraphql-nexus/nexus
path to schema does not exist in the compiled package
running in the same issue, did you ever find a solution?
comment created time in 3 days
delete branch rocketrip/graphene-django
delete branch : dependabot/pip/examples/cookbook-plain/django-1.11.29
delete time in 3 days
PR closed rocketrip/graphene-django
Bumps django from 1.9 to 1.11.29. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/django/django/commit/f1e3017aeaeddc590dcf2cf88511f3a726da73ca"><code>f1e3017</code></a> [1.11.x] Bumped version for 1.11.29 release.</li> <li><a href="https://github.com/django/django/commit/02d97f3c9a88adc890047996e5606180bd1c6166"><code>02d97f3</code></a> [1.11.x] Fixed CVE-2020-9402 -- Properly escaped tolerance parameter in GIS f...</li> <li><a href="https://github.com/django/django/commit/e6438335626cb7e662dd015485a23cfc5721ad72"><code>e643833</code></a> [1.11.x] Pinned PyYAML < 5.3 in test requirements.</li> <li><a href="https://github.com/django/django/commit/d0e3eb8e827355462a2d90660079234796d94ab0"><code>d0e3eb8</code></a> [1.11.x] Added CVE-2020-7471 to security archive.</li> <li><a href="https://github.com/django/django/commit/9a62ed5d5f827b44e8c95559c60fb28fb444e3ad"><code>9a62ed5</code></a> [1.11.x] Post-release version bump.</li> <li><a href="https://github.com/django/django/commit/e09f09b965ef47ffd99abd2c26ba7416751cffa6"><code>e09f09b</code></a> [1.11.x] Bumped version for 1.11.28 release.</li> <li><a href="https://github.com/django/django/commit/001b0634cd309e372edb6d7d95d083d02b8e37bd"><code>001b063</code></a> [1.11.x] Fixed CVE-2020-7471 -- Properly escaped StringAgg(delimiter) parameter.</li> <li><a href="https://github.com/django/django/commit/7fd1ca3ef63e5e834205a8208f4dc17d80f9a417"><code>7fd1ca3</code></a> [1.11.x] Fixed timezones tests for PyYAML 5.3+.</li> <li><a href="https://github.com/django/django/commit/121115d2c291b3969ac00ca62253f23513481739"><code>121115d</code></a> [1.11.x] Added CVE-2019-19844 to the security archive.</li> <li><a href="https://github.com/django/django/commit/2c4fb9a35db575ec56207446d782b8f450a2b4e7"><code>2c4fb9a</code></a> [1.11.x] Post-release version bump.</li> <li>Additional commits viewable in <a href="https://github.com/django/django/compare/1.9...1.11.29">compare view</a></li> </ul> </details> <br />
Dependabot 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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 3 days
delete branch rocketrip/graphene-django
delete branch : dependabot/pip/examples/cookbook/django-1.11.29
delete time in 3 days
PR opened rocketrip/graphene-django
Bumps django from 1.9 to 2.2.24. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/django/django/commit/2da029d8540ab0b2e9edcba25c4d46c52853197f"><code>2da029d</code></a> [2.2.x] Bumped version for 2.2.24 release.</li> <li><a href="https://github.com/django/django/commit/f27c38ab5d90f68c9dd60cabef248a570c0be8fc"><code>f27c38a</code></a> [2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses.</li> <li><a href="https://github.com/django/django/commit/053cc9534d174dc89daba36724ed2dcb36755b90"><code>053cc95</code></a> [2.2.x] Fixed CVE-2021-33203 -- Fixed potential path-traversal via admindocs'...</li> <li><a href="https://github.com/django/django/commit/6229d8794ff7d3f471e29811857d72e67f24b608"><code>6229d87</code></a> [2.2.x] Confirmed release date for Django 2.2.24.</li> <li><a href="https://github.com/django/django/commit/f163ad5c638f79d3fd0e76bed0e15e6928fae1f5"><code>f163ad5</code></a> [2.2.x] Added stub release notes and date for Django 2.2.24.</li> <li><a href="https://github.com/django/django/commit/bed1755bc596b8c83351471e4276386b2e6643c0"><code>bed1755</code></a> [2.2.x] Changed IRC references to Libera.Chat.</li> <li><a href="https://github.com/django/django/commit/63f0d7a0f6b6d762b8c15894c531b687ac843c66"><code>63f0d7a</code></a> [2.2.x] Refs <a href="https://github-redirect.dependabot.com/django/django/issues/32718">#32718</a> -- Fixed file_storage.test_generate_filename and model_fi...</li> <li><a href="https://github.com/django/django/commit/5fe4970bd0b64a24ed6f9f18db3d4a80b5ac0a78"><code>5fe4970</code></a> [2.2.x] Post-release version bump.</li> <li><a href="https://github.com/django/django/commit/61f814f9fab554d10f1e2c193bcf3a5c56c4e9ef"><code>61f814f</code></a> [2.2.x] Bumped version for 2.2.23 release.</li> <li><a href="https://github.com/django/django/commit/b8ecb0643619a0650a4447b282478ce5257856e2"><code>b8ecb06</code></a> [2.2.x] Fixed <a href="https://github-redirect.dependabot.com/django/django/issues/32718">#32718</a> -- Relaxed file name validation in FileField.</li> <li>Additional commits viewable in <a href="https://github.com/django/django/compare/1.9...2.2.24">compare view</a></li> </ul> </details> <br />
Dependabot 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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr created time in 3 days
PR closed rocketrip/graphene-django
Bumps django from 1.9 to 1.11.29. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/django/django/commit/f1e3017aeaeddc590dcf2cf88511f3a726da73ca"><code>f1e3017</code></a> [1.11.x] Bumped version for 1.11.29 release.</li> <li><a href="https://github.com/django/django/commit/02d97f3c9a88adc890047996e5606180bd1c6166"><code>02d97f3</code></a> [1.11.x] Fixed CVE-2020-9402 -- Properly escaped tolerance parameter in GIS f...</li> <li><a href="https://github.com/django/django/commit/e6438335626cb7e662dd015485a23cfc5721ad72"><code>e643833</code></a> [1.11.x] Pinned PyYAML < 5.3 in test requirements.</li> <li><a href="https://github.com/django/django/commit/d0e3eb8e827355462a2d90660079234796d94ab0"><code>d0e3eb8</code></a> [1.11.x] Added CVE-2020-7471 to security archive.</li> <li><a href="https://github.com/django/django/commit/9a62ed5d5f827b44e8c95559c60fb28fb444e3ad"><code>9a62ed5</code></a> [1.11.x] Post-release version bump.</li> <li><a href="https://github.com/django/django/commit/e09f09b965ef47ffd99abd2c26ba7416751cffa6"><code>e09f09b</code></a> [1.11.x] Bumped version for 1.11.28 release.</li> <li><a href="https://github.com/django/django/commit/001b0634cd309e372edb6d7d95d083d02b8e37bd"><code>001b063</code></a> [1.11.x] Fixed CVE-2020-7471 -- Properly escaped StringAgg(delimiter) parameter.</li> <li><a href="https://github.com/django/django/commit/7fd1ca3ef63e5e834205a8208f4dc17d80f9a417"><code>7fd1ca3</code></a> [1.11.x] Fixed timezones tests for PyYAML 5.3+.</li> <li><a href="https://github.com/django/django/commit/121115d2c291b3969ac00ca62253f23513481739"><code>121115d</code></a> [1.11.x] Added CVE-2019-19844 to the security archive.</li> <li><a href="https://github.com/django/django/commit/2c4fb9a35db575ec56207446d782b8f450a2b4e7"><code>2c4fb9a</code></a> [1.11.x] Post-release version bump.</li> <li>Additional commits viewable in <a href="https://github.com/django/django/compare/1.9...1.11.29">compare view</a></li> </ul> </details> <br />
Dependabot 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.
<details> <summary>Dependabot commands and options</summary> <br />
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.
</details>
pr closed time in 3 days
pull request commentrocketrip/graphene-django
Bump django from 1.9 to 1.11.29 in /examples/cookbook-plain
Superseded by #4.
comment created time in 3 days