Compare commits
12 Commits
Author | SHA1 | Date |
---|---|---|
|
e4c6eb2053 | |
|
de78f7abc0 | |
|
fce1f2a05b | |
|
69b301acc5 | |
|
62f0995896 | |
|
033df40cea | |
|
685b0fb6c2 | |
|
f81400785b | |
|
112e84313d | |
|
7fe15200b3 | |
|
32f333ba86 | |
|
5e2e221c24 |
|
@ -14,4 +14,4 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check WIP in PR Title
|
||||
uses: embano1/wip@v1
|
||||
uses: embano1/wip@v2
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
create:
|
||||
push:
|
||||
tags:
|
||||
- v*
|
||||
workflow_dispatch:
|
||||
|
|
32
CHANGELOG.md
32
CHANGELOG.md
|
@ -1,4 +1,36 @@
|
|||
|
||||
<a name="v0.3.3"></a>
|
||||
## [Release v0.3.3](https://github.com/cloudevents/sdk-powershell/compare/v0.3.2...v0.3.3)
|
||||
|
||||
> Release Date: 2021-09-08
|
||||
|
||||
### 🧹 Chore
|
||||
|
||||
- [32f333b] Bump module version for new release
|
||||
- [5e2e221] Trigger release on tag push (#47)
|
||||
|
||||
### ⚠️ BREAKING
|
||||
|
||||
### 📖 Commits
|
||||
|
||||
- [32f333b] chore: Bump module version for new release
|
||||
- [5e2e221] chore: Trigger release on tag push (#47)
|
||||
|
||||
<a name="v0.3.2"></a>
|
||||
## [Release v0.3.2](https://github.com/cloudevents/sdk-powershell/compare/v0.3.1...v0.3.2)
|
||||
|
||||
> Release Date: 2021-09-08
|
||||
|
||||
### 🧹 Chore
|
||||
|
||||
- [c8b5958] Add Project URI in the module manifest
|
||||
|
||||
### ⚠️ BREAKING
|
||||
|
||||
### 📖 Commits
|
||||
|
||||
- [c8b5958] chore: Add Project URI in the module manifest
|
||||
|
||||
<a name="v0.3.1"></a>
|
||||
## [Release v0.3.1](https://github.com/cloudevents/sdk-powershell/compare/v0.3.0...v0.3.1)
|
||||
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
# Maintainers
|
||||
|
||||
Current active maintainers of this SDK:
|
||||
|
||||
- [William Lam](https://github.com/lamw)
|
||||
- [Mark Peek](https://github.com/markpeek
|
||||
- [Dimitar Milov](https://github.com/dmilov)
|
||||
- [Michael Gasch](https://github.com/embano1)
|
||||
- [Simeon Gerginov](https://github.com/SimeonGerginov)
|
39
README.md
39
README.md
|
@ -1,5 +1,7 @@
|
|||
# PowerShell 7.0 SDK for CloudEvents based on [.NET SDK for CloudEvents](https://github.com/cloudevents/sdk-csharp)
|
||||
|
||||
Official CloudEvents SDK to integrate your application with CloudEvents.
|
||||
|
||||
## Status
|
||||
|
||||
Supported CloudEvents versions:
|
||||
|
@ -160,3 +162,40 @@ Read-CloudEventData -CloudEvent $cloudEvent
|
|||
100
|
||||
33
|
||||
```
|
||||
|
||||
## Community
|
||||
|
||||
- There are bi-weekly calls immediately following the
|
||||
[Serverless/CloudEvents call](https://github.com/cloudevents/spec#meeting-time)
|
||||
at 9am PT (US Pacific). Which means they will typically start at 10am PT, but
|
||||
if the other call ends early then the SDK call will start early as well. See
|
||||
the
|
||||
[CloudEvents meeting minutes](https://docs.google.com/document/d/1OVF68rpuPK5shIHILK9JOqlZBbfe91RNzQ7u_P7YCDE/edit#)
|
||||
to determine which week will have the call.
|
||||
- Slack: #cloudeventssdk channel under
|
||||
[CNCF's Slack workspace](https://slack.cncf.io/).
|
||||
- Email: https://lists.cncf.io/g/cncf-cloudevents-sdk
|
||||
- Contact for additional information: Michael Gasch (`@Michael Gasch`
|
||||
on slack).
|
||||
|
||||
Each SDK may have its own unique processes, tooling and guidelines, common
|
||||
governance related material can be found in the
|
||||
[CloudEvents `community`](https://github.com/cloudevents/spec/tree/master/community)
|
||||
directory. In particular, in there you will find information concerning
|
||||
how SDK projects are
|
||||
[managed](https://github.com/cloudevents/spec/blob/master/community/SDK-GOVERNANCE.md),
|
||||
[guidelines](https://github.com/cloudevents/spec/blob/master/community/SDK-maintainer-guidelines.md)
|
||||
for how PR reviews and approval, and our
|
||||
[Code of Conduct](https://github.com/cloudevents/spec/blob/master/community/GOVERNANCE.md#additional-information)
|
||||
information.
|
||||
|
||||
If there is a security concern with one of the CloudEvents specifications, or
|
||||
with one of the project's SDKs, please send an email to
|
||||
[cncf-cloudevents-security@lists.cncf.io](mailto:cncf-cloudevents-security@lists.cncf.io).
|
||||
|
||||
## Additional SDK Resources
|
||||
|
||||
- [List of current active maintainers](MAINTAINERS.md)
|
||||
- [How to contribute to the project](CONTRIBUTING.md)
|
||||
- [SDK's License](LICENSE)
|
||||
- [SDK's Release process](RELEASING.md)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
RootModule = 'CloudEvents.Sdk.psm1'
|
||||
|
||||
# Version number of this module.
|
||||
ModuleVersion = '0.3.2'
|
||||
ModuleVersion = '0.3.3'
|
||||
|
||||
# Supported PSEditions
|
||||
CompatiblePSEditions = @('Core')
|
||||
|
|
Loading…
Reference in New Issue