Bruce Brouwer
Bruce Brouwer
When proxying ``` {source: '/something', target: 'http://localhost:8080/something'} ``` A trailing slash is added to the request, making a request to `/something` result in a request to `http://localhost:8080/something/` In my case,...
Until I have everything automated through CI/CD, I am trying to get my Terraform scripts to run generally as myself for auditing purposes. The GSuite admin, though, doesn't want to...
Multiple times I have seen a partial version of node installed in {local-repo}/com/github/eirslett/node/... both on Linux and Windows. Removing this file usually fixes the problem, but it is happening more...
We could configure a good chunk of Spring security for LDAP (probably other places too) simply with `application.properties`: ``` security.ldap.url=ldaps://example.com security.ldap.user-dn-pattern=uid={0},ou=Users,o=example security.ldap.group-dn=ou=example,ou=Roles,o=example security.ldap.group-search-base=(uniqueMember={0}) security.ldap.auth.user-dn=uid=exampleAuthUser,ou=Users,o=example security.ldap.auth.password=somePassword ``` I have code that...
Liquibase 4 came out earlier this year. With a few modifications, `liquibase-linter` works with Liquibase 4. The biggest difference is that the `ResourceAccessor` is incompatible with the one from Liquibase...
Implement multiple, configurable reporters, described in the `lqlint.json` file. After this PR, I intend to give similar treatment to rules in a separate PR. Some of my goals are: *...
As I've gotten deep into the design of `liquibase-linter`, I'm fairly impressed with the code and overall design. Enough so to suggest some possible improvements. I like the ServiceLoader approach...
Add an additional Reporter that I can enable with a `-Dlqlint.report.txt=report.txt` parameter. This looks relatively straightforward as the Reporters is already defined as a `Collection`. If the system property is...
When following the instructions provided here, I receive the error ``` [ERROR] Failed to execute goal org.liquibase:liquibase-maven-plugin:3.7.0:update (default-cli) on project drs: Execution default-cli of goal org.liquibase:liquibase-maven-plugin:3.7.0:update failed: A required class...