-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add support for user lookup function #2682
base: master
Are you sure you want to change the base?
Conversation
I'd use this. |
Is there something else I need to do to get this merged? |
Gosh this PR is old - sorry for letting it go by w/o any comments. It looks alright to me, and appreciate the PR! I think in the future it'd probably be good to just make a single generic thing like |
hmmm....looks like a test is failing. |
No worries, thanks for taking a look now. It's been so long, I'm not entirely surprised tests fail. I'll take a look at fixing them... |
If I run the tests locally on
So the existing functionality to get a dynamic password fails the test on master. For me. Am I doing something wrong? |
hmmm lemme take a look |
I just ran all tests locally on commit |
Yes, And seeing as I added my test basically copying what was already in that file, I'd need for that test to pass before tackling my own stuff... |
Interestingly, in the CI logs I actually see this:
And this last part in that partial paste:
are the tests that I added. So they are not failing in the CI pipeline. The tests are failing elsewhere, namely here:
And I have no clue why, or if that is related to the changes I made. On first glance I would say no, but I find it all pretty weird that my tests are failing for me locally and not in CI... |
Sorry about the multiple posts, but if I run |
* fix: double client.end() hang fixes brianc#2716 `client.end()` will resolve early if the connection is already dead, rather than waiting for an "end" event that will never arrive. * fix: client.end() resolves when socket is fully closed
Update href to docs
…le (brianc#2952) Currently still nextra default. Those are shown in Slack and other social apps when sharing the website.
…c#2967) `result.rowCount` is initialized to `null`, but only set to an `int`-value if the returned command tag consists of more than one word, which is not the case in general. For example, the `LOCK` command will return a command tag of simply the form `LOCK`, and thus `result.rowCount` will stay `null`.
* Document client.escapeIdentifier and client.escapeLiteral Per brianc#1978 it seems that these client APIs are undocumented. Added documentation for these functions along with some examples and relevant links. * Fix typos in new docs * Migrate escapeIdentifier and escapeLiteral from Client to PG These are standalone utility functions, they do not need a client instance to function. Changes made: - Refactored escapeIdentifer and escapeLiteral from client class to functions in utils - Update PG to export escapeIdentifier and escapeLiteral - Migrated tests for Client.escapeIdentifier and Client.escapeLiteral to tests for utils - Updated documentation, added a "utilities" page where these helpers are discussed **note** this is a breaking change. Users who used these functions (previously undocumented) on instances of Client, or via Client.prototype. * Export escapeIdentifier and escapeLiteral from PG These are standalone utility functions, they should not depend on a client instance. Changes made: - Refactored escapeIdentifer and escapeLiteral from client class to functions in utils - Re-exported functions on client for backwards compatibility - Update PG to export escapeIdentifier and escapeLiteral - Updated tests to validate the newly exported functions from both entry points - Updated documentation, added a "utilities" page where these helpers are discussed * Ensure escape functions work via Client.prototype Updated changes such that escapeIdentifier and escapeLiteral are usable via the client prototype Updated tests to check for both entry points in client
The : and @ were the wrong way round
Swapping the deprecated Node.js API for the modern cross environment API.
The only place we are stuck with node's original crypto API is for generating md5 hashes, which are not supported by WebCrypto.
Fixed following error ReferenceError: TextEncoder is not defined
This reverts commit 522e2dc.
* Add failing test * Fix test This corresponds to what was line 48 previously, see https://github.com/brianc/node-postgres/pull/2971/files#diff-08a5e82487ebd9b43751630019753901fae0a111f8d009ad2e9d194445e96922L48 * Update packages/pg-connection-string/index.js Co-authored-by: Pete Bacon Darwin <[email protected]> --------- Co-authored-by: Brian C <[email protected]> Co-authored-by: Pete Bacon Darwin <[email protected]>
Co-authored-by: Evgeniy Novikov <[email protected]>
* Correctly capitalize GitHub * Add note on callbacks to index * Add note on error handling * Update client examples to use promises * Update pooling examples * Fix readme link * Update cursor docs * Update connecting examples * Update Queries * Update examples in pooling * Update trx examples * Update SSL example * Update example * Use ESM instead of CJS * Update docs/pages/apis/cursor.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/apis/cursor.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/apis/pool.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/apis/pool.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/apis/pool.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/features/connecting.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/features/connecting.mdx Co-authored-by: Charmander <[email protected]> * Update docs/pages/features/ssl.mdx Co-authored-by: Charmander <[email protected]> --------- Co-authored-by: Charmander <[email protected]>
…now about Cloudflare sockets (brianc#2978) By implementing package.json `exports` we can avoid processing the Cloudflare specific code, which contains `import ... from "cloudflare:sockets"`, in bundlers such as Webpack. If you are bundling for a Worker environment using Webpack then you need to add the `workerd` condition and ignore `cloudflare:sockets` imports: **webpack.config.js** ```js resolve: { conditionNames: ["require", "node", "workerd"] }, plugins: [ new webpack.IgnorePlugin({ resourceRegExp: /^cloudflare:sockets$/, }), ], ```
brianc#2983) * fix stack traces of query() to include the async context (brianc#1762) * rename tests so they are actually run * conditionally only run async stack trace tests on node 16+ * add stack trace to pg-native --------- Co-authored-by: Charmander <[email protected]>
Change finanical to financial
Co-authored-by: Filipe Correa <[email protected]>
Bumps [prettier](https://github.com/prettier/prettier) from 2.7.1 to 2.8.8. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@2.7.1...2.8.8) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [workerd](https://github.com/cloudflare/workerd) from 1.20230419.0 to 1.20230518.0. - [Release notes](https://github.com/cloudflare/workerd/releases) - [Changelog](https://github.com/cloudflare/workerd/blob/main/RELEASE.md) - [Commits](cloudflare/workerd@v1.20230419.0...v1.20230518.0) --- updated-dependencies: - dependency-name: workerd dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…2833) If the connection string is something like: postgresql://demo:password@/postgres?host=localhost&port=26258 Then the port from the query parameters should be used. Previously, the parsing function would end up with a null port, and the default port would end up being used by the connecetion package.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs a correct rebase
Similar to the dynamic lookup of a password, this PR makes it possible to support a lookup of the user as well. This is needed for AWS RDS rotation where the username is (can, in some rotation schemes) rotated as well.