Skip to content

v1.9.2

Compare
Choose a tag to compare
@Ahoo-Wang Ahoo-Wang released this 07 Jan 14:43
· 461 commits to main since this release

What's Changed

  • Update dependency io.opentelemetry:opentelemetry-bom to v1.22.0 by @renovate in #58
  • Refactor: Enhance Statement.verify performance by @Ahoo-Wang in #60
  • Refactor: Support BoolConditionMatcher by @Ahoo-Wang in #61
    {
      "name": "AllowDeveloperOrIpRange",
      "effect": "allow",
      "actions": [
        {
          "type": "all"
        }
      ],
      "conditions": [
        {
          "type": "bool",
          "bool": {
            "and": [
              {
                "type": "authenticated"
              }
            ],
            "or": [
              {
                "type": "in",
                "part": "context.principal.id",
                "in": [
                  "developerId"
                ]
              },
              {
                "type": "path",
                "part": "request.remoteIp",
                "path": {
                  "caseSensitive": false,
                  "separator": ".",
                  "decodeAndParseSegments": false
                },
                "pattern": "192.168.0.*"
              }
            ]
          }
        }
      ]
    }

Full Changelog: v1.9.0...v1.9.2